@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --hj-gold: #c7a25a;
  --hj-gold-strong: #b68a3f;
  --hj-dark: #1b1b1b;
  --hj-dark-2: #242424;
  --hj-ink: #2b2b2b;
  --hj-muted: #77706a;
  --hj-light: #f6f3ee;
  --hj-white: #ffffff;
  --hj-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--hj-ink);
  background: #ffffff;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.font-serif {
  font-family: 'Cormorant Garamond', serif;
}

.font-sans {
  font-family: 'Inter', sans-serif;
}

.hj-page {
  font-family: 'Inter', sans-serif;
  color: var(--hj-ink);
  background: #ffffff;
}

.hj-title,
.hj-section-title {
  font-family: 'Cormorant Garamond', serif;
}

.hj-container {
  width: min(1280px, 94vw);
  margin: 0 auto;
}

.hj-section {
  padding: 100px 0;
}

.hj-section.is-compact {
  padding: 80px 0;
}

.hj-dark {
  background: var(--hj-dark);
  color: #f3f0ea;
}

.hj-muted {
  color: var(--hj-muted);
  font-size: 15px;
  line-height: 1.8;
}

.hj-dark .hj-muted {
  color: rgba(255, 255, 255, 0.65);
}

.hj-hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  color: #f8f6f1;
  background-size: cover;
  background-position: center;
  border-radius: 0 0 36px 36px;
  overflow: hidden;
  animation: heroZoomIn 1.2s ease-out;
}

@keyframes heroZoomIn {
  from {
    transform: scale(1.05);
    opacity: 0.8;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.hj-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.4) 100%);
  backdrop-filter: blur(2px);
}

.hj-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(199, 162, 90, 0.15) 0%, transparent 50%);
  z-index: 1;
}

.hj-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(27, 27, 27, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all .3s ease;
}

.hj-header.scrolled {
  background: rgba(27, 27, 27, 0.95);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  padding: 12px 0;
}

/* Header CTA Button - Outline style */
.hj-header .hj-btn-primary,
.hj-nav-cta .hj-btn-primary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
  box-shadow: none;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 500;
}

.hj-header .hj-btn-primary:hover,
.hj-nav-cta .hj-btn-primary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.9);
  color: #ffffff;
  box-shadow: none;
  transform: translateY(-2px);
}

.hj-header .hj-btn-primary::before {
  display: none;
}

.hj-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.hj-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f3f0ea;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.12em;
  font-size: 12px;
  text-transform: uppercase;
}

.hj-logo img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.hj-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 14px;
}

.hj-nav-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hj-nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  position: relative;
  transition: all .3s ease;
}

.hj-nav a:hover {
  color: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
}

.hj-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--hj-gold), var(--hj-gold-strong));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 2px;
}

.hj-nav a:hover::after,
.hj-nav a.is-active::after {
  transform: scaleX(1);
}

.hj-nav a.is-active {
  color: var(--hj-gold);
}

/* WordPress menu support */
.hj-nav ul {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hj-nav ul li {
  margin: 0;
  padding: 0;
}

.hj-nav ul li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  position: relative;
  transition: all .3s ease;
}

.hj-nav ul li a:hover {
  color: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
}

.hj-nav ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--hj-gold), var(--hj-gold-strong));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 2px;
}

.hj-nav ul li a:hover::after,
.hj-nav ul li.current-menu-item a::after,
.hj-nav ul li.current_page_item a::after {
  transform: scaleX(1);
}

.hj-nav ul li.current-menu-item a,
.hj-nav ul li.current_page_item a {
  color: var(--hj-gold);
}

/* Burger Menu */
.hj-burger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  transition: all .3s ease;
  position: relative;
}

.hj-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all .3s ease;
  transform-origin: center;
}

.hj-burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hj-burger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.hj-burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Responsive */
@media (max-width: 992px) {
  .hj-burger {
    display: flex;
  }

  .hj-burger.active span {
    background: #ffffff;
  }

  .hj-header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .hj-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 32px 32px;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease, visibility .4s ease;
    z-index: 999;
  }

  .hj-nav.active {
    opacity: 1;
    visibility: visible;
    display: flex !important;
  }

  .hj-nav ul {
    flex-direction: column;
    gap: 24px;
    width: 100%;
    text-align: center;
  }

  .hj-nav ul li {
    width: 100%;
    text-align: center;
  }

  .hj-nav a {
    display: block;
    padding: 16px 0;
    font-size: 22px;
    font-weight: 500;
    border-bottom: none;
    color: #ffffff;
  }

  .hj-nav a:hover {
    color: var(--hj-gold);
  }

  .hj-nav-cta {
    display: none;
  }

  .hj-nav-cta-mobile {
    display: block !important;
    width: 100%;
    max-width: 280px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .hj-nav-cta-mobile .hj-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 16px 32px;
  }

  .hj-hero-inner {
    padding: 140px 0 80px;
  }
}

@media (max-width: 576px) {
  .hj-logo {
    font-size: 11px;
  }

  .hj-logo img {
    width: 32px;
    height: 32px;
  }

  .hj-burger {
    width: 24px;
    height: 20px;
  }
}

.hj-hero-inner {
  position: relative;
  z-index: 2;
  padding: 120px 0 100px;
}

.hj-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.45);
  color: #d9c39a;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hj-title {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  margin: 16px 0 14px;
}

.hj-title small {
  display: block;
  font-size: 0.8em;
  font-style: italic;
}

.hj-lead {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

.hj-cta-row {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hj-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: all .35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
}

.hj-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.hj-btn:hover::before {
  width: 300px;
  height: 300px;
}

.hj-btn-primary {
  background: linear-gradient(135deg, var(--hj-gold) 0%, var(--hj-gold-strong) 100%);
  color: #1b1b1b;
  box-shadow: 0 12px 24px rgba(199, 162, 90, 0.35);
}

.hj-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(199, 162, 90, 0.45);
}

.hj-btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(199, 162, 90, 0.3);
}

.hj-btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #f2eee6;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}

.hj-btn-ghost:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.hj-btn-ghost:active {
  transform: translateY(-1px);
}

.hj-section-title {
  text-align: center;
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 32px;
  line-height: 1.2;
}

.hj-portfolio-eyebrow {
  text-align: center;
  color: var(--hj-gold);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}

.hj-portfolio-title {
  margin-bottom: 34px;
}

.hj-portfolio-masonry {
  column-count: 3;
  column-gap: 24px;
}

.hj-portfolio-item {
  break-inside: avoid;
  margin-bottom: 24px;
}

.hj-portfolio-card {
  position: relative;
  display: block;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
  transition: all .45s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateZ(0);
  will-change: transform;
}

.hj-portfolio-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(199, 162, 90, 0.15) 100%);
  opacity: 0;
  transition: opacity .45s ease;
  pointer-events: none;
}

.hj-portfolio-card:hover::after {
  opacity: 1;
}

.hj-portfolio-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .8s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}

.hj-portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.75) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  opacity: 0;
  transform: translateY(15px);
  transition: all .5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hj-portfolio-item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: #fff;
  margin-bottom: 6px;
}

.hj-portfolio-item-subtitle {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hj-gold);
}

.hj-portfolio-pill {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #1b1b1b;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all .4s ease;
}

.hj-portfolio-card:hover img {
  transform: scale(1.08) rotate(1deg);
}

.hj-portfolio-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.22);
}

.hj-portfolio-card:active {
  transform: translateY(-4px) scale(1.01);
}

.hj-portfolio-card:hover .hj-portfolio-overlay {
  opacity: 1;
  transform: translateY(0);
}

.hj-portfolio-card:hover .hj-portfolio-pill {
  opacity: 1;
  transform: scale(1) rotate(360deg);
}

.hj-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.hj-split-fancy {
  gap: 64px;
}

@media (max-width: 992px) {
  .hj-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.hj-split-media {
  position: relative;
}

.hj-split-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: #1b1b1b;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.06em;
}

.hj-split-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hj-split-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--hj-gold-strong);
  margin-top: -8px;
}

.hj-split-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.hj-split-avatars {
  display: flex;
  align-items: center;
}

.hj-split-avatars img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

.hj-split-avatars img:first-child {
  margin-left: 0;
}

.hj-split-stat {
  font-size: 13px;
  color: var(--hj-muted);
}

.hj-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: var(--hj-shadow);
  transition: all .4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.hj-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.14);
  border-color: rgba(199, 162, 90, 0.2);
}

.hj-card.is-dark {
  background: var(--hj-dark-2);
  color: #f4f0ea;
  border-color: rgba(255, 255, 255, 0.1);
}

.hj-card.is-dark:hover {
  border-color: rgba(199, 162, 90, 0.4);
}

.hj-card h3 {
  margin-top: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  margin-bottom: 12px;
  transition: color .3s ease;
}

.hj-card:hover h3 {
  color: var(--hj-gold);
}

.hj-img-rounded {
  border-radius: 26px;
  box-shadow: var(--hj-shadow);
  width: 100%;
  height: auto;
  transition: all .5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hj-img-rounded:hover {
  transform: scale(1.02);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
}

/* Image loading animation */
img {
  animation: imageLoad 0.6s ease-out;
}

@keyframes imageLoad {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hj-portfolio-card,
.hj-portfolio-card img,
.hj-portfolio-item img,
.hj-card,
.hj-testimonial,
.hj-price,
.hj-step,
.hj-form input,
.hj-form textarea,
.hj-split-media img {
  border-radius: 26px;
}

.hj-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.hj-service-card {
  background: var(--hj-dark-2);
  color: #f4f0ea;
  border-radius: 18px;
  padding: 32px;
  box-shadow: var(--hj-shadow);
  transition: all .4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.hj-service-card-image {
  background-size: cover;
  background-position: center;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.hj-service-card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.hj-service-card-image h3,
.hj-service-card-image p {
  position: relative;
  z-index: 2;
}

.hj-service-icon {
  width: 48px;
  height: 48px;
  background: var(--hj-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--hj-gold);
  transition: all .3s ease;
}

.hj-service-icon svg {
  width: 24px;
  height: 24px;
}

.hj-service-card:hover .hj-service-icon {
  background: var(--hj-gold);
  color: var(--hj-dark);
  transform: scale(1.1);
}

.hj-service-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--hj-dark);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hj-service-badge::before {
  content: '🎨';
  font-size: 14px;
}

.hj-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.14);
  border-color: rgba(199, 162, 90, 0.4);
}

.hj-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.hj-testimonial {
  border-radius: 18px;
  padding: 32px;
  background: #fff;
  box-shadow: var(--hj-shadow);
  transition: all .4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  text-align: left;
}

.hj-testimonial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--hj-gold) 0%, var(--hj-gold-strong) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s ease;
}

.hj-testimonial:hover::before {
  transform: scaleX(1);
}

.hj-testimonial:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(199, 162, 90, 0.3);
}

.hj-testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hj-testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50% !important;
  object-fit: cover;
  border: 2px solid var(--hj-gold);
  overflow: hidden;
}

.hj-testimonial-author {
  flex: 1;
}

.hj-testimonial-name {
  display: block;
  color: var(--hj-ink);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.hj-testimonial-username {
  display: block;
  color: var(--hj-muted);
  font-size: 13px;
  font-weight: 400;
}

.hj-testimonial-quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--hj-ink);
  margin-bottom: 20px;
}

.hj-testimonial-stars {
  color: var(--hj-gold);
  font-size: 16px;
  letter-spacing: 2px;
}

.hj-form {
  display: grid;
  gap: 16px;
}

.hj-form input,
.hj-form textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 2px solid #e5dfd6;
  background: #fbfaf7;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: all .35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hj-form input:hover,
.hj-form textarea:hover {
  border-color: #d5cfc6;
  background: #ffffff;
}

.hj-form input:focus,
.hj-form textarea:focus {
  outline: none;
  border-color: var(--hj-gold);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(199, 162, 90, 0.15), 0 8px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.hj-form-cta-grid {
  display: grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: stretch;
}

.hj-form-cta-image {
  background-size: cover;
  background-position: center;
  border-radius: 26px;
  min-height: 500px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hj-form-cta-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.75) 100%);
  z-index: 1;
}

.hj-form-cta-overlay {
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding: 48px;
}

.hj-form-cta-overlay .hj-badge {
  color: var(--hj-gold);
  margin-bottom: 20px;
}

.hj-form-cta-overlay .hj-title {
  color: #ffffff;
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 0;
  line-height: 1.2;
}

.hj-form-cta-form {
  background: #f9f7f4;
  border-radius: 26px;
  padding: 48px;
  box-shadow: var(--hj-shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hj-form-cta-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 36px);
  color: var(--hj-ink);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hj-form-cta-form-description {
  font-size: 15px;
  color: var(--hj-muted);
  text-align: center;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hj-form-cta-contact-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.hj-form-cta-location,
.hj-form-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--hj-muted);
}

.hj-form-cta-location svg,
.hj-form-cta-phone svg {
  color: var(--hj-gold);
}

.hj-form-cta-form .wpcf7-form {
  display: grid;
  gap: 16px;
}

.hj-form-cta-form input[type="text"],
.hj-form-cta-form input[type="email"],
.hj-form-cta-form input[type="tel"],
.hj-form-cta-form textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 2px solid #e5dfd6;
  background: #fbfaf7;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: all .35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hj-form-cta-form input:hover,
.hj-form-cta-form textarea:hover {
  border-color: #d5cfc6;
  background: #ffffff;
}

.hj-form-cta-form input:focus,
.hj-form-cta-form textarea:focus {
  outline: none;
  border-color: var(--hj-gold);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(199, 162, 90, 0.15), 0 8px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.hj-form-cta-form .wpcf7-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: all .35s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: var(--hj-gold);
  color: #fff;
  border: none;
  cursor: pointer;
}

.hj-form-cta-form .wpcf7-submit:hover {
  background: var(--hj-gold-strong);
  box-shadow: 0 12px 32px rgba(199, 162, 90, 0.35);
  transform: translateY(-2px);
}

.hj-form-cta-form .wpcf7-form p {
  margin-bottom: 0;
  position: relative;
}

.hj-form-cta-form textarea {
  min-height: 120px;
  resize: vertical;
}

.hj-form-cta-form .wpcf7-form p:has(textarea)::after {
  content: 'Maximum 500 caractères';
  display: block;
  font-size: 12px;
  color: var(--hj-muted);
  margin-top: 8px;
  text-align: right;
}

.hj-footer {
  background: #0a0a0a;
  color: #a8a39a;
  padding: 80px 0 32px;
  font-size: 15px;
  line-height: 1.8;
}

.hj-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 64px;
  margin-bottom: 48px;
}

@media (max-width: 992px) {
  .hj-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .hj-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.hj-footer-col {
  display: flex;
  flex-direction: column;
}

.hj-footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}

.hj-footer-brand {
  display: block;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  font-family: 'Cormorant Garamond', serif;
}

.hj-footer-tagline {
  color: #a8a39a;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.hj-footer-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  font-family: 'Inter', sans-serif;
}

.hj-footer-nav,
.hj-footer-contact,
.hj-footer-social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hj-footer-nav a,
.hj-footer-social a {
  color: #a8a39a;
  text-decoration: none;
  font-size: 14px;
  transition: color .3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hj-footer-nav a:hover,
.hj-footer-social a:hover {
  color: var(--hj-gold);
}

.hj-footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #a8a39a;
  font-size: 14px;
}

.hj-footer-contact svg {
  flex-shrink: 0;
  color: var(--hj-gold);
}

.hj-footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.hj-footer-social-icon svg {
  width: 100%;
  height: 100%;
}

.hj-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(168, 163, 154, 0.15);
  font-size: 13px;
  color: #6e6b66;
  flex-wrap: wrap;
  gap: 16px;
}

.hj-footer-bottom p {
  margin: 0;
}

@media (max-width: 576px) {
  .hj-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.hj-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--hj-gold);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  margin-bottom: 16px;
}

.hj-kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.hj-step {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  box-shadow: var(--hj-shadow);
  transition: all .4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.hj-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--hj-gold), var(--hj-gold-strong));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s ease;
}

.hj-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--hj-gold);
}

.hj-step:hover::before {
  transform: scaleX(1);
}

.hj-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.hj-price {
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  background: #fff;
  box-shadow: var(--hj-shadow);
  transition: all .4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.hj-price:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.18);
  border-color: var(--hj-gold);
}

.hj-price.is-featured {
  background: linear-gradient(135deg, var(--hj-dark) 0%, var(--hj-dark-2) 100%);
  color: #f2eee6;
  transform: translateY(-6px) scale(1.05);
  border-color: var(--hj-gold);
  box-shadow: 0 24px 48px rgba(199, 162, 90, 0.25);
}

.hj-price.is-featured:hover {
  transform: translateY(-12px) scale(1.08);
  box-shadow: 0 32px 64px rgba(199, 162, 90, 0.35);
}

.hj-price::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left .6s ease;
}

.hj-price:hover::after {
  left: 100%;
}

.hj-fade-up {
  opacity: 0;
  transform: translateY(18px);
  animation: hjFadeUp .9s ease forwards;
}

.hj-fade-left {
  opacity: 0;
  transform: translateX(-18px);
  animation: hjFadeLeft .9s ease forwards;
}

.hj-fade-right {
  opacity: 0;
  transform: translateX(18px);
  animation: hjFadeRight .9s ease forwards;
}

.hj-fade-up[data-delay="1"] {
  animation-delay: .15s;
}

.hj-fade-up[data-delay="2"] {
  animation-delay: .3s;
}

.hj-fade-up[data-delay="3"] {
  animation-delay: .45s;
}

@keyframes hjFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hjFadeLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes hjFadeRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 1024px) {
  .hj-portfolio-masonry {
    column-count: 2;
  }
}

@media (max-width: 860px) {
  .hj-hero {
    min-height: 70vh;
  }

  .hj-hero-inner {
    padding: 96px 0 80px;
  }
}

@media (max-width: 680px) {
  .hj-portfolio-masonry {
    column-count: 1;
  }

  .hj-split-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hj-section {
    padding: 56px 0;
  }

  .hj-services-grid {
    grid-template-columns: 1fr !important;
  }

  .hj-testimonials {
    grid-template-columns: 1fr !important;
  }

  .hj-steps-grid {
    grid-template-columns: 1fr !important;
  }

  .hj-title {
    font-size: 36px;
  }

  .hj-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ========================================
   ADDITIONAL ENHANCEMENTS
   ======================================== */

/* Cursor effects for interactive elements */
.hj-btn,
.hj-portfolio-card,
.hj-card,
.hj-nav a {
  cursor: pointer;
}

/* Selection color */
::selection {
  background: var(--hj-gold);
  color: #1b1b1b;
}

::-moz-selection {
  background: var(--hj-gold);
  color: #1b1b1b;
}

/* Split section media enhancements */
.hj-split-media {
  overflow: hidden;
  border-radius: 26px;
}

.hj-split-media img {
  transition: transform .8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hj-split:hover .hj-split-media img {
  transform: scale(1.05);
}

/* Badge animations */
.hj-badge {
  transition: all .3s ease;
}

.hj-badge:hover {
  transform: scale(1.1);
  letter-spacing: 0.2em;
}

/* Tag enhancements */
.hj-tag {
  backdrop-filter: blur(12px);
  transition: all .3s ease;
}

.hj-tag:hover {
  background: rgba(0, 0, 0, 0.55);
  border-color: var(--hj-gold);
  transform: scale(1.05);
}

/* Logo animation */
.hj-logo {
  transition: all .3s ease;
}

.hj-logo:hover {
  transform: scale(1.05);
  color: var(--hj-gold);
}

.hj-logo img {
  transition: transform .3s ease;
}

.hj-logo:hover img {
  transform: rotate(360deg);
}

/* Section backgrounds */
.hj-section {
  position: relative;
  overflow: hidden;
}

/* Dark section enhancements */
.hj-dark {
  position: relative;
  isolation: isolate;
}

.hj-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(199, 162, 90, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Footer enhancements */
.hj-footer {
  position: relative;
  overflow: hidden;
}

.hj-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199, 162, 90, 0.3), transparent);
}

/* Stagger animation delays for CSS animations */
.hj-fade-up:nth-child(1) {
  animation-delay: 0.1s;
}

.hj-fade-up:nth-child(2) {
  animation-delay: 0.2s;
}

.hj-fade-up:nth-child(3) {
  animation-delay: 0.3s;
}

.hj-fade-up:nth-child(4) {
  animation-delay: 0.4s;
}

.hj-fade-up:nth-child(5) {
  animation-delay: 0.5s;
}

.hj-fade-up:nth-child(6) {
  animation-delay: 0.6s;
}

/* Smooth transitions for all links */
a {
  transition: color .3s ease, opacity .3s ease;
}

a:hover {
  opacity: 0.85;
}

/* Portfolio pill enhancement */
.hj-portfolio-pill {
  transition: all .5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Services grid items hover */
.hj-services-grid>* {
  transition: transform .3s ease;
}

.hj-services-grid>*:hover {
  transform: translateY(-3px);
}

/* Price grid animation */
.hj-price-grid {
  perspective: 1000px;
}

/* KPI Grid enhancements */
.hj-kpi-grid>* {
  transition: all .3s ease;
}

.hj-kpi-grid>*:hover {
  transform: scale(1.05);
}

/* ========================================
   STEPS WIDGET STYLES
   ======================================== */
.hj-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .hj-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .hj-steps-grid {
    grid-template-columns: 1fr;
  }
}

.hj-step-card {
  background: #f9f7f4;
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  box-shadow: var(--hj-shadow);
  transition: all .4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.hj-step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--hj-gold);
}

.hj-step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--hj-gold);
  line-height: 1;
  margin-bottom: 16px;
}

.hj-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--hj-ink);
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.hj-step-desc {
  font-size: 14px;
  color: var(--hj-muted);
  line-height: 1.7;
  margin: 0;
}

.hj-step-connector {
  position: absolute;
  top: 50%;
  right: -12px;
  width: 24px;
  height: 2px;
  background: var(--hj-gold);
  transform: translateY(-50%);
  z-index: 1;
}

@media (max-width: 992px) {
  .hj-step-connector {
    display: none;
  }
}

/* ========================================
   CTA BOX WIDGET STYLES
   ======================================== */
.hj-cta-card {
  background: #f9f7f4;
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  box-shadow: var(--hj-shadow);
  transition: all .4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.hj-cta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.14);
  border-color: rgba(199, 162, 90, 0.2);
}

.hj-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 36px);
  color: var(--hj-ink);
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.hj-cta-text {
  font-size: 16px;
  color: var(--hj-muted);
  line-height: 1.7;
  margin: 0 auto 24px;
  max-width: 600px;
}

@media (max-width: 576px) {
  .hj-cta-card {
    padding: 32px 24px;
  }
}

/* ========================================
   CHOICE CARDS WIDGET STYLES
   ======================================== */
.hj-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .hj-choice-grid {
    grid-template-columns: 1fr;
  }
}

.hj-choice-card {
  background: #f9f7f4;
  border-radius: 18px;
  padding: 32px;
  box-shadow: var(--hj-shadow);
  transition: all .4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
}

.hj-choice-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.14);
  border-color: var(--hj-gold);
}

.hj-choice-icon {
  width: 64px;
  height: 64px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all .3s ease;
}

.hj-choice-icon svg {
  width: 32px;
  height: 32px;
  color: var(--hj-gold);
}

.hj-choice-card:hover .hj-choice-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(199, 162, 90, 0.25);
}

.hj-choice-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--hj-ink);
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.hj-choice-desc {
  font-size: 15px;
  color: var(--hj-muted);
  line-height: 1.7;
  margin: 0 0 20px 0;
}

.hj-choice-features {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.hj-choice-features li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--hj-ink);
}

.hj-choice-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--hj-gold);
  font-weight: 700;
}

/* ========================================
   FEATURE LIST WIDGET STYLES
   ======================================== */
.hj-feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hj-feature-split-reverse {
  direction: rtl;
}

.hj-feature-split-reverse>* {
  direction: ltr;
}

@media (max-width: 992px) {
  .hj-feature-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hj-feature-split-reverse {
    direction: ltr;
  }
}

.hj-feature-content {
  display: flex;
  flex-direction: column;
}

.hj-feature-subtitle {
  font-size: 16px;
  color: var(--hj-muted);
  line-height: 1.7;
  margin: 0 0 24px 0;
}

.hj-feature-image img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: var(--hj-shadow);
}

.hj-feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

.hj-feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.hj-feature-bullet {
  width: 10px;
  height: 10px;
  min-width: 10px;
  background: var(--hj-gold);
  border-radius: 50%;
  margin-top: 6px;
}

.hj-feature-item-content {
  flex: 1;
}

.hj-feature-item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--hj-ink);
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.hj-feature-item-desc {
  font-size: 14px;
  color: var(--hj-muted);
  line-height: 1.7;
  margin: 0;
}

/* ========================================
   SERVICE DETAIL WIDGET STYLES
   ======================================== */
.hj-service-detail-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hj-service-detail-reverse {
  direction: rtl;
}

.hj-service-detail-reverse>* {
  direction: ltr;
}

@media (max-width: 992px) {
  .hj-service-detail-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hj-service-detail-reverse {
    direction: ltr;
  }
}

.hj-service-detail-image {
  position: relative;
}

.hj-service-detail-image img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: var(--hj-shadow);
}

.hj-service-detail-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--hj-gold);
  color: var(--hj-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hj-service-detail-content {
  display: flex;
  flex-direction: column;
}

.hj-service-detail-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 36px);
  color: var(--hj-ink);
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.hj-service-detail-desc {
  font-size: 16px;
  color: var(--hj-muted);
  line-height: 1.8;
  margin: 0 0 24px 0;
}

.hj-service-detail-features {
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (max-width: 576px) {
  .hj-service-detail-features {
    grid-template-columns: 1fr;
  }
}

.hj-service-detail-features li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--hj-ink);
}

.hj-service-detail-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--hj-gold);
  font-weight: 700;
}

/* Hide default theme footer to prevent duplication */
#site-footer,
.site-footer {
  display: none !important;
}

/* ========================================
   13. PORTFOLIO VIDEO
   ======================================== */
.hj-portfolio-video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

/* Force hide default footer with higher specificity */
body .site-footer,
body #site-footer {
  display: none !important;
}

/* ========================================
   12. CUSTOM LIGHTBOX STYLES
   ======================================== */
.hj-lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.hj-lightbox-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.hj-lightbox-content {
  max-width: 90%;
  max-height: 90vh;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hj-lightbox-overlay.active .hj-lightbox-content {
  transform: scale(1);
}

.hj-lightbox-content img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 90vh;
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.hj-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  z-index: 100000;
  transition: transform 0.2s ease;
  line-height: 1;
  background: none;
  border: none;
  padding: 10px;
}

.hj-lightbox-close:hover {
  transform: rotate(90deg) scale(1.1);
  color: var(--hj-gold);
}