:root {
   --bg-ivory: #FAF8F4;
   --bg-cream: #F4EFE7;
   --primary-burgundy: #8A0F2D;
   --secondary-burgundy: #B0173C;
   --gold: #C89A4A;
   --soft-gold: #DDBB78;
   --charcoal: #2C2A29;
   --muted: #6F6967;
   --surface: #FFFFFF;
   --section-space: clamp(64px, 8vw, 112px);
   --section-space-tight: clamp(48px, 6vw, 80px);
}

html[data-theme='dark'] {
   color-scheme: dark;
   --bg-ivory: #101317;
   --bg-cream: #171c21;
   --primary-burgundy: #E19AAE;
   --secondary-burgundy: #F1B3C2;
   --gold: #D8AF69;
   --soft-gold: #EDC987;
   --charcoal: #F4EFE7;
   --muted: #C5BBB3;
   --surface: #1D232A;
}

* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

html {
   -webkit-text-size-adjust: 100%;
   text-size-adjust: 100%;
   scroll-behavior: smooth;
}

html, body {
   overflow-x: hidden;
}

body {
   font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
   line-height: 1.7;
   color: var(--charcoal);
   background: var(--bg-ivory);
}

.skip-link {
   position: absolute;
   left: 16px;
   top: -48px;
   z-index: 2000;
   padding: 10px 14px;
   border-radius: 999px;
   background: var(--primary-burgundy);
   color: #fff;
   text-decoration: none;
   font-weight: 700;
   transition: top 0.2s ease;
}

.skip-link:focus {
   top: 16px;
   outline: 3px solid var(--gold);
   outline-offset: 3px;
}

/* account for fixed header so pages don't sit under it */
.has-fixed-header {
   padding-top: 80px; /* space for fixed header */
}
body.page-transition {
   opacity: 0;
   transform: translateY(18px);
   transition: opacity 0.75s ease, transform 0.75s ease;
}

body.page-transition.loaded {
   opacity: 1;
   transform: none;
}

.container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
}

/* Header */
header {
   background: var(--bg-cream);
   color: var(--charcoal);
   padding: 1rem 0;
   position: fixed !important;
   left: 0;
   right: 0;
   width: 100%;
   top: 0;
   z-index: 1000;
   border-bottom: 1px solid rgba(200, 154, 74, 0.15);
   backdrop-filter: blur(12px);
}

nav {
   display: flex;
   justify-content: space-between;
   align-items: center;
   position: relative;
   gap: 20px;
}

.logo {
   display: flex;
   align-items: center;
   gap: 14px;
   font-size: 1.1rem;
   font-weight: 800;
   letter-spacing: 0.02em;
   text-transform: uppercase;
   color: var(--primary-burgundy);
}

.logo img {
   max-height: 42px;
   width: auto;
   display: block;
}

.logo span {
   color: var(--primary-burgundy);
   white-space: nowrap;
}

.nav-links {
   display: flex;
   list-style: none;
   gap: 30px;
   align-items: center;
}

.nav-links li {
   list-style: none;
}

.nav-links a {
   color: var(--charcoal);
   text-decoration: none;
   font-weight: 600;
   transition: color 0.3s ease;
}

.nav-item-has-children {
   position: relative;
}

.nav-parent-row {
   display: flex;
   align-items: center;
   gap: 8px;
}

.nav-submenu-toggle {
   display: none;
   border: none;
   background: transparent;
   color: var(--charcoal);
   width: 36px;
   height: 36px;
   border-radius: 10px;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-submenu-toggle:hover {
   background: rgba(138, 15, 45, 0.08);
   color: var(--secondary-burgundy);
}

.nav-submenu-toggle:focus-visible {
   outline: 2px solid rgba(138, 15, 45, 0.35);
   outline-offset: 3px;
}

.nav-submenu-toggle i {
   font-size: 0.85rem;
   transition: transform 0.25s ease;
}

.nav-item-has-children.submenu-open .nav-submenu-toggle i {
   transform: rotate(180deg);
}

.nav-submenu {
   display: none;
   list-style: none;
   margin: 0;
   padding: 0;
}

@media (min-width: 769px) {
   .nav-item-has-children .nav-submenu {
      position: absolute;
      top: calc(100% + 14px);
      left: 0;
      min-width: 220px;
      display: block;
      padding: 10px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.96);
      border: 1px solid rgba(200, 154, 74, 0.18);
      box-shadow: 0 22px 55px rgba(44, 42, 41, 0.12);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateY(10px);
      transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
      z-index: 1002;
   }

   .nav-item-has-children:hover .nav-submenu,
   .nav-item-has-children:focus-within .nav-submenu {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateY(0);
   }

   .nav-item-has-children .nav-submenu a {
      display: block;
      padding: 10px 14px;
      border-radius: 12px;
      white-space: nowrap;
   }

   .nav-item-has-children .nav-submenu a:hover,
   .nav-item-has-children .nav-submenu a:focus-visible {
      background: rgba(138, 15, 45, 0.06);
   }
}

@media (max-width: 1100px) {
   .logo {
      gap: 10px;
      font-size: 1rem;
   }

   .logo img {
      max-height: 38px;
   }

   .nav-links {
      gap: 20px;
   }
}

.nav-links a:hover {
   color: var(--secondary-burgundy);
}

.menu-toggle {
   display: none;
   background: none;
   border: none;
   color: var(--charcoal);
   font-size: 1.5rem;
   cursor: pointer;
   width: 48px;
   height: 48px;
   align-items: center;
   justify-content: center;
   border-radius: 999px;
   transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.menu-toggle:hover {
   background: rgba(138, 15, 45, 0.08);
}

.menu-toggle:focus-visible {
   outline: 2px solid rgba(138, 15, 45, 0.35);
   outline-offset: 3px;
}

.menu-toggle.is-active {
   background: rgba(138, 15, 45, 0.12);
   color: var(--primary-burgundy);
}

header.scrolled {
   box-shadow: 0 8px 32px rgba(44, 42, 41, 0.08);
   border-bottom-color: rgba(200, 154, 74, 0.28);
}

/* Hero Section */
.hero {
   position: relative;
   background: linear-gradient(180deg, rgba(250, 248, 244, 0.95), rgba(244, 239, 231, 0.98));
   background-size: cover;
   background-position: center center;
   min-height: 60vh;
   display: flex;
   align-items: center;
   margin-top: 70px;
   padding: 24px 0 30px;
   overflow: hidden;
}

.hero-full-image {
   display: flex;
   align-items: center;
   justify-content: flex-start;
   padding: 0;
   margin: 0;
   margin-top: -80px;
   min-height: 100svh;
   background: none;
   overflow: hidden;
   position: relative;
}

.hero-media {
   position: absolute;
   inset: 0;
   z-index: 0;
   top: -80px;
   height: calc(100% + 80px);
   overflow: hidden;
}

.hero-media img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center;
   display: block;
   animation: heroKenBurns 18s ease-out forwards;
}

@keyframes heroKenBurns {
   from { transform: scale(1); }
   to { transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
   .hero-media img {
      animation: none;
   }

   .hero-scroll-hint i {
      animation: none;
   }
}

.hero-overlay {
   position: absolute;
   inset: 0;
   z-index: 1;
   top: -80px;
   height: calc(100% + 80px);
   background: transparent;
}

.hero-overlay-content {
   position: relative;
   z-index: 2;
   width: 100%;
   padding: clamp(84px, 11vw, 132px) 20px clamp(72px, 9vw, 108px);
}

.hero-copy {
   max-width: 640px;
   width: 100%;
}

.hero-bridge {
   padding: var(--section-space-tight) 0;
   background: rgba(250, 248, 244, 0.94);
}

.hero-bridge-text {
   margin: 0 auto;
   color: var(--charcoal);
   font-family: 'Playfair Display', 'Cormorant Garamond', serif;
   font-size: clamp(1.45rem, 2.5vw, 2.2rem);
   line-height: 1.25;
   text-align: center;
   max-width: 760px;
   letter-spacing: 0.01em;
}

.home-difference {
   padding: var(--section-space-tight) 0 32px;
   background: rgba(250, 248, 244, 0.95);
}

.home-difference .section-header {
   margin-bottom: 42px;
}

.difference-grid {
   display: grid;
   grid-template-columns: repeat(3, minmax(0, 1fr));
   gap: 24px;
}

.difference-card {
   background: #fff;
   border: 1px solid rgba(138, 15, 45, 0.08);
   border-radius: 24px;
   padding: 32px;
   box-shadow: 0 24px 70px rgba(44, 42, 41, 0.06);
   min-height: 240px;
}

.difference-card-badge {
   display: inline-block;
   color: var(--soft-gold);
   text-transform: uppercase;
   letter-spacing: 0.16em;
   font-weight: 700;
   font-size: 0.74rem;
   margin-bottom: 16px;
}

.difference-card h3 {
   font-size: 1.3rem;
   line-height: 1.2;
   margin: 0 0 14px;
   color: var(--primary-burgundy);
}

.difference-card p {
   color: var(--charcoal);
   font-size: 1rem;
   line-height: 1.8;
   margin: 0;
}

@media (max-width: 900px) {
   .difference-grid {
      grid-template-columns: 1fr;
   }
}

.hero-full-image .hero-eyebrow {
   display: inline-block;
   font-size: 0.72rem;
   font-weight: 700;
   letter-spacing: 0.18em;
   text-transform: uppercase;
   color: var(--soft-gold);
   margin-bottom: 20px;
   padding: 10px 18px;
   border-radius: 999px;
   background: rgba(255, 255, 255, 0.1);
   border: 1px solid rgba(255, 255, 255, 0.22);
   backdrop-filter: blur(10px);
}

.hero-full-image .hero-copy h1 {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: clamp(2.8rem, 6vw, 4.8rem);
   font-weight: 700;
   line-height: 1.05;
   color: #fff;
   letter-spacing: -0.02em;
   margin-bottom: 22px;
}

.hero-full-image .hero-copy h1 em {
   font-style: italic;
   color: var(--soft-gold);
}

.hero-full-image .hero-copy p {
   font-size: clamp(1rem, 2vw, 1.15rem);
   max-width: 520px;
   color: rgba(255, 255, 255, 0.88);
   line-height: 1.85;
   margin-bottom: 36px;
}

.hero-contact-strip {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   margin-bottom: 28px;
}

.hero-contact-pill {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 12px 16px;
   border-radius: 999px;
   background: rgba(255, 255, 255, 0.12);
   border: 1px solid rgba(255, 255, 255, 0.22);
   backdrop-filter: blur(10px);
   color: #fff;
   text-decoration: none;
   font-weight: 500;
   line-height: 1.4;
   max-width: 100%;
}

.hero-contact-pill i {
   color: var(--soft-gold);
}

.hero-contact-pill:hover {
   background: rgba(255, 255, 255, 0.18);
}

.hero-contact-pill span {
   color: rgba(255, 255, 255, 0.94);
   overflow-wrap: anywhere;
}

.hero-full-image .hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
}

.hero-full-image .cta-button {
   animation: none;
   box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.hero-full-image .hero-btn-outline {
   border-color: rgba(255, 255, 255, 0.75);
   color: #fff;
   background: rgba(255, 255, 255, 0.08);
   backdrop-filter: blur(10px);
}

.hero-full-image .hero-btn-outline:hover {
   background: rgba(255, 255, 255, 0.95);
   color: var(--primary-burgundy);
   border-color: #fff;
}

.services-hero .hero-overlay {
   background: linear-gradient(180deg, rgba(44, 42, 41, 0.72) 0%, rgba(44, 42, 41, 0.42) 42%, rgba(44, 42, 41, 0.76) 100%);
}

.services-hero .hero-copy h1 {
   color: #fff;
}

.services-hero .hero-eyebrow {
   background: rgba(255, 255, 255, 0.08);
}

.services-hero .hero-full-image .cta-button-outline {
   border-color: rgba(255, 255, 255, 0.85);
}

.hero-scroll-hint {
   position: absolute;
   bottom: 28px;
   left: 50%;
   transform: translateX(-50%);
   z-index: 2;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 8px;
   color: rgba(255, 255, 255, 0.85);
   text-decoration: none;
   font-size: 0.72rem;
   font-weight: 700;
   letter-spacing: 0.14em;
   text-transform: uppercase;
   transition: color 0.3s ease, transform 0.3s ease;
}

.hero-scroll-hint i {
   font-size: 0.9rem;
   animation: heroBounce 2s ease-in-out infinite;
}

.hero-scroll-hint:hover {
   color: #fff;
   transform: translateX(-50%) translateY(3px);
}

@keyframes heroBounce {
   0%, 100% { transform: translateY(0); }
   50% { transform: translateY(6px); }
}

.home-page header {
   background: rgba(250, 248, 244, 0);
   border-bottom-color: transparent;
   backdrop-filter: blur(0);
   transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.home-page header .logo span,
.home-page header .nav-links a,
.home-page header .menu-toggle {
   color: #fff;
   transition: color 0.35s ease;
}

.home-page header .nav-links a:hover {
   color: var(--soft-gold);
}

.home-page header.scrolled {
   background: rgba(250, 248, 244, 0.96);
   border-bottom-color: rgba(200, 154, 74, 0.28);
   backdrop-filter: blur(12px);
}

.home-page header.scrolled .logo span,
.home-page header.scrolled .nav-links a,
.home-page header.scrolled .menu-toggle {
   color: var(--charcoal);
}

.home-page header.scrolled .nav-links a:hover {
   color: var(--secondary-burgundy);
}

.hero-shapes {
   position: absolute;
   inset: 0;
   pointer-events: none;
   overflow: hidden;
}

.hero-shape {
   position: absolute;
   border-radius: 50%;
   filter: blur(60px);
   opacity: 0.45;
}

.hero-shape-1 {
   width: 420px;
   height: 420px;
   background: rgba(138, 15, 45, 0.14);
   top: -80px;
   right: -60px;
}

.hero-shape-2 {
   width: 300px;
   height: 300px;
   background: rgba(200, 154, 74, 0.22);
   bottom: 10%;
   left: -80px;
}

.hero-shape-3 {
   width: 180px;
   height: 180px;
   background: rgba(176, 23, 60, 0.1);
   top: 40%;
   left: 45%;
}

.footer-inner {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 10px;
   align-items: start;
   margin: 0 auto 6px;
   max-width: 1100px;
}
.footer-section p {
   line-height: 1.35;
   font-size: 0.78rem;
   max-width: 34ch;
}
.footer-links { list-style: none; padding: 0; display: grid; gap: 6px; }
.footer-contact-item { display: flex; gap: 8px; align-items: center; margin-bottom: 6px; font-size: 0.82rem; }
.footer-bottom {
   border-top: 1px solid rgba(255,255,255,0.03);
   padding-top: 6px;
   display: flex;
   justify-content: space-between;
   gap: 8px;
   align-items: center;
}

.hero-text h1 {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: clamp(2.8rem, 5vw, 4.2rem);
   font-weight: 700;
   line-height: 1.08;
   color: var(--primary-burgundy);
   letter-spacing: -0.02em;
   margin-bottom: 22px;
}

.hero-text h1 em {
   font-style: italic;
   color: var(--gold);
}

.hero-text p {
   font-size: 1.15rem;
   max-width: 480px;
   color: var(--muted);
   line-height: 1.85;
   margin-bottom: 32px;
}

.hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
}

.hero-visual {
   position: relative;
   display: flex;
   justify-content: flex-end;
   align-items: center;
}

.hero-image-frame {
   background: var(--surface);
   border-radius: 24px;
   padding: 28px;
   box-shadow: 0 30px 80px rgba(44, 42, 41, 0.12);
   border: 1px solid rgba(200, 154, 74, 0.25);
   position: relative;
   max-width: 420px;
   width: 100%;
}

.hero-image-frame::before {
   content: '';
   position: absolute;
   inset: -3px;
   border-radius: 26px;
   background: linear-gradient(135deg, var(--primary-burgundy), var(--gold));
   z-index: -1;
   opacity: 0.35;
}

.hero-image-frame img {
   width: 100%;
   height: auto;
   display: block;
   border-radius: 12px;
   object-fit: cover;
   aspect-ratio: 4 / 3;
}

.hero-badge {
   position: absolute;
   bottom: -20px;
   left: -24px;
   background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--secondary-burgundy) 100%);
   color: var(--surface);
   padding: 18px 24px;
   border-radius: 16px;
   box-shadow: 0 16px 40px rgba(138, 15, 45, 0.28);
   text-align: center;
}

.hero-badge-number {
   display: block;
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: 2rem;
   font-weight: 700;
   line-height: 1;
}

.hero-badge-label {
   font-size: 0.75rem;
   font-weight: 600;
   letter-spacing: 0.06em;
   text-transform: uppercase;
   opacity: 0.9;
}

/* Marquee */
.marquee-strip {
   background: var(--primary-burgundy);
   padding: 18px 0;
   overflow: hidden;
   border-top: 1px solid rgba(200, 154, 74, 0.3);
   border-bottom: 1px solid rgba(200, 154, 74, 0.3);
}

.marquee-track {
   display: flex;
   align-items: center;
   gap: 40px;
   width: max-content;
   min-width: 100%;
   animation: marquee 28s linear infinite;
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: 1.35rem;
   font-weight: 600;
   color: var(--surface);
   letter-spacing: 0.04em;
   white-space: nowrap;
}

.marquee-track span:not(.marquee-dot) {
   white-space: nowrap;
}

.marquee-dot {
   color: var(--gold);
   font-size: 0.6rem;
   align-self: center;
}

@keyframes marquee {
   from { transform: translateX(0); }
   to { transform: translateX(-50%); }
}

.section-label {
   display: inline-block;
   font-size: 0.78rem;
   font-weight: 700;
   letter-spacing: 0.16em;
   text-transform: uppercase;
   color: var(--gold);
   margin-bottom: 12px;
}

.section-header h2 {
   font-family: 'Cormorant Garamond', Georgia, serif;
}

.cta-button-outline {
   display: inline-block;
   padding: 14px 30px;
   border: 2px solid var(--primary-burgundy);
   border-radius: 50px;
   color: var(--primary-burgundy);
   font-size: 1rem;
   font-weight: 700;
   text-decoration: none;
   transition: all 0.3s ease;
}

.cta-button-outline:hover {
   background: var(--primary-burgundy);
   color: var(--surface);
   transform: translateY(-2px);
   box-shadow: 0 12px 30px rgba(138, 15, 45, 0.2);
}

/* Scroll reveal */
.reveal {
   opacity: 0;
   transform: translateY(28px);
   transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
   opacity: 1;
   transform: translateY(0);
}

body.terms-page .reveal {
   opacity: 1;
   transform: none;
   transition: none;
}

.reveal-delay { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }

/* Process Section */
.process {
   padding: 100px 0;
   background: var(--bg-ivory);
   position: relative;
}

.process-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 32px;
}

.process-step {
   background: var(--surface);
   padding: 40px 32px;
   border-radius: 20px;
   border: 1px solid rgba(138, 15, 45, 0.1);
   box-shadow: 0 14px 40px rgba(44, 42, 41, 0.06);
   transition: transform 0.35s ease, box-shadow 0.35s ease;
   position: relative;
   overflow: hidden;
}

.process-step::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   height: 4px;
   background: linear-gradient(90deg, var(--primary-burgundy), var(--gold));
   transform: scaleX(0);
   transform-origin: left;
   transition: transform 0.4s ease;
}

.process-step:hover {
   transform: translateY(-6px);
   box-shadow: 0 22px 50px rgba(44, 42, 41, 0.1);
}

.process-step:hover::after {
   transform: scaleX(1);
}

.process-number {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: 3rem;
   font-weight: 700;
   line-height: 1;
   background: linear-gradient(135deg, var(--primary-burgundy), var(--gold));
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   margin-bottom: 16px;
}

.process-step h3 {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: 1.6rem;
   color: var(--charcoal);
   margin-bottom: 12px;
}

.process-step p {
   color: var(--muted);
   line-height: 1.85;
   font-size: 0.98rem;
}

/* Gallery Preview / Bento */
.gallery-preview {
   padding: 100px 0;
   background: var(--bg-cream);
}

.gallery-preview-header {
   display: flex;
   justify-content: space-between;
   align-items: flex-end;
   gap: 24px;
   margin-bottom: 48px;
   flex-wrap: wrap;
}

.gallery-preview-header h2 {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: 2.9rem;
   color: var(--primary-burgundy);
   letter-spacing: -0.03em;
   font-weight: 700;
   margin: 0;
}

.bento-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   grid-template-rows: repeat(2, 220px);
   gap: 16px;
}

.bento-item {
   position: relative;
   border-radius: 18px;
   overflow: hidden;
   display: block;
   text-decoration: none;
   box-shadow: 0 12px 36px rgba(44, 42, 41, 0.1);
   transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.bento-item:hover {
   transform: scale(1.02);
   box-shadow: 0 20px 50px rgba(44, 42, 41, 0.16);
}

.bento-item img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
   transition: transform 0.5s ease;
}

.bento-item:hover img {
   transform: scale(1.08);
}

.bento-overlay {
   position: absolute;
   inset: 0;
   background: linear-gradient(180deg, transparent 40%, rgba(44, 42, 41, 0.75));
   display: flex;
   align-items: flex-end;
   padding: 20px;
}

.bento-overlay span {
   color: var(--surface);
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: 1.3rem;
   font-weight: 600;
}

.bento-tall {
   grid-row: span 2;
   grid-column: 1;
}

.bento-wide {
   grid-column: span 2;
}

/* CTA Banner */
.cta-banner {
   padding: 80px 0 60px;
   background: linear-gradient(135deg, var(--primary-burgundy) 0%, #6a0b22 50%, var(--charcoal) 100%);
   position: relative;
   overflow: hidden;
   margin-bottom: 32px;
}

.cta-banner::before {
   content: '';
   position: absolute;
   top: -50%;
   right: -10%;
   width: 500px;
   height: 500px;
   background: radial-gradient(circle, rgba(200, 154, 74, 0.2) 0%, transparent 70%);
   pointer-events: none;
}

.cta-banner-inner {
   text-align: center;
   position: relative;
   z-index: 1;
}

.cta-banner h2 {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: clamp(2rem, 4vw, 3rem);
   color: var(--surface);
   margin-bottom: 16px;
   font-weight: 700;
}

.cta-banner h2 em {
   font-style: italic;
   color: var(--soft-gold);
}

.cta-banner p {
   color: rgba(255, 255, 255, 0.82);
   font-size: 1.1rem;
   max-width: 520px;
   margin: 0 auto 28px;
}

.cta-banner .cta-button {
   animation: none;
}

.hero-content {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 20px;
   text-align: center;
   max-width: 720px;
   margin: 0 auto;
   padding: 0 20px;
}

.hero-content h1 {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: clamp(2.2rem, 4vw, 3.2rem);
   margin-bottom: 0;
   color: var(--primary-burgundy);
   letter-spacing: -0.02em;
}

.hero-content p {
   font-size: 1.15rem;
   max-width: 560px;
   color: var(--muted);
}

.cta-button {
   background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--gold) 100%);
   color: var(--surface);
   padding: 15px 34px;
   border: none;
   border-radius: 50px;
   font-size: 1.1rem;
   font-weight: 700;
   cursor: pointer;
   text-decoration: none;
   display: inline-block;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   animation: fadeInUp 1s ease 0.6s both;
   box-shadow: 0 20px 45px rgba(138, 15, 45, 0.2);
}

.cta-button:hover {
   transform: translateY(-3px);
   box-shadow: 0 24px 50px rgba(138, 15, 45, 0.26);
}

/* Services Section */
.services {
   padding: 100px 0;
   background: var(--bg-cream);
}

.section-header {
   text-align: center;
   margin: 0 auto 55px;
   max-width: 760px;
}

.section-header h2 {
   font-size: 2.9rem;
   color: var(--primary-burgundy);
   margin-bottom: 18px;
   letter-spacing: -0.03em;
   font-weight: 800;
}

.section-header p {
   font-size: 1.05rem;
   color: var(--charcoal);
   max-width: 700px;
   margin: 0 auto;
   line-height: 1.8;
}

.services-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 28px;
}

@media (min-width: 900px) {
   .services-grid {
      grid-template-columns: repeat(2, 1fr);
   }

   .service-card-featured {
      grid-column: span 2;
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 28px;
      align-items: center;
      min-height: auto;
      padding: 32px;
   }

   .service-card-featured .service-thumb {
      height: 220px;
      margin: 0;
   }
}

.service-card {
   background: var(--bg-ivory);
   padding: 24px 20px;
   border-radius: 18px;
   text-align: left;
   box-shadow: 0 16px 36px rgba(44, 42, 41, 0.06);
   border: 1px solid rgba(138, 15, 45, 0.10);
   transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
   min-height: 260px;
   display: flex;
   flex-direction: column;
   justify-content: flex-start;
   overflow: hidden;
}

.service-thumb {
   width: 100%;
   height: 210px;
   object-fit: cover;
   border-radius: 10px;
   margin: 0 0 12px;
   display: block;
   box-shadow: 0 10px 26px rgba(44,42,41,0.06);
   transition: transform 0.36s ease, box-shadow 0.36s ease, filter 0.36s ease;
}

.service-card:hover {
   transform: translateY(-8px);
   border-color: rgba(138, 15, 45, 0.24);
   box-shadow: 0 26px 60px rgba(44, 42, 41, 0.12);
}

.service-icon {
   width: 64px;
   height: 64px;
   display: grid;
   place-items: center;
   border-radius: 50%;
   margin-bottom: 8px;
   color: var(--surface);
   background: linear-gradient(135deg, var(--secondary-burgundy) 0%, var(--gold) 100%);
   font-size: 1.4rem;
   box-shadow: 0 8px 22px rgba(44,42,41,0.06), inset 0 -6px 14px rgba(0,0,0,0.06);
   border: 1px solid rgba(243,236,226,0.06);
   transition: transform 0.32s ease, box-shadow 0.32s ease, background 0.32s ease, color 0.32s ease;
}

.service-card h3 {
   font-size: 1.2rem;
   margin-bottom: 8px;
   color: var(--charcoal);
}

.service-card p {
   color: var(--muted);
   line-height: 1.85;
   font-size: 1rem;
   margin-bottom: 0;
}

.service-card::after {
   content: '';
   display: block;
   width: 68px;
   height: 4px;
   margin-top: 26px;
   border-radius: 999px;
   background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--gold) 100%);
}

.service-icon i {
   display: block;
   line-height: 1;
}

.service-card:hover .service-icon {
   transform: translateY(-6px) scale(1.04);
   background: linear-gradient(135deg, var(--gold) 0%, var(--soft-gold) 100%);
   color: var(--charcoal);
   box-shadow: 0 18px 46px rgba(44,42,41,0.12), inset 0 -6px 18px rgba(0,0,0,0.04);
}

.service-card:hover .service-thumb {
   transform: translateY(-6px) scale(1.03);
   filter: brightness(0.98) saturate(1.03);
   box-shadow: 0 20px 50px rgba(44,42,41,0.12);
}

/* Portfolio Section */
.portfolio {
   padding: 80px 0;
   background: var(--bg-ivory);
}

.portfolio-filters {
   display: flex;
   justify-content: center;
   gap: 20px;
   margin-bottom: 50px;
   flex-wrap: wrap;
}

.filter-btn {
   background: transparent;
   border: 2px solid var(--primary-burgundy);
   color: var(--primary-burgundy);
   padding: 10px 20px;
   border-radius: 25px;
   cursor: pointer;
   transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
   background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--gold) 100%);
   color: var(--surface);
   border-color: transparent;
}

.portfolio-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 30px;
}

.portfolio-item {
   position: relative;
   border-radius: 16px;
   overflow: hidden;
   box-shadow: 0 18px 45px rgba(44, 42, 41, 0.1);
   transition: transform 0.3s ease;
}

.portfolio-item:hover {
   transform: translateY(-6px);
}

.portfolio-item img {
   width: 100%;
   height: 280px;
   object-fit: cover;
}

.portfolio-overlay {
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   background: linear-gradient(180deg, transparent 40%, rgba(44, 42, 41, 0.92));
   color: var(--surface);
   padding: 24px;
   transform: translateY(100%);
   transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
   transform: translateY(0);
}

.portfolio-overlay h3 {
   font-size: 1.25rem;
   margin-bottom: 8px;
}

.portfolio-overlay p {
   color: rgba(255,255,255,0.88);
}

/* Testimonials Section */
.testimonials {
   padding: 100px 0 100px;
   background: var(--bg-cream);
   position: relative;
   overflow: hidden;
}

.testimonials::before {
   content: '';
   position: absolute;
   top: -20%;
   right: 8%;
   width: 340px;
   height: 340px;
   background: radial-gradient(circle, rgba(200, 154, 74, 0.16) 0%, transparent 70%);
   border-radius: 50%;
   pointer-events: none;
}

/* Homepage Testimonials Grid (used on index.html CTA section) */
.testimonials .testimonials-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 24px;
   position: relative;
   z-index: 1;
}

.testimonials .testimonial-card {
   background: var(--bg-ivory);
   padding: 36px 32px;
   border-radius: 24px;
   box-shadow: 0 18px 45px rgba(44, 42, 41, 0.08);
   text-align: left;
   transition: transform 0.35s ease, box-shadow 0.35s ease;
   border: 1px solid rgba(138, 15, 45, 0.12);
}

.testimonials .testimonial-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 24px 55px rgba(44, 42, 41, 0.14);
}

.testimonials .testimonial-header {
   display: flex;
   align-items: center;
   gap: 18px;
   margin-bottom: 20px;
}

.testimonials .testimonial-avatar {
   width: 56px;
   height: 56px;
   border-radius: 50%;
   background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--gold) 100%);
   display: grid;
   place-items: center;
   color: var(--surface);
   font-weight: 700;
   font-size: 1.1rem;
}

.testimonials .testimonial-person h3 {
   font-size: 1.05rem;
   margin-bottom: 5px;
   color: var(--charcoal);
}

.testimonials .testimonial-person span {
   font-size: 0.95rem;
   color: var(--soft-gold);
}

.testimonials .testimonial-text {
   margin-bottom: 20px;
   color: var(--charcoal);
   line-height: 1.9;
   font-size: 1rem;
}

.testimonials .testimonial-footer {
   display: flex;
   justify-content: flex-start;
}

.testimonials .testimonial-rating {
   display: flex;
   gap: 6px;
}

.testimonials .testimonial-rating i {
   color: var(--gold);
   font-size: 1rem;
}

.testimonials .testimonial-card:hover .testimonial-rating i {
   transform: translateY(-1px);
}

/* Contact Section */
.contact {
   padding: 120px 0;
   background: var(--bg-ivory);
   position: relative;
}

.contact-cards-wrapper {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
   gap: 25px;
   margin-bottom: 80px;
}

.contact-card {
   background: var(--bg-cream);
   padding: 40px 30px;
   border-radius: 20px;
   text-align: center;
   border: 1px solid rgba(200, 154, 74, 0.18);
   box-shadow: 0 14px 30px rgba(44, 42, 41, 0.08);
   transition: all 0.4s ease;
}

.contact-card:hover {
   border-color: rgba(138, 15, 45, 0.18);
   box-shadow: 0 18px 34px rgba(44, 42, 41, 0.1);
   transform: translateY(-6px);
}

.contact-card-icon {
   width: 70px;
   height: 70px;
   background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--gold) 100%);
   border-radius: 18px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 20px;
   color: var(--surface);
   font-size: 1.8rem;
   transition: transform 0.3s ease;
}

.contact-card:hover .contact-card-icon {
   transform: scale(1.05) rotate(3deg);
}

.contact-card h4 {
   font-size: 1.3rem;
   color: var(--primary-burgundy);
   margin-bottom: 12px;
   font-weight: 700;
}

.contact-card p {
   color: var(--charcoal);
   line-height: 1.8;
   font-size: 0.97rem;
}

.contact-card a {
   color: var(--secondary-burgundy);
   text-decoration: none;
   font-weight: 600;
   transition: color 0.3s ease;
}

.contact-card a:hover {
   color: var(--gold);
}

.contact-form-wrapper {
   max-width: 700px;
   margin: 0 auto;
}

.booking-form {
   background: var(--bg-cream);
   padding: 50px;
   border-radius: 24px;
   border: 1px solid rgba(200, 154, 74, 0.18);
   box-shadow: 0 16px 45px rgba(44, 42, 41, 0.08);
}

.booking-form h3 {
   font-size: 1.8rem;
   color: var(--primary-burgundy);
   margin-bottom: 12px;
   font-weight: 700;
}

.form-subtitle {
   color: var(--charcoal);
   font-size: 0.95rem;
   margin-bottom: 30px;
}

.form-row {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 20px;
}

.form-group {
   margin-bottom: 24px;
}

.form-row:last-of-type .form-group {
   margin-bottom: 24px;
}

.form-group label {
   display: block;
   margin-bottom: 10px;
   font-weight: 600;
   color: var(--charcoal);
   font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
   padding: 14px 16px;
   border: 1.5px solid rgba(44, 42, 41, 0.12);
   border-radius: 12px;
   font-size: 0.95rem;
   background: #fff8f2;
   font-family: inherit;
   transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
   color: #a09173;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
   border-color: var(--primary-burgundy);
   background: white;
   box-shadow: 0 0 0 4px rgba(138, 15, 45, 0.12);
}

.form-group textarea {
   resize: vertical;
   min-height: 140px;
   font-family: inherit;
}

.submit-btn {
   background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--gold) 100%);
   color: var(--surface);
   padding: 16px 40px;
   border: none;
   border-radius: 12px;
   font-size: 1.05rem;
   font-weight: 700;
   cursor: pointer;
   width: 100%;
   transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
   box-shadow: 0 7px 25px rgba(138, 15, 45, 0.28);
}

.submit-btn:hover {
   transform: translateY(-2px);
   box-shadow: 0 10px 30px rgba(138, 15, 45, 0.34);
}

.submit-btn:active {
   transform: translateY(0);
}

.site-footer {
  background: linear-gradient(180deg, #2a2726 0%, #231f1e 100%);
  color: #f3ece2;
  padding: 10px 0 8px;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -26px;
  left: 0;
  right: 0;
  height: 26px;
  background: linear-gradient(90deg, rgba(200,154,74,0.12), rgba(138,15,45,0.06));
  filter: blur(6px);
  pointer-events: none;
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr;
  gap: clamp(18px, 2.4vw, 30px);
  margin: 0 auto;
  max-width: 1100px;
}

.footer-col h3 {
  color: var(--soft-gold);
  margin-bottom: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #f3ece2;
  text-decoration: none;
  margin-bottom: 6px;
}

.footer-tagline {
  margin: 0 0 12px;
  line-height: 1.5;
  font-size: 0.86rem;
  color: rgba(243, 236, 226, 0.86);
  max-width: 38ch;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.72rem;
  color: rgba(243, 236, 226, 0.86);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(243, 236, 226, 0.9);
  text-decoration: none;
  font-size: 0.86rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.site-footer .social-links {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.site-footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f3ece2;
  font-size: 0.95rem;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.site-footer .social-links a:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, rgba(138, 15, 45, 0.65), rgba(200, 154, 74, 0.55));
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 0.88rem;
  color: rgba(243, 236, 226, 0.92);
}

.footer-contact-item i {
  color: var(--gold);
  min-width: 20px;
  font-size: 0.95rem;
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(243, 236, 226, 0.92);
  text-decoration: none;
}

.footer-contact-item a:hover {
  color: var(--gold);
}

.footer-mini-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  margin-top: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f3ece2;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.footer-mini-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.footer-bottom {
  position: relative;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(243, 236, 226, 0.7);
  font-size: 0.75rem;
}

.footer-bottom-note {
  color: rgba(243, 236, 226, 0.56);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-bottom a {
  color: rgba(243, 236, 226, 0.76);
  text-decoration: none;
  font-size: 0.75rem;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--gold);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 8px 0 6px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .footer-col.footer-brand {
    grid-column: 1 / -1;
  }

  .footer-tagline,
  .footer-badges,
  .footer-mini-cta {
    display: none;
  }

  .site-footer .social-links {
    margin-top: 6px;
    gap: 8px;
  }

  .site-footer .social-links a {
    width: 32px;
    height: 32px;
    border-radius: 12px;
    font-size: 0.9rem;
  }

  .footer-links li {
    margin-bottom: 4px;
  }

  .footer-contact-item {
    margin-bottom: 6px;
    font-size: 0.86rem;
  }

  .footer-bottom {
    margin-top: 8px;
    padding-top: 8px;
    justify-content: center;
    text-align: center;
  }

  .footer-bottom-copy {
    align-items: center;
  }

  .footer-bottom-note {
    display: none;
  }

}

/* Animations */
@keyframes fadeInUp {
   from {
       opacity: 0;
       transform: translateY(30px);
   }
   to {
       opacity: 1;
       transform: translateY(0);
   }
}

@keyframes shimmer {
   0% {
       text-shadow: 0 0 0 transparent;
   }
   50% {
       text-shadow: 0 0 10px rgba(243, 156, 18, 0.4);
   }
   100% {
       text-shadow: 0 0 0 transparent;
   }
}

/* Responsive Design */
@media (max-width: 768px) {
   body.nav-open {
       overflow: hidden;
   }

   .has-fixed-header {
       padding-top: 74px;
   }

   header {
       padding: 0.8rem 0;
   }

   nav {
       gap: 12px;
   }

   .container {
       padding-left: 18px;
       padding-right: 18px;
   }

   .logo {
       gap: 10px;
       font-size: 0.96rem;
   }

   .logo img {
       max-height: 36px;
   }

   .menu-toggle {
       display: inline-flex;
   }

   .nav-links {
       display: none;
       position: absolute;
       top: 100%;
       left: 18px;
       right: 18px;
       background: rgba(250, 248, 244, 0.98);
       border: 1px solid rgba(200, 154, 74, 0.18);
       border-bottom: 1px solid rgba(200, 154, 74, 0.22);
       backdrop-filter: blur(12px);
       box-shadow: 0 18px 40px rgba(44, 42, 41, 0.12);
       flex-direction: column;
       gap: 6px;
       padding: 18px;
       border-radius: 20px;
       margin-top: 12px;
       z-index: 1001;
       max-height: calc(100vh - 110px);
       overflow-y: auto;
   }

   .nav-links a {
       color: var(--charcoal);
       display: block;
       padding: 12px 14px;
       border-radius: 12px;
   }

   .nav-links > li {
       width: 100%;
   }

   .nav-parent-row {
       align-items: center;
       gap: 10px;
   }

   .nav-parent-row > a {
       flex: 1;
   }

   .nav-submenu-toggle {
       display: inline-flex;
       flex-shrink: 0;
       margin-right: 4px;
   }

   .nav-submenu {
       padding: 8px 0 0 12px;
   }

   .nav-item-has-children.submenu-open .nav-submenu {
       display: block;
   }

   .nav-submenu a {
       font-size: 0.96rem;
       padding: 10px 14px;
       color: var(--muted);
   }

   .nav-item-has-children.submenu-open .nav-parent-row > a,
   .nav-item-has-children.submenu-open .nav-submenu-toggle {
       color: var(--primary-burgundy);
   }

   .nav-links a:hover {
       color: var(--secondary-burgundy);
       background: rgba(138, 15, 45, 0.06);
   }

   body.home-page header .nav-links a,
   body.contact-page header .nav-links a,
   body.testimonials-page-body header .nav-links a,
   body.gallery-page-body header .nav-links a,
   body.services-page-body header .nav-links a,
   body.decor-page-body header .nav-links a,
   body.rentals-page-body header .nav-links a,
   body.about-page header .nav-links a,
   body.terms-page header .nav-links a {
       color: var(--charcoal);
   }

   body.home-page header .nav-links a:hover,
   body.contact-page header .nav-links a:hover,
   body.testimonials-page-body header .nav-links a:hover,
   body.gallery-page-body header .nav-links a:hover,
   body.services-page-body header .nav-links a:hover,
   body.decor-page-body header .nav-links a:hover,
   body.rentals-page-body header .nav-links a:hover,
   body.about-page header .nav-links a:hover,
   body.terms-page header .nav-links a:hover {
       color: var(--secondary-burgundy);
   }

   .nav-links.active {
       display: flex;
   }

   body.testimonials-page-body header {
      background: rgba(26, 8, 16, 0.18);
      border-bottom-color: rgba(255, 255, 255, 0.14);
      color: #fff;
   }

   body.testimonials-page-body header .menu-toggle,
   body.testimonials-page-body header .menu-toggle i,
   body.testimonials-page-body header .menu-toggle svg,
   body.testimonials-page-body header .menu-toggle.is-active,
   body.testimonials-page-body header .menu-toggle.is-active i,
   body.testimonials-page-body header .menu-toggle.is-active svg {
      background: none;
      border: none;
      color: #fff !important;
      fill: #fff !important;
   }

   body.testimonials-page-body header .menu-toggle:hover,
   body.testimonials-page-body header .menu-toggle:focus-visible {
      background: rgba(255, 255, 255, 0.08);
      color: #fff !important;
   }

   body.testimonials-page-body header .menu-toggle i,
   body.testimonials-page-body header .menu-toggle svg {
      color: #fff !important;
      fill: #fff !important;
   }

   body.testimonials-page-body header .nav-links {
      background: rgba(250, 248, 244, 0.98);
      border-color: rgba(200, 154, 74, 0.18);
   }

   body.testimonials-page-body header .nav-links a {
      color: var(--charcoal);
   }

   body.testimonials-page-body header .nav-links a:hover {
      background: rgba(138, 15, 45, 0.06);
      color: var(--secondary-burgundy);
   }

   body.testimonials-page-body header .nav-submenu a {
      color: rgba(255, 255, 255, 0.85);
   }

   body.testimonials-page-body header .nav-submenu a:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.1);
   }

   body.nav-open header,
   body.testimonials-page-body header.scrolled {
      background: rgba(250, 248, 244, 0.96);
      border-bottom-color: rgba(200, 154, 74, 0.28);
   }

   body.testimonials-page-body header.scrolled .menu-toggle,
   body.testimonials-page-body header.scrolled .menu-toggle i,
   body.testimonials-page-body header.scrolled .menu-toggle svg,
   body.testimonials-page-body header.scrolled .menu-toggle.is-active,
   body.testimonials-page-body header.scrolled .menu-toggle.is-active i,
   body.testimonials-page-body header.scrolled .menu-toggle.is-active svg {
      color: var(--charcoal) !important;
      fill: var(--charcoal) !important;
   }

   body.testimonials-page-body.nav-open header .menu-toggle,
   body.testimonials-page-body.nav-open header .menu-toggle.is-active,
   body.testimonials-page-body.nav-open header .menu-toggle i,
   body.testimonials-page-body.nav-open header .menu-toggle svg,
   body.testimonials-page-body.nav-open header .menu-toggle.is-active i,
   body.testimonials-page-body.nav-open header .menu-toggle.is-active svg {
      color: #fff !important;
      fill: #fff !important;
      stroke: #fff !important;
   }

      .hero-inner {
         grid-template-columns: 1fr;
         gap: 36px;
         text-align: left;
      }

      .hero-text {
         text-align: left;
      }

      .hero-text p {
         margin-left: 0;
         margin-right: 0;
      }

      .hero-actions {
         justify-content: flex-start;
      }

   .hero-overlay-content {
      padding: 96px 18px 72px;
   }

   .hero-copy,
   .gallery-hero-copy,
   .about-hero-copy,
   .contact-hero-inner,
   .terms-hero-copy {
      max-width: 100%;
   }

   .hero-contact-strip {
      flex-direction: column;
      align-items: stretch;
   }

   .hero-contact-pill {
      width: 100%;
      justify-content: flex-start;
   }

   .hero-full-image .hero-overlay {
      background: linear-gradient(180deg, rgba(44, 42, 41, 0.78) 0%, rgba(44, 42, 41, 0.5) 45%, rgba(44, 42, 41, 0.82) 100%);
   }

   .hero-full-image .hero-actions {
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
   }

   .hero-full-image .hero-actions a {
      width: 100%;
      max-width: 100%;
      text-align: center;
   }

   .hero-scroll-hint {
      bottom: 18px;
   }

   .hero-badge {
       left: auto;
       right: -8px;
       bottom: -16px;
   }

   .process-grid {
       grid-template-columns: 1fr;
   }

   .bento-grid {
       grid-template-columns: 1fr 1fr;
       grid-template-rows: auto;
   }

   .bento-tall {
       grid-row: span 1;
       grid-column: span 2;
       height: 260px;
   }

   .bento-wide {
       grid-column: span 2;
       height: 200px;
   }

   .bento-item:not(.bento-tall):not(.bento-wide) {
       height: 180px;
   }

   .gallery-preview-header {
       flex-direction: column;
       align-items: flex-start;
   }

   .hero-text h1 {
       font-size: 2.15rem;
       line-height: 1.12;
   }

   .hero-content h1 {
       font-size: 2rem;
       line-height: 1.12;
   }

   .hero-content p {
       font-size: 1rem;
   }

   .hero-bridge-text,
   .section-header p,
   .difference-card p,
   .process-chapter-card p,
   .editorial-caption,
   .gallery-mini-caption,
   .cta-invite-inner p {
       font-size: 0.96rem;
       line-height: 1.7;
   }

   .form-row {
       grid-template-columns: 1fr;
   }

   .booking-form {
       padding: 28px 20px;
   }

   .contact-cards-wrapper {
       grid-template-columns: 1fr;
   }

   .portfolio-filters {
       gap: 10px;
   }

   .filter-btn {
       padding: 8px 16px;
       font-size: 0.9rem;
   }

   .hero-scroll-hint {
       left: 50%;
       transform: translateX(-50%);
   }

   .gallery-preview,
   .home-difference,
   .process,
   .cta-banner,
   .gallery-mini {
       padding-top: 56px;
       padding-bottom: 56px;
   }
}

/* WhatsApp CTA & FAB */
.whatsapp-cta {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   background: #25D366;
   color: white;
   padding: 14px 28px;
   border-radius: 12px;
   font-weight: 700;
   text-decoration: none;
   box-shadow: 0 10px 30px rgba(37,211,102,0.18);
   transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.whatsapp-cta:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(37,211,102,0.22); }

.whatsapp-fab {
   position: fixed;
   right: 28px;
   bottom: 28px;
  width: 70px;
  height: 70px;
   border-radius: 999px;
   background: linear-gradient(180deg, #25D366, #1DA851);
   color: white;
   display: inline-grid;
   place-items: center;
   z-index: 9999;
  box-shadow: 0 28px 70px rgba(37,211,102,0.2), 0 10px 24px rgba(0,0,0,0.14);
   text-decoration: none;
   transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.whatsapp-fab:hover { transform: translateY(-6px) scale(1.03); box-shadow: 0 40px 100px rgba(37,211,102,0.26), 0 14px 34px rgba(0,0,0,0.16); }
.whatsapp-fab i { font-size: 2.1rem; }

.whatsapp-fab::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.22), transparent 70%);
  filter: blur(6px);
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 640px) {
  .whatsapp-fab {
    right: max(18px, env(safe-area-inset-right, 0px));
    bottom: max(18px, env(safe-area-inset-bottom, 0px));
    width: 60px;
    height: 60px;
  }

  .whatsapp-fab i {
    font-size: 1.8rem;
  }
}

/* ensure fab is visible above footer on short pages */
.whatsapp-fab.offset-bottom {
   bottom: 110px; /* used if footer overlaps */
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
}

.gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 42, 41, 0.85);
    backdrop-filter: blur(4px);
}

.gallery-modal .modal-content {
    position: relative;
    z-index: 3001;
    background: transparent;
    border-radius: 0;
    max-width: 100%;
    width: 100%;
    max-height: 100%;
    height: 100%;
    overflow: hidden;
    padding: 0;
    box-shadow: none;
    animation: slideUp 0.32s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal .modal-close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 2.2rem;
    color: white;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    transition: color 0.2s ease;
    z-index: 3002;
}

.gallery-modal .modal-close:hover {
    color: #ddd;
}

.gallery-modal .modal-header {
    display: none;
    margin-bottom: 30px;
}

.gallery-modal .modal-header h2 {
    font-size: 2rem;
    color: var(--primary-burgundy);
    margin-bottom: 8px;
}

.gallery-modal .modal-header p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.6;
}

.gallery-modal .modal-body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    height: 100%;
}

.gallery-modal .modal-main-image {
    border-radius: 0;
    overflow: hidden;
    background: black;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal .modal-main-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.gallery-modal .modal-thumbnails {
    display: none;
    gap: 12px;
    flex-wrap: wrap;
}

.gallery-modal .modal-thumb {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    cursor: pointer;
    overflow: hidden;
    border: 3px solid transparent;
    transition: all 0.24s ease;
    opacity: 0.7;
}

.gallery-modal .modal-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-modal .modal-thumb:hover,
.gallery-modal .modal-thumb.active {
    opacity: 1;
    border-color: var(--primary-burgundy);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .gallery-modal .modal-content {
        padding: 24px;
        max-width: 95%;
    }
    
    .gallery-modal .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .gallery-modal .modal-thumb {
        width: 80px;
        height: 80px;
    }
}

/* Testimonials page - carousel layout */
.testimonials-page {
   padding: 80px 0 100px;
   background: radial-gradient(circle at top center, rgba(255,255,255,0.95), rgba(244,239,231,0.98));
}
.testimonials-page .section-header {
   display: grid;
   gap: 18px;
   max-width: 680px;
   margin: 0 auto 48px;
   text-align: center;
}
.testimonials-page .lead {
   color: var(--charcoal);
   max-width: 620px;
   margin: 0 auto;
   line-height: 1.9;
}

.testimonials-grid {
   display: flex;
   justify-content: center;
   width: 100%;
   gap: 28px;
}

.testimonial-carousel {
   width: min(860px, 100%);
   margin: 0 auto;
}

.carousel-stage {
   width: 100%;
}

.testimonial-panel {
   background: rgba(255,255,255,0.9);
   border: 1px solid rgba(138,15,45,0.08);
   backdrop-filter: blur(18px);
   border-radius: 32px;
   padding: 42px 32px;
   box-shadow: 0 30px 80px rgba(44,42,41,0.08);
}
.testimonial-panel h3 {
   font-size: 2rem;
   margin: 22px 0 16px;
   line-height: 1.1;
   color: var(--primary-burgundy);
}
.testimonial-panel p {
   color: var(--charcoal);
   line-height: 1.85;
   font-size: 1.02rem;
}
.testimonial-stats {
   display: grid;
   grid-template-columns: repeat(3, minmax(0, 1fr));
   gap: 16px;
   margin: 28px 0 20px;
}
.testimonial-stats div {
   background: rgba(249,244,238,0.92);
   border-radius: 18px;
   padding: 18px 16px;
   text-align: center;
}
.testimonial-stats strong {
   display: block;
   font-size: 1.75rem;
   color: var(--primary-burgundy);
}
.testimonial-stats span {
   display: block;
   margin-top: 8px;
   color: var(--soft-gold);
   font-size: 0.92rem;
   letter-spacing: 0.02em;
}
.testimonial-note {
   margin-top: 24px;
   border-left: 4px solid var(--gold);
   padding-left: 18px;
}
.testimonial-note p {
   margin: 0;
   color: var(--charcoal);
   font-style: italic;
}

.testimonial-carousel {
   position: relative;
   min-height: 520px;
   padding: 36px 0 0;
}
.carousel-stage {
   position: relative;
   height: 470px;
   display: grid;
   place-items: center;
}
.carousel-card {
   position: absolute;
   top: 0;
   left: 50%;
   width: min(420px, 100%);
   padding: 34px;
   box-sizing: border-box;
   background: rgba(255,255,255,0.96);
   border: 1px solid rgba(138,15,45,0.12);
   border-radius: 32px;
   box-shadow: 0 32px 90px rgba(44,42,41,0.14);
   transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.75s ease, filter 0.75s ease;
   transform-origin: center center;
   opacity: 0;
   z-index: 1;
}
.carousel-card.active {
   transform: translateX(-50%) scale(1);
   opacity: 1;
   z-index: 3;
}
.carousel-card.prev {
   transform: translateX(-145%) scale(0.82) rotate(-8deg);
   opacity: 0.48;
   z-index: 2;
}
.carousel-card.next {
   transform: translateX(45%) scale(0.82) rotate(8deg);
   opacity: 0.48;
   z-index: 2;
}
.carousel-card .carousel-gradient {
   position: absolute;
   inset: 0;
   background: radial-gradient(circle at top right, rgba(255,206,134,0.28), transparent 38%), radial-gradient(circle at bottom left, rgba(138,15,45,0.14), transparent 28%);
   pointer-events: none;
   filter: blur(6px);
}
.carousel-card .testimonial-meta,
.carousel-card .testimonial-footer {
   position: relative;
   z-index: 2;
}
.carousel-card .testimonial-text {
   position: relative;
   z-index: 2;
}
.testimonial-panel {
   background: rgba(255,255,255,0.95);
   border: 1px solid rgba(138,15,45,0.08);
   border-radius: 36px;
   padding: 44px 36px;
   box-shadow: 0 36px 100px rgba(44,42,41,0.08);
   position: relative;
   overflow: hidden;
}
.testimonial-panel::before {
   content: '';
   position: absolute;
   right: -40px;
   top: -40px;
   width: 180px;
   height: 180px;
   border-radius: 50%;
   background: rgba(255,217,165,0.25);
}
.testimonial-panel::after {
   content: '';
   position: absolute;
   left: -30px;
   bottom: -30px;
   width: 120px;
   height: 120px;
   border-radius: 50%;
   border: 1px dashed rgba(138,15,45,0.15);
}
.carousel-controls {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 22px;
   margin-top: 28px;
}
.carousel-controls button {
   width: 52px;
   height: 52px;
   border: none;
   border-radius: 50%;
   background: rgba(255,255,255,0.92);
   color: var(--primary-burgundy);
   font-size: 1.8rem;
   box-shadow: 0 18px 36px rgba(44,42,41,0.11);
   cursor: pointer;
   transition: transform 0.2s ease, background 0.2s ease;
}
.carousel-controls button:hover {
   transform: scale(1.05);
   background: white;
}
.carousel-dots {
   display:flex;
   gap: 10px;
   justify-content: center;
   flex: 1;
}
.carousel-dots button {
   border: none;
   width: 14px;
   height: 14px;
   border-radius: 50%;
   background: rgba(44,42,41,0.16);
   cursor: pointer;
   transition: transform 0.2s ease, background 0.2s ease;
}
.carousel-dots button.active {
   background: var(--primary-burgundy);
   transform: scale(1.2);
}

@media (max-width: 1024px) {
   .testimonials-grid {
       grid-template-columns: 1fr;
   }
   .testimonial-panel {
       padding: 34px 28px;
   }
   .testimonial-carousel {
       min-height: 560px;
   }
}

@media (max-width: 768px) {
   .testimonials-page { padding: 60px 0 72px; }
   .testimonial-panel, .carousel-card {
       border-radius: 24px;
   }
   .carousel-stage {
       height: auto;
   }
   .carousel-card {
       position: static;
       transform: none !important;
       opacity: 1 !important;
       width: 100%;
       max-width: 100%;
       margin-bottom: 20px;
       box-shadow: 0 24px 70px rgba(44,42,41,0.12);
   }
   .carousel-controls {
       flex-direction: column;
       gap: 14px;
   }
}

/* Force hero left alignment for desktop to preserve original layout */
@media (min-width: 769px) {
   .hero-inner {
      display: grid;
      grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
      gap: 60px;
      align-items: center;
      justify-items: start;
      text-align: left;
   }
   .hero-text {
      text-align: left;
      max-width: 620px;
   }
   .hero-actions {
      justify-content: flex-start;
   }
   .hero-visual {
      justify-self: end;
      width: 100%;
   }
}

/* ═══════════════════════════════════════════
   Premium Index Sections (What We Do → CTA)
   ═══════════════════════════════════════════ */

.marquee-luxe {
   padding: 0;
   background: var(--charcoal);
   border-color: rgba(200, 154, 74, 0.35);
}

.marquee-row {
   overflow: hidden;
   padding: 14px 0;
}

.marquee-row-top {
   border-bottom: 1px solid rgba(200, 154, 74, 0.2);
}

.marquee-row-bottom .marquee-track {
   color: rgba(255, 255, 255, 0.35);
   font-style: italic;
}

.marquee-track-reverse {
   animation-direction: reverse;
   animation-duration: 34s;
}

/* Services Premium */
.services-premium {
   padding: var(--section-space) 0 var(--section-space-tight);
   background: var(--bg-ivory);
   position: relative;
   overflow: hidden;
}

.services-premium::before {
   content: '';
   position: absolute;
   inset: 0;
   background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
   pointer-events: none;
   opacity: 0.6;
}

.services-premium-intro {
   display: grid;
   grid-template-columns: 1.1fr 1fr;
   gap: clamp(28px, 4vw, 48px);
   align-items: end;
   margin-bottom: 56px;
   position: relative;
   z-index: 1;
}

.services-premium-intro h2 {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: clamp(2.4rem, 4.5vw, 3.6rem);
   font-weight: 700;
   color: var(--primary-burgundy);
   letter-spacing: -0.03em;
   line-height: 1.08;
   margin: 0;
}

.services-premium-intro h2 em {
   font-style: italic;
   color: var(--gold);
}

.services-premium-intro-aside p {
   font-size: 1.05rem;
   line-height: 1.9;
   color: var(--muted);
   margin-bottom: 28px;
}

.services-premium-stats {
   display: flex;
   gap: clamp(18px, 3vw, 40px);
   flex-wrap: wrap;
   padding-top: 24px;
   border-top: 1px solid rgba(200, 154, 74, 0.35);
}

.premium-stat-value {
   display: block;
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: 2.4rem;
   font-weight: 700;
   color: var(--primary-burgundy);
   line-height: 1;
   margin-bottom: 6px;
}

.premium-stat-label {
   font-size: 0.72rem;
   font-weight: 700;
   letter-spacing: 0.14em;
   text-transform: uppercase;
   color: var(--gold);
}

.services-grid-premium {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: clamp(18px, 2.6vw, 28px);
   position: relative;
   z-index: 1;
   margin-top: 8px;
}

.service-panel {
   position: relative;
   height: auto;
   border-radius: 0;
   overflow: visible;
   box-shadow: none;
   background: transparent;
   transition: none;
}

.service-panel-featured {
   grid-column: span 2;
   height: auto;
}

.service-panel img {
   position: relative;
   inset: auto;
   width: auto;
   max-width: 100%;
   height: auto;
   max-height: none;
   object-fit: contain;
   object-position: center;
   background: transparent;
   display: block;
   margin: 0 auto;
   transition: none;
}

.service-panel-shade {
   position: absolute;
   inset: 0;
   background: linear-gradient(180deg, rgba(44, 42, 41, 0.05) 0%, rgba(44, 42, 41, 0.25) 40%, rgba(44, 42, 41, 0.92) 100%);
   transition: opacity 0.4s ease;
}

.service-panel-body {
   position: absolute;
   inset: auto 0 0 0;
   padding: 32px 28px;
   color: #fff;
   transform: translateY(0);
}

.service-panel-index {
   display: block;
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: 1.1rem;
   font-weight: 600;
   letter-spacing: 0.2em;
   color: var(--soft-gold);
   margin-bottom: 10px;
}

.service-panel h3 {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: 1.75rem;
   font-weight: 700;
   margin-bottom: 10px;
   line-height: 1.15;
}

.service-panel p {
   font-size: 0.92rem;
   line-height: 1.75;
   color: rgba(255, 255, 255, 0.82);
   max-height: none;
   opacity: 1;
   margin-top: 4px;
}

.service-panel-tag {
   display: inline-block;
   margin-top: 14px;
   padding: 6px 14px;
   border-radius: 999px;
   font-size: 0.68rem;
   font-weight: 700;
   letter-spacing: 0.12em;
   text-transform: uppercase;
   background: rgba(200, 154, 74, 0.25);
   border: 1px solid rgba(200, 154, 74, 0.5);
   color: var(--soft-gold);
}

.service-panel:hover {
   transform: none;
   box-shadow: none;
}

.service-panel:hover img {
   transform: none;
}

/* Process Premium */
.process-premium {
   padding: var(--section-space) 0 var(--section-space-tight);
   margin-top: 0;
   background: linear-gradient(165deg, #1a0810 0%, var(--charcoal) 45%, #2a1520 100%);
   position: relative;
   overflow: hidden;
}

.process-premium-glow {
   position: absolute;
   top: -20%;
   left: 50%;
   transform: translateX(-50%);
  width: min(720px, 88vw);
  height: min(440px, 54vw);
   background: radial-gradient(ellipse, rgba(138, 15, 45, 0.35) 0%, transparent 70%);
   pointer-events: none;
}

.section-header-light h2 {
   font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
   color: #fff;
   font-weight: 700;
   letter-spacing: -0.03em;
   margin-bottom: 16px;
}

.section-header-light h2 em {
   font-style: italic;
   color: var(--soft-gold);
}

.section-header-light p {
   color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.75;
}

.process-journey {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
  gap: 24px;
   position: relative;
  margin-top: 44px;
}

.process-journey-line {
   position: absolute;
   top: 28px;
   left: 12%;
   right: 12%;
   height: 1px;
   background: linear-gradient(90deg, transparent, var(--gold), var(--soft-gold), var(--gold), transparent);
   opacity: 0.5;
}

.process-chapter {
   position: relative;
   text-align: center;
}

.process-chapter-marker {
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
   display: grid;
   place-items: center;
   border-radius: 50%;
   font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
   font-weight: 700;
   color: var(--soft-gold);
   background: rgba(200, 154, 74, 0.12);
   border: 1px solid rgba(200, 154, 74, 0.45);
   position: relative;
   z-index: 1;
   transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.process-chapter-card {
   background: rgba(255, 255, 255, 0.04);
   border: 1px solid rgba(255, 255, 255, 0.08);
   backdrop-filter: blur(16px);
   border-radius: 24px;
  padding: 28px 22px;
   transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.process-chapter-icon {
  font-size: 1.25rem;
   color: var(--gold);
  margin-bottom: 14px;
   display: block;
}

.process-chapter-card h3 {
   font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
   color: #fff;
   margin-bottom: 12px;
   font-weight: 700;
}

.process-chapter-card p {
   color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.75;
   margin: 0;
}

.process-chapter:hover .process-chapter-marker {
   transform: scale(1.1);
   box-shadow: 0 0 30px rgba(200, 154, 74, 0.35);
}

.process-chapter:hover .process-chapter-card {
   transform: translateY(-8px);
   border-color: rgba(200, 154, 74, 0.35);
   background: rgba(255, 255, 255, 0.07);
}

/* Gallery Editorial */
.gallery-editorial {
   padding: var(--section-space) 0;
   background: var(--bg-cream);
}

.gallery-editorial-header {
   display: flex;
   justify-content: space-between;
   align-items: flex-end;
   gap: 32px;
   margin-bottom: 56px;
   flex-wrap: wrap;
}

.gallery-editorial-header h2 {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: clamp(2.2rem, 4vw, 3.2rem);
   color: var(--primary-burgundy);
   font-weight: 700;
   letter-spacing: -0.03em;
   margin: 0 0 12px;
}

.gallery-editorial-header h2 em {
   font-style: italic;
   color: var(--gold);
}

.gallery-editorial-header p {
   color: var(--muted);
   font-size: 1.02rem;
   line-height: 1.85;
   max-width: 480px;
   margin: 0;
}

.gallery-editorial-cta {
   flex-shrink: 0;
}

.editorial-grid {
   display: grid;
   grid-template-columns: repeat(12, 1fr);
   grid-template-rows: auto auto;
   gap: 24px;
}

.editorial-piece {
   text-decoration: none;
   display: block;
}

.editorial-piece-hero {
   grid-column: span 5;
   grid-row: span 2;
}

.editorial-piece:nth-child(2) {
   grid-column: span 3;
}

.editorial-piece:nth-child(3) {
   grid-column: span 4;
}

.editorial-piece-wide {
   grid-column: span 7;
}

.editorial-frame {
   position: relative;
   border-radius: 4px;
   overflow: hidden;
   padding: 8px;
   background: var(--surface);
   box-shadow: 0 20px 50px rgba(44, 42, 41, 0.1);
   transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.editorial-frame::before {
   content: '';
   position: absolute;
   inset: 8px;
   border: 1px solid rgba(200, 154, 74, 0.4);
   pointer-events: none;
   z-index: 2;
   transition: border-color 0.35s ease;
}

.editorial-frame img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
   transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.editorial-frame-full {
   background:
      linear-gradient(145deg, rgba(138, 15, 45, 0.06), rgba(200, 154, 74, 0.12)),
      #fff;
}

.editorial-frame-full img {
   object-fit: contain;
   padding: 14px;
   background: transparent;
}

.editorial-piece-hero .editorial-frame {
   height: 520px;
}

.editorial-piece:nth-child(2) .editorial-frame,
.editorial-piece:nth-child(3) .editorial-frame {
   height: 240px;
}

.editorial-piece-wide .editorial-frame {
   height: 256px;
}

.editorial-caption {
   display: flex;
   flex-direction: column;
   gap: 4px;
   padding: 16px 4px 0;
}

.editorial-category {
   font-size: 0.68rem;
   font-weight: 700;
   letter-spacing: 0.16em;
   text-transform: uppercase;
   color: var(--gold);
}

.editorial-title {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: 1.35rem;
   font-weight: 600;
   color: var(--charcoal);
   transition: color 0.3s ease;
}

.editorial-piece:hover .editorial-frame {
   transform: translateY(-6px);
   box-shadow: 0 32px 70px rgba(44, 42, 41, 0.16);
}

.editorial-piece:hover .editorial-frame::before {
   border-color: var(--primary-burgundy);
}

.editorial-piece:hover img {
   transform: scale(1.06);
}

.editorial-piece:hover .editorial-title {
   color: var(--primary-burgundy);
}

.signature-moments-grid {
   grid-template-columns: repeat(2, minmax(0, 1fr));
   grid-template-rows: none;
   align-items: start;
   gap: 36px 28px;
}

.signature-moments-grid .editorial-piece,
.signature-moments-grid .editorial-piece-hero,
.signature-moments-grid .editorial-piece-wide,
.signature-moments-grid .editorial-piece:nth-child(2),
.signature-moments-grid .editorial-piece:nth-child(3) {
   grid-column: auto;
   grid-row: auto;
}

.signature-moments-grid .editorial-frame,
.signature-moments-grid .editorial-piece-hero .editorial-frame,
.signature-moments-grid .editorial-piece:nth-child(2) .editorial-frame,
.signature-moments-grid .editorial-piece:nth-child(3) .editorial-frame,
.signature-moments-grid .editorial-piece-wide .editorial-frame {
   height: auto;
   padding: 0;
   background: transparent;
   box-shadow: none;
   overflow: visible;
}

.signature-moments-grid .editorial-frame::before {
   display: none;
}

.signature-moments-grid .editorial-frame img,
.signature-moments-grid .editorial-frame-full img {
   width: 100%;
   height: auto;
   object-fit: contain;
   padding: 0;
   border-radius: 18px;
   background: transparent;
   box-shadow: 0 20px 50px rgba(44, 42, 41, 0.1);
}

.signature-moments-grid .editorial-piece:hover .editorial-frame {
   transform: none;
   box-shadow: none;
}

.signature-moments-grid .editorial-piece:hover img {
   transform: none;
}

@media (max-width: 900px) {
   .signature-moments-grid {
      grid-template-columns: 1fr;
   }
}

.gallery-mini {
   padding: var(--section-space-tight) 0;
   background: #fff;
}

.gallery-mini .section-header {
   margin-bottom: 36px;
   text-align: center;
}

.gallery-mini-grid {
   display: grid;
   grid-template-columns: repeat(2, minmax(0, 1fr));
   gap: 24px;
}

.gallery-mini-piece {
   display: block;
   text-decoration: none;
   border-radius: 24px;
   overflow: hidden;
   border: 1px solid rgba(138, 15, 45, 0.08);
   box-shadow: 0 18px 50px rgba(44, 42, 41, 0.08);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   background: #fff;
}

.gallery-mini-piece:hover {
   transform: translateY(-4px);
   box-shadow: 0 30px 70px rgba(44, 42, 41, 0.12);
}

.gallery-mini-image {
   overflow: hidden;
   min-height: 320px;
}

.gallery-mini-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.45s ease;
   display: block;
}

.gallery-mini-image-full {
   min-height: 340px;
   background:
      linear-gradient(145deg, rgba(138, 15, 45, 0.05), rgba(200, 154, 74, 0.12)),
      #fff;
   display: flex;
   align-items: center;
   justify-content: center;
}

.gallery-mini-image-full img {
   object-fit: contain;
   padding: 16px;
}

.gallery-mini-piece:hover .gallery-mini-image img {
   transform: scale(1.04);
}

.gallery-mini-caption {
   padding: 20px 22px 28px;
}

.gallery-mini-caption span {
   font-size: 1rem;
   font-weight: 600;
   color: var(--charcoal);
   letter-spacing: 0.01em;
}

@media (max-width: 900px) {
   .gallery-mini-grid {
      grid-template-columns: 1fr;
   }
}

/* CTA Invite */
.cta-invite {
   padding: var(--section-space) 0;
   background: var(--bg-ivory);
   margin-bottom: 0;
}

.cta-invite::before {
   display: none;
}

.cta-invite-card {
   position: relative;
   max-width: 820px;
   margin: 0 auto;
   padding: 64px 56px;
   background: linear-gradient(145deg, var(--primary-burgundy) 0%, #5c0a1f 50%, var(--charcoal) 100%);
   border-radius: 4px;
   text-align: center;
   box-shadow: 0 40px 100px rgba(138, 15, 45, 0.25);
   overflow: hidden;
}

.cta-invite-card::after {
   content: '';
   position: absolute;
   inset: 0;
   background: radial-gradient(circle at 80% 20%, rgba(200, 154, 74, 0.18) 0%, transparent 50%);
   pointer-events: none;
}

.cta-invite-corner {
   position: absolute;
   width: 48px;
   height: 48px;
   border-color: var(--gold);
   border-style: solid;
   opacity: 0.7;
}

.cta-invite-corner-tl { top: 20px; left: 20px; border-width: 2px 0 0 2px; }
.cta-invite-corner-tr { top: 20px; right: 20px; border-width: 2px 2px 0 0; }
.cta-invite-corner-bl { bottom: 20px; left: 20px; border-width: 0 0 2px 2px; }
.cta-invite-corner-br { bottom: 20px; right: 20px; border-width: 0 2px 2px 0; }

.cta-invite-inner {
   position: relative;
   z-index: 1;
}

.cta-invite-inner .section-label {
   color: var(--soft-gold);
   margin-bottom: 16px;
}

.cta-invite-inner h2 {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: clamp(2rem, 4vw, 2.8rem);
   color: #fff;
   font-weight: 700;
   margin-bottom: 16px;
   letter-spacing: -0.02em;
}

.cta-invite-inner h2 em {
   font-style: italic;
   color: var(--soft-gold);
}

.cta-invite-inner p {
   color: rgba(255, 255, 255, 0.82);
   font-size: 1.05rem;
   line-height: 1.85;
   max-width: 520px;
   margin: 0 auto 32px;
}

.cta-invite-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
   justify-content: center;
}

.cta-invite-outline {
   border-color: rgba(255, 255, 255, 0.6);
   color: #fff;
   background: transparent;
}

.cta-invite-outline:hover {
   background: #fff;
   color: var(--primary-burgundy);
   border-color: #fff;
}

@media (max-width: 1024px) {
   .services-premium-intro {
      grid-template-columns: 1fr;
      gap: 28px;
   }

   .editorial-grid {
      grid-template-columns: 1fr 1fr;
   }

   .editorial-piece-hero,
   .editorial-piece:nth-child(2),
   .editorial-piece:nth-child(3),
   .editorial-piece-wide {
      grid-column: span 1;
      grid-row: auto;
   }

   .editorial-piece-hero .editorial-frame {
      height: 380px;
   }
}

@media (max-width: 768px) {
   .services-premium,
   .process-premium,
   .gallery-editorial {
      padding: 80px 0;
   }

   .process-premium {
      padding: 108px 0 80px;
   }

   .services-grid-premium {
      grid-template-columns: 1fr;
   }

   .service-panel,
   .service-panel-featured {
      grid-column: span 1;
      height: 380px;
   }

   .services-premium-stats {
      gap: 24px;
   }

   .process-journey {
      grid-template-columns: 1fr;
      gap: 24px;
      margin-top: 40px;
   }

   .process-journey-line {
      display: none;
   }

   .gallery-editorial-header {
      flex-direction: column;
      align-items: flex-start;
   }

   .editorial-grid {
      grid-template-columns: 1fr;
   }

   .editorial-piece-hero .editorial-frame,
   .editorial-piece:nth-child(2) .editorial-frame,
   .editorial-piece:nth-child(3) .editorial-frame,
   .editorial-piece-wide .editorial-frame {
      height: 280px;
   }

   .cta-invite-card {
      padding: 48px 28px;
   }

   .cta-invite-actions {
      flex-direction: column;
      align-items: center;
   }

   .cta-invite-actions a {
      width: 100%;
      max-width: 280px;
      text-align: center;
   }
}

@media (prefers-reduced-motion: reduce) {
   .hero-media img {
      animation: none;
   }

   .hero-scroll-hint i {
      animation: none;
   }
}

/* ═══════════════════════════════════════════
   Contact Page — Premium Hero & Layout
   ═══════════════════════════════════════════ */

.contact-page header {
   background: rgba(250, 248, 244, 0);
   border-bottom-color: transparent;
   backdrop-filter: blur(0);
   transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.contact-page header .logo span,
.contact-page header .nav-links a,
.contact-page header .menu-toggle {
   color: #fff;
   transition: color 0.35s ease;
}

.contact-page header .nav-links a:hover {
   color: var(--soft-gold);
}

.contact-page header.scrolled {
   background: rgba(250, 248, 244, 0.96);
   border-bottom-color: rgba(200, 154, 74, 0.28);
   backdrop-filter: blur(12px);
}

.contact-page header.scrolled .logo span,
.contact-page header.scrolled .nav-links a,
.contact-page header.scrolled .menu-toggle {
   color: var(--charcoal);
}

.contact-page header.scrolled .nav-links a:hover {
   color: var(--secondary-burgundy);
}

.contact-hero {
   position: relative;
   min-height: 92vh;
   margin-top: -80px;
   display: flex;
   flex-direction: column;
   justify-content: flex-end;
   overflow: hidden;
   background: var(--charcoal);
}

.contact-hero-media {
   position: absolute;
   inset: 0;
   z-index: 0;
}

.contact-hero-media img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center;
   animation: contactHeroZoom 20s ease-out forwards;
}

@keyframes contactHeroZoom {
   from { transform: scale(1); }
   to { transform: scale(1.07); }
}

.contact-hero-glow {
   position: absolute;
   inset: 0;
   z-index: 1;
   background:
      linear-gradient(180deg, rgba(26, 8, 16, 0.5) 0%, rgba(26, 8, 16, 0.35) 35%, rgba(26, 8, 16, 0.92) 100%),
      linear-gradient(90deg, rgba(26, 8, 16, 0.85) 0%, rgba(26, 8, 16, 0.4) 55%, transparent 100%);
   pointer-events: none;
}

.contact-hero-watermark {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-40%, -55%);
   z-index: 1;
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: clamp(8rem, 22vw, 16rem);
   font-weight: 700;
   font-style: italic;
   color: rgba(255, 255, 255, 0.04);
   letter-spacing: -0.04em;
   pointer-events: none;
   user-select: none;
   white-space: nowrap;
}

.contact-hero-layout {
   position: relative;
   z-index: 2;
   display: grid;
   grid-template-columns: 1fr auto;
   gap: 48px;
   align-items: end;
   width: 100%;
   padding: 140px 20px 100px;
}

.contact-hero-inner {
   max-width: 560px;
}

.contact-hero-eyebrow {
   display: inline-block;
   font-size: 0.72rem;
   font-weight: 700;
   letter-spacing: 0.18em;
   text-transform: uppercase;
   color: var(--soft-gold);
   margin-bottom: 20px;
   padding: 10px 18px;
   border-radius: 999px;
   background: rgba(255, 255, 255, 0.08);
   border: 1px solid rgba(255, 255, 255, 0.18);
   backdrop-filter: blur(10px);
}

.contact-hero-inner h1 {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: clamp(2.6rem, 5.5vw, 4.4rem);
   font-weight: 700;
   line-height: 1.06;
   color: #fff;
   letter-spacing: -0.02em;
   margin-bottom: 22px;
}

.contact-hero-inner h1 em {
   font-style: italic;
   color: var(--soft-gold);
}

.contact-hero-inner > p {
   font-size: clamp(1rem, 2vw, 1.12rem);
   line-height: 1.9;
   color: rgba(255, 255, 255, 0.85);
   margin-bottom: 32px;
}

.contact-hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
   margin-bottom: 32px;
}

.contact-hero-actions .cta-button {
   animation: none;
   display: inline-flex;
   align-items: center;
   gap: 10px;
   box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.contact-hero-outline {
   border-color: rgba(255, 255, 255, 0.7);
   color: #fff;
   background: rgba(255, 255, 255, 0.06);
   backdrop-filter: blur(10px);
}

.contact-hero-outline:hover {
   background: #fff;
   color: var(--primary-burgundy);
   border-color: #fff;
}

.contact-hero-pills {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
}

.contact-hero-pills span {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 8px 14px;
   border-radius: 999px;
   font-size: 0.75rem;
   font-weight: 600;
   letter-spacing: 0.04em;
   color: rgba(255, 255, 255, 0.88);
   background: rgba(255, 255, 255, 0.07);
   border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-hero-pills i {
   color: var(--soft-gold);
   font-size: 0.7rem;
}

.contact-hero-float {
   position: relative;
   right: auto;
   bottom: auto;
   z-index: 2;
   align-self: end;
}

.contact-hero-float-card {
   position: relative;
   width: 240px;
   padding: 32px 28px;
   background: rgba(255, 255, 255, 0.1);
   border: 1px solid rgba(255, 255, 255, 0.22);
   backdrop-filter: blur(20px);
   border-radius: 20px;
   box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.contact-float-corner {
   position: absolute;
   width: 28px;
   height: 28px;
   border-color: var(--gold);
   border-style: solid;
   opacity: 0.75;
}

.contact-float-corner-tl {
   top: 12px;
   left: 12px;
   border-width: 2px 0 0 2px;
}

.contact-float-corner-br {
   bottom: 12px;
   right: 12px;
   border-width: 0 2px 2px 0;
}

.contact-hero-steps {
   position: relative;
   z-index: 2;
   width: 100%;
   padding: 20px 0 28px;
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   background: rgba(26, 8, 16, 0.5);
   backdrop-filter: blur(12px);
}

.contact-hero-steps-inner {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 24px;
   flex-wrap: wrap;
}

.contact-step {
   display: flex;
   align-items: center;
   gap: 10px;
   font-size: 0.82rem;
   font-weight: 600;
   letter-spacing: 0.08em;
   text-transform: uppercase;
   color: rgba(255, 255, 255, 0.85);
}

.contact-step span {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: 1.1rem;
   font-weight: 700;
   color: var(--soft-gold);
}

.contact-step-line {
   width: 40px;
   height: 1px;
   background: linear-gradient(90deg, var(--gold), transparent);
   opacity: 0.6;
}

.contact-float-label {
   display: block;
   font-size: 0.68rem;
   font-weight: 700;
   letter-spacing: 0.16em;
   text-transform: uppercase;
   color: var(--soft-gold);
   margin-bottom: 12px;
}

.contact-float-title {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: 1.65rem;
   font-weight: 600;
   color: #fff;
   line-height: 1.25;
   margin: 0 0 16px;
}

.contact-float-title em {
   font-style: italic;
   color: var(--soft-gold);
}

.contact-float-divider {
   height: 1px;
   background: linear-gradient(90deg, var(--gold), transparent);
   margin-bottom: 14px;
}

.contact-float-note {
   font-size: 0.78rem;
   color: rgba(255, 255, 255, 0.65);
   letter-spacing: 0.04em;
}

.contact-hero-scroll {
   position: absolute;
   bottom: 100px;
   left: 50%;
   transform: translateX(-50%);
   z-index: 3;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 8px;
   color: rgba(255, 255, 255, 0.8);
   text-decoration: none;
   font-size: 0.72rem;
   font-weight: 700;
   letter-spacing: 0.14em;
   text-transform: uppercase;
   transition: color 0.3s ease, transform 0.3s ease;
}

.contact-hero-scroll i {
   animation: heroBounce 2s ease-in-out infinite;
}

.contact-hero-scroll:hover {
   color: #fff;
   transform: translateX(-50%) translateY(3px);
}

.contact-premium {
   padding: var(--section-space) 0;
   background: var(--bg-ivory);
   position: relative;
}

.contact-premium::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 1px;
   background: linear-gradient(90deg, transparent, rgba(200, 154, 74, 0.4), transparent);
}

.contact-premium-header {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: clamp(24px, 4vw, 40px);
   align-items: end;
   margin-bottom: 56px;
}

.contact-premium-header h2 {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: clamp(2.2rem, 4vw, 3rem);
   color: var(--primary-burgundy);
   font-weight: 700;
   letter-spacing: -0.03em;
   margin: 0;
}

.contact-premium-header h2 em {
   font-style: italic;
   color: var(--gold);
}

.contact-premium-header p {
   color: var(--muted);
   font-size: 1.05rem;
   line-height: 1.85;
   margin: 0;
   max-width: 480px;
   justify-self: end;
}

.contact-premium-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: clamp(18px, 2.6vw, 28px);
   margin-bottom: 48px;
}

.contact-premium-card {
   display: block;
   text-decoration: none;
   background: var(--surface);
   padding: 36px 32px;
   border-radius: 20px;
   border: 1px solid rgba(200, 154, 74, 0.2);
   box-shadow: 0 16px 40px rgba(44, 42, 41, 0.06);
   transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
   position: relative;
   overflow: hidden;
}

.contact-premium-card::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 3px;
   background: linear-gradient(90deg, var(--primary-burgundy), var(--gold));
   transform: scaleX(0);
   transform-origin: left;
   transition: transform 0.4s ease;
}

.contact-premium-card:hover {
   transform: translateY(-6px);
   box-shadow: 0 28px 60px rgba(44, 42, 41, 0.12);
   border-color: rgba(138, 15, 45, 0.2);
}

.contact-premium-card:hover::before {
   transform: scaleX(1);
}

.contact-premium-card-static {
   cursor: default;
}

.contact-premium-card-static:hover {
   transform: none;
   box-shadow: 0 16px 40px rgba(44, 42, 41, 0.06);
}

.contact-premium-icon {
   width: 52px;
   height: 52px;
   display: grid;
   place-items: center;
   border-radius: 14px;
   background: linear-gradient(135deg, var(--primary-burgundy), var(--gold));
   color: #fff;
   font-size: 1.2rem;
   margin-bottom: 20px;
   box-shadow: 0 10px 24px rgba(138, 15, 45, 0.2);
   transition: transform 0.35s ease;
}

.contact-premium-card:hover .contact-premium-icon {
   transform: scale(1.06) rotate(-3deg);
}

.contact-premium-card h3 {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: 1.5rem;
   font-weight: 700;
   color: var(--charcoal);
   margin-bottom: 10px;
}

.contact-premium-card p {
   color: var(--muted);
   font-size: 0.95rem;
   line-height: 1.8;
   margin-bottom: 16px;
}

.contact-premium-link {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   font-size: 0.82rem;
   font-weight: 700;
   letter-spacing: 0.06em;
   text-transform: uppercase;
   color: var(--primary-burgundy);
   transition: gap 0.3s ease, color 0.3s ease;
}

.contact-premium-card:hover .contact-premium-link {
   gap: 12px;
   color: var(--gold);
}

.contact-premium-banner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: clamp(24px, 3vw, 32px);
   flex-wrap: wrap;
   padding: clamp(32px, 5vw, 52px);
   border-radius: 24px;
   background: linear-gradient(135deg, var(--primary-burgundy) 0%, #5c0a1f 55%, var(--charcoal) 100%);
   box-shadow: 0 32px 80px rgba(138, 15, 45, 0.22);
   position: relative;
   overflow: hidden;
}

.contact-premium-banner::before {
   content: '';
   position: absolute;
   top: -40%;
   right: -5%;
   width: 400px;
   height: 400px;
   background: radial-gradient(circle, rgba(200, 154, 74, 0.2) 0%, transparent 65%);
   pointer-events: none;
}

.contact-premium-banner-copy {
   position: relative;
   z-index: 1;
}

.contact-premium-banner-copy .section-label {
   color: var(--soft-gold);
   margin-bottom: 10px;
}

.contact-premium-banner-copy h3 {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: clamp(1.5rem, 3vw, 2rem);
   color: #fff;
   font-weight: 700;
   margin-bottom: 8px;
}

.contact-premium-banner-copy p {
   color: rgba(255, 255, 255, 0.78);
   font-size: 0.98rem;
   margin: 0;
}

.contact-wa-btn {
   position: relative;
   z-index: 1;
   animation: none;
   display: inline-flex;
   align-items: center;
   gap: 10px;
   flex-shrink: 0;
   background: #25D366;
   box-shadow: 0 16px 40px rgba(37, 211, 102, 0.3);
}

.contact-wa-btn:hover {
   box-shadow: 0 20px 48px rgba(37, 211, 102, 0.4);
}

@media (max-width: 1024px) {
   .contact-hero-layout {
      grid-template-columns: 1fr;
      gap: 32px;
      padding-bottom: 88px;
   }

   .contact-hero-float {
      justify-self: start;
   }

   .contact-hero-float-card {
      width: 100%;
      max-width: 320px;
   }

   .contact-hero-watermark {
      font-size: clamp(5rem, 18vw, 10rem);
   }
}

@media (max-width: 768px) {
   .contact-hero {
      min-height: auto;
   }

   .contact-hero-media {
      position: absolute;
      inset: 0;
   }

   .contact-hero-glow {
      background:
         linear-gradient(180deg, rgba(26, 8, 16, 0.4) 0%, rgba(26, 8, 16, 0.95) 70%);
   }

   .contact-hero-layout {
      grid-template-columns: 1fr;
      padding: 120px 20px 24px;
      min-height: 88vh;
      align-content: end;
   }

   .contact-hero-watermark {
      display: none;
   }

   .contact-hero-float-card {
      width: 100%;
      max-width: none;
   }

   .contact-hero-steps {
      padding: 16px 0 20px;
   }

   .contact-step-line {
      display: none;
   }

   .contact-hero-scroll {
      display: none;
   }

   .contact-hero-actions {
      flex-direction: column;
   }

   .contact-hero-actions a {
      text-align: center;
      justify-content: center;
   }

   .contact-premium-header {
      grid-template-columns: 1fr;
      gap: 16px;
   }

   .contact-premium-header p {
      justify-self: start;
   }

   .contact-premium-grid {
      grid-template-columns: 1fr;
   }

   .contact-premium-banner {
      flex-direction: column;
      align-items: flex-start;
      padding: 36px 28px;
   }

   .contact-wa-btn {
      width: 100%;
      justify-content: center;
   }

   .contact-premium {
      padding: 72px 0 96px;
   }
}

@media (prefers-reduced-motion: reduce) {
   .contact-hero-media img {
      animation: none;
   }

   .contact-hero-scroll i {
      animation: none;
   }
}

/* ═══════════════════════════════════════════
   Testimonials Page — Premium & Authentic
   ═══════════════════════════════════════════ */

.testimonials-page-body header {
   background: rgba(250, 248, 244, 0);
   border-bottom-color: transparent;
   backdrop-filter: blur(0);
   transition: background 0.35s ease, border-color 0.35s ease;
}

.testimonials-page-body header .logo span,
.testimonials-page-body header .nav-links a,
.testimonials-page-body header .menu-toggle,
.testimonials-page-body header .menu-toggle i {
   color: #fff;
}

.testimonials-page-body header .nav-links a:hover {
   color: var(--soft-gold);
}

.testimonials-page-body header.scrolled {
   background: rgba(250, 248, 244, 0.96);
   border-bottom-color: rgba(200, 154, 74, 0.28);
   backdrop-filter: blur(12px);
}

.testimonials-page-body header.scrolled .logo span,
.testimonials-page-body header.scrolled .nav-links a,
.testimonials-page-body header.scrolled .menu-toggle,
.testimonials-page-body header.scrolled .menu-toggle i {
   color: var(--charcoal);
}

body.testimonials-page-body .gallery-hero {
   align-items: flex-end;
   min-height: 92svh;
}

body.testimonials-page-body .gallery-hero-content {
   display: grid;
   grid-template-columns: 1fr;
   align-items: end;
   justify-items: center;
   max-width: 760px;
   margin: 0 auto;
   padding: clamp(122px, 12vw, 150px) 20px clamp(72px, 9vw, 96px);
}

body.testimonials-page-body .gallery-hero-shell {
   display: block;
   width: 100%;
}

body.testimonials-page-body .gallery-hero-copy {
   max-width: 620px;
   width: 100%;
   margin: 0 auto;
   text-align: center;
}

body.testimonials-page-body .gallery-hero-stats {
   justify-content: center;
}

body.testimonials-page-body .gallery-hero-scroll {
   bottom: 28px;
}

.testimonials-hero {
   position: relative;
   min-height: 72svh;
   margin-top: -80px;
   display: flex;
   align-items: flex-end;
   overflow: hidden;
   background: var(--charcoal);
}

.testimonials-hero-media {
   position: absolute;
   inset: 0;
}

.testimonials-hero-media img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center;
   animation: contactHeroZoom 22s ease-out forwards;
}

.testimonials-hero-overlay {
   position: absolute;
   inset: 0;
   background:
      linear-gradient(180deg, rgba(44, 42, 41, 0.55) 0%, rgba(26, 8, 16, 0.88) 55%, rgba(26, 8, 16, 0.96) 100%);
}

.testimonials-hero-content {
   position: relative;
   z-index: 2;
   width: 100%;
   padding: clamp(118px, 12vw, 142px) 20px clamp(68px, 8vw, 88px);
}

.testimonials-hero-copy {
   max-width: 640px;
}

.testimonials-hero-eyebrow {
   display: inline-block;
   font-size: 0.72rem;
   font-weight: 700;
   letter-spacing: 0.18em;
   text-transform: uppercase;
   color: var(--soft-gold);
   margin-bottom: 18px;
   padding: 10px 18px;
   border-radius: 999px;
   background: rgba(255, 255, 255, 0.08);
   border: 1px solid rgba(255, 255, 255, 0.18);
}

.testimonials-hero-copy h1 {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: clamp(2.4rem, 5vw, 4rem);
   font-weight: 700;
   color: #fff;
   line-height: 1.08;
   letter-spacing: -0.02em;
   margin-bottom: 18px;
}

.testimonials-hero-copy h1 em {
   font-style: italic;
   color: var(--soft-gold);
}

.testimonials-hero-copy > p {
   font-size: 1.05rem;
   line-height: 1.85;
   color: rgba(255, 255, 255, 0.82);
   margin-bottom: 24px;
}

.testimonials-hero-rating {
   display: inline-flex;
   align-items: center;
   gap: 14px;
   padding: 12px 20px;
   border-radius: 999px;
   background: rgba(255, 255, 255, 0.08);
   border: 1px solid rgba(255, 255, 255, 0.14);
   font-size: 0.88rem;
   color: rgba(255, 255, 255, 0.85);
}

.testimonials-hero-rating strong {
   color: #fff;
   font-size: 1.1rem;
}

.testimonials-stars {
   display: flex;
   gap: 3px;
   color: var(--soft-gold);
   font-size: 0.85rem;
}

.testimonials-hero-scroll {
   position: absolute;
   bottom: 24px;
   left: 50%;
   transform: translateX(-50%);
   z-index: 2;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 8px;
   color: rgba(255, 255, 255, 0.75);
   text-decoration: none;
   font-size: 0.72rem;
   font-weight: 700;
   letter-spacing: 0.14em;
   text-transform: uppercase;
}

.testimonials-hero-scroll i {
   animation: heroBounce 2s ease-in-out infinite;
}

.testimonials-premium {
   padding: var(--section-space-tight) 0 var(--section-space);
   background: var(--bg-ivory);
}

.testimonials-stats-bar {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 20px;
   margin-bottom: 56px;
   padding: 32px 36px;
   background: var(--surface);
   border-radius: 20px;
   border: 1px solid rgba(200, 154, 74, 0.22);
   box-shadow: 0 20px 50px rgba(44, 42, 41, 0.07);
}

.testimonials-stat {
   text-align: center;
   padding: 0 12px;
   border-right: 1px solid rgba(200, 154, 74, 0.2);
}

.testimonials-stat:last-child {
   border-right: none;
}

.testimonials-stat-value {
   display: block;
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: 2.2rem;
   font-weight: 700;
   color: var(--primary-burgundy);
   line-height: 1;
   margin-bottom: 8px;
}

.testimonials-stat-label {
   font-size: 0.72rem;
   font-weight: 700;
   letter-spacing: 0.12em;
   text-transform: uppercase;
   color: var(--gold);
}

.testimonials-featured {
   display: grid;
   grid-template-columns: 1fr 1.1fr;
   gap: 0;
   margin-bottom: 72px;
   border-radius: 24px;
   overflow: hidden;
   background: var(--surface);
   border: 1px solid rgba(200, 154, 74, 0.22);
   box-shadow: 0 28px 70px rgba(44, 42, 41, 0.1);
}

.testimonials-featured-visual {
   position: relative;
   min-height: 360px;
}

.testimonials-featured-visual img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
}

.testimonials-featured-badge {
   position: absolute;
   top: 20px;
   left: 20px;
   padding: 8px 16px;
   border-radius: 999px;
   font-size: 0.68rem;
   font-weight: 700;
   letter-spacing: 0.12em;
   text-transform: uppercase;
   color: #fff;
   background: var(--primary-burgundy);
   box-shadow: 0 8px 24px rgba(138, 15, 45, 0.3);
}

.testimonials-featured-body {
   padding: 44px 40px;
   display: flex;
   flex-direction: column;
   justify-content: center;
}

.review-meta {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   gap: 12px;
   margin-bottom: 20px;
}

.review-event-tag {
   display: inline-block;
   padding: 6px 14px;
   border-radius: 999px;
   font-size: 0.68rem;
   font-weight: 700;
   letter-spacing: 0.1em;
   text-transform: uppercase;
   color: var(--primary-burgundy);
   background: rgba(138, 15, 45, 0.08);
   border: 1px solid rgba(138, 15, 45, 0.15);
}

.review-event-tag-sm {
   margin-left: auto;
   flex-shrink: 0;
}

.review-date {
   font-size: 0.82rem;
   color: var(--muted);
}

.testimonials-featured blockquote {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: clamp(1.25rem, 2.5vw, 1.55rem);
   font-style: italic;
   font-weight: 500;
   line-height: 1.65;
   color: var(--charcoal);
   margin: 0 0 28px;
   padding: 0;
   border: none;
}

.testimonials-featured blockquote::before {
   content: "\201C";
   color: var(--gold);
   font-size: 2.4rem;
   line-height: 0;
   vertical-align: -0.35em;
   margin-right: 4px;
}

.review-author {
   display: flex;
   align-items: center;
   gap: 14px;
   margin-bottom: 12px;
}

.review-avatar {
   width: 48px;
   height: 48px;
   border-radius: 50%;
   display: grid;
   place-items: center;
   font-size: 0.85rem;
   font-weight: 800;
   color: #fff;
   background: linear-gradient(135deg, var(--primary-burgundy), var(--gold));
   flex-shrink: 0;
}

.review-author cite,
.review-card-person cite {
   display: block;
   font-style: normal;
   font-weight: 700;
   font-size: 1rem;
   color: var(--charcoal);
   margin-bottom: 2px;
}

.review-author span,
.review-card-person span {
   font-size: 0.82rem;
   color: var(--muted);
}

.review-stars {
   display: flex;
   gap: 3px;
   color: var(--gold);
   font-size: 0.82rem;
}

.testimonials-section-head {
   text-align: center;
   margin-bottom: 40px;
}

.testimonials-section-head h2 {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: clamp(2rem, 3.5vw, 2.8rem);
   color: var(--primary-burgundy);
   font-weight: 700;
   margin: 0;
}

.testimonials-section-head h2 em {
   font-style: italic;
   color: var(--gold);
}

.testimonials-reviews-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 24px;
   margin-bottom: 64px;
}

.review-card {
   background: var(--surface);
   border: 1px solid rgba(200, 154, 74, 0.18);
   border-radius: 20px;
   padding: 28px 26px;
   box-shadow: 0 12px 36px rgba(44, 42, 41, 0.05);
   transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.review-card:hover {
   transform: translateY(-4px);
   box-shadow: 0 22px 50px rgba(44, 42, 41, 0.1);
   border-color: rgba(138, 15, 45, 0.15);
}

.review-card-top {
   display: flex;
   align-items: flex-start;
   gap: 12px;
   margin-bottom: 12px;
}

.review-card-person {
   flex: 1;
   min-width: 0;
}

.review-card .review-stars {
   margin-bottom: 14px;
}

.review-card p {
   font-size: 0.95rem;
   line-height: 1.85;
   color: var(--muted);
   margin: 0 0 18px;
}

.review-card-foot {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding-top: 16px;
   border-top: 1px solid rgba(200, 154, 74, 0.15);
   font-size: 0.78rem;
   color: var(--muted);
}

.review-verified {
   display: inline-flex;
   align-items: center;
   gap: 5px;
   color: var(--primary-burgundy);
   font-weight: 600;
}

.review-verified i {
   color: var(--gold);
   font-size: 0.75rem;
}

.review-avatar-wedding { background: linear-gradient(135deg, #8A0F2D, #C89A4A); }
.review-avatar-corporate { background: linear-gradient(135deg, #2C2A29, #6F6967); }
.review-avatar-birthday { background: linear-gradient(135deg, #B0173C, #DDBB78); }
.review-avatar-decor { background: linear-gradient(135deg, #6a0b22, #C89A4A); }
.review-avatar-charity { background: linear-gradient(135deg, #8A0F2D, #B0173C); }
.review-avatar-baby { background: linear-gradient(135deg, #C89A4A, #DDBB78); }

.testimonials-cta {
   text-align: center;
}

.testimonials-cta-inner {
   max-width: 560px;
   margin: 0 auto;
   padding: 52px 40px;
   border-radius: 24px;
   background: linear-gradient(135deg, var(--primary-burgundy) 0%, #5c0a1f 60%, var(--charcoal) 100%);
   box-shadow: 0 32px 70px rgba(138, 15, 45, 0.2);
}

.testimonials-cta-inner h2 {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: clamp(1.6rem, 3vw, 2.2rem);
   color: #fff;
   font-weight: 700;
   margin-bottom: 12px;
}

.testimonials-cta-inner h2 em {
   font-style: italic;
   color: var(--soft-gold);
}

.testimonials-cta-inner p {
   color: rgba(255, 255, 255, 0.8);
   font-size: 0.98rem;
   line-height: 1.8;
   margin-bottom: 24px;
}

.testimonials-cta-inner .cta-button {
   animation: none;
}

@media (max-width: 1024px) {
   .testimonials-stats-bar {
      grid-template-columns: repeat(2, 1fr);
   }

   .testimonials-stat:nth-child(2) {
      border-right: none;
   }

   .testimonials-stat:nth-child(1),
   .testimonials-stat:nth-child(2) {
      border-bottom: 1px solid rgba(200, 154, 74, 0.2);
      padding-bottom: 20px;
   }
}

@media (max-width: 768px) {
   .testimonials-hero {
      min-height: 65vh;
   }

   .testimonials-hero-content {
      padding: 120px 20px 64px;
   }

   .testimonials-hero-scroll {
      display: none;
   }

   .testimonials-featured {
      grid-template-columns: 1fr;
   }

   .testimonials-featured-visual {
      min-height: 240px;
   }

   .testimonials-featured-body {
      padding: 32px 24px;
   }

   .testimonials-reviews-grid {
      grid-template-columns: 1fr;
   }

   .testimonials-stats-bar {
      grid-template-columns: 1fr 1fr;
      padding: 24px 20px;
      gap: 16px;
   }

   .testimonials-stat {
      border-right: none;
      border-bottom: none;
      padding: 8px 0;
   }

   .review-event-tag-sm {
      display: none;
   }

   .testimonials-premium {
      padding: 56px 0 80px;
   }
}

/* ═══════════════════════════════════════════
   Gallery Page — Premium Hero & Masonry
   ═══════════════════════════════════════════ */

.gallery-page-body header {
   background: rgba(250, 248, 244, 0);
   border-bottom-color: transparent;
   backdrop-filter: blur(0);
   transition: background 0.35s ease, border-color 0.35s ease;
}

.gallery-page-body header .logo span,
.gallery-page-body header .nav-links a,
.gallery-page-body header .menu-toggle {
   color: #fff;
}

.gallery-page-body header .nav-links a:hover {
   color: var(--soft-gold);
}

.gallery-page-body header.scrolled {
   background: rgba(250, 248, 244, 0.96);
   border-bottom-color: rgba(200, 154, 74, 0.28);
   backdrop-filter: blur(12px);
}

.gallery-page-body header.scrolled .logo span,
.gallery-page-body header.scrolled .nav-links a,
.gallery-page-body header.scrolled .menu-toggle {
   color: var(--charcoal);
}

.services-page-body header {
   background: rgba(250, 248, 244, 0);
   border-bottom-color: transparent;
   backdrop-filter: blur(0);
   transition: background 0.35s ease, border-color 0.35s ease;
}

.services-page-body header .logo span,
.services-page-body header .nav-links a,
.services-page-body header .menu-toggle {
   color: #fff;
}

.services-page-body header .nav-links a:hover {
   color: var(--soft-gold);
}

.services-page-body header.scrolled {
   background: rgba(250, 248, 244, 0.96);
   border-bottom-color: rgba(200, 154, 74, 0.28);
   backdrop-filter: blur(12px);
}

.services-page-body header.scrolled .logo span,
.services-page-body header.scrolled .nav-links a,
.services-page-body header.scrolled .menu-toggle {
   color: var(--charcoal);
}

.gallery-hero {
   position: relative;
   min-height: 88svh;
   margin-top: -80px;
   display: flex;
   align-items: flex-end;
   overflow: hidden;
   background: var(--charcoal);
}

.gallery-hero-bg {
   position: absolute;
   inset: 0;
   background-image:
      radial-gradient(ellipse at 70% 40%, rgba(138, 15, 45, 0.35) 0%, transparent 55%),
      linear-gradient(180deg, rgba(26, 8, 16, 0.86) 0%, rgba(26, 8, 16, 0.35) 45%, rgba(26, 8, 16, 0.96) 100%),
      url('newhero.jpeg');
   background-size: cover, cover, cover;
   background-position: center center;
   background-repeat: no-repeat;
   z-index: 0;
}

.gallery-hero-collage {
   position: absolute;
   top: 50%;
   right: max(20px, calc((100vw - 1200px) / 2 + 20px));
   transform: translateY(-48%);
   width: min(440px, 38vw);
   height: 380px;
   z-index: 1;
   pointer-events: none;
}

.gallery-hero-frame {
   position: absolute;
   padding: 8px;
   background: var(--surface);
   box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
   border-radius: 4px;
   overflow: hidden;
}

.gallery-hero-frame::after {
   content: '';
   position: absolute;
   inset: 8px;
   border: 1px solid rgba(200, 154, 74, 0.45);
   pointer-events: none;
   z-index: 1;
}

.gallery-hero-frame img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
}

.gallery-hero-frame-1 {
   width: 260px;
   height: 300px;
   top: 0;
   right: 0;
   transform: rotate(3deg);
   z-index: 3;
}

.gallery-hero-frame-2 {
   width: 200px;
   height: 240px;
   bottom: 20px;
   left: 0;
   transform: rotate(-6deg);
   z-index: 2;
}

.gallery-hero-frame-3 {
   width: 180px;
   height: 220px;
   top: 60px;
   left: 80px;
   transform: rotate(8deg);
   z-index: 1;
   opacity: 0.85;
}

.gallery-hero-content {
   position: relative;
   z-index: 2;
   width: 100%;
   padding: clamp(118px, 12vw, 148px) 0 clamp(72px, 8vw, 96px);
}

.gallery-hero-shell {
   display: grid;
   grid-template-columns: minmax(0, 1fr);
   gap: 32px;
   align-items: end;
}

.gallery-hero-copy {
   max-width: min(620px, calc(100% - 360px));
}

.gallery-hero-eyebrow {
   display: inline-block;
   font-size: 0.72rem;
   font-weight: 700;
   letter-spacing: 0.18em;
   text-transform: uppercase;
   color: var(--soft-gold);
   margin-bottom: 18px;
   padding: 10px 18px;
   border-radius: 999px;
   background: rgba(255, 255, 255, 0.08);
   border: 1px solid rgba(255, 255, 255, 0.16);
}

.gallery-hero-copy h1 {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: clamp(2.6rem, 5.5vw, 4.2rem);
   font-weight: 700;
   color: #fff;
   line-height: 1.06;
   letter-spacing: -0.02em;
   margin-bottom: 18px;
}

.gallery-hero-copy h1 em {
   font-style: italic;
   color: var(--soft-gold);
}

.gallery-hero-copy > p {
   font-size: 1.08rem;
   line-height: 1.9;
   color: rgba(255, 255, 255, 0.82);
   margin-bottom: 28px;
}

.gallery-hero-stats {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   gap: 12px;
   font-size: 0.85rem;
   color: rgba(255, 255, 255, 0.75);
}

.gallery-hero-stats strong {
   color: var(--soft-gold);
   font-weight: 700;
}

.gallery-hero-stat-dot {
   color: var(--gold);
   font-size: 0.45rem;
}

.gallery-hero-aside {
   display: flex;
   justify-content: flex-end;
}

.gallery-hero-panel {
   width: 100%;
   max-width: 340px;
   padding: 28px 26px;
   border-radius: 26px;
   background: rgba(255, 255, 255, 0.1);
   border: 1px solid rgba(255, 255, 255, 0.18);
   backdrop-filter: blur(20px);
   box-shadow: 0 26px 60px rgba(0, 0, 0, 0.24);
}

.gallery-hero-panel-label {
   display: inline-block;
   margin-bottom: 14px;
   font-size: 0.68rem;
   font-weight: 700;
   letter-spacing: 0.16em;
   text-transform: uppercase;
   color: var(--soft-gold);
}

.gallery-hero-panel h2 {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: 2rem;
   line-height: 1.15;
   color: #fff;
   margin: 0 0 14px;
}

.gallery-hero-panel p {
   color: rgba(255, 255, 255, 0.74);
   font-size: 0.95rem;
   line-height: 1.85;
   margin: 0 0 18px;
}

.gallery-hero-panel-pills {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
}

.gallery-hero-panel-pills span {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 8px 12px;
   border-radius: 999px;
   font-size: 0.74rem;
   font-weight: 600;
   color: rgba(255, 255, 255, 0.86);
   background: rgba(255, 255, 255, 0.08);
   border: 1px solid rgba(255, 255, 255, 0.12);
}

.gallery-hero-panel-pills i {
   color: var(--soft-gold);
}

.gallery-hero-scroll {
   position: absolute;
   bottom: 28px;
   left: 50%;
   transform: translateX(-50%);
   z-index: 2;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 8px;
   color: rgba(255, 255, 255, 0.75);
   text-decoration: none;
   font-size: 0.72rem;
   font-weight: 700;
   letter-spacing: 0.14em;
   text-transform: uppercase;
}

.gallery-hero-scroll i {
   animation: heroBounce 2s ease-in-out infinite;
}

.gallery-premium {
   padding: 92px 0 110px;
   background:
      radial-gradient(circle at top right, rgba(200, 154, 74, 0.12), transparent 24%),
      linear-gradient(180deg, var(--bg-ivory) 0%, #f7f1e8 100%);
}

.gallery-curation {
   display: grid;
   grid-template-columns: minmax(0, 1fr) auto;
   gap: 36px;
   align-items: end;
   margin-bottom: 34px;
}

.gallery-curation-copy h2 {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: clamp(2.2rem, 4vw, 3.1rem);
   color: var(--primary-burgundy);
   font-weight: 700;
   letter-spacing: -0.03em;
   line-height: 1.08;
   margin: 0 0 14px;
}

.gallery-curation-copy h2 em {
   font-style: italic;
   color: var(--gold);
}

.gallery-curation-copy p {
   max-width: 520px;
   color: var(--muted);
   font-size: 1rem;
   line-height: 1.85;
   margin: 0;
}

.gallery-curation-meta {
   display: flex;
   gap: 16px;
}

.gallery-curation-stat {
   min-width: 150px;
   padding: 18px 18px 16px;
   border-radius: 18px;
   background: rgba(255, 255, 255, 0.82);
   border: 1px solid rgba(200, 154, 74, 0.22);
   box-shadow: 0 14px 34px rgba(44, 42, 41, 0.06);
}

.gallery-curation-stat strong {
   display: block;
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: 1.4rem;
   color: var(--primary-burgundy);
   line-height: 1;
   margin-bottom: 8px;
}

.gallery-curation-stat span {
   display: block;
   font-size: 0.8rem;
   color: var(--muted);
   line-height: 1.6;
}

.gallery-masonry {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
   gap: 22px;
}

.gallery-page-body .gallery-masonry.reveal {
   opacity: 1;
   transform: none;
}

.gallery-masonry-item {
   cursor: default;
   transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-masonry-item.is-hidden {
   display: none;
}

.gallery-masonry-featured,
.gallery-masonry-wide,
.gallery-masonry-tall {
   grid-column: auto;
   grid-row: auto;
}

.gallery-piece-frame {
   position: relative;
   width: 100%;
   aspect-ratio: 4 / 5;
   padding: 0;
   background: rgba(255, 255, 255, 0.9);
   border-radius: 22px;
   box-shadow: 0 18px 44px rgba(44, 42, 41, 0.1);
   overflow: hidden;
   transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.gallery-piece-frame::before {
   content: '';
   position: absolute;
   inset: 0;
   border: 1px solid rgba(200, 154, 74, 0.22);
   border-radius: inherit;
   z-index: 3;
   pointer-events: none;
   transition: border-color 0.35s ease;
}

.gallery-piece-frame img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
   transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-piece-overlay {
   position: absolute;
   inset: auto 18px 18px;
   z-index: 4;
   display: none;
   flex-direction: column;
   justify-content: flex-end;
   padding: 18px 16px 14px;
   border-radius: 18px;
   background: linear-gradient(180deg, rgba(44, 42, 41, 0) 0%, rgba(44, 42, 41, 0.78) 100%);
   opacity: 1;
   transition: transform 0.4s ease;
}

.gallery-piece-tag {
   font-size: 0.65rem;
   font-weight: 700;
   letter-spacing: 0.14em;
   text-transform: uppercase;
   color: rgba(255, 255, 255, 0.86);
   margin-bottom: 8px;
}

.gallery-piece-overlay h3 {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: 1.45rem;
   font-weight: 700;
   color: #fff;
   margin: 0 0 6px;
   line-height: 1.2;
}

.gallery-piece-overlay p {
   font-size: 0.82rem;
   color: rgba(255, 255, 255, 0.78);
   margin: 0;
}

.gallery-masonry-item:hover .gallery-piece-frame {
   transform: translateY(-6px);
   box-shadow: 0 30px 68px rgba(44, 42, 41, 0.14);
}

.gallery-masonry-item:hover .gallery-piece-frame::before {
   border-color: var(--primary-burgundy);
}

.gallery-masonry-item:hover img {
   transform: scale(1.06);
}

.gallery-masonry-item:hover .gallery-piece-overlay {
   transform: translateY(-4px);
}

.gallery-cta {
   padding: 0 0 100px;
   background: var(--bg-ivory);
}

.gallery-cta-inner {
   text-align: center;
   max-width: 920px;
   margin: 0 auto;
   padding: 54px 54px;
   border-radius: 30px;
   background:
      radial-gradient(circle at top left, rgba(200, 154, 74, 0.22), transparent 55%),
      linear-gradient(135deg, var(--primary-burgundy) 0%, #5c0a1f 55%, var(--charcoal) 100%);
   border: 1px solid rgba(200, 154, 74, 0.28);
   box-shadow: 0 34px 78px rgba(138, 15, 45, 0.22);
   position: relative;
   overflow: hidden;
}

.gallery-cta-inner::before {
   content: '';
   position: absolute;
   inset: 0;
   background:
      radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.16), transparent 50%),
      radial-gradient(circle at 80% 10%, rgba(200, 154, 74, 0.18), transparent 55%),
      radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.12), transparent 55%);
   pointer-events: none;
}

.gallery-cta-inner::after {
   content: '';
   position: absolute;
   inset: 0;
   background: linear-gradient(120deg, transparent 0%, rgba(0, 0, 0, 0.12) 55%, transparent 100%);
   opacity: 0.65;
   pointer-events: none;
}

.gallery-cta-inner .section-label {
   color: var(--soft-gold);
   margin-bottom: 14px;
   padding: 10px 18px;
   border-radius: 999px;
   background: rgba(255, 255, 255, 0.1);
   border: 1px solid rgba(255, 255, 255, 0.16);
}

.gallery-cta-inner h2 {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: clamp(1.8rem, 3.2vw, 2.45rem);
   color: #fff;
   font-weight: 700;
   margin-bottom: 12px;
}

.gallery-cta-inner h2 em {
   font-style: italic;
   color: var(--gold);
}

.gallery-cta-inner p {
   color: rgba(255, 255, 255, 0.82);
   font-size: 1.02rem;
   line-height: 1.8;
   margin-bottom: 24px;
}

.gallery-cta-inner .cta-button {
   animation: none;
   background: rgba(255, 255, 255, 0.95);
   color: var(--primary-burgundy);
   box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
}

.gallery-cta-inner .cta-button:hover {
   transform: translateY(-3px);
   box-shadow: 0 26px 62px rgba(0, 0, 0, 0.28);
}

@media (max-width: 1024px) {
   .gallery-hero-shell,
   .gallery-curation {
      grid-template-columns: 1fr;
   }

   .gallery-hero-aside {
      justify-content: flex-start;
   }

   .gallery-hero-collage {
      width: 360px;
      height: 320px;
      opacity: 0.7;
   }

   .gallery-hero-frame-1 {
      width: 200px;
      height: 230px;
   }

   .gallery-hero-frame-2 {
      width: 150px;
      height: 180px;
   }

   .gallery-hero-frame-3 {
      width: 140px;
      height: 170px;
      left: 40px;
   }

   .gallery-masonry {
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
   }

   .gallery-piece-frame {
      aspect-ratio: 3 / 4;
   }
}

@media (max-width: 768px) {
   .gallery-hero {
      min-height: 75vh;
   }

   .gallery-hero-collage {
      display: none;
   }

   .gallery-hero-content {
      padding: 120px 0 64px;
   }

   .gallery-hero-scroll {
      display: none;
   }

    .gallery-hero-panel {
      max-width: none;
   }

   .gallery-masonry {
      grid-template-columns: 1fr;
      gap: 18px;
   }

   .gallery-masonry-featured,
   .gallery-masonry-wide,
   .gallery-masonry-tall {
      grid-column: span 1;
      grid-row: span 1;
   }

   .gallery-piece-frame {
      aspect-ratio: 4 / 5;
      border-radius: 20px;
      min-height: 320px;
   }

   .gallery-piece-overlay {
      inset: auto 14px 14px;
      padding: 16px 14px 12px;
      border-radius: 16px;
   }

   .gallery-piece-frame::before {
      inset: 0;
      border-radius: inherit;
   }

   .gallery-curation-meta {
      flex-direction: column;
      gap: 12px;
   }

   .gallery-premium {
      padding: 56px 0 72px;
   }

   .gallery-cta-inner {
      text-align: center;
      padding: 38px 18px;
   }
}

@media (max-width: 640px) {
   .gallery-hero {
      min-height: 65vh;
   }

   .gallery-hero-content {
      padding: 100px 14px 48px;
   }

   .gallery-masonry {
      gap: 14px;
   }

   .gallery-piece-frame {
      min-height: 260px;
      aspect-ratio: 3 / 4;
      border-radius: 18px;
   }

   .gallery-cta-inner {
      padding: 28px 16px;
   }

   .gallery-cta-inner h2 {
      font-size: 1.95rem;
   }
}

@media (max-width: 768px) {
   body.terms-page .gallery-hero,
   body.testimonials-page-body .gallery-hero {
      min-height: 74svh;
      margin-top: -70px;
      align-items: flex-start;
      padding-top: 16px;
   }

   body.terms-page .gallery-hero-content,
   body.testimonials-page-body .gallery-hero-content {
      padding: clamp(86px, 15vw, 112px) 0 clamp(46px, 8vw, 66px);
   }

   body.terms-page .gallery-hero-shell,
   body.testimonials-page-body .gallery-hero-shell {
      display: block;
   }

   body.terms-page .gallery-hero-copy,
   body.testimonials-page-body .gallery-hero-copy {
      max-width: 100%;
      width: 100%;
   }

   body.testimonials-page-body .gallery-hero {
      align-items: center;
      min-height: 82svh;
   }

   body.testimonials-page-body .gallery-hero-content {
      padding: clamp(88px, 12vw, 124px) 0 clamp(54px, 8vw, 76px);
   }

   body.testimonials-page-body .gallery-hero-shell {
      align-items: center;
      justify-content: center;
      max-width: 760px;
      margin: 0 auto;
   }

   body.testimonials-page-body .gallery-hero-copy {
      max-width: 620px;
      margin: 0 auto;
   }

   body.services-page-body .gallery-hero {
      align-items: center;
      min-height: 82svh;
   }

   body.services-page-body .gallery-hero-content {
      padding: clamp(88px, 12vw, 124px) 0 clamp(54px, 8vw, 76px);
      max-width: 760px;
      margin: 0 auto;
   }

   body.services-page-body .gallery-hero-shell {
      display: block;
      width: 100%;
   }

   body.services-page-body .gallery-hero-copy {
      max-width: 620px;
      margin: 0 auto;
      text-align: center;
   }

   body.services-page-body .gallery-hero-stats {
      justify-content: center;
   }

   body.gallery-page-body .gallery-hero {
      align-items: center;
      min-height: 82svh;
   }

   body.gallery-page-body .gallery-hero-content {
      padding: clamp(88px, 12vw, 124px) 0 clamp(54px, 8vw, 76px);
      max-width: 760px;
      margin: 0 auto;
   }

   body.gallery-page-body .gallery-hero-shell {
      display: block;
      width: 100%;
   }

   body.gallery-page-body .gallery-hero-copy {
      max-width: 620px;
      margin: 0 auto;
      text-align: center;
   }

   body.gallery-page-body .gallery-hero-stats {
      justify-content: center;
   }

   body.terms-page .gallery-hero {
      align-items: center;
      min-height: 82svh;
   }

   body.terms-page .gallery-hero-content {
      padding: clamp(88px, 12vw, 124px) 0 clamp(54px, 8vw, 76px);
      max-width: 760px;
      margin: 0 auto;
   }

   body.terms-page .gallery-hero-shell {
      display: block;
      width: 100%;
   }

   body.terms-page .gallery-hero-copy {
      max-width: 620px;
      margin: 0 auto;
      text-align: center;
   }

   body.terms-page .gallery-hero-stats {
      justify-content: center;
   }

   body.testimonials-page-body .gallery-hero-stats {
      justify-content: flex-start;
      gap: 12px 18px;
   }

   body.terms-page .gallery-hero-copy h1,
   body.testimonials-page-body .gallery-hero-copy h1 {
      font-size: clamp(1.95rem, 6.6vw, 2.6rem);
      line-height: 1.05;
      max-width: 12ch;
   }

   body.terms-page .gallery-hero-copy > p,
   body.testimonials-page-body .gallery-hero-copy > p {
      font-size: 0.95rem;
      line-height: 1.7;
      max-width: 100%;
      margin-bottom: 18px;
   }

   body.testimonials-page-body .gallery-hero-copy {
      text-align: center;
      padding-bottom: 12px;
   }

   body.testimonials-page-body .gallery-hero-stats {
      gap: 8px 10px;
      font-size: 0.8rem;
      justify-content: center;
   }

   body.testimonials-page-body header {
      padding: 0.9rem 0.75rem;
   }

   body.testimonials-page-body header .logo {
      font-size: 0.95rem;
   }

   body.testimonials-page-body header .menu-toggle {
      min-width: 44px;
      min-height: 44px;
   }

   body.testimonials-page-body .gallery-hero-content {
      padding: clamp(72px, 14vw, 96px) 0 clamp(42px, 8vw, 56px);
   }

   body.testimonials-page-body .gallery-hero-copy {
      padding: 0;
      max-width: 100%;
   }

   body.testimonials-page-body .gallery-hero-scroll {
      bottom: 18px;
   }

   body.testimonials-page-body .gallery-hero-stats {
      gap: 6px 12px;
   }
}

@media (max-width: 480px) {
   body.terms-page .gallery-hero,
   body.testimonials-page-body .gallery-hero {
      min-height: 68svh;
      margin-top: -64px;
      padding-top: 12px;
   }

   body.terms-page .gallery-hero-content,
   body.testimonials-page-body .gallery-hero-content {
      padding: clamp(78px, 17vw, 96px) 0 clamp(32px, 8vw, 44px);
   }

   body.terms-page .gallery-hero-eyebrow,
   body.testimonials-page-body .gallery-hero-eyebrow {
      margin-bottom: 10px;
      padding: 7px 11px;
      font-size: 0.66rem;
   }

   body.terms-page .gallery-hero-copy h1,
   body.testimonials-page-body .gallery-hero-copy h1 {
      font-size: clamp(1.7rem, 8.2vw, 2.15rem);
      margin-bottom: 10px;
      max-width: 100%;
   }

   body.terms-page .gallery-hero-copy > p,
   body.testimonials-page-body .gallery-hero-copy > p {
      font-size: 0.92rem;
      margin-bottom: 16px;
   }

   body.testimonials-page-body .gallery-hero-stats {
      flex-direction: column;
      align-items: flex-start;
      gap: 6px;
   }
}

/* ═══════════════════════════════════════════
   Decor & Rentals Pages — Mobile Optimized
   ═══════════════════════════════════════════ */

.decor-hero-mobile-bg,
.rentals-hero-mobile-bg {
   display: none;
}

.decor-page-body [data-decor-root].services-grid-premium,
.rentals-page-body [data-rentals-root].services-grid-premium {
   gap: 20px;
}

.decor-page-body [data-decor-root] .decor-panel,
.rentals-page-body [data-rentals-root] .rentals-panel {
   touch-action: manipulation;
   -webkit-tap-highlight-color: transparent;
}

.decor-page-body [data-decor-root] .decor-panel img,
.rentals-page-body [data-rentals-root] .rentals-panel img {
   width: 100%;
   max-width: none;
}

@media (max-width: 768px) {
   .decor-hero-mobile-bg,
   .rentals-hero-mobile-bg {
      display: block;
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
   }

   .decor-hero-mobile-bg img,
   .rentals-hero-mobile-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 30%;
   }

   .decor-hero-mobile-bg::after,
   .rentals-hero-mobile-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
         linear-gradient(180deg, rgba(26, 8, 16, 0.72) 0%, rgba(26, 8, 16, 0.45) 42%, rgba(26, 8, 16, 0.88) 100%);
   }

   .decor-page-body .decor-hero,
   .rentals-page-body .rentals-hero {
      min-height: 72vh;
      align-items: flex-end;
   }

   .rentals-page-body .rentals-hero .gallery-hero-copy {
      padding: 18px 16px;
      border-radius: 18px;
      background: rgba(26, 8, 16, 0.45);
      border: 1px solid rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(14px);
   }

   .decor-page-body .decor-hero .gallery-hero-copy,
   .rentals-page-body .rentals-hero .gallery-hero-copy {
      max-width: none;
   }

   .decor-page-body .decor-hero .gallery-hero-copy > p,
   .rentals-page-body .rentals-hero .gallery-hero-copy > p {
      font-size: 1rem;
      line-height: 1.75;
      margin-bottom: 22px;
   }

   .decor-page-body .decor-hero .gallery-hero-stats,
   .rentals-page-body .rentals-hero .gallery-hero-stats {
      gap: 10px;
      font-size: 0.82rem;
   }

   .decor-page-body .services-premium,
   .rentals-page-body .services-premium {
      padding: 64px 0 72px;
   }

   .decor-page-body .services-premium-intro,
   .rentals-page-body .services-premium-intro {
      margin-bottom: 36px;
      gap: 18px;
   }

   .decor-page-body .services-premium-intro-aside p,
   .rentals-page-body .services-premium-intro-aside p {
      font-size: 0.98rem;
      line-height: 1.75;
      margin-bottom: 0;
   }

   .decor-page-body [data-decor-root].services-grid-premium,
   .rentals-page-body [data-rentals-root].services-grid-premium {
      gap: 16px;
   }

   .decor-page-body [data-decor-root] .decor-panel,
   .decor-page-body [data-decor-root] .decor-panel-featured,
   .rentals-page-body [data-rentals-root] .rentals-panel,
   .rentals-page-body [data-rentals-root] .rentals-panel-featured {
      height: auto;
      min-height: 0;
      border-radius: 18px;
      overflow: hidden;
      background: var(--surface);
      box-shadow: 0 10px 28px rgba(44, 42, 41, 0.08);
   }

   .decor-page-body [data-decor-root] .decor-panel img,
   .rentals-page-body [data-rentals-root] .rentals-panel img {
      width: 100%;
      height: auto;
      display: block;
      margin: 0;
   }

   /* Rentals: make cards feel consistent on mobile */
   .rentals-page-body [data-rentals-root] .rentals-panel img {
      height: clamp(240px, 58vw, 420px);
      object-fit: cover;
      object-position: center;
   }

   .rentals-page-body [data-rentals-root] .rentals-panel-featured img {
      height: clamp(280px, 72vw, 520px);
   }

   .decor-page-body .cta-invite,
   .rentals-page-body .cta-invite {
      padding-bottom: 24px;
   }
}

@media (max-width: 640px) {
   .decor-page-body .decor-hero,
   .rentals-page-body .rentals-hero {
      min-height: 68vh;
   }

   .decor-page-body .decor-hero .gallery-hero-content,
   .rentals-page-body .rentals-hero .gallery-hero-content {
      padding: 108px 0 52px;
   }

   .rentals-page-body .rentals-hero .gallery-hero-copy {
      padding: 16px 14px;
   }

   .decor-page-body .decor-hero .gallery-hero-copy h1,
   .rentals-page-body .rentals-hero .gallery-hero-copy h1 {
      font-size: clamp(2rem, 9vw, 2.6rem);
      margin-bottom: 14px;
   }

   .decor-page-body .decor-hero .gallery-hero-eyebrow,
   .rentals-page-body .rentals-hero .gallery-hero-eyebrow {
      margin-bottom: 14px;
      padding: 8px 14px;
      font-size: 0.68rem;
   }

   .decor-page-body .decor-hero .gallery-hero-stats,
   .rentals-page-body .rentals-hero .gallery-hero-stats {
      flex-direction: column;
      align-items: flex-start;
      gap: 6px;
   }

   .decor-page-body .decor-hero .gallery-hero-stat-dot,
   .rentals-page-body .rentals-hero .gallery-hero-stat-dot {
      display: none;
   }

   .decor-page-body .services-premium,
   .rentals-page-body .services-premium {
      padding: 52px 0 60px;
   }

   .decor-page-body .services-premium-intro,
   .rentals-page-body .services-premium-intro {
      margin-bottom: 28px;
   }

   .decor-page-body .services-premium-intro h2,
   .rentals-page-body .services-premium-intro h2 {
      font-size: clamp(1.85rem, 8vw, 2.35rem);
   }

   .decor-page-body [data-decor-root].services-grid-premium,
   .rentals-page-body [data-rentals-root].services-grid-premium {
      gap: 14px;
   }

   .decor-page-body [data-decor-root] .decor-panel,
   .decor-page-body [data-decor-root] .decor-panel-featured,
   .rentals-page-body [data-rentals-root] .rentals-panel,
   .rentals-page-body [data-rentals-root] .rentals-panel-featured {
      border-radius: 16px;
   }

   .decor-page-body .cta-invite-card,
   .rentals-page-body .cta-invite-card {
      padding: 36px 20px;
   }

   .decor-page-body .cta-invite-inner h2,
   .rentals-page-body .cta-invite-inner h2 {
      font-size: clamp(1.85rem, 8vw, 2.2rem);
   }

   .decor-page-body .cta-invite-actions a,
   .rentals-page-body .cta-invite-actions a {
      max-width: none;
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
   }
}

@media (max-width: 480px) {
   .decor-page-body .decor-hero .gallery-hero-content,
   .rentals-page-body .rentals-hero .gallery-hero-content {
      padding: 100px 0 44px;
   }

   .decor-page-body .decor-hero .gallery-hero-copy > p,
   .rentals-page-body .rentals-hero .gallery-hero-copy > p {
      font-size: 0.94rem;
   }
}


/* ═══════════════════════════════════════════
   About Page — Premium Story Layout
   ═══════════════════════════════════════════ */

.about-page header {
   background: rgba(250, 248, 244, 0);
   border-bottom-color: transparent;
   backdrop-filter: blur(0);
   transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.about-page header .logo span,
.about-page header .nav-links a,
.about-page header .menu-toggle {
   color: #fff;
}

.about-page header .nav-links a:hover {
   color: var(--soft-gold);
}

.about-page header.scrolled {
   background: rgba(250, 248, 244, 0.96);
   border-bottom-color: rgba(200, 154, 74, 0.28);
   backdrop-filter: blur(12px);
}

.about-page header.scrolled .logo span,
.about-page header.scrolled .nav-links a,
.about-page header.scrolled .menu-toggle {
   color: var(--charcoal);
}

.about-page header.scrolled .nav-links a:hover {
   color: var(--secondary-burgundy);
}

.about-hero {
   position: relative;
   min-height: 92svh;
   margin-top: -80px;
   display: flex;
   align-items: flex-end;
   overflow: hidden;
   background: var(--charcoal);
}

.about-hero-media {
   position: absolute;
   inset: 0;
   z-index: 0;
}

.about-hero-media img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center;
   animation: contactHeroZoom 20s ease-out forwards;
}

.about-hero-overlay {
   position: absolute;
   inset: 0;
   z-index: 1;
   background:
      linear-gradient(180deg, rgba(26, 8, 16, 0.55) 0%, rgba(26, 8, 16, 0.45) 38%, rgba(26, 8, 16, 0.92) 100%),
      linear-gradient(100deg, rgba(26, 8, 16, 0.88) 0%, rgba(26, 8, 16, 0.45) 55%, rgba(26, 8, 16, 0.12) 100%);
}

.about-hero-content {
   position: relative;
   z-index: 2;
   width: 100%;
   padding: clamp(122px, 12vw, 150px) 20px clamp(72px, 9vw, 96px);
   display: grid;
   grid-template-columns: minmax(0, 1fr) 320px;
   gap: 42px;
   align-items: end;
}

.about-hero-copy {
   max-width: 620px;
}

.about-hero-eyebrow {
   display: inline-block;
   font-size: 0.72rem;
   font-weight: 700;
   letter-spacing: 0.18em;
   text-transform: uppercase;
   color: var(--soft-gold);
   margin-bottom: 18px;
   padding: 10px 18px;
   border-radius: 999px;
   background: rgba(255, 255, 255, 0.08);
   border: 1px solid rgba(255, 255, 255, 0.18);
   backdrop-filter: blur(10px);
}

.about-hero-copy h1 {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: clamp(2.8rem, 5.8vw, 4.6rem);
   line-height: 1.04;
   letter-spacing: -0.03em;
   color: #fff;
   margin-bottom: 22px;
}

.about-hero-copy h1 em {
   font-style: italic;
   color: var(--soft-gold);
}

.about-hero-copy p {
   font-size: 1.08rem;
   line-height: 1.9;
   color: rgba(255, 255, 255, 0.84);
   margin-bottom: 32px;
   max-width: 560px;
}

.about-hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
}

.about-hero-actions .cta-button {
   animation: none;
}

.about-hero-outline {
   border-color: rgba(255, 255, 255, 0.72);
   color: #fff;
   background: rgba(255, 255, 255, 0.08);
   backdrop-filter: blur(10px);
}

.about-hero-outline:hover {
   background: #fff;
   color: var(--primary-burgundy);
   border-color: #fff;
}

.about-hero-card {
   padding: 28px 26px;
   border-radius: 24px;
   background: rgba(255, 255, 255, 0.1);
   border: 1px solid rgba(255, 255, 255, 0.18);
   backdrop-filter: blur(18px);
   box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.about-hero-card-label {
   display: inline-block;
   margin-bottom: 18px;
   font-size: 0.72rem;
   font-weight: 700;
   letter-spacing: 0.16em;
   text-transform: uppercase;
   color: var(--soft-gold);
}

.about-hero-card-stats {
   display: grid;
   gap: 16px;
}

.about-hero-card-stats div {
   padding-bottom: 16px;
   border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.about-hero-card-stats div:last-child {
   padding-bottom: 0;
   border-bottom: none;
}

.about-hero-card strong {
   display: block;
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: 2rem;
   font-weight: 700;
   color: #fff;
   line-height: 1;
   margin-bottom: 6px;
}

.about-hero-card span {
   font-size: 0.82rem;
   color: rgba(255, 255, 255, 0.72);
   text-transform: uppercase;
   letter-spacing: 0.08em;
}

.about-hero-card-note {
   margin-top: 18px;
   color: rgba(255, 255, 255, 0.8);
   font-size: 0.92rem;
   line-height: 1.8;
}

.about-hero-scroll {
   position: absolute;
   bottom: 28px;
   left: 50%;
   transform: translateX(-50%);
   z-index: 2;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 8px;
   color: rgba(255, 255, 255, 0.8);
   text-decoration: none;
   font-size: 0.72rem;
   font-weight: 700;
   letter-spacing: 0.14em;
   text-transform: uppercase;
}

.about-hero-scroll i {
   animation: heroBounce 2s ease-in-out infinite;
}

.about-story {
   padding: var(--section-space) 0;
   background: var(--bg-ivory);
}

.about-story-grid {
   display: grid;
   grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
   gap: clamp(28px, 4vw, 48px);
   align-items: center;
}

.about-story-copy h2 {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: clamp(2.2rem, 4.5vw, 3.4rem);
   color: var(--primary-burgundy);
   font-weight: 700;
   letter-spacing: -0.03em;
   line-height: 1.08;
   margin-bottom: 22px;
}

.about-story-copy h2 em {
   font-style: italic;
   color: var(--gold);
}

.about-story-copy p {
   color: var(--muted);
   font-size: 1rem;
   line-height: 1.9;
   margin-bottom: 18px;
}

.about-story-pillars {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   margin-top: 28px;
}

.about-story-pillars span {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 10px 16px;
   border-radius: 999px;
   background: var(--surface);
   border: 1px solid rgba(200, 154, 74, 0.26);
   box-shadow: 0 10px 24px rgba(44, 42, 41, 0.05);
   font-size: 0.82rem;
   font-weight: 700;
   color: var(--charcoal);
}

.about-story-pillars i {
   color: var(--gold);
}

.about-story-visual {
   position: relative;
}

.about-story-frame {
   padding: 10px;
   background: var(--surface);
   border-radius: 6px;
   box-shadow: 0 24px 60px rgba(44, 42, 41, 0.12);
}

.about-story-frame img {
   width: 100%;
   display: block;
   height: 480px;
   object-fit: cover;
   border-radius: 2px;
}

.about-story-caption {
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 12px;
   padding: 16px 14px 6px;
}

.about-story-caption-label {
   font-size: 0.7rem;
   font-weight: 700;
   letter-spacing: 0.16em;
   text-transform: uppercase;
   color: var(--gold);
}

.about-story-caption strong {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: 1.1rem;
   color: var(--primary-burgundy);
}

.about-story-quote {
   position: absolute;
   left: -24px;
   bottom: 28px;
   max-width: 260px;
   padding: 22px 20px;
   background: linear-gradient(135deg, var(--primary-burgundy), var(--gold));
   color: #fff;
   border-radius: 20px;
   box-shadow: 0 24px 50px rgba(138, 15, 45, 0.22);
}

.about-story-quote i {
   color: rgba(255, 255, 255, 0.78);
   margin-bottom: 10px;
}

.about-story-quote p {
   margin: 0;
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: 1.3rem;
   line-height: 1.45;
}

.about-values {
   padding: var(--section-space) 0;
   background: var(--bg-cream);
}

.about-values-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: clamp(18px, 2.6vw, 28px);
}

.about-value-card {
   background: var(--surface);
   padding: 34px 30px;
   border-radius: 24px;
   border: 1px solid rgba(200, 154, 74, 0.2);
   box-shadow: 0 18px 45px rgba(44, 42, 41, 0.06);
   transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-value-card:hover {
   transform: translateY(-6px);
   box-shadow: 0 28px 60px rgba(44, 42, 41, 0.12);
}

.about-value-icon {
   width: 58px;
   height: 58px;
   display: grid;
   place-items: center;
   border-radius: 16px;
   background: linear-gradient(135deg, var(--primary-burgundy), var(--gold));
   color: #fff;
   font-size: 1.2rem;
   margin-bottom: 18px;
   box-shadow: 0 12px 28px rgba(138, 15, 45, 0.18);
}

.about-value-card h3 {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: 1.65rem;
   color: var(--charcoal);
   margin-bottom: 12px;
}

.about-value-card p {
   color: var(--muted);
   line-height: 1.85;
   font-size: 0.96rem;
}

.about-timeline {
   padding: 110px 0;
   background: var(--bg-ivory);
}

.about-timeline-header {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 36px;
   align-items: end;
   margin-bottom: 48px;
}

.about-timeline-header h2 {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: clamp(2.1rem, 4vw, 3.1rem);
   color: var(--primary-burgundy);
   font-weight: 700;
   letter-spacing: -0.03em;
   margin: 0;
}

.about-timeline-header h2 em {
   font-style: italic;
   color: var(--gold);
}

.about-timeline-header p {
   color: var(--muted);
   line-height: 1.9;
   font-size: 1rem;
   margin: 0;
}

.about-timeline-track {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 20px;
}

.about-milestone {
   position: relative;
   padding: 28px 24px;
   background: var(--surface);
   border-radius: 22px;
   border: 1px solid rgba(138, 15, 45, 0.1);
   box-shadow: 0 14px 34px rgba(44, 42, 41, 0.05);
}

.about-milestone::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 4px;
   border-radius: 22px 22px 0 0;
   background: linear-gradient(90deg, var(--primary-burgundy), var(--gold));
}

.about-milestone-number {
   display: inline-block;
   margin-bottom: 16px;
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: 2rem;
   font-weight: 700;
   color: var(--primary-burgundy);
   line-height: 1;
}

.about-milestone h3 {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: 1.55rem;
   color: var(--charcoal);
   margin-bottom: 12px;
}

.about-milestone p {
   color: var(--muted);
   font-size: 0.94rem;
   line-height: 1.85;
   margin: 0;
}

.about-cta {
   padding: 0 0 110px;
   background: var(--bg-ivory);
}

.about-cta-card {
   max-width: 860px;
   margin: 0 auto;
   padding: 56px 48px;
   text-align: center;
   border-radius: 28px;
   background: linear-gradient(135deg, var(--primary-burgundy) 0%, #5c0a1f 55%, var(--charcoal) 100%);
   box-shadow: 0 34px 80px rgba(138, 15, 45, 0.22);
}

.about-cta-card .section-label {
   color: var(--soft-gold);
}

.about-cta-card h2 {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: clamp(2rem, 4vw, 2.8rem);
   color: #fff;
   font-weight: 700;
   margin-bottom: 14px;
}

.about-cta-card h2 em {
   font-style: italic;
   color: var(--soft-gold);
}

.about-cta-card p {
   max-width: 560px;
   margin: 0 auto 28px;
   color: rgba(255, 255, 255, 0.82);
   line-height: 1.85;
}

.about-cta-actions {
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
   gap: 14px;
}

.about-cta-outline {
   border-color: rgba(255, 255, 255, 0.62);
   color: #fff;
}

.about-cta-outline:hover {
   background: #fff;
   color: var(--primary-burgundy);
   border-color: #fff;
}

@media (max-width: 1024px) {
   .about-hero-content,
   .about-story-grid,
   .about-timeline-header {
      grid-template-columns: 1fr;
   }

   .about-hero-card {
      max-width: 360px;
   }

   .about-values-grid {
      grid-template-columns: repeat(2, 1fr);
   }

   .about-timeline-track {
      grid-template-columns: repeat(2, 1fr);
   }
}

@media (max-width: 768px) {
   .about-hero {
      min-height: auto;
   }

   .about-hero-content {
      padding: 120px 20px 72px;
      gap: 24px;
   }

   .about-hero-actions,
   .about-cta-actions {
      flex-direction: column;
      align-items: stretch;
   }

   .about-hero-actions a,
   .about-cta-actions a {
      width: 100%;
      text-align: center;
   }

   .about-hero-scroll {
      display: none;
   }

   .about-story,
   .about-values,
   .about-timeline {
      padding: 80px 0;
   }

   .about-story-frame img {
      height: 340px;
   }

   .about-story-quote {
      position: static;
      margin-top: 18px;
      max-width: none;
   }

   .about-values-grid,
   .about-timeline-track {
      grid-template-columns: 1fr;
   }

   .about-cta {
      padding-bottom: 88px;
   }

   .about-cta-card {
      padding: 40px 26px;
   }
}

@media (prefers-reduced-motion: reduce) {
   .about-hero-media img,
   .about-hero-scroll i {
      animation: none;
   }
}

/* ═══════════════════════════════════════════
   Terms Page — Legal Layout
   ═══════════════════════════════════════════ */

.terms-page header {
   background: rgba(250, 248, 244, 0);
   border-bottom-color: transparent;
   backdrop-filter: blur(0);
   transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.terms-page header .logo span,
.terms-page header .nav-links a,
.terms-page header .menu-toggle {
   color: #fff;
}

.terms-page header .nav-links a:hover {
   color: var(--soft-gold);
}

.terms-page header.scrolled {
   background: rgba(250, 248, 244, 0.96);
   border-bottom-color: rgba(200, 154, 74, 0.28);
   backdrop-filter: blur(12px);
}

.terms-page header.scrolled .logo span,
.terms-page header.scrolled .nav-links a,
.terms-page header.scrolled .menu-toggle {
   color: var(--charcoal);
}

.terms-page header.scrolled .nav-links a:hover {
   color: var(--secondary-burgundy);
}

.terms-hero {
   position: relative;
   min-height: 76vh;
   margin-top: -80px;
   display: flex;
   align-items: flex-end;
   overflow: hidden;
   background: var(--charcoal);
}

.terms-hero-media {
   position: absolute;
   inset: 0;
}

.terms-hero-media img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center;
   animation: contactHeroZoom 20s ease-out forwards;
}

.terms-hero-overlay {
   position: absolute;
   inset: 0;
   background:
      linear-gradient(180deg, rgba(26, 8, 16, 0.5) 0%, rgba(26, 8, 16, 0.88) 100%),
      linear-gradient(90deg, rgba(26, 8, 16, 0.86) 0%, rgba(26, 8, 16, 0.35) 58%, transparent 100%);
}

.terms-hero-content {
   position: relative;
   z-index: 2;
   width: 100%;
   padding: clamp(118px, 12vw, 148px) 20px clamp(72px, 8vw, 88px);
}

.terms-hero-copy {
   max-width: 680px;
}

.terms-hero-eyebrow {
   display: inline-block;
   font-size: 0.72rem;
   font-weight: 700;
   letter-spacing: 0.18em;
   text-transform: uppercase;
   color: var(--soft-gold);
   margin-bottom: 18px;
   padding: 10px 18px;
   border-radius: 999px;
   background: rgba(255, 255, 255, 0.08);
   border: 1px solid rgba(255, 255, 255, 0.16);
}

.terms-hero-copy h1 {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: clamp(2.5rem, 5.5vw, 4.2rem);
   color: #fff;
   line-height: 1.06;
   letter-spacing: -0.03em;
   margin-bottom: 18px;
}

.terms-hero-copy h1 em {
   font-style: italic;
   color: var(--soft-gold);
}

.terms-hero-copy p {
   color: rgba(255, 255, 255, 0.82);
   font-size: 1.04rem;
   line-height: 1.9;
   margin-bottom: 24px;
   max-width: 580px;
}

.terms-hero-meta {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
}

.terms-hero-meta span {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 10px 14px;
   border-radius: 999px;
   background: rgba(255, 255, 255, 0.08);
   border: 1px solid rgba(255, 255, 255, 0.12);
   color: rgba(255, 255, 255, 0.84);
   font-size: 0.82rem;
}

.terms-hero-meta i {
   color: var(--soft-gold);
}

.terms-hero-scroll {
   position: absolute;
   bottom: 24px;
   left: 50%;
   transform: translateX(-50%);
   z-index: 2;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 8px;
   color: rgba(255, 255, 255, 0.78);
   text-decoration: none;
   font-size: 0.72rem;
   font-weight: 700;
   letter-spacing: 0.14em;
   text-transform: uppercase;
}

.terms-hero-scroll i {
   animation: heroBounce 2s ease-in-out infinite;
}

.terms-content {
   padding: var(--section-space-tight) 0 var(--section-space);
   background:
      radial-gradient(circle at top left, rgba(200, 154, 74, 0.12), transparent 28%),
      linear-gradient(180deg, var(--bg-ivory) 0%, #f7f1e8 100%);
}

.terms-summary-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 22px;
   margin-bottom: 56px;
}

.terms-summary-card {
   background: var(--surface);
   border: 1px solid rgba(200, 154, 74, 0.2);
   border-radius: 22px;
   padding: 28px 24px;
   box-shadow: 0 16px 40px rgba(44, 42, 41, 0.06);
}

.terms-summary-icon {
   width: 52px;
   height: 52px;
   display: grid;
   place-items: center;
   border-radius: 14px;
   background: linear-gradient(135deg, var(--primary-burgundy), var(--gold));
   color: #fff;
   margin-bottom: 16px;
   box-shadow: 0 10px 24px rgba(138, 15, 45, 0.18);
}

.terms-summary-card h3 {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: 1.55rem;
   color: var(--charcoal);
   margin-bottom: 10px;
}

.terms-summary-card p {
   color: var(--muted);
   line-height: 1.8;
   font-size: 0.95rem;
   margin: 0;
}

.terms-header {
   text-align: center;
   max-width: 760px;
   margin: 0 auto 48px;
}

.terms-header h2 {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: clamp(2rem, 4vw, 3rem);
   color: var(--primary-burgundy);
   font-weight: 700;
   letter-spacing: -0.03em;
   margin-bottom: 16px;
}

.terms-header h2 em {
   font-style: italic;
   color: var(--gold);
}

.terms-header p {
   color: var(--muted);
   line-height: 1.9;
}

.terms-layout {
   display: grid;
   grid-template-columns: minmax(0, 1fr);
   gap: 28px;
   align-items: start;
   max-width: 1120px;
   margin: 0 auto;
}

.terms-sidebar {
   position: sticky;
   top: 108px;
   display: grid;
   gap: 18px;
}

.terms-main {
   min-width: 0;
   max-width: 860px;
   margin: 0 auto;
}

.terms-document {
   width: 100%;
}

.terms-document-header h3 {
   font-size: clamp(2rem, 2.25vw, 2.5rem);
}

.terms-text {
   font-size: 1.02rem;
   line-height: 2;
}

.terms-side-card {
   background: rgba(255, 255, 255, 0.88);
   backdrop-filter: blur(14px);
   border: 1px solid rgba(200, 154, 74, 0.22);
   border-radius: 22px;
   padding: 24px 22px;
   box-shadow: 0 18px 40px rgba(44, 42, 41, 0.06);
}

.terms-side-label {
   display: inline-block;
   margin-bottom: 12px;
   font-size: 0.7rem;
   font-weight: 700;
   letter-spacing: 0.16em;
   text-transform: uppercase;
   color: var(--gold);
}

.terms-side-card h3 {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: 1.55rem;
   color: var(--primary-burgundy);
   margin-bottom: 14px;
}

.terms-side-list {
   list-style: none;
   display: grid;
   gap: 12px;
}

.terms-side-list li,
.terms-side-facts p {
   position: relative;
   padding-left: 18px;
   color: var(--muted);
   line-height: 1.8;
   font-size: 0.94rem;
   margin: 0;
}

.terms-side-list li::before,
.terms-side-facts p::before {
   content: '';
   position: absolute;
   left: 0;
   top: 0.72rem;
   width: 7px;
   height: 7px;
   border-radius: 50%;
   background: linear-gradient(135deg, var(--primary-burgundy), var(--gold));
}

.terms-side-facts {
   display: grid;
   gap: 12px;
}

.terms-side-facts a {
   color: var(--secondary-burgundy);
   text-decoration: none;
}

.terms-side-facts a:hover {
   color: var(--gold);
}

.terms-main {
   min-width: 0;
   max-width: 860px;
   margin: 0 auto;
}

.terms-document {
   background: #fff;
   border: 1px solid rgba(44, 42, 41, 0.08);
   border-radius: 18px;
   overflow: hidden;
   box-shadow: 0 18px 44px rgba(44, 42, 41, 0.06);
}

.terms-document-header {
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   gap: 24px;
   padding: 24px 28px 18px;
   border-bottom: 1px solid rgba(44, 42, 41, 0.08);
   background: #fff;
}

.terms-kicker {
   display: inline-block;
   margin-bottom: 8px;
   font-size: 0.68rem;
   font-weight: 700;
   letter-spacing: 0.14em;
   text-transform: uppercase;
   color: var(--muted);
}

.terms-document-header h3 {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: clamp(1.75rem, 3vw, 2.2rem);
   color: var(--primary-burgundy);
   font-weight: 700;
   margin: 0;
}

.terms-document-meta {
   display: grid;
   gap: 6px;
   text-align: right;
   flex-shrink: 0;
}

.terms-document-meta span {
   padding: 0;
   border-radius: 0;
   background: transparent;
   border: none;
   font-size: 0.76rem;
   font-weight: 600;
   color: var(--muted);
}

.terms-text {
   margin: 0;
   padding: 28px;
   white-space: pre-wrap;
   font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
   font-size: 0.96rem;
   line-height: 1.92;
   color: var(--charcoal);
   background: #fff;
   border-top: 1px solid rgba(44, 42, 41, 0.04);
}

.terms-note {
   margin-top: 28px;
   padding: 22px 24px;
   border-radius: 18px;
   background: rgba(200, 154, 74, 0.08);
   border: 1px solid rgba(200, 154, 74, 0.22);
}

.terms-note p {
   margin: 0;
   color: var(--charcoal);
   line-height: 1.8;
}

@media (max-width: 1024px) {
   .terms-summary-grid {
      grid-template-columns: 1fr;
   }

   .terms-layout {
      grid-template-columns: 1fr;
   }

   .terms-sidebar {
      position: static;
      grid-template-columns: repeat(2, 1fr);
      align-items: start;
   }

   .terms-document-header {
      flex-direction: column;
   }

   .terms-document-meta {
      text-align: left;
      grid-template-columns: repeat(2, auto);
   }
}

@media (max-width: 768px) {
   .terms-hero {
      min-height: 68vh;
   }

   .terms-hero-content {
      padding: 120px 20px 70px;
   }

   .terms-hero-scroll {
      display: none;
   }

   .terms-content {
      padding: 72px 0 88px;
   }

   .terms-summary-card,
   .terms-side-card {
      padding: 24px 20px;
   }

   .terms-sidebar {
      grid-template-columns: 1fr;
   }

   .terms-document-header,
   .terms-text {
      padding: 22px 20px;
   }

   .terms-document-meta {
      grid-template-columns: 1fr;
   }
}

@media (prefers-reduced-motion: reduce) {
   .terms-hero-media img,
   .terms-hero-scroll i {
      animation: none;
   }
}

/* ═══════════════════════════════════════════
   Theme system
   ═══════════════════════════════════════════ */

html[data-theme='dark'] body {
   background: var(--bg-ivory);
   color: var(--charcoal);
}

html[data-theme='dark'] header,
html[data-theme='dark'] header.scrolled,
html[data-theme='dark'] .home-page header.scrolled,
html[data-theme='dark'] .contact-page header.scrolled,
html[data-theme='dark'] .testimonials-page-body header.scrolled,
html[data-theme='dark'] .gallery-page-body header.scrolled,
html[data-theme='dark'] .services-page-body header.scrolled,
html[data-theme='dark'] .decor-page-body header.scrolled,
html[data-theme='dark'] .rentals-page-body header.scrolled,
html[data-theme='dark'] .about-page header.scrolled,
html[data-theme='dark'] .terms-page header.scrolled {
   background: rgba(15, 18, 22, 0.94) !important;
   border-bottom-color: rgba(216, 175, 105, 0.18) !important;
   box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

html[data-theme='dark'] .menu-toggle,
html[data-theme='dark'] .nav-links a,
html[data-theme='dark'] .logo span {
   color: var(--charcoal);
}

html[data-theme='dark'] .nav-links a:hover,
html[data-theme='dark'] .logo {
   color: var(--soft-gold);
}

html[data-theme='dark'] .hero-bridge,
html[data-theme='dark'] .home-difference,
html[data-theme='dark'] .gallery-editorial,
html[data-theme='dark'] .gallery-mini,
html[data-theme='dark'] .services-premium,
html[data-theme='dark'] .contact-premium,
html[data-theme='dark'] .about-story,
html[data-theme='dark'] .about-values,
html[data-theme='dark'] .terms-content,
html[data-theme='dark'] .testimonials-main,
html[data-theme='dark'] .testimonials-highlights {
   background: linear-gradient(180deg, rgba(16, 19, 23, 0.96), rgba(23, 28, 33, 0.98)) !important;
}

html[data-theme='dark'] .difference-card,
html[data-theme='dark'] .gallery-mini-piece,
html[data-theme='dark'] .testimonials .testimonial-card,
html[data-theme='dark'] .carousel-card,
html[data-theme='dark'] .contact-premium-card,
html[data-theme='dark'] .contact-premium-banner,
html[data-theme='dark'] .about-story-caption,
html[data-theme='dark'] .about-story-quote,
html[data-theme='dark'] .terms-summary-card,
html[data-theme='dark'] .terms-document,
html[data-theme='dark'] .gallery-curation-stat,
html[data-theme='dark'] .gallery-curation,
html[data-theme='dark'] .footer-badge,
html[data-theme='dark'] .footer-mini-cta {
   background: rgba(29, 35, 42, 0.94) !important;
   color: var(--charcoal);
   border-color: rgba(216, 175, 105, 0.16) !important;
   box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

html[data-theme='dark'] .gallery-mini-piece,
html[data-theme='dark'] .contact-premium-card,
html[data-theme='dark'] .terms-summary-card,
html[data-theme='dark'] .terms-document {
   border-color: rgba(216, 175, 105, 0.14) !important;
}

html[data-theme='dark'] .difference-card h3,
html[data-theme='dark'] .editorial-title,
html[data-theme='dark'] .contact-premium-card h3,
html[data-theme='dark'] .contact-premium-banner-copy h3,
html[data-theme='dark'] .terms-summary-card h3,
html[data-theme='dark'] .terms-document-header h3,
html[data-theme='dark'] .about-story-caption strong,
html[data-theme='dark'] .about-story-copy h2,
html[data-theme='dark'] .about-values h2,
html[data-theme='dark'] .services-premium-intro h2,
html[data-theme='dark'] .gallery-editorial-header h2,
html[data-theme='dark'] .contact-premium-header h2,
html[data-theme='dark'] .terms-header h2 {
   color: var(--charcoal);
}

html[data-theme='dark'] .difference-card p,
html[data-theme='dark'] .gallery-editorial-header p,
html[data-theme='dark'] .gallery-mini-caption span,
html[data-theme='dark'] .services-premium-intro-aside p,
html[data-theme='dark'] .contact-premium-header p,
html[data-theme='dark'] .contact-premium-card p,
html[data-theme='dark'] .contact-premium-banner-copy p,
html[data-theme='dark'] .about-story-copy p,
html[data-theme='dark'] .about-story-quote p,
html[data-theme='dark'] .terms-header p,
html[data-theme='dark'] .terms-summary-card p,
html[data-theme='dark'] .terms-text,
html[data-theme='dark'] .footer-tagline,
html[data-theme='dark'] .footer-contact-item,
html[data-theme='dark'] .footer-bottom p {
   color: rgba(244, 239, 231, 0.78) !important;
}

html[data-theme='dark'] .site-footer {
   background: #0d1013;
}

html[data-theme='dark'] .site-footer::before {
   background: linear-gradient(90deg, rgba(216, 175, 105, 0), rgba(216, 175, 105, 0.42), rgba(216, 175, 105, 0));
}

html[data-theme='dark'] .site-footer a,
html[data-theme='dark'] .footer-links a,
html[data-theme='dark'] .footer-logo,
html[data-theme='dark'] .footer-bottom a {
   color: var(--charcoal);
}

html[data-theme='dark'] .site-footer .social-links a {
   background: rgba(255, 255, 255, 0.07);
   border-color: rgba(216, 175, 105, 0.14);
}

html[data-theme='dark'] .gallery-mini-piece:hover,
html[data-theme='dark'] .contact-premium-card:hover,
html[data-theme='dark'] .testimonials .testimonial-card:hover,
html[data-theme='dark'] .carousel-card.active {
   box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
}

html[data-theme='dark'] .hero-bridge-text,
html[data-theme='dark'] .section-label,
html[data-theme='dark'] .contact-premium-link,
html[data-theme='dark'] .editorial-category,
html[data-theme='dark'] .premium-stat-label,
html[data-theme='dark'] .footer-badge {
   color: var(--soft-gold);
}

html[data-theme='dark'] .nav-links.active {
   background: rgba(22, 25, 30, 0.98);
   border-color: rgba(216, 175, 105, 0.14);
   box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
}

/* ═══════════════════════════════════════════
   Global Mobile Experience Optimizations
   ═══════════════════════════════════════════ */

.has-fixed-header {
   padding-top: calc(80px + env(safe-area-inset-top, 0px));
}

header {
   padding-top: calc(1rem + env(safe-area-inset-top, 0px));
   padding-left: env(safe-area-inset-left, 0px);
   padding-right: env(safe-area-inset-right, 0px);
}

body.nav-open::after {
   content: '';
   position: fixed;
   inset: 0;
   background: rgba(26, 8, 16, 0.48);
   backdrop-filter: blur(3px);
   z-index: 999;
   pointer-events: none;
}

@media (max-width: 768px) {
   .has-fixed-header {
      padding-top: calc(74px + env(safe-area-inset-top, 0px));
   }

   header {
      padding-top: calc(0.8rem + env(safe-area-inset-top, 0px));
   }

   .nav-links {
      -webkit-overflow-scrolling: touch;
      overscroll-behavior: contain;
   }

   .nav-links a,
   .nav-submenu-toggle,
   .menu-toggle {
      min-height: 44px;
      touch-action: manipulation;
      -webkit-tap-highlight-color: transparent;
   }

   .cta-button,
   .cta-button-outline,
   .gallery-filter-btn,
   .filter-btn,
   .footer-mini-cta,
   .contact-wa-btn,
   .whatsapp-cta {
      min-height: 48px;
      touch-action: manipulation;
      -webkit-tap-highlight-color: transparent;
   }

   .hero-full-image {
      min-height: 100svh;
      min-height: 100dvh;
   }

   .hero-overlay-content {
      padding: calc(88px + env(safe-area-inset-top, 0px)) 16px 64px !important;
   }

   .hero-full-image .hero-copy h1 {
      font-size: clamp(2.1rem, 9vw, 3rem);
      margin-bottom: 16px;
   }

   .hero-full-image .hero-copy p {
      font-size: 0.98rem;
      line-height: 1.75;
      margin-bottom: 24px;
   }

   .hero-contact-pill {
      font-size: 0.88rem;
      padding: 11px 14px;
      border-radius: 16px;
   }

   .hero-bridge {
      padding: 48px 0;
   }

   .hero-bridge-text {
      font-size: clamp(1.15rem, 5.2vw, 1.55rem);
      line-height: 1.35;
      padding: 0 4px;
   }

   .section-header h2,
   .home-difference .section-header h2,
   .gallery-editorial-header h2 {
      font-size: clamp(1.75rem, 6.5vw, 2.35rem);
      line-height: 1.15;
   }

   .difference-card {
      padding: 24px 20px;
      min-height: auto;
      border-radius: 20px;
   }

   .difference-card h3 {
      font-size: 1.15rem;
   }

   .gallery-editorial-header p,
   .gallery-mini .section-header p {
      font-size: 0.95rem;
   }

   .gallery-filter-bar {
      justify-content: flex-start;
      flex-wrap: nowrap;
      overflow-x: auto;
      max-width: 100%;
      padding: 10px;
      border-radius: 16px;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      mask-image: linear-gradient(90deg, transparent, #000 12px, #000 calc(100% - 12px), transparent);
   }

   .gallery-filter-bar::-webkit-scrollbar {
      display: none;
   }

   .gallery-filter-btn {
      flex: 0 0 auto;
      white-space: nowrap;
   }

   .gallery-masonry-item,
   .gallery-piece-frame,
   .editorial-piece,
   .gallery-mini-piece,
   .contact-premium-card,
   .review-card {
      touch-action: manipulation;
      -webkit-tap-highlight-color: transparent;
   }

   .cta-invite-card {
      padding: 36px 22px;
   }

   .cta-invite-inner h2 {
      font-size: clamp(1.65rem, 6vw, 2.2rem);
   }

   .cta-invite-actions {
      flex-direction: column;
      align-items: stretch;
      width: 100%;
   }

   .cta-invite-actions a {
      width: 100%;
      max-width: none;
      justify-content: center;
   }

   .contact-premium-header {
      gap: 14px;
   }

   .contact-premium-banner {
      flex-direction: column;
      align-items: stretch;
      padding: 32px 22px;
   }

   .contact-wa-btn {
      width: 100%;
      justify-content: center;
   }

   .gallery-modal.active {
      align-items: flex-end;
   }

   .gallery-modal .modal-content {
      width: 100%;
      max-width: 100%;
      max-height: min(92vh, 92dvh);
      margin: 0;
      border-radius: 24px 24px 0 0;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
   }

   .gallery-modal .modal-close {
      width: 44px;
      height: 44px;
   }

   .gallery-modal .modal-thumbnails {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 4px;
   }

   .process-premium {
      padding: 72px 0 64px;
   }

   .process-chapter-card {
      padding: 28px 22px;
   }

   .about-hero-content,
   .contact-hero-layout,
   .gallery-hero-content,
   .testimonials-hero-content {
      padding-left: 16px;
      padding-right: 16px;
   }

   .whatsapp-fab {
      bottom: max(18px, calc(env(safe-area-inset-bottom, 0px) + 12px));
      right: max(18px, env(safe-area-inset-right, 0px));
   }

   .whatsapp-fab.offset-bottom {
      bottom: max(110px, calc(env(safe-area-inset-bottom, 0px) + 96px));
   }
}

@media (max-width: 640px) {
   .footer-grid {
      grid-template-columns: 1fr;
      gap: 20px;
   }

   .footer-col h3 {
      margin-bottom: 10px;
   }

   .footer-contact-item {
      align-items: flex-start;
   }

   .footer-bottom {
      flex-direction: column;
      gap: 8px;
   }

   .gallery-mini-grid {
      grid-template-columns: 1fr;
   }

   .gallery-mini-image-full {
      min-height: 240px;
   }

   .testimonials-stats-bar {
      grid-template-columns: 1fr 1fr;
   }

   .services-premium-stats {
      flex-direction: column;
      gap: 16px;
      align-items: flex-start;
   }
}

@media (max-width: 480px) {
   .container {
      padding-left: 16px;
      padding-right: 16px;
   }

   .logo {
      font-size: 0.88rem;
      gap: 8px;
   }

   .logo img {
      max-height: 34px;
   }

   .logo span {
      max-width: 9.5rem;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
   }

   .nav-links {
      left: 12px;
      right: 12px;
   }

   .hero-full-image .hero-eyebrow {
      font-size: 0.65rem;
      padding: 8px 14px;
      letter-spacing: 0.14em;
   }

   .hero-scroll-hint,
   .gallery-hero-scroll,
   .contact-hero-scroll,
   .about-hero-scroll,
   .testimonials-hero-scroll,
   .terms-hero-scroll {
      display: none;
   }

   .signature-moments-grid,
   .editorial-grid {
      gap: 28px;
   }

   .editorial-caption,
   .gallery-mini-caption span {
      font-size: 0.92rem;
   }
}

@media (hover: none) and (pointer: coarse) {
   .gallery-piece-overlay,
   .gallery-overlay,
   .editorial-piece .editorial-frame + .editorial-caption {
      opacity: 1;
   }

   .gallery-masonry-item:hover .gallery-piece-frame,
   .editorial-piece:hover .editorial-frame,
   .gallery-mini-piece:hover,
   .difference-card:hover,
   .contact-premium-card:hover {
      transform: none;
   }
}
