/* =========================================================
   SHIMMER & SHINE — A Luxury Beauty House
   Editorial · Dior×Apple×Vogue · GSAP / Lenis / SplitType
   ========================================================= */

:root {
  /* Wine / burgundy field */
  --wine-950: #1c060c;
  --wine-900: #2a0710;
  --wine-800: #380d17;
  --wine-700: #4a0f1a;
  --wine-600: #5e1522;
  --cherry:   #6d1a26;

  /* Warm neutrals */
  --ivory:    #f0e1c2;
  --cream:    #efe3d2;
  --cream-bg: #f1e7d6;
  --champagne:#eaddc4;
  --espresso: #33141a;
  --espresso-soft: #6c4a49;

  /* Metallic gold (muted, elegant) */
  --gold-light: #f3e7c6;
  --gold:       #e4c98d;
  --gold-mid:   #d4b06a;
  --gold-deep:  #c19b52;
  --gold-bronze:#a67c32;
  --rose:       #dcae8f;
  --grad-gold: linear-gradient(115deg, #f6eccf 0%, #e4c98d 38%, #c19b52 62%, #e8d19a 100%);
  --grad-gold-soft: linear-gradient(115deg, #ecd9a8, #c9a459);

  /* dark editorial hero palette (scoped names so they don't collide with --gold/--cream) */
  --ink: #1C1412;
  --ink-2: #2A1D1A;
  --h-cream: #F6EFE7;
  --cream-muted: rgba(246,239,231,0.72);
  --h-gold: #C9A34E;
  --gold-soft: rgba(201,163,78,0.35);
  --gold-line: rgba(201,163,78,0.25);
  --burgundy: #7A2A2E;

  --text: var(--ivory);
  --text-dim: #c7ad9f;

  --font-modern: "Cormorant Garamond", Georgia, serif;         /* v3 editorial serif */
  --font-display: "Cormorant Garamond", "Didot", Georgia, serif;
  --font-editorial: "Cormorant Garamond", "Didot", Georgia, serif;
  --font-serif: "Cormorant Garamond", "Didot", Georgia, serif;
  --font-accent: "Cormorant Garamond", Georgia, serif;
  --font-italic: "Cormorant Garamond", Georgia, serif;         /* italics via font-style */
  --font-sans: "Jost", "Helvetica Neue", Arial, sans-serif;    /* v3 geometric sans */
  --font-mono: "Jost", ui-sans-serif, system-ui, sans-serif;   /* labels: Jost, tracked */

  --ease: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --maxw: 1360px;
  --pad: clamp(1.4rem, 5vw, 5rem);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; overflow-x: hidden; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  font-family: var(--font-sans);
  background: var(--wine-900);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
::selection { background: var(--gold); color: var(--wine-900); }
:focus-visible { outline: 1px solid var(--gold); outline-offset: 4px; }

/* metallic gold text */
.gold, .italic-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- reveal gating (only when JS active) ---------- */
body.js [data-fade],
body.js [data-splt] .char,
body.js [data-splt-words] .word { will-change: transform, opacity; }
body.no-js [data-fade] { opacity: 1 !important; }

/* SplitType reveal helpers */
[data-splt] .char { display: inline-block; will-change: transform; }
/* gold gradient must live on the split letters (clip-to-text can't fill the parent once it's split) */
.hero-head .italic .char, .bridal-head .italic .char, .book-head .italic .char {
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-head .l, .bridal-head .l, .book-head .l { overflow: hidden; padding-bottom: 0.06em; }
[data-splt-words] .line { overflow: hidden; padding-bottom: 0.04em; }
[data-splt-words] .word { display: inline-block; will-change: transform; }
/* pre-JS: keep everything visible until the animation engine takes over */
html:not(.anim) [data-splt],
html:not(.anim) [data-splt-words],
html:not(.anim) [data-fade] { opacity: 1 !important; }

/* section index labels */
.sec-index {
  display: inline-block; font-family: var(--font-sans); font-size: 0.7rem;
  letter-spacing: 0.42em; text-transform: uppercase; color: var(--gold-deep);
  font-weight: 500; margin-bottom: clamp(1.2rem, 3vw, 2.4rem);
}
.sec-index.light { color: var(--gold-bronze); }

.sec-title { font-family: var(--font-editorial); font-weight: 400; line-height: 1.02;
  font-size: clamp(2.2rem, 6vw, 5rem); letter-spacing: -0.01em; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 1rem 2rem; border-radius: 100px; font-family: var(--font-sans);
  font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500;
  transition: transform 0.5s var(--ease), color 0.4s, border-color 0.4s;
  overflow: hidden; will-change: transform;
}
.btn span { position: relative; z-index: 2; }
.btn .arrow { position: relative; z-index: 2; transition: transform 0.4s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }
.btn-solid { background: var(--grad-gold); color: var(--wine-900); }
.btn-solid::before { content: ""; position: absolute; inset: 0; background: var(--wine-900); transform: translateY(101%); transition: transform 0.5s var(--ease); z-index: 1; }
.btn-solid:hover { color: var(--gold-light); }
.btn-solid:hover::before { transform: translateY(0); }
.btn-line { border: 1px solid rgba(228,201,141,0.4); color: var(--gold-light); }
.btn-line::before { content: ""; position: absolute; inset: 0; background: var(--grad-gold); transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease); z-index: 1; }
.btn-line:hover { color: var(--wine-900); border-color: transparent; }
.btn-line:hover::before { transform: scaleX(1); }
.btn-wide { width: 100%; justify-content: center; }

/* underline link */
.link-under { display: inline-block; font-size: 0.85rem; letter-spacing: 0.05em; color: var(--gold); position: relative; }
.link-under span { position: relative; }
.link-under span::after { content: ""; position: absolute; left: 0; bottom: -3px; height: 1px; width: 100%; background: currentColor; transform: scaleX(0.3); transform-origin: left; opacity: 0.5; transition: transform 0.5s var(--ease), opacity 0.4s; }
.link-under:hover span::after { transform: scaleX(1); opacity: 1; }

/* =========================================================
   ATMOSPHERE
   ========================================================= */
.atmos { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.atmos-grain {
  position: absolute; inset: -50%; opacity: 0.045; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 8s steps(6) infinite;
}
@keyframes grainShift { 0%{transform:translate(0,0)} 20%{transform:translate(-4%,3%)} 40%{transform:translate(3%,-2%)} 60%{transform:translate(-2%,4%)} 80%{transform:translate(4%,-3%)} 100%{transform:translate(0,0)} }
.atmos-vignette { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 40%, transparent 40%, rgba(10,3,6,0.55) 100%); }
.atmos-glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; }
.atmos-glow-1 { width: 45vw; height: 45vw; top: -12vw; right: -8vw; background: radial-gradient(circle, rgba(228,201,141,0.16), transparent 68%); animation: drift1 20s ease-in-out infinite; }
.atmos-glow-2 { width: 40vw; height: 40vw; bottom: -10vw; left: -10vw; background: radial-gradient(circle, rgba(109,26,38,0.5), transparent 66%); animation: drift2 26s ease-in-out infinite; }
@keyframes drift1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-4vw,6vw)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(5vw,-4vw)} }
#dust { position: absolute; inset: 0; width: 100%; height: 100%; }

/* cursor + mouse glow */
.mouse-glow { position: fixed; top: 0; left: 0; width: 460px; height: 460px; margin: -230px 0 0 -230px; border-radius: 50%; z-index: 1; pointer-events: none;
  background: radial-gradient(circle, rgba(228,201,141,0.1), transparent 62%); opacity: 0; transition: opacity 0.6s; will-change: transform; }
.cursor, .cursor-ring { display: none; position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; border-radius: 50%; transform: translate(-50%,-50%); }
.cursor { width: 6px; height: 6px; background: var(--gold-light); }
.cursor-ring { width: 36px; height: 36px; border: 1px solid rgba(228,201,141,0.55); transition: width 0.4s var(--ease), height 0.4s var(--ease), background 0.4s, border-color 0.4s; }
.cursor-ring.hover { width: 66px; height: 66px; background: rgba(228,201,141,0.08); border-color: var(--gold); }
.cursor-ring.hide { opacity: 0; }
@media (hover: none) { .cursor, .cursor-ring, .mouse-glow { display: none; } }

.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 9997; pointer-events: none; }
.scroll-progress i { display: block; height: 100%; width: 0; background: var(--grad-gold); }

/* content sits above atmosphere */
#nav, main, .footer, .wa-float { position: relative; z-index: 2; }

/* =========================================================
   LOADER
   ========================================================= */
/* Cinematic intro. The burgundy "sheet" is two full-screen halves clipped along the SAME
   diagonal cut; each carries the real logo at the same spot, so they read as one printed
   sheet. Scissors run the cut, then the halves slide apart — splitting logo + sheet together. */
#loader { position: fixed; inset: 0; z-index: 10000; overflow: hidden; perspective: 1600px; background: transparent; }
#loader.ld-hidden { display: none !important; }
html.intro-active, html.intro-active body { overflow: hidden; height: 100%; }

.ld-sheet { position: absolute; inset: 0; z-index: 1; will-change: transform, filter; backface-visibility: hidden; transform-style: preserve-3d;
  background: radial-gradient(140% 120% at 50% -10%, #40101c 0%, #280913 52%, #170409 100%); }
.ld-sheet::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(116deg, rgba(255,255,255,.035) 0%, transparent 30%, transparent 72%, rgba(0,0,0,.06) 100%); }
/* the shared diagonal cut (slight lean), with ~2% overlap so there is never a seam gap */
.ld-sheet-l { clip-path: polygon(0% 0%, 48.5% 0%, 49.3% 20%, 52.5% 100%, 0% 100%); transform-origin: left center; }
.ld-sheet-r { clip-path: polygon(47.5% 0%, 100% 0%, 100% 100%, 51.5% 100%, 48.3% 20%); transform-origin: right center; }
.ld-print { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 2; }
.ld-logo { display: block; width: clamp(240px, 58vw, 560px); opacity: 0; filter: drop-shadow(0 6px 16px rgba(0,0,0,.35)); }

.ld-fx { position: absolute; inset: 0; z-index: 5; pointer-events: none; }
.ld-spray { position: absolute; left: 50%; top: 50%; margin-left: clamp(30px, 8vw, 86px); width: clamp(180px, 34vw, 360px); height: clamp(120px, 24vw, 240px); opacity: 0; pointer-events: none;
  transform: translateY(-50%) scaleX(.2); transform-origin: right center; filter: blur(7px);
  background: radial-gradient(ellipse at right center, rgba(251,243,218,.5), rgba(230,190,90,.18) 42%, transparent 72%); }
.ld-particles { position: absolute; left: 50%; top: 50%; width: 0; height: 0; pointer-events: none; }
.ld-p { position: absolute; left: 0; top: 0; width: 4px; height: 4px; border-radius: 50%; opacity: 0; background: rgba(251,243,218,.92); box-shadow: 0 0 6px rgba(230,190,90,.8); }
.ld-bottle { position: absolute; left: 50%; top: 50%; margin-left: clamp(130px, 23vw, 270px); transform: translateY(-50%); width: clamp(90px, 13vw, 150px); opacity: 0; will-change: transform; }
.ld-scissors { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: clamp(122px, 17vw, 196px); opacity: 0; will-change: top, transform; }
.ld-bottle svg { width: 100%; height: auto; display: block; filter: drop-shadow(0 14px 20px rgba(0,0,0,.4)); }
.ld-scissors svg { width: 100%; height: auto; display: block; filter: drop-shadow(0 12px 20px rgba(0,0,0,.45)); }
@media (max-width: 560px) {
  /* keep the whole mister on-screen (it was running off the right edge) and give the
     wordmark room so the spray → logo reveal reads clearly on a narrow phone */
  .ld-bottle { margin-left: clamp(36px, 13vw, 86px); width: clamp(58px, 18vw, 92px); }
  .ld-scissors { width: clamp(112px, 36vw, 160px); }
  .ld-logo { width: clamp(184px, 62vw, 346px); }
  .ld-spray { margin-left: clamp(12px, 6vw, 50px); width: clamp(150px, 40vw, 260px); }
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* =========================================================
   NAV — glass, floating, shrinks
   ========================================================= */
#nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; display: flex; justify-content: center; padding: 1.1rem var(--pad); transition: padding 0.5s var(--ease); }
.nav-shell {
  width: 100%; max-width: var(--maxw); display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.5rem 0.5rem 0.5rem 1.4rem; border-radius: 100px;
  background: rgba(42,7,16,0.66); backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid rgba(228,201,141,0.22); transition: background 0.5s, border-color 0.5s, transform 0.5s var(--ease);
}
#nav.shrink { padding-top: 0.7rem; padding-bottom: 0.7rem; }
#nav.shrink .nav-shell { background: rgba(42,7,16,0.82); border-color: rgba(228,201,141,0.28); }
.nav-logo { display: flex; align-items: center; gap: 0.65rem; font-family: var(--font-editorial); font-size: 1.2rem; letter-spacing: 0.02em; }
.nav-logo-full { height: 44px; width: auto; max-width: 300px; object-fit: contain; display: block; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3)); }
.nav-logo-fallback { display: none; align-items: center; gap: 0.65rem; }
.nav-logo-mark { width: 44px; height: 44px; object-fit: contain; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35)); }
.nav-logo-word { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav-logo-word em { font-style: italic; }
@media (max-width: 560px) { .nav-logo-full { height: 32px; max-width: 190px; } .nav-shell { padding-left: 1rem; } .nav-burger { margin-right: 0.1rem; } }
.nav-menu { display: flex; gap: 2rem; }
.nav-menu a { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); transition: color 0.4s; }
.nav-menu a span { position: relative; }
.nav-menu a span::after { content: ""; position: absolute; left: 0; bottom: -5px; height: 1px; width: 100%; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform 0.45s var(--ease); }
.nav-menu a:hover, .nav-menu a.active { color: var(--ivory); }
.nav-menu a:hover span::after, .nav-menu a.active span::after { transform: scaleX(1); transform-origin: left; }
.nav-book { padding: 0.7rem 1.5rem; border-radius: 100px; background: var(--grad-gold); color: var(--wine-900); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; transition: transform 0.5s var(--ease); }
.nav-burger { display: none; flex-direction: column; gap: 6px; padding: 12px; margin-right: 0.4rem; }
.nav-burger span { width: 24px; height: 1.5px; background: var(--gold-light); transition: 0.4s var(--ease); }
.nav-burger.open span:nth-child(1) { transform: translateY(3.7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { transform: translateY(-3.8px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding: clamp(5.5rem, 8vh, 7rem) var(--pad) clamp(2.5rem, 5vh, 3.5rem); overflow: hidden; }
.hero-grid { width: 100%; max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 0.7rem; font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: clamp(1rem, 2vh, 1.6rem); }
.hero-eyebrow i { width: 30px; height: 1px; background: var(--gold-deep); }
.hero-copy { padding-left: clamp(0.25rem, 3.5vw, 3rem); }
.hero-head { font-family: var(--font-editorial); font-weight: 400; font-size: clamp(2.6rem, 5.8vw, 4.9rem); line-height: 1.0; letter-spacing: -0.015em; }
.hero-head .l { display: block; }
.hero-head .italic { font-style: italic; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lede { max-width: 48ch; margin: clamp(1rem, 2.2vh, 1.6rem) 0 clamp(1.3rem, 3vh, 1.8rem); color: var(--text-dim); font-size: clamp(0.86rem, 1.15vw, 0.98rem); line-height: 1.6; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* ── RIGHT SIDE: airy gold editorial decoration on the same cream canvas ── */
.hero-copy { position: relative; z-index: 2; max-width: 600px; }

/* decorative right column: S&S monogram watermark behind staggered chips + floating badge */
.hero-decor { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding-left: 0; }
.hero-chips { position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 1.5rem; }
.hero-badge { position: relative; z-index: 1; }
/* thin gold outline S&S — a contained watermark centred behind the chip cluster */
.hero-monogram { position: absolute; top: 50%; right: 3%; left: auto; transform: translateY(-50%); z-index: 0; pointer-events: none; user-select: none;
  font-family: var(--font-display); font-weight: 500; font-size: clamp(8.5rem, 14vw, 14rem); line-height: 0.8;
  letter-spacing: 0; white-space: nowrap; color: transparent; -webkit-text-stroke: 1.5px var(--gold-deep); opacity: 0.2; }
.chip { position: relative; z-index: 1; display: inline-flex; align-items: center; padding: 14px 32px; border-radius: 100px;
  background: rgba(246,236,220,0.35); font-family: var(--font-sans); font-size: 0.8rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--wine-700); cursor: default;
  transition: background 0.3s var(--ease), color 0.3s var(--ease); }
.chip::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: var(--grad-gold);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); mask-composite: exclude; pointer-events: none; transition: opacity 0.3s; }
.chip:hover { background: var(--grad-gold); color: var(--wine-900); }
.chip:hover::before { opacity: 0; }
.chip:nth-of-type(2) { margin-left: 26px; }
.chip:nth-of-type(3) { margin-left: 52px; }
.chip:nth-of-type(4) { margin-left: 26px; }

.hero-badge { margin: 1.6rem 0 0 26px; display: inline-flex; flex-direction: column; align-items: flex-start;
  padding: 0.85rem 1.4rem; border-radius: 16px; background: var(--cream-bg); border: 1px solid var(--gold-deep);
  box-shadow: 0 20px 44px -22px rgba(90,30,20,0.42); animation: badgeFloat 5s ease-in-out infinite; }
.hero-badge b { font-family: var(--font-display); font-weight: 500; font-size: 1.5rem; line-height: 1; color: var(--wine-700); }
.hero-badge b i { font-style: normal; font-size: 0.72em; color: var(--gold-deep); }
.hero-badge span { margin-top: 0.25rem; font-size: 0.68rem; letter-spacing: 0.05em; color: var(--espresso-soft); }
@keyframes badgeFloat { 0%, 100% { transform: translateY(-6px); } 50% { transform: translateY(6px); } }
@media (prefers-reduced-motion: reduce) { .hero-badge { animation: none; } }


/* =========================================================
   THE EXPERIENCE  (maroon section: tagline + interior photos)
   ========================================================= */
.experience { position: relative; max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem,10vw,8rem) var(--pad); }
.exp-head { max-width: 760px; margin: 0 auto clamp(2.4rem,5vw,3.8rem); text-align: center; position: relative; z-index: 2; }
.exp-tagline { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.9rem,5vw,3.6rem); line-height: 1.06; color: var(--ivory); margin: 0.4rem 0 1rem; }
.exp-tagline em { font-style: italic; color: var(--gold); }
.exp-lede { color: var(--text-dim); font-size: 1.02rem; max-width: 56ch; margin: 0 auto; }
.exp-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(0.8rem,1.5vw,1.4rem); position: relative; z-index: 2; align-items: start; }
.exp-img { position: relative; aspect-ratio: 3/4; border-radius: 16px; overflow: hidden; background: linear-gradient(150deg, var(--cherry), var(--wine-950)); border: 1px solid rgba(228,201,141,0.16); display: grid; place-items: center; }
.exp-img--tall { margin-top: clamp(1.5rem,4vw,3rem); }
.exp-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.exp-img:hover img { transform: scale(1.06); }
.exp-img .ph-label { font-family: var(--font-accent); font-style: italic; font-size: 0.9rem; letter-spacing: 0.04em; color: rgba(240,225,194,0.5); }
.exp-img.has-photo .ph-label { display: none; }

/* =========================================================
   MEET THE FOUNDER  (cream section: owner photo + bio)
   ========================================================= */
.owner-grid { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem,10vw,8rem) var(--pad); display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem,5vw,5rem); align-items: center; position: relative; z-index: 2; }
.owner-photo { position: relative; aspect-ratio: 3/4; border-radius: 20px; overflow: hidden; background: linear-gradient(150deg, var(--cherry), var(--wine-950)); border: 4px solid #fff; box-shadow: 0 34px 70px -34px rgba(90,30,20,0.45); display: grid; place-items: center; }
.owner-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.owner-photo .ph-label { font-family: var(--font-accent); font-style: italic; font-size: 0.95rem; color: rgba(240,225,194,0.6); }
.owner-photo.has-photo .ph-label { display: none; }
.owner-name { font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem,4.5vw,3.2rem); line-height: 1; margin: 0.2rem 0 0.2rem; }
.owner-role { display: block; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-bronze); margin-bottom: 1.2rem; }
.owner-body p { max-width: 52ch; margin-bottom: 1rem; }
.owner-facts { display: flex; flex-wrap: wrap; gap: clamp(1.4rem,4vw,2.6rem); margin: 1.4rem 0 1.6rem; }
.owner-facts b { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.5rem,3vw,2.1rem); color: var(--wine-700); display: block; line-height: 1; }
.owner-facts span { font-size: 0.75rem; color: var(--espresso-soft); }

@media (max-width: 760px) {
  .exp-gallery { grid-template-columns: 1fr 1fr; }
  .exp-img--tall { margin-top: 0; }
  .owner-grid { grid-template-columns: 1fr; }
  .owner-photo { width: min(80vw, 360px); max-width: 360px; margin: 0 auto; }
}
@media (max-width: 460px) { .exp-gallery { grid-template-columns: 1fr; } }

/* bulbs around the frame (hidden on the cream arched frame — kept in DOM, reversible) */
.m-bulbs { position: absolute; display: none; z-index: 3; }
.m-top { top: 3px; left: 20px; right: 20px; justify-content: space-between; }
.m-bottom { bottom: 3px; left: 20px; right: 20px; justify-content: space-between; }
.m-left { left: 3px; top: 20px; bottom: 20px; flex-direction: column; justify-content: space-between; }
.m-right { right: 3px; top: 20px; bottom: 20px; flex-direction: column; justify-content: space-between; }
.bulb { width: 9px; height: 9px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff8e6, #f0d187 55%, #c8971f);
  box-shadow: 0 0 6px 1.5px rgba(240,209,135,0.7); animation: twinkle 2.6s ease-in-out infinite; }
@keyframes twinkle { 0%,100% { opacity: 0.5; box-shadow: 0 0 5px 1px rgba(240,209,135,0.45); } 50% { opacity: 1; box-shadow: 0 0 11px 3px rgba(240,209,135,0.9); } }
.mirror:hover .bulb { animation-duration: 1.4s; }

/* sweeping light reflection on the glass */
.mirror-shine { position: absolute; top: -25%; left: 0; width: 46%; height: 150%; z-index: 1; pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.09) 46%, rgba(255,255,255,0.17) 52%, transparent);
  transform: translateX(-170%) rotate(8deg); animation: mirrorSweep 7s ease-in-out infinite; }
@keyframes mirrorSweep { 0%, 100% { transform: translateX(-170%) rotate(8deg); } 55% { transform: translateX(380%) rotate(8deg); } }

/* faint lily reflection behind the words */
.mirror-lily { position: absolute; inset: 12% 8% auto auto; width: 55%; height: 55%; z-index: 0; opacity: 0.5;
  background: rgba(168,120,26,0.16); -webkit-mask: url("../images/logo/lily.svg") center/contain no-repeat; mask: url("../images/logo/lily.svg") center/contain no-repeat; }

.mirror-cap { position: relative; z-index: 2; text-align: center; padding: 1rem; }
.mc-script { display: block; font-family: var(--font-accent); font-style: italic; font-size: clamp(1.1rem, 2vw, 1.4rem); color: #7a1b1d; }
.mc-big { display: block; font-family: var(--font-display); font-weight: 500; font-size: clamp(1.9rem, 3.4vw, 2.8rem); line-height: 1; margin-top: 0.15rem; color: #7a1b1d; }
.mc-sub { display: block; margin-top: 0.9rem; font-family: var(--font-mono); font-size: 0.56rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--espresso-soft); }
@media (prefers-reduced-motion: reduce) { .bulb, .mirror-shine { animation: none; } .bulb { opacity: 0.85; } }

/* quick trust / stats row under the hero CTAs */
.hero-trust { display: flex; flex-wrap: wrap; gap: clamp(1.4rem, 3.5vw, 2.6rem); margin-top: clamp(2.4rem, 5vh, 3.5rem); }
.hero-trust li { position: relative; }
.hero-trust li + li { padding-left: clamp(1.4rem, 4vw, 2.8rem); }
.hero-trust li + li::before { content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 1px; background: var(--gold-soft); }
.hero-trust b { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1; color: var(--h-cream); display: block; }
.hero-trust b i { font-style: normal; font-size: 0.7em; color: var(--h-gold); }
.hero-trust span { display: block; margin-top: 0.4rem; font-size: 0.72rem; letter-spacing: 0.04em; color: var(--cream-muted); }

.hero-float { position: absolute; font-family: var(--font-accent); font-style: italic; font-size: clamp(1.4rem, 3vw, 2.6rem); color: rgba(228,201,141,0.16); pointer-events: none; z-index: 1; }
.hero-float.f1 { top: 16%; left: 6%; } .hero-float.f2 { top: 30%; right: 40%; }
.hero-float.f3 { bottom: 26%; left: 12%; } .hero-float.f4 { top: 12%; right: 8%; }
.hero-float.f5 { bottom: 14%; right: 28%; } .hero-float.f6 { bottom: 34%; right: 6%; }

.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 0.6rem; font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--text-dim); }
.hero-scroll span { width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.hero-scroll span::after { content: ""; position: absolute; top: -34px; left: 0; width: 100%; height: 34px; background: var(--gold); animation: scrolldot 2s var(--ease) infinite; }
@keyframes scrolldot { to { top: 34px; } }

/* ── hero re-themed onto the cream (v3) surface: text in light-page maroon ── */
.hero-dust { z-index: 1; }
.hero.cream .hero-head { color: var(--espresso); }
.hero.cream .hero-head .italic,
.hero.cream .hero-head .italic .char {
  background: none; -webkit-background-clip: initial; background-clip: initial;
  -webkit-text-fill-color: #7a1b1d; color: #7a1b1d;
}
.hero.cream .hero-tagline {
  background: none; -webkit-background-clip: initial; background-clip: initial;
  -webkit-text-fill-color: #7a1b1d; color: #7a1b1d;
}
.hero.cream .hero-eyebrow { color: var(--gold-bronze); }
.hero.cream .hero-eyebrow i { background: var(--gold-bronze); }
.hero.cream .hero-trust b {
  background: none; -webkit-background-clip: initial; background-clip: initial;
  -webkit-text-fill-color: var(--espresso); color: var(--espresso);
}
.hero.cream .hero-trust span { color: var(--espresso-soft); }
.hero.cream .hero-trust li + li::before { background: linear-gradient(transparent, rgba(122,27,29,0.35), transparent); }
.hero.cream .hero-scroll { color: var(--espresso-soft); }
.hero.cream .hero-scroll span { background: linear-gradient(var(--gold-bronze), transparent); }
.hero.cream .hero-scroll span::after { background: var(--gold-bronze); }

/* =========================================================
   STATEMENT MARQUEE
   ========================================================= */
.statement { padding: clamp(0.6rem,0vw,0rem) 0; border-block: 1px solid rgba(228,201,141,0.14); overflow: hidden; }
.statement-track { display: inline-flex; align-items: center; gap: 2.4rem; white-space: nowrap; will-change: transform; font-family: var(--font-editorial); font-size: clamp(2rem,5vw,4rem); color: var(--ivory); }
.statement-track i { color: var(--gold); font-size: 0.5em; font-style: normal; }
.statement-track span { transition: color 0.4s; }
.statement:hover .statement-track span { color: var(--gold); }

/* =========================================================
   ABOUT
   ========================================================= */
.about { padding: clamp(5rem,12vw,10rem) var(--pad); max-width: var(--maxw); margin: 0 auto; position: relative; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; grid-template-areas: "lead media" "text media"; gap: 2rem 4rem; align-items: start; }
.about-lead { grid-area: lead; }
.about-manifesto { font-family: var(--font-editorial); font-weight: 400; font-size: clamp(1.8rem,4vw,3.4rem); line-height: 1.12; letter-spacing: -0.01em; }
.about-media { grid-area: media; position: relative; height: clamp(420px, 60vw, 640px); }
.about-fig { position: absolute; overflow: hidden; }
.about-fig .fig-img { position: relative; width: 100%; height: 100%; background: linear-gradient(150deg, var(--cherry), var(--wine-900)); display: grid; place-items: center; background-size: cover; background-position: center; }
.about-fig .fig-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-fig .fig-img.has-photo .ph-label { display: none; }
.fig-a { width: 66%; height: 76%; top: 0; right: 0; border-radius: 200px 200px 0 0; }
.fig-a .fig-img img,
.fig-b .fig-img img { transform: scale(1.06); transform-origin: center bottom; }
.fig-b { width: 46%; height: 42%; bottom: 4%; left: 0; border-radius: 14px; box-shadow: 0 40px 80px -40px rgba(0,0,0,0.7); }
.about-text { grid-area: text; align-self: end; max-width: 40ch; }
.about-text p { color: var(--text-dim); margin-bottom: 1.1rem; }
.about-text .link-under { margin-top: 0.6rem; }

/* =========================================================
   SERVICES — scroll rail + open detail box
   ========================================================= */
.services { position: relative; padding-bottom: clamp(3rem,8vw,6rem); }
.services-intro { max-width: var(--maxw); margin: 0 auto; padding: clamp(5rem,10vw,8rem) var(--pad) 2rem; }
.services-intro .sec-title { max-width: 18ch; }
.services-hint { margin-top: 1.4rem; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-bronze); }

/* the horizontal rail */
.svc-rail {
  display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x proximity;
  padding: 0.5rem var(--pad) 1.6rem; margin: 0 auto; max-width: 100%;
  scrollbar-width: thin; scrollbar-color: rgba(228,201,141,0.4) transparent;
  cursor: grab;
}
.svc-rail.dragging { cursor: grabbing; scroll-snap-type: none; }
.svc-rail::-webkit-scrollbar { height: 5px; }
.svc-rail::-webkit-scrollbar-thumb { background: rgba(228,201,141,0.35); border-radius: 20px; }
.svc-rail::-webkit-scrollbar-track { background: transparent; }

.svc-chip {
  position: relative; flex: 0 0 auto; width: clamp(200px, 22vw, 264px); height: clamp(240px, 30vw, 330px);
  border-radius: 16px; overflow: hidden; scroll-snap-align: center; text-align: left;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.svc-chip img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); z-index: 0; }
.svc-chip .svc-chip-ph { position: absolute; inset: 0; background: linear-gradient(160deg, var(--cherry), var(--wine-950)); z-index: 0; }
.svc-chip .svc-chip-scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(16,3,6,0.92) 4%, rgba(16,3,6,0.25) 46%, rgba(16,3,6,0.35) 100%); transition: background 0.5s; }
.svc-chip-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.1rem 1.2rem; }
.svc-chip .svc-cat { display: block; font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-200); margin-bottom: 0.35rem; text-shadow: 0 1px 8px rgba(0,0,0,0.55); }
/* keep the chip titles light & legible on the dark photo tiles (overrides .cream h3) */
.services .svc-chip h3, .svc-chip h3 { font-family: var(--font-modern); font-weight: 500; font-size: 1.35rem; line-height: 1.05; color: #fff; text-shadow: 0 2px 14px rgba(0,0,0,0.6); }
.svc-chip .svc-num { position: absolute; top: 0.9rem; left: 1.1rem; z-index: 2; font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.1em; color: var(--gold-light); opacity: 0.8; }
.svc-chip .svc-plus { position: absolute; top: 0.8rem; right: 1rem; z-index: 2; width: 26px; height: 26px; border-radius: 50%; border: 1px solid rgba(228,201,141,0.5); color: var(--gold-light); display: grid; place-items: center; font-size: 1rem; transition: 0.4s var(--ease); }
.svc-chip:hover img { transform: scale(1.07); }
.svc-chip:hover { transform: translateY(-6px); }
.svc-chip[aria-selected="true"] { box-shadow: 0 0 0 2px var(--gold), 0 30px 50px -26px rgba(0,0,0,0.7); }
.svc-chip[aria-selected="true"] .svc-plus { background: var(--grad-gold); color: var(--wine-900); border-color: transparent; transform: rotate(45deg); }
.svc-chip[aria-selected="true"] .svc-chip-scrim { background: linear-gradient(to top, rgba(16,3,6,0.9) 4%, rgba(74,15,26,0.3) 60%, rgba(109,26,38,0.25) 100%); }

/* ===== SERVICE MODAL (click-to-open detail popup) ===== */
.svc-modal { position: fixed; inset: 0; z-index: 6000; display: grid; place-items: center; padding: clamp(0.9rem, 4vw, 2.4rem); }
.svc-modal[hidden] { display: none; }
.svc-modal-backdrop { position: absolute; inset: 0; background: rgba(14,3,6,0.72); backdrop-filter: blur(8px); opacity: 0; transition: opacity 0.4s var(--ease); }
.svc-modal.open .svc-modal-backdrop { opacity: 1; }
.svc-modal-card {
  position: relative; z-index: 2; width: min(1000px, 100%); max-height: 90vh; overflow: hidden;
  background: var(--cream-bg); color: var(--espresso); border-radius: 24px;
  box-shadow: 0 60px 120px -40px rgba(0,0,0,0.85); border: 1px solid rgba(228,201,141,0.35);
  display: grid; grid-template-columns: 0.82fr 1.18fr; align-items: stretch;
  transform: translateY(26px) scale(0.97); opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.45s var(--ease);
}
.svc-modal.open .svc-modal-card { transform: none; opacity: 1; }

.svc-modal-close { position: absolute; top: 1rem; right: 1rem; z-index: 5; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.78); backdrop-filter: blur(4px); color: var(--wine-700); font-size: 1.7rem; line-height: 1; display: grid; place-items: center; transition: transform 0.4s var(--ease), background 0.3s, color 0.3s; box-shadow: 0 6px 18px rgba(0,0,0,0.2); }
.svc-modal-close:hover { background: var(--wine-700); color: var(--gold-light); transform: rotate(90deg); }

.svc-modal-media { position: relative; overflow: hidden; min-height: 300px; }
/* absolute so the photo covers the card height instead of dictating it (keeps the card compact) */
.svc-modal-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; animation: svcZoom 1.6s var(--ease) both; }
.svc-modal-media .svc-chip-ph { position: absolute; inset: 0; z-index: -1; background: linear-gradient(160deg, var(--cherry), var(--wine-950)); }
.svc-modal-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 80%, rgba(28,6,12,0.14)); }
@keyframes svcZoom { from { transform: scale(1.12); } to { transform: scale(1); } }

.svc-modal-body { display: flex; flex-direction: column; max-height: 90vh; overflow-y: auto;
  padding: clamp(2.2rem, 4vw, 3.6rem) clamp(1.9rem, 3.4vw, 3.2rem) clamp(1.8rem, 3.4vw, 2.8rem);
  scrollbar-width: thin; scrollbar-color: rgba(193,155,82,0.5) transparent; }
.svc-modal-body::-webkit-scrollbar { width: 7px; }
.svc-modal-body::-webkit-scrollbar-thumb { background: rgba(193,155,82,0.4); border-radius: 20px; }
/* stack image over content on small screens; pin below the fixed header and scroll inside */
@media (max-width: 760px) {
  /* service detail: a floating CARD centred below the header (not a full page).
     Card height follows its content; the photo uses a tidy landscape window so it isn't a
     thin cut strip, and there's no empty gap. No internal scroll. */
  .svc-modal { align-items: center; padding: clamp(5rem, 9vh, 6.5rem) clamp(1rem, 5vw, 1.6rem) clamp(1.2rem, 4vh, 1.8rem); }
  .svc-modal-card { grid-template-columns: 1fr; grid-template-rows: auto auto; height: auto;
    max-height: calc(100dvh - clamp(6.5rem, 13vh, 8.5rem)); overflow: hidden; }
  .svc-modal-media { min-height: 0; height: auto; aspect-ratio: 16 / 10; }
  .svc-modal-body { max-height: none; overflow: visible;
    padding: clamp(1.3rem, 4vw, 1.9rem) clamp(1.4rem, 5vw, 2rem) clamp(1.3rem, 4vw, 1.8rem); }
  .svc-modal-close { width: 38px; height: 38px; font-size: 1.5rem; top: 0.8rem; right: 0.8rem; }
  .svc-eyebrow { margin-bottom: clamp(0.8rem, 2.4vh, 1.3rem); }
  .svc-note { margin-top: clamp(1.1rem, 3vh, 1.8rem); }
  .svc-actions { padding-top: clamp(1.2rem, 3.5vh, 2rem); }
  /* per-service gallery: sit below header and DO scroll (when there are enough photos) */
  .svc-photos { align-items: start; padding-top: clamp(5.5rem, 11vh, 7rem); }
  .svc-photos-card { max-height: calc(100dvh - clamp(7rem, 15vh, 9rem)); }
  .svc-photos-body { overscroll-behavior: contain; -webkit-overflow-scrolling: touch; }
  .shot { height: clamp(200px, 40vh, 330px); }
}
/* very short / landscape screens: shorter photo + tighter text; allow a small internal
   scroll only here (normal phones fit with no scroll) so nothing ever gets clipped */
@media (max-width: 760px) and (max-height: 730px) {
  .svc-modal-media { aspect-ratio: 16 / 6; }
  .svc-modal-card { overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; }
  .svc-modal-body { padding-top: clamp(0.85rem, 3vw, 1.2rem); }
  .svc-eyebrow { margin-bottom: 0.5rem; }
  .svc-flourish { margin: 0.6rem 0 0.8rem; }
  .svc-lede { font-size: 0.9rem; line-height: 1.45; }
  .svc-note { margin-top: 0.75rem; }
  .svc-actions { padding-top: 0.85rem; }
}
/* ---- editorial right side (typography-led, magazine feel) ---- */
.svc-editorial { display: block; }
.svc-eyebrow { display: block; font-family: var(--font-sans); font-weight: 500; font-size: 0.64rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-bronze); margin-bottom: clamp(1.3rem, 3.5vh, 2.1rem); }
.svc-modal-title { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.1rem, 3.7vw, 3.15rem); line-height: 1.02; letter-spacing: -0.012em; color: var(--wine-700); }
.svc-flourish { display: block; width: 52px; height: 2px; margin: clamp(1.1rem, 2.6vh, 1.7rem) 0 clamp(1.3rem, 3vh, 2rem); background: linear-gradient(90deg, var(--gold-deep), rgba(193,155,82,0)); }
.svc-lede { font-family: var(--font-sans); color: var(--espresso-soft); font-size: clamp(0.98rem, 1.25vw, 1.12rem); line-height: 1.7; max-width: 40ch; margin: 0; }
.svc-note { margin-top: clamp(1.9rem, 4.5vh, 3rem); }
.svc-note-k { display: block; font-family: var(--font-sans); font-weight: 500; font-size: 0.6rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-bronze); margin-bottom: 0.55rem; }
.svc-note-v { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.2rem, 1.9vw, 1.5rem); line-height: 1.18; color: var(--wine-700); }

.svc-actions { margin-top: auto; padding-top: clamp(2rem, 5vh, 3.2rem); display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.svc-book { display: inline-flex; align-items: center; gap: 0.7rem; padding: 0.9rem 1.7rem; border-radius: 9px; text-decoration: none;
  background: var(--grad-gold); color: var(--wine-900); font-family: var(--font-sans); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.09em; text-transform: uppercase;
  box-shadow: 0 16px 32px -18px rgba(120,80,20,0.7); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.svc-book i { font-style: normal; font-size: 1.05em; transition: transform 0.4s var(--ease); }
.svc-book:hover { transform: translateY(-2px); box-shadow: 0 22px 40px -18px rgba(120,80,20,0.82); }
.svc-book:hover i { transform: translateX(4px); }
.svc-view { position: relative; align-self: flex-start; padding: 0.2rem 0; background: none; border: none; cursor: pointer;
  font-family: var(--font-sans); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-bronze); transition: color 0.3s; }
.svc-view::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.svc-view:hover { color: var(--wine-700); }
.svc-view:hover::after { transform: scaleX(1); }
.shot { position: relative; flex: 0 0 auto; height: clamp(220px, 48vh, 440px); aspect-ratio: 3 / 4; width: auto;
  border-radius: 12px; overflow: hidden; cursor: pointer; background: linear-gradient(150deg, #f4e8d6, #e7d3bd); }
.shot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.5s var(--ease), transform 0.6s var(--ease); }
.shot.ready img { opacity: 1; }
.shot:hover img { transform: scale(1.07); }

/* per-service photos overlay (stacked above the service modal, with a Back button) */
.svc-photos { position: fixed; inset: 0; z-index: 6500; display: grid; justify-items: center; align-items: center;
  padding: clamp(5.5rem, 10vh, 7rem) clamp(0.9rem, 4vw, 2.4rem) clamp(1.5rem, 4vh, 2.6rem); }
.svc-photos[hidden] { display: none; }
.svc-photos-backdrop { position: absolute; inset: 0; background: rgba(14,3,6,0.8); backdrop-filter: blur(10px); opacity: 0; transition: opacity 0.35s var(--ease); }
.svc-photos.open .svc-photos-backdrop { opacity: 1; }
.svc-photos-card { position: relative; z-index: 2; width: min(1200px, 94vw); max-height: calc(100dvh - clamp(7rem, 14vh, 9rem)); display: flex; flex-direction: column;
  background: var(--cream-bg); color: var(--espresso); border-radius: 22px; overflow: hidden;
  border: 1px solid rgba(228,201,141,0.35); box-shadow: 0 60px 120px -40px rgba(0,0,0,0.85);
  transform: translateY(24px) scale(0.98); opacity: 0; transition: transform 0.45s var(--ease), opacity 0.35s var(--ease); }
.svc-photos.open .svc-photos-card { transform: none; opacity: 1; }
.svc-photos-head { display: flex; align-items: center; gap: 1rem; flex: none; padding: clamp(0.9rem,2vw,1.3rem) clamp(1.2rem,2.4vw,1.8rem); border-bottom: 1px solid rgba(58,13,22,0.12); }
.svc-photos-back { display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.55rem 1.05rem 0.55rem 0.85rem; border-radius: 100px;
  background: var(--grad-gold); color: var(--wine-900); font-family: var(--font-sans); font-weight: 600; font-size: 0.78rem;
  box-shadow: 0 10px 22px -13px rgba(120,80,20,0.7); transition: transform 0.3s var(--ease); }
.svc-photos-back:hover { transform: translateX(-3px); }
.svc-photos-back .ico { display: grid; place-items: center; width: 16px; height: 16px; }
.svc-photos-back svg { width: 16px; height: 16px; }
.svc-photos-title { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.15rem, 2.4vw, 1.7rem); color: var(--wine-700); line-height: 1; }
.svc-photos-body { padding: clamp(1rem,2.2vw,1.6rem); overflow-y: auto; scrollbar-width: thin; scrollbar-color: rgba(193,155,82,0.5) transparent; }
.svc-photos-body::-webkit-scrollbar { width: 8px; }
.svc-photos-body::-webkit-scrollbar-thumb { background: rgba(193,155,82,0.4); border-radius: 20px; }
.svc-photos-grid { display: flex; flex-wrap: wrap; justify-content: center; align-content: center; gap: 1rem; }
.svc-photos-empty { font-family: var(--font-accent); font-style: italic; color: var(--espresso-soft); font-size: 0.98rem; padding: 2rem 0.3rem; text-align: center; }

.footer-hours { color: var(--text-dim); font-size: 0.9rem; margin-top: 0.15rem; }

/* =========================================================
   STATS
   ========================================================= */
.stats { padding: clamp(5rem,12vw,9rem) var(--pad); max-width: var(--maxw); margin: 0 auto; }
.stats-head { font-family: var(--font-editorial); font-weight: 500; font-size: clamp(1.9rem, 5vw, 3.6rem); line-height: 1.02; color: var(--ivory); max-width: 20ch; margin: 0.5rem 0 clamp(2.4rem, 5vw, 3.6rem); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.6rem 2rem; }
.stat { border-top: 1px solid rgba(228,201,141,0.2); padding-top: 1.3rem; }
.stat-num { font-family: var(--font-editorial); font-weight: 400; font-size: clamp(2.6rem, 6vw, 5rem); line-height: 0.9; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; }
.stat-label { color: var(--text-dim); font-size: 0.9rem; margin-top: 0.7rem; display: block; }

/* two-column detail block that fills the right side */
.why-split { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2.4rem, 6vw, 5rem); margin-top: clamp(3rem, 6vw, 5rem); align-items: start; }
.stat-quote { font-family: var(--font-editorial); font-style: italic; font-weight: 500; font-size: clamp(1.7rem,4vw,3rem); line-height: 1.14; color: var(--ivory); max-width: 18ch; }
.why-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.6rem 0 1.4rem; }
.why-tags li { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-200); border: 1px solid rgba(228,201,141,0.28); border-radius: 100px; padding: 0.42rem 0.9rem; }
.why-points { display: grid; gap: 0; }
.why-point { display: flex; gap: 1.1rem; padding: 1.2rem 0; border-top: 1px solid rgba(228,201,141,0.14); }
.why-point:first-child { border-top: none; padding-top: 0; }
.wp-i { font-family: var(--font-mono); font-size: 0.72rem; color: var(--gold-deep); flex: 0 0 auto; padding-top: 0.2rem; }
.why-point h4 { font-family: var(--font-sans); font-weight: 600; font-size: 1.04rem; color: var(--gold-100); margin-bottom: 0.25rem; }
.why-point p { color: var(--text-dim); font-size: 0.92rem; line-height: 1.5; }

/* =========================================================
   GALLERY — masonry
   ========================================================= */
.gallery { padding: clamp(5rem,12vw,9rem) var(--pad); max-width: var(--maxw); margin: 0 auto; }
.gallery-head { margin-bottom: 3rem; }
/* Bento grid of PORTRAIT tiles: large feature tiles (g-lg) are exactly 2× the
   normal ones (g-md), both 3:4 like the photos — so sizes vary but images still
   fit cleanly. Row unit ≈ ⅓ of a column so 4 rows = 3:4, 8 rows = 3:4 (2×). */
.masonry { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: clamp(64px, 5.9vw, 88px); grid-auto-flow: row dense; gap: 16px; }
.m-item { position: relative; border-radius: 16px; overflow: hidden; cursor: pointer;
  grid-column: span 1; grid-row: span 4;
  background: linear-gradient(150deg, var(--cherry), var(--wine-950));
  box-shadow: 0 34px 66px -46px rgba(58,13,22,0.55); }
.m-item.g-md { grid-column: span 1; grid-row: span 4; }
.m-item.g-lg { grid-column: span 2; grid-row: span 8; }
/* two stacked layers → real crossfade, with a subtle settle-in zoom */
.m-layer { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0;
  transform: scale(1.06); transition: opacity 1.1s var(--ease), transform 1.7s var(--ease), filter 0.6s var(--ease);
  will-change: opacity, transform; backface-visibility: hidden; }
.m-layer.is-on { opacity: 1; transform: scale(1); }
.m-item:hover .m-layer.is-on { transform: scale(1.02); filter: brightness(1.05); }
.m-ph { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--font-accent); font-style: italic; color: rgba(244,236,225,0.4); }
.m-item::after { content: "⤢"; position: absolute; inset: 0; display: grid; place-items: center; color: var(--gold-light); background: linear-gradient(160deg, transparent, rgba(20,4,8,0.5)); opacity: 0; transition: opacity 0.4s; z-index: 2; pointer-events: none; }
.m-item:hover::after { opacity: 1; }
.m-item.is-hidden { display: none; }
.gallery-more { text-align: center; margin-top: 2.4rem; }
/* View More / Less is only for compact screens (phones & small tablets) */
@media (min-width: 861px) { .gallery-more { display: none; } }

.lightbox { position: fixed; inset: 0; z-index: 7000; background: rgba(14,3,6,0.95); backdrop-filter: blur(8px); display: grid; place-items: center; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 90vw; max-height: 84vh; border-radius: 10px; }
.lb-close, .lb-prev, .lb-next { position: absolute; color: var(--gold-light); font-size: 2.4rem; padding: 0.3rem 0.9rem; transition: 0.3s; }
.lb-close { top: 20px; right: 26px; font-size: 2.8rem; }
.lb-prev { left: 2%; top: 50%; transform: translateY(-50%); font-size: 3rem; }
.lb-next { right: 2%; top: 50%; transform: translateY(-50%); font-size: 3rem; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { color: #fff; }

/* =========================================================
   BRIDAL — cinematic feature band
   ========================================================= */
.bridal-feature { position: relative; min-height: clamp(420px, 62vh, 620px); display: grid; place-items: center; text-align: center; overflow: hidden; padding: clamp(3.5rem,8vw,6rem) var(--pad); }
.bf-bg { position: absolute; inset: 0; z-index: 0; }
.bf-bg img { width: 100%; height: 100%; object-fit: cover; }
.bridal-feature::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(20,4,8,0.66) 0%, rgba(42,7,16,0.8) 60%, rgba(20,4,8,0.88) 100%); }
.bf-inner { position: relative; z-index: 2; max-width: 680px; }
.bf-eyebrow { display: block; font-family: var(--font-sans); font-weight: 500; font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-light); margin-bottom: clamp(1rem,2.5vw,1.5rem); }
.bf-head { font-family: var(--font-editorial); font-weight: 400; font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.07; color: var(--ivory); }
.bf-head em { font-style: italic; color: var(--gold); }
.bf-lede { color: rgba(240,225,194,0.85); font-size: clamp(0.92rem,1.2vw,1.05rem); line-height: 1.65; max-width: 46ch; margin: clamp(1.1rem,2.5vw,1.5rem) auto clamp(1.8rem,3.6vw,2.5rem); }

/* =========================================================
   VOICES — floating glass marquee
   ========================================================= */
.voices { padding: clamp(5rem,12vw,9rem) 0; overflow: hidden; }
.voices .sec-index { padding-inline: var(--pad); }
.voices-row { display: flex; gap: 1.6rem; width: max-content; will-change: transform; margin-bottom: 1.6rem; }
.voice { flex: 0 0 auto; max-width: 30ch; padding: 1.8rem 2rem; border-radius: 18px; background: rgba(244,236,225,0.04); border: 1px solid rgba(228,201,141,0.14); backdrop-filter: blur(6px); font-family: var(--font-accent); font-style: italic; font-size: 1.25rem; line-height: 1.4; color: var(--ivory); }
.voice cite { display: block; margin-top: 0.9rem; font-family: var(--font-sans); font-style: normal; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-deep); }

/* =========================================================
   FAQ
   ========================================================= */
.faq { padding: clamp(5rem,12vw,9rem) var(--pad); max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem,5vw,5rem); align-items: start; }
.faq-left { position: sticky; top: 20vh; }
.faq-list { display: grid; }
.faq-item { border-top: 1px solid rgba(228,201,141,0.18); }
.faq-item:last-child { border-bottom: 1px solid rgba(228,201,141,0.18); }
.faq-item summary { list-style: none; cursor: pointer; padding: 1.5rem 0; font-family: var(--font-editorial); font-size: clamp(1.2rem,2.4vw,1.7rem); color: var(--ivory); display: flex; justify-content: space-between; gap: 1rem; align-items: center; transition: color 0.3s; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--gold); font-size: 1.6rem; transition: transform 0.4s var(--ease); font-family: var(--font-sans); }
.faq-item[open] summary::after { transform: rotate(135deg); }
.faq-item[open] summary { color: var(--gold); }
.faq-item p { padding: 0 0 1.5rem; color: var(--text-dim); max-width: 52ch; }

/* =========================================================
   BOOK
   ========================================================= */
.book { padding: clamp(4rem,9vw,7rem) var(--pad) clamp(3rem,6vw,5rem); max-width: var(--maxw); margin: 0 auto; }
.book-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem,6vw,6rem); align-items: start; }
.book-head { font-family: var(--font-editorial); font-weight: 400; font-size: clamp(2.6rem,6vw,5rem); line-height: 0.98; margin-bottom: 2.4rem; }
.book-head .italic { font-style: italic; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.book-info { display: grid; gap: 1.4rem; margin-bottom: 2rem; }
.book-info li span { display: block; font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.35rem; }
.book-info li p { color: var(--champagne); font-size: 0.98rem; }
.book-info a:hover { color: var(--gold); }
.book-fullmap { height: clamp(320px, 42vw, 520px); border-radius: 20px; overflow: hidden; border: 1px solid rgba(228,201,141,0.18); filter: grayscale(0.2) contrast(1.05) brightness(0.9); margin-top: clamp(2.5rem,5vw,4rem); }
.book-fullmap iframe { display: block; width: 100%; height: 100%; border: 0; }
.book-maplink { display: inline-flex; margin-top: 1.2rem; }

.book-form { border: 1px solid rgba(228,201,141,0.16); border-radius: 22px; padding: clamp(1.6rem,3vw,2.6rem); background: rgba(244,236,225,0.03); backdrop-filter: blur(6px); }
.fld { position: relative; margin-bottom: 1.6rem; }
.fld input, .fld select, .fld textarea { width: 100%; padding: 1.1rem 0 0.6rem; background: transparent; border: none; border-bottom: 1px solid rgba(228,201,141,0.28); color: var(--ivory); font-family: var(--font-sans); font-size: 1rem; transition: border-color 0.4s; }
.fld textarea { resize: vertical; }
.fld input:focus, .fld select:focus, .fld textarea:focus { outline: none; border-bottom-color: var(--gold); }
.fld label { position: absolute; left: 0; top: 1.1rem; color: var(--text-dim); font-size: 1rem; pointer-events: none; transition: 0.35s var(--ease); }
.fld label em { font-style: normal; opacity: 0.6; font-size: 0.85em; }
.fld input:focus + label, .fld input:not(:placeholder-shown) + label,
.fld textarea:focus + label, .fld textarea:not(:placeholder-shown) + label { top: -0.4rem; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); }
.fld .lbl-static { top: -0.4rem; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); }
.fld input.invalid, .fld input.invalid + label { border-color: #e58; color: #e9a; }

/* custom Service dropdown */
.cselect { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.4rem 0 0.6rem; background: transparent; border: none; border-bottom: 1px solid rgba(228,201,141,0.28);
  color: var(--ivory); font-family: var(--font-sans); font-size: 1rem; text-align: left; cursor: pointer; transition: border-color 0.4s; }
.cselect:focus-visible { outline: none; border-bottom-color: var(--gold); }
.cselect[aria-expanded="true"] { border-bottom-color: var(--gold); }
.cselect-value { color: var(--text-dim); transition: color 0.3s; }
.cselect-value.has-value { color: var(--ivory); }
.cselect-caret { flex: none; width: 8px; height: 8px; border-right: 1.5px solid var(--gold-deep); border-bottom: 1.5px solid var(--gold-deep);
  transform: rotate(45deg) translate(-2px, -2px); transition: transform 0.35s var(--ease); }
.cselect[aria-expanded="true"] .cselect-caret { transform: rotate(-135deg) translate(-1px, -1px); }
.cselect-list { position: absolute; left: 0; right: 0; top: calc(100% + 6px); z-index: 20; margin: 0; padding: 0.4rem; list-style: none;
  background: var(--wine-800); border: 1px solid rgba(228,201,141,0.3); border-radius: 12px; box-shadow: 0 30px 60px -24px rgba(0,0,0,0.72);
  max-height: 270px; overflow-y: auto; scrollbar-width: thin; scrollbar-color: rgba(193,155,82,0.5) transparent; }
.cselect-list[hidden] { display: none; }
.cselect-list::-webkit-scrollbar { width: 7px; }
.cselect-list::-webkit-scrollbar-thumb { background: rgba(193,155,82,0.4); border-radius: 20px; }
.cselect-opt { padding: 0.72rem 0.95rem; border-radius: 8px; color: var(--ivory); font-family: var(--font-sans); font-size: 0.95rem;
  cursor: pointer; transition: background 0.2s, color 0.2s; }
.cselect-opt:hover, .cselect-opt.active { background: rgba(228,201,141,0.14); color: var(--gold-light); }
.cselect-opt[aria-selected="true"] { color: var(--gold); }
.cselect-opt.is-muted { color: var(--text-dim); font-style: italic; }
.cselect-opt.is-muted:hover, .cselect-opt.is-muted.active { color: var(--gold-light); }
.book-note { font-size: 0.78rem; color: var(--text-dim); text-align: center; margin-top: 1rem; }
.book-success { margin-top: 1rem; text-align: center; color: var(--gold); font-size: 0.9rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.book-success .tick { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--grad-gold); color: var(--wine-900); font-size: 0.8rem; }

/* ── contact on the cream chapter: dark, readable text on the light surface + a lighter map ── */
.book.cream .book-head .italic,
.book.cream .book-head .italic .char { background: none; -webkit-background-clip: initial; background-clip: initial; -webkit-text-fill-color: #7a1b1d; color: #7a1b1d; }
.book.cream .book-info li span { color: var(--gold-bronze); }
.book.cream .book-info li p { color: var(--espresso-soft); }
.book.cream .book-info a:hover { color: var(--wine-700); }
.book.cream .book-form { background: rgba(255,255,255,0.4); border-color: rgba(193,155,82,0.32); }
.book.cream .fld input, .book.cream .fld select, .book.cream .fld textarea { color: var(--espresso); border-bottom-color: rgba(122,42,46,0.22); }
.book.cream .fld input:focus, .book.cream .fld select:focus, .book.cream .fld textarea:focus { border-bottom-color: var(--gold-deep); }
.book.cream .fld label { color: var(--espresso-soft); }
.book.cream .fld input:focus + label, .book.cream .fld input:not(:placeholder-shown) + label,
.book.cream .fld textarea:focus + label, .book.cream .fld textarea:not(:placeholder-shown) + label,
.book.cream .fld .lbl-static { color: var(--gold-bronze); }
.book.cream .cselect { color: var(--espresso); border-bottom-color: rgba(122,42,46,0.22); }
.book.cream .cselect-value { color: var(--espresso-soft); }
.book.cream .cselect-value.has-value { color: var(--espresso); }
.book.cream .book-note { color: var(--espresso-soft); }
.book.cream .book-fullmap { filter: none; border-color: rgba(193,155,82,0.35); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { padding: clamp(2.4rem,5vw,3.8rem) var(--pad) 1.8rem; border-top: 1px solid rgba(228,201,141,0.14); overflow: hidden; position: relative; }
.footer-huge { font-family: var(--font-editorial); font-weight: 400; font-size: clamp(2.4rem, 8.5vw, 6.4rem); line-height: 0.9; letter-spacing: -0.02em; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; text-align: center; margin-bottom: clamp(1.4rem, 3vw, 2.4rem); }
.footer-logo { display: inline-block; height: clamp(44px, 7vw, 78px); width: auto; max-width: 88%; object-fit: contain; filter: drop-shadow(0 3px 10px rgba(0,0,0,0.4)); }
.footer-cols { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; padding-bottom: 3rem; }
.footer-h { display: block; font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 1.1rem; }
.footer-col p, .footer-col a { color: var(--text-dim); font-size: 0.92rem; display: block; padding: 0.2rem 0; transition: color 0.3s, transform 0.4s var(--ease); }
.footer-col a:hover { color: var(--gold); transform: translateX(4px); }
.footer-base { max-width: var(--maxw); margin: 0 auto; padding-top: 2rem; border-top: 1px solid rgba(228,201,141,0.12); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem; font-size: 0.76rem; color: var(--text-dim); }
.credit a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
.credit a:hover { color: var(--gold-light); }
.addr-link { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
.addr-link:hover { color: var(--gold-bronze); }
.ig-link { display: inline-flex; align-items: center; gap: 0.5rem; color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
.ig-link:hover { color: var(--gold-bronze); }
.ig-ico { width: 1.15em; height: 1.15em; flex: none; }

.wa-float { position: fixed; bottom: 92px; right: 24px; z-index: 900; width: 56px; height: 56px; border-radius: 50%; background: var(--grad-gold); color: var(--wine-900); display: grid; place-items: center; font-size: 1.4rem; box-shadow: 0 14px 34px -12px rgba(228,201,141,0.6); transition: transform 0.5s var(--ease); }
.wa-float::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 1px solid var(--gold); animation: ripple 2.4s ease-out infinite; }
@keyframes ripple { 0%{transform:scale(1);opacity:.6} 100%{transform:scale(1.8);opacity:0} }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 60%; height: 60%; fill: currentColor; display: block; }

/* =========================================================
   TYPE SYSTEM — varied roles across sections
   Clash Display · Zodiak · Cormorant italic · Satoshi · Space Mono
   ========================================================= */
/* META / LABELS / BUTTONS → Space Mono (techy-editorial contrast) */
.sec-index, .hero-eyebrow, .svc-cat, .ba-tag, .book-info li span,
.footer-h, .nav-menu a, .services-hint, .hero-scroll, .svc-enq,
.loader-sub, .footer-base, .btn, .nav-book, .m-ph,
.fld input:focus + label, .fld input:not(:placeholder-shown) + label,
.fld textarea:focus + label, .fld textarea:not(:placeholder-shown) + label,
.fld .lbl-static {
  font-family: var(--font-mono);
  font-weight: 400;
}
/* Space Mono is wide — pull tracking in on the tiny labels */
.sec-index { letter-spacing: 0.26em; }
.hero-eyebrow, .services-hint, .hero-scroll, .footer-h, .book-info li span,
.svc-cat, .ba-tag, .svc-enq, .loader-sub { letter-spacing: 0.16em; }
.btn { letter-spacing: 0.05em; }
.m-ph { font-style: normal; letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.62rem; }

/* MODERN DISPLAY → Syne (the "crazy modern / artsy" moments) */
.services-intro .sec-title,
.gallery-head .sec-title,
.svc-chip h3,
.stat-num,
.footer-huge,
.loader-mark {
  font-family: var(--font-modern);
  letter-spacing: -0.02em;
}
.stat-num { font-weight: 500; }
.footer-huge { font-weight: 500; letter-spacing: -0.03em; }
.loader-mark { font-weight: 500; }
.services-intro .sec-title, .gallery-head .sec-title { font-weight: 400; }

/* ROMANTIC ITALIC → Cormorant Garamond italic (flowing accents) */
.hero-head .italic,
.bridal-head .italic,
.book-head .italic,
.stat-quote,
.voice {
  font-family: var(--font-italic);
  font-style: italic;
}
.hero-head .italic, .bridal-head .italic, .book-head .italic { font-weight: 500; letter-spacing: 0; }

/* nav wordmark keeps the luxe serif; tighten it */
.nav-logo { font-family: var(--font-serif); letter-spacing: -0.005em; }
.nav-menu a { letter-spacing: 0.08em; font-size: 0.72rem; }

/* Bodoni Moda hairlines are delicate — give the big editorial heads presence */
.hero-head, .bridal-head, .book-head, .about-manifesto,
.signature-copy h2, .faq-item summary, .stat-quote, .loader-title { font-weight: 400; }
.hero-head .italic, .bridal-head .italic, .book-head .italic { font-weight: 400; }

/* =========================================================
   FLORAL LILY MOTIF — the brochure's gold line-art, in corners
   ========================================================= */
.lily {
  position: absolute; z-index: 0; pointer-events: none;
  width: clamp(160px, 19vw, 320px); aspect-ratio: 1;
  background: currentColor; color: rgba(231,201,133,0.34);
  -webkit-mask: url("../images/logo/lily.svg") center / contain no-repeat;
  mask: url("../images/logo/lily.svg") center / contain no-repeat;
  animation: lilyBreath 10s ease-in-out infinite;
}
.cream .lily { color: rgba(166,120,26,0.30); }
.lily-lg { width: clamp(240px, 27vw, 420px); }
/* tucked into corners, bleeding sideways off the edge (kept out of the text) */
.lily-tr { top: 2%;    right: -5%; }
.lily-tl { top: 2%;    left: -5%;  transform: scaleX(-1); }
.lily-br { bottom: 2%; right: -5%; transform: scaleY(-1); }
.lily-bl { bottom: 2%; left: -5%;  transform: scale(-1, -1); }
@keyframes lilyBreath { 0%, 100% { opacity: 0.8; } 50% { opacity: 1; } }
/* hero: keep the botanical identity but tuck it into the corners so it never
   competes with the photograph — quieter fill + pushed into the negative space */
.hero .lily-tr { top: -3%; right: -8%; }
.hero .lily-bl { bottom: 4%; left: -3%; }
.hero.cream .lily-bl { color: rgba(166,120,26,0.20); }
/* mirrored floral in the bottom-right, balancing the bottom-left corner */
.hero .lily-br { bottom: 3%; right: -3%; }
.hero.cream .lily-br { color: rgba(166,120,26,0.18); }
@media (max-width: 860px) {
  .hero .lily-bl { bottom: 2%; left: -10%; opacity: 0.7; }
  .hero .lily-br { bottom: 1%; right: -12%; opacity: 0.7; }
}
@media (prefers-reduced-motion: reduce) { .lily { animation: none; } }
@media (max-width: 700px) { .lily { width: clamp(120px, 34vw, 210px); opacity: 0.85; } }

/* host sections establish a positioning context */
.book, .voices, .stats { position: relative; }
/* keep section content ABOVE the corner motifs so text is never hidden */
.hero-grid, .hero-scroll,
.about-inner,
.services-intro, .svc-rail,
.signature-inner,
.stats-grid, .why-split, .stats-head,
.gallery-head, .masonry, .gallery-more,
.faq-list, .book-grid, .voices .sec-index, .voices-row,
.footer-huge, .footer-cols, .footer-base { position: relative; z-index: 2; }
.faq-left { z-index: 2; } /* stays sticky */

/* =========================================================
   CREAM CHAPTERS — alternating light editorial sections
   ========================================================= */
.cream { position: relative; color: var(--espresso); z-index: 1; }
/* full-bleed cream band behind the (centered) section content */
.cream::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 100vw;
  transform: translateX(-50%); z-index: -1;
  background:
    radial-gradient(52vw 42vw at 4% 2%,    rgba(150,38,42,.13), transparent 60%),
    radial-gradient(58vw 46vw at 8% -6%,   rgba(233,214,177,.62), transparent 62%),
    radial-gradient(46vw 40vw at 96% 14%,  rgba(246,236,220,.85), transparent 60%),
    radial-gradient(48vw 44vw at 100% 52%, rgba(94,17,19,.10), transparent 62%),
    radial-gradient(70vw 55vw at 50% 108%, rgba(226,213,188,.55), transparent 64%),
    linear-gradient(178deg, #FDFBF7 0%, #F6EAE4 34%, #F7F1E7 66%, #F0DDD6 100%);
}
/* very fine gold hairline at the top edge of each cream chapter */
.cream::after {
  content: ""; position: absolute; top: 0; left: 50%; width: 100vw; height: 1px;
  transform: translateX(-50%); background: linear-gradient(90deg, transparent, rgba(193,155,82,0.5), transparent);
}

.cream .sec-index, .cream .sec-index.light { color: var(--gold-bronze); }
.cream .sec-title, .cream h2, .cream h3, .cream h4 { color: var(--espresso); }
.cream p { color: var(--espresso-soft); }
.cream .about-manifesto { color: var(--espresso); }
.cream .about-text strong { color: var(--espresso); }

/* metallic gold still reads on cream — deepen it slightly */
.cream .gold, .cream .italic, .cream .stat-num,
.cream .about-manifesto .word { /* keep manifesto solid espresso, not gradient */ }
.cream .link-under { color: var(--gold-bronze); }

/* buttons on cream */
.cream .btn-line { color: var(--wine-700); border-color: rgba(58,13,22,0.3); }
.cream .btn-line:hover { color: var(--wine-900); border-color: transparent; }

/* ABOUT figures get a soft light frame on cream */
.cream .about-fig .fig-img { box-shadow: 0 40px 80px -46px rgba(58,13,22,0.45); }
.cream .fig-b { box-shadow: 0 40px 80px -40px rgba(58,13,22,0.4); }

/* SIGNATURE before/after keeps its dark drama on cream */

/* GALLERY masonry placeholder label darker on cream tiles is unnecessary (tiles are dark) */

/* FAQ on cream */
.cream .faq-item { border-color: rgba(58,13,22,0.16); }
.cream .faq-item:last-child { border-bottom-color: rgba(58,13,22,0.16); }
.cream .faq-item summary { color: var(--espresso); }
.cream .faq-item[open] summary { color: var(--gold-bronze); }
.cream .faq-item summary::after { color: var(--gold-bronze); }

/* keep selection + focus visible on light */
.cream ::selection { background: var(--gold-bronze); color: var(--cream-bg); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .masonry { grid-template-columns: repeat(3, 1fr); grid-auto-rows: clamp(72px, 8.6vw, 96px); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .cursor, .cursor-ring, .mouse-glow { display: none; }
  /* the navbar pill uses backdrop-filter, which would trap the fixed fullscreen menu inside it —
     drop the blur on mobile (and make the pill near-solid) so the menu can cover the viewport */
  .nav-shell { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(34,7,13,0.94); }
  #nav.shrink .nav-shell { background: rgba(30,6,11,0.97); }
  .nav-menu { position: fixed; inset: 0; z-index: 1100; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; background: rgba(20,4,8,0.98); opacity: 0; visibility: hidden; transition: opacity 0.5s, visibility 0.5s; }
  .nav-menu.open { opacity: 1; visibility: visible; }
  .nav-menu a { font-size: 1.4rem; letter-spacing: 0.1em; }
  /* the fullscreen mobile menu is dark — keep its links light even in nav-light mode */
  #nav.nav-light .nav-menu a { color: var(--h-cream); }
  #nav.nav-light .nav-menu a:hover, #nav.nav-light .nav-menu a.active { color: var(--h-gold); }
  .nav-book { display: none; }
  .nav-burger { display: flex; }
  /* hero: text stacks above the decoration; chips become a 2x2 grid, monogram hidden */
  .hero-grid { grid-template-columns: 1fr; gap: clamp(2rem, 7vw, 3rem); }
  .hero-copy { padding-left: 0; max-width: none; text-align: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-lede { margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-trust { justify-content: center; }
  .hero-monogram { display: none; }
  .hero-decor { align-items: center; padding-left: 0; }
  .hero-chips { display: none; }
  .chip { justify-content: center; margin-left: 0 !important; }
  .hero-badge { margin: 1.4rem auto 0; align-self: center; }
  .about-inner { grid-template-columns: 1fr; grid-template-areas: "lead" "media" "text"; }
  .about-media { height: 60vh; max-width: 460px; }
  .why-split { grid-template-columns: 1fr; }
  .svc-facts { grid-template-columns: 1fr; }
  .faq { grid-template-columns: 1fr; }
  .faq-left { position: static; }
  .book-grid { grid-template-columns: 1fr; }
  .masonry { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}
@media (max-width: 560px) {
  :root { --pad: 1.3rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: clamp(40px, 12vw, 72px); gap: 12px; }
  .m-item.is-hidden { display: none; }
  .voice { font-size: 1.1rem; max-width: 24ch; }
  .hero-float { display: none; }
  /* trim the footer on phones: just logo, copyright, and the VibeCrafts credit */
  .footer-cols { display: none; }
  .footer-base { flex-direction: column; align-items: center; text-align: center; gap: 0.5rem; }
}
@media (max-width: 380px) { .masonry { gap: 10px; } }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .cursor, .cursor-ring, .mouse-glow, #dust { display: none !important; }
  [data-fade], [data-splt] .char, [data-splt-words] .word { opacity: 1 !important; transform: none !important; }
}
