/* ============================================================
   UNMISTAKABLY YOU — LUXURY WEDDING STUDIO
   Design System & Global Styles
   ============================================================ */

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

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  /* Palette */
  --ivory:        #FAF7F2;
  --champagne:    #F0E6D3;
  --gold:         #C9A96E;
  --gold-light:   #E2C99A;
  --taupe:        #A89880;
  --taupe-light:  #D4C4B0;
  --charcoal:     #2C2620;
  --charcoal-mid: #4A3F38;
  --white:        #FFFFFF;
  --black:        #1A1410;

  /* Typography */
  --font-serif:   'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans:    'Jost', system-ui, sans-serif;

  /* Scale — fluid clamp */
  --text-xs:   clamp(0.65rem, 1vw, 0.75rem);
  --text-sm:   clamp(0.8rem,  1.2vw, 0.9rem);
  --text-base: clamp(0.95rem, 1.5vw, 1.05rem);
  --text-md:   clamp(1.1rem,  1.8vw, 1.3rem);
  --text-lg:   clamp(1.3rem,  2.5vw, 1.7rem);
  --text-xl:   clamp(1.8rem,  3.5vw, 2.5rem);
  --text-2xl:  clamp(2.4rem,  5vw,   3.8rem);
  --text-3xl:  clamp(3.2rem,  7vw,   5.5rem);
  --text-hero: clamp(4rem,    10vw,  9rem);

  /* Spacing */
  --space-xs:  clamp(0.5rem,  1vw,   0.75rem);
  --space-sm:  clamp(0.75rem, 1.5vw, 1rem);
  --space-md:  clamp(1rem,    2vw,   1.5rem);
  --space-lg:  clamp(1.5rem,  3vw,   2.5rem);
  --space-xl:  clamp(2rem,    5vw,   4rem);
  --space-2xl: clamp(3rem,    8vw,   7rem);
  --space-3xl: clamp(5rem,    12vw,  11rem);

  /* Layout */
  --max-width: 1440px;
  --content-width: 1200px;
  --gutter: clamp(1.5rem, 5vw, 4rem);

  /* Motion */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.7, 0, 0.84, 0);
  --ease-cinematic: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur-fast:   0.3s;
  --dur-mid:    0.6s;
  --dur-slow:   1s;
  --dur-cinematic: 1.4s;

  /* Z-index scale */
  --z-base: 1;
  --z-above: 10;
  --z-overlay: 100;
  --z-nav: 200;
  --z-cursor: 9999;
  --z-loader: 10000;
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--ivory);
  overflow-x: hidden;
  line-height: 1.7;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ── Custom Cursor ─────────────────────────────────────────── */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: var(--z-cursor);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

.cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transition: transform 0.1s var(--ease-out);
}

.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  transition: transform 0.15s var(--ease-out), width 0.3s, height 0.3s, background 0.3s;
}

.cursor-ring.hovered {
  width: 60px; height: 60px;
  background: rgba(201,169,110,0.08);
  border-color: var(--gold-light);
}

@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
  html { cursor: auto; }
}

/* ── Loading Screen ────────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: var(--z-loader);
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 300;
  color: var(--ivory);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: loaderFade 1s var(--ease-out) forwards;
  opacity: 0;
}

.loader-line {
  width: 0;
  height: 1px;
  background: var(--gold);
  margin-top: var(--space-md);
  animation: loaderLine 0.9s 0.2s var(--ease-out) forwards;
}

@keyframes loaderFade {
  to { opacity: 1; }
}
@keyframes loaderLine {
  to { width: 180px; }
}

/* ── Navigation ────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  padding: var(--space-md) var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s, padding 0.5s, box-shadow 0.5s;
}

.site-nav.scrolled {
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: var(--space-xs) var(--gutter);
  box-shadow: 0 1px 0 rgba(168, 152, 128, 0.2);
}

.site-nav.nav-dark {
  background: transparent;
}

.site-nav.nav-dark .nav-logo,
.site-nav.nav-dark .nav-link {
  color: var(--ivory);
}

.site-nav.nav-dark .hamburger span {
  background: var(--ivory);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: var(--text-md);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.3s;
  line-height: 1.2;
}

.nav-logo span {
  display: block;
  font-size: var(--text-xs);
  font-family: var(--font-sans);
  font-weight: 300;
  letter-spacing: 0.35em;
  color: var(--taupe);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-link {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  position: relative;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover { color: var(--gold); }

.nav-cta {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory) !important;
  background: var(--charcoal);
  padding: 0.7em 1.8em;
  border: 1px solid var(--charcoal);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: calc(var(--z-nav) + 1);
}

.hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--charcoal);
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: calc(var(--z-nav) - 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  transform: translateX(100%);
  transition: transform 0.6s var(--ease-out);
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav .nav-link {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--ivory);
  text-transform: none;
}

.mobile-nav .nav-link::after { background: var(--gold-light); }

.mobile-nav .nav-cta {
  margin-top: var(--space-md);
  border-color: var(--gold);
  background: transparent;
  color: var(--gold) !important;
}

.mobile-nav .nav-cta:hover {
  background: var(--gold);
  color: var(--charcoal) !important;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 1.1em 2.5em;
  border: 1px solid currentColor;
  position: relative;
  overflow: hidden;
  transition: color 0.4s var(--ease-out);
  cursor: none;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
  z-index: 0;
}

.btn:hover::before { transform: scaleX(1); }

.btn span { position: relative; z-index: 1; }

.btn-primary {
  color: var(--charcoal);
  background: transparent;
  border-color: var(--charcoal);
}
.btn-primary:hover { color: var(--ivory); }

.btn-light {
  color: var(--ivory);
  background: transparent;
  border-color: var(--ivory);
}
.btn-light:hover { color: var(--charcoal); }

.btn-gold {
  color: var(--gold);
  background: transparent;
  border-color: var(--gold);
}
.btn-gold:hover { color: var(--charcoal); }

.btn-arrow::after {
  content: '→';
  position: relative;
  z-index: 1;
  transition: transform 0.3s;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ── Section Utility Classes ───────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: var(--space-3xl) 0;
}

.section-sm {
  padding: var(--space-2xl) 0;
}

.section-tag {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: var(--space-md);
}

.section-tag::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-headline {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
}

.section-headline em {
  font-style: italic;
  font-weight: 300;
}

.section-sub {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--taupe);
  max-width: 55ch;
  margin-top: var(--space-md);
  line-height: 1.8;
}

.divider {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: var(--space-lg) 0;
}

.divider-center { margin: var(--space-lg) auto; }

.text-center { text-align: center; }
.text-center .section-tag { justify-content: center; }
.text-center .section-tag::before { display: none; }
.text-center .section-sub { margin: var(--space-md) auto 0; }

/* ── Reveal Animations ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}
.reveal-left.revealed { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}
.reveal-right.revealed { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}
.reveal-scale.revealed { opacity: 1; transform: scale(1); }

/* ── Parallax Image Wrapper ────────────────────────────────── */
.parallax-wrap {
  overflow: hidden;
  position: relative;
}

.parallax-img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center;
  transform: translateY(-10%);
  will-change: transform;
}

/* ── Gold Line Decorative ──────────────────────────────────── */
.gold-line {
  display: inline-block;
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  margin: 0 auto;
}

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  color: var(--ivory);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .footer-logo {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: var(--space-sm);
}

.footer-brand .footer-tagline {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--taupe-light);
  line-height: 1.8;
  max-width: 30ch;
  margin-bottom: var(--space-lg);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.footer-social a {
  font-size: var(--text-xs);
  font-family: var(--font-sans);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe-light);
  transition: color 0.3s;
}

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

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.footer-col ul { display: flex; flex-direction: column; gap: var(--space-xs); }

.footer-col a {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--taupe-light);
  transition: color 0.3s;
  letter-spacing: 0.05em;
}

.footer-col a:hover { color: var(--ivory); }

.footer-newsletter p {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--taupe-light);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.footer-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-form input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 300;
  padding: 0.9em 1.2em;
  outline: none;
  transition: border-color 0.3s;
}

.footer-form input::placeholder { color: var(--taupe); }
.footer-form input:focus { border-color: var(--gold); }

.footer-form button {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  border: none;
  padding: 0.9em 1.5em;
  cursor: none;
  transition: background 0.3s;
}

.footer-form button:hover { background: var(--gold-light); }

.footer-bottom {
  padding-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-bottom p {
  font-size: var(--text-xs);
  font-weight: 300;
  color: var(--taupe);
  letter-spacing: 0.05em;
}

/* ── Page Hero ─────────────────────────────────────────────── */
.page-hero {
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-2xl);
  padding-top: 12rem;
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%; height: 100%;
  opacity: 0.35;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero .section-tag { color: var(--gold-light); }
.page-hero .section-tag::before { background: var(--gold-light); }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.1;
  max-width: 16ch;
}

/* ── Sticky Mobile CTA ─────────────────────────────────────── */
.sticky-cta-mobile {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: calc(var(--z-nav) - 1);
  padding: var(--space-sm) var(--gutter);
  background: var(--charcoal);
  border-top: 1px solid rgba(201,169,110,0.3);
}

.sticky-cta-mobile a {
  display: block;
  text-align: center;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ivory);
  padding: 1em;
  background: var(--gold);
  transition: background 0.3s;
}

/* ── IMAGE MASKING & OVERLAYS ──────────────────────────────── */
.img-cover {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.img-overlay {
  position: relative;
}

.img-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,38,32,0.6) 0%, transparent 60%);
}

/* ── ============== PAGE-SPECIFIC STYLES ============== ── */

/* ── HOME: Hero Section ────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform-origin: center;
  animation: heroScale 8s var(--ease-cinematic) forwards;
}

@keyframes heroScale {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(28,22,16,0.2) 0%,
    rgba(28,22,16,0.1) 40%,
    rgba(28,22,16,0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter) var(--space-2xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
  gap: var(--space-xl);
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: var(--text-hero);
  font-weight: 300;
  line-height: 0.95;
  color: var(--ivory);
  letter-spacing: -0.01em;
}

.hero-headline em {
  display: block;
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-lg);
  padding-bottom: 0.5rem;
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 300;
  color: rgba(250,247,242,0.85);
  text-align: right;
  max-width: 38ch;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: rgba(250,247,242,0.6);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold-light), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── HOME: Brand Statement ─────────────────────────────────── */
.brand-statement {
  padding: var(--space-3xl) var(--gutter);
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--space-2xl);
  align-items: center;
}

.bs-label {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  align-self: center;
  opacity: 0.7;
}

.bs-text-col { grid-column: 2; }

.bs-quote {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 300;
  line-height: 1.25;
  color: var(--charcoal);
}

.bs-quote em { font-style: italic; color: var(--gold); }

.bs-body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--charcoal-mid);
  line-height: 1.9;
  max-width: 60ch;
  margin-top: var(--space-lg);
}

/* ── HOME: Services Preview ────────────────────────────────── */
.services-preview {
  background: var(--charcoal);
  padding: var(--space-3xl) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}

.service-card {
  background: var(--charcoal);
  padding: var(--space-2xl) var(--space-xl);
  position: relative;
  overflow: hidden;
  transition: background 0.5s;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--charcoal-mid);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s var(--ease-out);
  z-index: 0;
}

.service-card:hover::before { transform: scaleY(1); }

.service-card > * { position: relative; z-index: 1; }

.service-num {
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  font-weight: 300;
  color: rgba(201,169,110,0.15);
  line-height: 1;
  margin-bottom: var(--space-md);
  transition: color 0.3s;
}

.service-card:hover .service-num { color: rgba(201,169,110,0.3); }

.service-name {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.service-desc {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--taupe-light);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.service-link {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.6em;
  transition: gap 0.3s;
}

.service-link:hover { gap: 1em; }
.service-link::after { content: '→'; }

/* ── HOME: Signature Experience ────────────────────────────── */
.sig-exp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.sig-img {
  position: relative;
  overflow: hidden;
}

.sig-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s var(--ease-out);
}

.sig-img:hover img { transform: scale(1.04); }

.sig-content {
  background: var(--champagne);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-3xl) var(--space-2xl);
}

.sig-content .section-tag { color: var(--taupe); }
.sig-content .section-tag::before { background: var(--taupe); }

.sig-features {
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.sig-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(168,152,128,0.25);
}

.sig-feature:last-child { border-bottom: none; }

.sig-feature-icon {
  width: 24px; height: 24px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.sig-feature-icon::after {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.sig-feature-text h4 {
  font-family: var(--font-serif);
  font-size: var(--text-md);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.3em;
}

.sig-feature-text p {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--taupe);
  line-height: 1.7;
}

/* ── HOME: Featured Weddings ───────────────────────────────── */
.featured-weddings {
  padding: var(--space-3xl) 0;
}

.fw-header {
  padding: 0 var(--gutter);
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-2xl);
}

.fw-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: var(--space-sm);
  padding: 0 var(--gutter);
  max-width: var(--max-width);
  margin: 0 auto;
}

.fw-item {
  position: relative;
  overflow: hidden;
  cursor: none;
}

.fw-item:nth-child(1) { grid-row: span 2; aspect-ratio: 3/4; }
.fw-item:nth-child(2) { aspect-ratio: 4/3; }
.fw-item:nth-child(3) { aspect-ratio: 4/3; }
.fw-item:nth-child(4) { aspect-ratio: 4/3; }

.fw-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.fw-item:hover img { transform: scale(1.05); }

.fw-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--space-lg);
  background: linear-gradient(to top, rgba(44,38,32,0.75) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out);
}

.fw-item:hover .fw-caption { transform: translateY(0); }

.fw-caption .couple {
  font-family: var(--font-serif);
  font-size: var(--text-md);
  font-weight: 300;
  color: var(--ivory);
  font-style: italic;
}

.fw-caption .location {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 300;
  color: var(--gold-light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 0.3em;
}

/* ── HOME: Process ─────────────────────────────────────────── */
.process-section {
  background: var(--ivory);
  padding: var(--space-3xl) 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--champagne);
  margin-top: var(--space-2xl);
}

.process-step {
  background: var(--ivory);
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  position: relative;
  transition: background 0.4s;
}

.process-step:hover { background: var(--champagne); }

.step-num {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 7vw, 6rem);
  font-weight: 300;
  color: var(--champagne);
  line-height: 1;
  margin-bottom: var(--space-sm);
  transition: color 0.4s;
}

.process-step:hover .step-num { color: var(--gold-light); }

.step-title {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
}

.step-desc {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--taupe);
  line-height: 1.8;
}

/* ── HOME: Testimonials ────────────────────────────────────── */
.testimonials {
  background: var(--charcoal);
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.testimonial-slider {
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.7s var(--ease-out);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 var(--gutter);
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 300;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.5;
  max-width: 70ch;
  margin-bottom: var(--space-xl);
}

.testimonial-quote::before {
  content: '"';
  font-size: var(--text-3xl);
  color: var(--gold);
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 0.1em;
  font-style: normal;
}

.testimonial-author {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: none;
  transition: background 0.3s, transform 0.3s;
  border: none;
}

.dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ── HOME: FAQ ─────────────────────────────────────────────── */
.faq-section { padding: var(--space-3xl) 0; }

.faq-list {
  margin-top: var(--space-2xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--gutter);
}

.faq-item {
  border-bottom: 1px solid var(--champagne);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) 0;
  cursor: none;
  gap: var(--space-md);
}

.faq-q h3 {
  font-family: var(--font-serif);
  font-size: var(--text-md);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.4;
}

.faq-icon {
  width: 28px; height: 28px;
  border: 1px solid var(--taupe-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--charcoal);
  transition: transform 0.3s, opacity 0.3s;
}

.faq-icon::before { width: 10px; height: 1px; }
.faq-icon::after { width: 1px; height: 10px; }

.faq-item.open .faq-icon { border-color: var(--gold); transform: rotate(45deg); }
.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after { background: var(--gold); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), padding 0.5s;
}

.faq-a p {
  padding-bottom: var(--space-lg);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--taupe);
  line-height: 1.9;
}

.faq-item.open .faq-a { max-height: 400px; }

/* ── HOME: Final CTA ───────────────────────────────────────── */
.final-cta {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
}

.final-cta-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.final-cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44,38,32,0.65);
}

.final-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: var(--space-3xl) var(--gutter);
}

.final-cta h2 {
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.15;
  margin-bottom: var(--space-lg);
}

.final-cta h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.final-cta p {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 300;
  color: rgba(250,247,242,0.8);
  max-width: 50ch;
  margin: 0 auto var(--space-xl);
  line-height: 1.8;
}

.final-cta-btns {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ── ABOUT PAGE ────────────────────────────────────────────── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.about-img {
  position: relative;
  overflow: hidden;
}

.about-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}

.about-text {
  padding: var(--space-3xl) var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-values {
  margin-top: var(--space-xl);
}

.value-item {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--champagne);
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.value-num {
  font-family: var(--font-serif);
  font-size: var(--text-md);
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  width: 2ch;
}

.value-content h4 {
  font-family: var(--font-serif);
  font-size: var(--text-md);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.3em;
}

.value-content p {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--taupe);
  line-height: 1.7;
}

.meet-team {
  padding: var(--space-3xl) 0;
  background: var(--champagne);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.team-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-lg);
  align-items: start;
}

.team-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  filter: grayscale(20%);
  transition: filter 0.4s;
}

.team-card:hover .team-photo img { filter: grayscale(0); }

.team-info {
  padding-top: var(--space-sm);
}

.team-name {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.1;
}

.team-role {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin: var(--space-sm) 0 var(--space-md);
}

.team-bio {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--charcoal-mid);
  line-height: 1.8;
}

/* ── SERVICES PAGE ─────────────────────────────────────────── */
.services-detail {
  padding: var(--space-3xl) 0;
}

.service-detail-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  margin-bottom: var(--space-sm);
}

.service-detail-item:nth-child(even) { direction: rtl; }
.service-detail-item:nth-child(even) > * { direction: ltr; }

.sdi-img {
  overflow: hidden;
  position: relative;
}

.sdi-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.service-detail-item:hover .sdi-img img { transform: scale(1.04); }

.sdi-content {
  padding: var(--space-3xl) var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ivory);
}

.sdi-content:nth-child(even) { background: var(--champagne); }

.sdi-includes {
  margin-top: var(--space-xl);
}

.sdi-includes h4 {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: var(--space-md);
}

.sdi-includes ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.sdi-includes li {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--charcoal-mid);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.sdi-includes li::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── GALLERY PAGE ──────────────────────────────────────────── */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  padding: var(--space-xl) var(--gutter);
}

.filter-btn {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  background: none;
  border: none;
  cursor: none;
  padding: 0.5em 0;
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
  color: var(--charcoal);
  border-color: var(--gold);
}

.gallery-masonry {
  columns: 3;
  column-gap: var(--space-sm);
  padding: 0 var(--gutter) var(--space-3xl);
  max-width: var(--max-width);
  margin: 0 auto;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: var(--space-sm);
  position: relative;
  overflow: hidden;
  cursor: none;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.7s var(--ease-out);
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,38,32,0.5);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay span {
  font-family: var(--font-serif);
  font-size: var(--text-sm);
  font-weight: 300;
  font-style: italic;
  color: var(--ivory);
  letter-spacing: 0.1em;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(28,22,16,0.95);
  z-index: calc(var(--z-loader) - 1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.lightbox.open { opacity: 1; visibility: visible; }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--ivory);
  font-size: var(--text-md);
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: border-color 0.3s, background 0.3s;
}

.lightbox-close:hover { background: rgba(255,255,255,0.1); border-color: var(--gold); }

/* ── CONTACT PAGE ──────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  min-height: 80vh;
}

.contact-info {
  background: var(--charcoal);
  padding: var(--space-3xl) var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info .section-tag { color: var(--gold-light); }
.contact-info .section-tag::before { background: var(--gold-light); }

.contact-info h2 {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: var(--space-lg);
}

.contact-info h2 em { font-style: italic; color: var(--gold-light); }

.contact-info p {
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--taupe-light);
  line-height: 1.8;
  max-width: 42ch;
  margin-bottom: var(--space-xl);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.contact-detail-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail-text { font-family: var(--font-sans); }

.contact-detail-text small {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.2em;
}

.contact-detail-text span {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--ivory);
}

.contact-form-wrap {
  padding: var(--space-3xl) var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ivory);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  max-width: 640px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.form-group.full { grid-column: span 2; }

.form-group label {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--charcoal);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--taupe-light);
  padding: 0.8em 0;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--taupe-light); }

.form-group textarea { resize: none; min-height: 120px; }

.form-submit { grid-column: span 2; }

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-xl);
}

.form-success.visible { display: block; }

.form-success h3 {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
}

.form-success p { color: var(--taupe); font-size: var(--text-sm); }

/* ── MEDIA QUERIES ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-newsletter { grid-column: span 2; }

  .fw-grid {
    grid-template-columns: 1fr 1fr;
  }
  .fw-item:nth-child(1) { grid-row: span 1; aspect-ratio: 4/3; }
  .fw-item:nth-child(4) { display: none; }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-right { align-items: flex-start; }
  .hero-sub { text-align: left; }

  .brand-statement { grid-template-columns: 1fr; }
  .bs-label { display: none; }
  .bs-text-col { grid-column: 1; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .sig-exp { grid-template-columns: 1fr; }
  .sig-img { min-height: 50vw; }

  .about-intro { grid-template-columns: 1fr; }
  .about-img { min-height: 50vw; }

  .team-grid { grid-template-columns: 1fr; }
  .team-card { grid-template-columns: 1fr 1.5fr; }

  .service-detail-item { grid-template-columns: 1fr; }
  .service-detail-item:nth-child(even) { direction: ltr; }
  .sdi-img { min-height: 50vw; }

  .contact-layout { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }

  .gallery-masonry { columns: 2; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .sticky-cta-mobile { display: block; }

  body { padding-bottom: 72px; }

  .services-grid { grid-template-columns: 1fr; }
  .fw-grid { grid-template-columns: 1fr; }
  .fw-item:nth-child(1) { aspect-ratio: 4/3; }
  .fw-item { display: block !important; }
  .fw-item:nth-child(4) { display: block !important; }

  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .process-steps { grid-template-columns: 1fr; }
  .team-card { grid-template-columns: 1fr; }
  .team-photo { max-height: 350px; }

  .contact-form { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .form-submit { grid-column: 1; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-newsletter { grid-column: 1; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .gallery-masonry { columns: 1; }

  .final-cta-btns { flex-direction: column; align-items: center; }
  .final-cta-btns .btn { width: 100%; max-width: 320px; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: clamp(3rem, 15vw, 5rem); }
  .about-text { padding: var(--space-2xl) var(--space-lg); }
  .sdi-content { padding: var(--space-2xl) var(--space-lg); }
  .contact-info,
  .contact-form-wrap { padding: var(--space-2xl) var(--space-lg); }
}
