/* =====================================================================
   MEHNAZ MEHENDI — Design System
   Palette: warm ivory, deep mehendi green, dark brown, muted maroon, antique gold
   Type: Cormorant Garamond (display) + Jost (body)
   ===================================================================== */

:root {
  --ivory: #f6f1e7;
  --ivory-2: #efe7d8;
  --cream: #fbf8f2;
  --green: #2f4a3a;
  --green-deep: #1f3328;
  --green-soft: #5c7a66;
  --brown: #3a2a20;
  --brown-2: #5a4234;
  --brown-3: #8a6f5e;
  --maroon: #6e2f34;
  --maroon-soft: #8c454a;
  --gold: #b8934a;
  --gold-light: #d7b877;
  --gold-pale: #ecdcb5;
  --line: rgba(58, 42, 32, 0.12);
  --shadow: 0 20px 50px -20px rgba(58, 42, 32, 0.35);
  --shadow-sm: 0 10px 30px -15px rgba(58, 42, 32, 0.3);
  --radius: 4px;
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  --font-brand: 'Cinzel Decorative', 'Cormorant Garamond', serif;
  --font-script: 'Great Vibes', 'Cormorant Garamond', cursive;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html, body { overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--brown);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.1; margin: 0; color: var(--brown); letter-spacing: 0.005em; }
p { margin: 0 0 1rem; }
strong { font-weight: 500; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.container-narrow { max-width: 820px; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--green); color: #fff; padding: .5rem 1rem; z-index: 999; }
.skip-link:focus { left: 1rem; top: 1rem; }
.hide-mobile { display: none !important; }
@media (min-width: 1024px) { .hide-mobile { display: inline-flex !important; } }

/* ---------- Typography ---------- */
.display-1 { font-size: clamp(2.6rem, 6.5vw, 5.4rem); font-weight: 400; line-height: 1.02; }
.display-2 { font-size: clamp(2.2rem, 4.6vw, 3.8rem); font-weight: 400; line-height: 1.08; }
.h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); font-weight: 400; line-height: 1.12; }
.h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); font-weight: 500; }
.lead { font-size: clamp(1.1rem, 1.5vw, 1.25rem); font-weight: 300; line-height: 1.75; color: var(--brown-2); }
.italic { font-style: italic; }
.eyebrow {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
  display: flex; align-items: center; gap: .85rem;
}
.eyebrow::before { content: ''; width: 34px; height: 1px; background: var(--gold); }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ''; width: 34px; height: 1px; background: var(--gold); }
.eyebrow-light { color: var(--gold-light); }
.eyebrow-light::before, .eyebrow-light::after { background: var(--gold-light); }
.text-center { text-align: center; }
.muted { color: var(--brown-3); }
.gold { color: var(--gold); }
.maroon { color: var(--maroon); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--font-body); font-weight: 500; font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
  padding: 1.05rem 2.1rem; border: 1px solid transparent; border-radius: 2px;
  transition: all .45s var(--ease); position: relative; overflow: hidden; white-space: nowrap;
}
.btn-sm { padding: .75rem 1.4rem; font-size: .7rem; letter-spacing: .18em; }
.btn-primary { background: var(--green); color: var(--ivory); border-color: var(--green); }
.btn-primary:hover { background: var(--green-deep); border-color: var(--green-deep); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-gold { background: var(--gold); color: var(--brown); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); }
.btn-maroon { background: var(--maroon); color: var(--ivory); border-color: var(--maroon); }
.btn-maroon:hover { background: var(--maroon-soft); transform: translateY(-2px); }
.btn-outline { border-color: var(--brown); color: var(--brown); background: transparent; }
.btn-outline:hover { background: var(--brown); color: var(--ivory); }
.btn-outline-light { border-color: rgba(246,241,231,.55); color: var(--ivory); background: transparent; }
.btn-outline-light:hover { background: var(--ivory); color: var(--green-deep); border-color: var(--ivory); }
.btn-wa { background: #1f7a52; color: #fff; border-color: #1f7a52; }
.btn-wa:hover { background: #17603f; transform: translateY(-2px); }
.btn .ico { width: 18px; height: 18px; }
.btn-link { display: inline-flex; align-items: center; gap: .6rem; font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 500; color: var(--green); padding-bottom: .3rem; border-bottom: 1px solid var(--gold); transition: gap .3s var(--ease), color .3s; }
.btn-link:hover { gap: 1rem; color: var(--maroon); }
.btn-link .ico { width: 16px; height: 16px; }
.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }

/* ---------- Logo: gold artwork gets a soft dark rim (reads on light + dark, no plaque) ---------- */
.brand-logo, .footer-logo, .hero-logo { filter: drop-shadow(0 1px 0 rgba(58,42,32,.55)) drop-shadow(0 0 1px rgba(58,42,32,.75)) drop-shadow(0 4px 10px rgba(0,0,0,.25)); }
.site-header.scrolled .brand-logo, .site-header.solid .brand-logo { filter: drop-shadow(0 0 1px rgba(58,42,32,.9)) drop-shadow(0 1px 0 rgba(58,42,32,.7)) drop-shadow(0 3px 8px rgba(58,42,32,.25)); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; width: 100%;
  transition: background .4s var(--ease), box-shadow .4s, padding .4s;
  padding: 1rem 0;
  background: linear-gradient(to bottom, rgba(25,20,15,.55), transparent);
}
.site-header.scrolled, .site-header.solid { background: rgba(246,241,231,.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); padding: .55rem 0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .75rem; color: var(--ivory); transition: color .4s; }
.site-header.scrolled .brand, .site-header.solid .brand { color: var(--brown); }
.brand-logo { width: 46px; height: auto; transition: width .4s; }
.site-header.scrolled .brand-logo, .site-header.solid .brand-logo { width: 40px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-brand); font-size: 1.3rem; font-weight: 700; letter-spacing: .04em; background: linear-gradient(120deg, var(--gold-pale), var(--gold), var(--gold-pale)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.site-header.scrolled .brand-name, .site-header.solid .brand-name, body.nav-open .brand-name { background: linear-gradient(120deg, var(--gold), var(--brown-2), var(--gold)); -webkit-background-clip: text; background-clip: text; }
.brand-sub { font-size: .58rem; letter-spacing: .42em; text-transform: uppercase; opacity: .9; margin-top: .3rem; font-weight: 400; }

.main-nav ul { display: flex; gap: clamp(1.2rem, 2vw, 2.2rem); }
.main-nav li { white-space: nowrap; }
.main-nav a { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 400; color: var(--ivory); opacity: .9; position: relative; padding: .4rem 0; transition: color .4s; }
.site-header.scrolled .main-nav a, .site-header.solid .main-nav a { color: var(--brown); }
.main-nav a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--gold); transition: width .35s var(--ease); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav .nav-cta { display: none; }
.header-actions { display: flex; align-items: center; gap: 1rem; }


@media (max-width: 1023px) {
  .main-nav { display: none; }
  .header-actions .btn { display: none; }
}


/* ---------- Sections ---------- */
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }
.section-sm { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-ivory { background: var(--ivory); }
.section-cream { background: var(--cream); }
.section-ivory2 { background: var(--ivory-2); }
.section-green { background: var(--green-deep); color: var(--ivory); }
.section-green h1, .section-green h2, .section-green h3, .section-green h4 { color: var(--ivory); }
.section-green .lead, .section-green p { color: rgba(246,241,231,.8); }
.section-brown { background: var(--brown); color: var(--ivory); }
.section-brown h2, .section-brown h3 { color: var(--ivory); }
.section-brown p { color: rgba(246,241,231,.8); }
.section-head { max-width: 720px; margin: 0 auto 3.5rem; text-align: center; }
.section-head .lead { margin-top: 1.2rem; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head.left .eyebrow { justify-content: flex-start; }
.ornament { width: 200px; height: 40px; color: var(--gold); margin: 1.2rem auto 0; display: block; }
.divider-gold { width: 60px; height: 1px; background: var(--gold); margin: 1.5rem auto; }

/* Subtle mandala watermark */
.mandala-bg { position: absolute; width: min(70vw, 720px); aspect-ratio: 1; border-radius: 50%; pointer-events: none; opacity: .07;
  background:
    repeating-conic-gradient(from 0deg, var(--gold) 0 2deg, transparent 2deg 15deg),
    radial-gradient(circle, transparent 30%, var(--gold) 30.5%, transparent 31%, transparent 45%, var(--gold) 45.5%, transparent 46%, transparent 60%, var(--gold) 60.5%, transparent 61%, transparent 75%, var(--gold) 75.5%, transparent 76%);
  -webkit-mask: radial-gradient(circle, #000 20%, transparent 72%); mask: radial-gradient(circle, #000 20%, transparent 72%);
}
.mandala-bg.tr { top: -20%; right: -20%; }
.mandala-bg.bl { bottom: -25%; left: -22%; }
.mandala-bg.light { opacity: .12; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .12s; } .reveal-d2 { transition-delay: .24s; } .reveal-d3 { transition-delay: .36s; } .reveal-d4 { transition-delay: .48s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- HERO SLIDER ---------- */
.hero { position: relative; min-height: 100svh; color: var(--ivory); overflow: hidden; isolation: isolate; background: var(--green-deep); }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 1.4s var(--ease), visibility 1.4s; display: flex; align-items: flex-end; }
.hero-slide.active { opacity: 1; visibility: visible; z-index: 1; }
.hero-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.hero-slide .hero-media img, .hero-slide .hero-media video { transform: scale(1.08); transition: transform 9s linear; }
.hero-slide.active .hero-media img, .hero-slide.active .hero-media video { transform: scale(1); }
.hero-veil { position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(22,17,13,.94) 0%, rgba(22,17,13,.62) 38%, rgba(22,17,13,.18) 68%, rgba(22,17,13,.5) 100%),
    linear-gradient(to right, rgba(31,51,40,.62), rgba(31,51,40,.22) 45%, transparent 72%); }
.hero-inner { position: relative; width: 100%; padding-top: 8.5rem; padding-bottom: clamp(7.5rem, 14vw, 9.5rem); }
.hero-copy { max-width: 760px; }
.hero-logo { width: clamp(90px, 10vw, 140px); height: auto; margin-bottom: 1.2rem; }
.hero-kicker { font-size: .68rem; letter-spacing: .32em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.1rem; display: flex; align-items: center; gap: .9rem; }
.hero-kicker::before { content: ''; width: 36px; height: 1px; background: var(--gold-light); flex-shrink: 0; }
.hero h1, .hero .hero-h { margin: 0; color: var(--ivory); text-shadow: 0 4px 30px rgba(0,0,0,.35); text-wrap: balance; }
.hero h1 .thin, .hero .hero-h .thin { font-weight: 300; font-style: italic; color: var(--gold-pale); }
.hero-sub { font-size: clamp(.95rem, 1.3vw, 1.15rem); letter-spacing: .08em; color: rgba(246,241,231,.85); margin: 1rem 0 .4rem; font-weight: 300; }
.hero-tag { font-family: var(--font-display); font-style: italic; font-size: clamp(1.25rem, 2.1vw, 1.8rem); color: var(--gold-pale); margin: .6rem 0 2rem; max-width: 560px; line-height: 1.35; }
.hero .btn-row { gap: .85rem; }

/* staggered copy animation on slide change */
.hero-copy > * { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.hero-slide.active .hero-copy > * { opacity: 1; transform: none; }
.hero-slide.active .hero-copy > :nth-child(1) { transition-delay: .25s; }
.hero-slide.active .hero-copy > :nth-child(2) { transition-delay: .38s; }
.hero-slide.active .hero-copy > :nth-child(3) { transition-delay: .5s; }
.hero-slide.active .hero-copy > :nth-child(4) { transition-delay: .62s; }
.hero-slide.active .hero-copy > :nth-child(5) { transition-delay: .74s; }
.hero-slide.active .hero-copy > :nth-child(6) { transition-delay: .86s; }

/* controls */
.hero-controls { position: absolute; left: 0; right: 0; bottom: 0; z-index: 5; display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; padding-bottom: clamp(1.4rem, 3vw, 2.4rem); pointer-events: none; }
.hero-controls > * { pointer-events: auto; }
.hero-dots { display: flex; gap: 1.2rem; flex: 1; max-width: 640px; }
.hero-dot { flex: 1; display: flex; flex-direction: column; gap: .6rem; text-align: left; padding: .4rem 0; color: rgba(246,241,231,.55); transition: color .4s; min-width: 0; }
.hero-dot.active { color: var(--ivory); }
.hero-dot-bar { display: block; width: 100%; height: 2px; background: rgba(246,241,231,.25); position: relative; overflow: hidden; }
.hero-dot-fill { position: absolute; inset: 0; background: var(--gold-light); transform: scaleX(0); transform-origin: left; }
.hero-dot.active .hero-dot-fill { animation: heroProgress var(--hero-dur, 7s) linear forwards; }
.hero.paused .hero-dot.active .hero-dot-fill { animation-play-state: paused; }
@keyframes heroProgress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.hero-dot-label { font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hero-arrows { display: flex; align-items: center; gap: .5rem; }
.hero-count { font-family: var(--font-display); font-size: 1rem; color: rgba(246,241,231,.6); margin-right: .8rem; letter-spacing: .1em; }
.hero-count b { color: var(--gold-pale); font-weight: 500; font-size: 1.4rem; }
.hero-arrow { width: 46px; height: 46px; border: 1px solid rgba(246,241,231,.35); border-radius: 50%; color: var(--ivory); font-size: 1.6rem; line-height: 1; display: grid; place-items: center; transition: all .35s var(--ease); backdrop-filter: blur(6px); }
.hero-arrow:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--brown); }
.hero-pause { position: relative; }
.hero-pause span { position: absolute; width: 2px; height: 12px; background: currentColor; top: 50%; left: 50%; transform: translate(-50%,-50%); transition: all .3s; }
.hero-pause span:first-child { margin-left: -3px; }
.hero-pause span:last-child { margin-left: 3px; }
.hero.paused .hero-pause span:first-child { width: 0; height: 0; border-style: solid; border-width: 6px 0 6px 10px; border-color: transparent transparent transparent currentColor; background: none; margin-left: 1px; }
.hero.paused .hero-pause span:last-child { opacity: 0; }

.hero-scroll { position: absolute; right: var(--gutter); top: 50%; transform: translateY(-50%); z-index: 5; writing-mode: vertical-rl; font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(246,241,231,.7); display: none; align-items: center; gap: 1rem; }
.hero-scroll::after { content: ''; width: 1px; height: 60px; background: linear-gradient(to bottom, var(--gold-light), transparent); animation: scrollPulse 2.2s infinite; }
@keyframes scrollPulse { 0%,100% { opacity: .4; transform: scaleY(.8); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }
.hero-side { position: absolute; left: var(--gutter); top: 50%; transform: translateY(-50%); z-index: 5; writing-mode: vertical-rl; font-size: .62rem; letter-spacing: .32em; text-transform: uppercase; color: rgba(246,241,231,.55); display: none; }
@media (min-width: 1200px) { .hero-side, .hero-scroll { display: flex; } }

/* Tablet / mobile hero — keep the photo visible: compact copy, side-by-side buttons */
@media (max-width: 767px) {
  .hero { min-height: calc(100svh - 62px); }
  .hero-slide { align-items: flex-end; }
  .hero-inner { padding-top: 6rem; padding-bottom: 5.4rem; }
  .hero-logo { width: 72px; margin-bottom: .8rem; }
  .hero h1, .hero .hero-h { font-size: clamp(2.1rem, 10vw, 2.8rem); line-height: 1.02; }
  .hero-sub { display: none; }
  .hero-tag { font-size: 1.05rem; margin: .5rem 0 1.2rem; max-width: 92%; }
  .hero .btn-row { flex-direction: row; flex-wrap: nowrap; gap: .5rem; }
  .hero .btn-row .btn { flex: 1; min-width: 0; padding: .8rem .6rem; font-size: .64rem; letter-spacing: .16em; justify-content: center; white-space: nowrap; }
  .hero .btn-row .btn:nth-child(2) { background: rgba(22,17,13,.35); border-color: rgba(246,241,231,.45); color: var(--ivory); backdrop-filter: blur(4px); }
  .hero .btn-row .btn:nth-child(3) { display: none; }
  .hero-veil { background: linear-gradient(to top, rgba(22,17,13,.9) 0%, rgba(22,17,13,.55) 32%, rgba(22,17,13,.12) 58%, rgba(22,17,13,.3) 100%); }
  .hero-controls { flex-direction: row; align-items: center; gap: 1rem; padding-bottom: 1rem; }
  .hero-dots { flex: 1; max-width: none; gap: .45rem; }
  .hero-dot-label { display: none; }
  .hero-count, .hero-pause { display: none; }
  .hero-arrows { gap: .4rem; margin-right: 3.4rem; }
  .hero-arrow { width: 36px; height: 36px; font-size: 1.3rem; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide .hero-media img, .hero-slide .hero-media video { transform: none; transition: none; }
  .hero-copy > * { transition: none; }
}

/* Page hero (inner pages) */
.page-hero { position: relative; padding: 9.5rem 0 4.5rem; background: var(--green-deep); color: var(--ivory); overflow: hidden; isolation: isolate; }
.page-hero.has-media { min-height: 62vh; display: flex; align-items: flex-end; }
.page-hero .hero-media img { animation: none; transform: none; }
.page-hero .hero-veil { background: linear-gradient(to top, rgba(22,17,13,.92), rgba(22,17,13,.45) 60%, rgba(22,17,13,.55)); }
.page-hero h1 { color: var(--ivory); }
.page-hero .lead { color: rgba(246,241,231,.8); max-width: 640px; }
.breadcrumb { font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.2rem; display: flex; gap: .6rem; }
.breadcrumb a { opacity: .75; } .breadcrumb a:hover { opacity: 1; }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 1.1rem 0; background: var(--cream); }
.marquee-track { display: flex; gap: 3rem; width: max-content; animation: marquee 38s linear infinite; }
.marquee-track span { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: var(--brown-2); display: flex; align-items: center; gap: 3rem; white-space: nowrap; }
.marquee-track span::after { content: '✦'; color: var(--gold); font-size: .7rem; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ---------- About editorial ---------- */
.about-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 1.05fr; gap: clamp(3rem, 6vw, 6rem); } }
.portrait-frame { position: relative; max-width: 480px; margin: 0 auto; padding: 2.5rem 1.5rem 0; }
.portrait-frame::before { content: ''; position: absolute; left: 0; right: 0; bottom: 0; top: 10%; background: linear-gradient(160deg, var(--green) 0%, var(--green-deep) 100%); border-radius: 220px 220px 4px 4px; z-index: 0; }
.portrait-frame::after { content: ''; position: absolute; inset: 4% -4% -4% 4%; border: 1px solid var(--gold); border-radius: 240px 240px 4px 4px; z-index: 0; opacity: .7; }
.portrait-frame img { position: relative; z-index: 2; width: 100%; height: auto; filter: drop-shadow(0 30px 40px rgba(31,51,40,.35)); }
.portrait-frame .portrait-glow { position: absolute; z-index: 1; inset: 15% 10% 0; border-radius: 50%; background: radial-gradient(circle at 50% 30%, rgba(215,184,119,.35), transparent 65%); }
.portrait-frame .portrait-orn { position: absolute; z-index: 3; left: -1.5rem; bottom: 8%; width: 130px; color: var(--gold-light); opacity: .9; }
.portrait-badge { position: absolute; z-index: 4; right: -.5rem; bottom: 2rem; background: var(--ivory); padding: 1rem 1.25rem; border-radius: 2px; box-shadow: var(--shadow); border-left: 3px solid var(--gold); max-width: 200px; }
.portrait-badge .b1 { font-family: var(--font-display); font-size: 1.35rem; line-height: 1.1; color: var(--brown); }
.portrait-badge .b2 { font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-top: .35rem; }
@media (max-width: 480px) { .portrait-badge { right: 0; max-width: 170px; padding: .8rem 1rem; } .portrait-frame .portrait-orn { left: -.5rem; width: 90px; } }
.about-copy .h2 { margin-bottom: 1.4rem; }
.about-copy .h2 em { font-style: italic; color: var(--maroon); }
.about-copy p { color: var(--brown-2); }
.about-copy .signature { font-family: var(--font-display); font-style: italic; font-size: 1.9rem; color: var(--maroon); margin: 1.6rem 0 1.8rem; }
.about-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1.2rem 2rem; margin: 2rem 0; padding: 1.6rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-facts dt { font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: .3rem; }
.about-facts dd { margin: 0; font-family: var(--font-display); font-size: 1.15rem; color: var(--brown); }

/* ---------- Services ---------- */
.services-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.service-card { position: relative; background: var(--cream); border: 1px solid var(--line); padding: 2.4rem 2rem 2.2rem; transition: transform .5s var(--ease), box-shadow .5s, border-color .5s; overflow: hidden; display: flex; flex-direction: column; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, var(--gold), transparent); transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card .num { position: absolute; top: 1.2rem; right: 1.4rem; font-family: var(--font-display); font-size: 3rem; color: var(--gold-pale); line-height: 1; }
.service-card .ico { width: 42px; height: 42px; color: var(--green); margin-bottom: 1.4rem; }
.service-card h3 { font-size: 1.55rem; margin-bottom: .7rem; }
.service-card p { color: var(--brown-2); font-size: .98rem; flex: 1; }
.service-card .btn-link { margin-top: 1rem; }

.service-rows .service-row { display: grid; gap: 2.5rem; align-items: center; padding: clamp(3rem, 6vw, 5rem) 0; border-bottom: 1px solid var(--line); }
.service-rows .service-row:last-child { border-bottom: 0; }
@media (min-width: 900px) { .service-rows .service-row { grid-template-columns: 1fr 1fr; gap: 5rem; } .service-rows .service-row.flip .service-img { order: 2; } }
.service-img { position: relative; aspect-ratio: 4/3; overflow: hidden; border-radius: 2px; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.service-row:hover .service-img img { transform: scale(1.04); }
.service-img::after { content: ''; position: absolute; inset: 1rem; border: 1px solid rgba(246,241,231,.6); pointer-events: none; }
.service-points { margin: 1.4rem 0 2rem; display: grid; gap: .6rem; }
.service-points li { display: flex; gap: .8rem; align-items: flex-start; color: var(--brown-2); }
.service-points li::before { content: '✦'; color: var(--gold); font-size: .7rem; margin-top: .55rem; flex-shrink: 0; }

/* ---------- Portfolio ---------- */
.filter-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem .5rem; margin-bottom: 2.5rem; }
.filter-btn { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; padding: .6rem 1.1rem; border: 1px solid transparent; border-radius: 2px; color: var(--brown-2); transition: all .35s; }
.filter-btn:hover { color: var(--maroon); }
.filter-btn.active { border-color: var(--gold); color: var(--brown); background: var(--cream); }
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; }
@media (min-width: 640px) { .gallery { grid-template-columns: repeat(3, 1fr); gap: .9rem; } }
@media (min-width: 1024px) { .gallery { grid-template-columns: repeat(4, 1fr); gap: 1.1rem; } }
.g-item { margin: 0; position: relative; overflow: hidden; border-radius: 3px; cursor: zoom-in; background: var(--ivory-2); aspect-ratio: 4 / 5; transition: opacity .5s var(--ease), transform .5s var(--ease); }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease), filter .6s; }
.g-item:hover img { transform: scale(1.06); }
.g-item .g-cap { position: absolute; inset: auto 0 0 0; padding: 1.6rem 1.2rem 1.1rem; background: linear-gradient(to top, rgba(22,17,13,.85), transparent); color: var(--ivory); transform: translateY(12px); opacity: 0; transition: all .5s var(--ease); }
.g-item:hover .g-cap { transform: none; opacity: 1; }
.g-cap .t { font-family: var(--font-display); font-size: 1.25rem; }
.g-cap .c { font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-light); margin-top: .2rem; }
.g-item.hidden { display: none; }
.g-item .g-corner { position: absolute; top: .9rem; right: .9rem; width: 34px; height: 34px; border-radius: 50%; background: rgba(246,241,231,.9); color: var(--green); display: grid; place-items: center; opacity: 0; transform: scale(.6); transition: all .45s var(--ease); font-size: 1rem; }
.g-item:hover .g-corner { opacity: 1; transform: none; }
.gallery-empty { text-align: center; padding: 3rem 1rem; color: var(--brown-3); display: none; }
.gallery-empty.show { display: block; }
.gallery-note { text-align: center; font-size: .82rem; color: var(--brown-3); margin-top: 1.6rem; font-style: italic; }

/* ---------- Bridal feature ---------- */
.bridal-feature { position: relative; color: var(--ivory); overflow: hidden; isolation: isolate; }
.bridal-feature .hero-media img { animation: none; transform: none; }
.bridal-feature .hero-veil { background: linear-gradient(to right, rgba(110,47,52,.92) 0%, rgba(58,42,32,.75) 55%, rgba(58,42,32,.35) 100%); }
.bridal-feature .section-inner { padding: clamp(5rem, 10vw, 9rem) 0; max-width: 640px; }
.bridal-feature h2 { color: var(--ivory); }
.bridal-feature h2 span { display: block; }
.bridal-feature h2 .accent { font-style: italic; font-weight: 400; color: var(--gold-pale); }
.bridal-feature p { color: rgba(246,241,231,.85); }
.bridal-feature .btn-row { margin-top: 2.2rem; }
@media (max-width: 899px) { .bridal-feature .hero-veil { background: linear-gradient(to top, rgba(110,47,52,.94) 0%, rgba(58,42,32,.7) 60%, rgba(58,42,32,.4)); } }

/* ---------- Steps / Process ---------- */
.steps { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); counter-reset: step; }
.step { position: relative; padding-top: 1.2rem; }
.step::before { counter-increment: step; content: '0' counter(step); font-family: var(--font-display); font-size: 3.4rem; line-height: 1; color: var(--gold-pale); position: absolute; top: -1rem; left: 0; }
.section-green .step::before { color: rgba(215,184,119,.3); }
.step h3 { position: relative; font-size: 1.4rem; margin: 0 0 .6rem; padding-top: 1.6rem; }
.step p { font-size: .95rem; margin: 0; }

/* ---------- Classes ---------- */
.classes-split { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 960px) { .classes-split { grid-template-columns: 1.1fr .9fr; gap: 5rem; } }
.class-card { background: var(--cream); color: var(--brown); padding: clamp(2rem, 4vw, 3rem); border-radius: 2px; box-shadow: var(--shadow); position: relative; }
.class-card::before { content: ''; position: absolute; inset: .7rem; border: 1px solid var(--gold-pale); pointer-events: none; }
.class-card h3 { color: var(--brown); font-size: 1.9rem; }
.class-card p { color: var(--brown-2); }
.class-card .badge { display: inline-block; font-size: .64rem; letter-spacing: .24em; text-transform: uppercase; color: var(--maroon); border: 1px solid var(--maroon); padding: .4rem .8rem; margin-bottom: 1.2rem; }
.class-modules { display: grid; gap: .9rem; margin: 1.5rem 0 2rem; }
.class-modules li { display: grid; grid-template-columns: 2.2rem 1fr; gap: .6rem; align-items: baseline; padding-bottom: .9rem; border-bottom: 1px dashed var(--line); }
.class-modules li:last-child { border-bottom: 0; }
.class-modules .m { font-family: var(--font-display); color: var(--gold); font-size: 1.1rem; }
.class-modules strong { display: block; font-weight: 500; color: var(--brown); font-family: var(--font-display); font-size: 1.15rem; }
.class-modules span { font-size: .92rem; color: var(--brown-2); }
.note { font-size: .86rem; color: var(--brown-3); font-style: italic; }

/* ---------- Features / Press ---------- */
.press-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.5rem; margin-top: 2rem; }
.press-item { text-align: center; padding: 1.2rem 1.6rem; min-width: 170px; }
.press-item .n { font-family: var(--font-display); font-size: 1.5rem; color: var(--brown); }
.press-item .s { font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-top: .3rem; }
.section-green .press-item .n { color: var(--ivory); }

.rw-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.rw-card { position: relative; overflow: hidden; border-radius: 2px; aspect-ratio: 4/5; cursor: zoom-in; }
.rw-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.rw-card:hover img { transform: scale(1.05); }
.rw-card .rw-cap { position: absolute; inset: auto 0 0 0; padding: 2rem 1.5rem 1.4rem; background: linear-gradient(to top, rgba(22,17,13,.9), transparent); color: var(--ivory); }
.rw-cap .t { font-family: var(--font-display); font-size: 1.5rem; }
.rw-cap .s { font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-light); margin-top: .3rem; }

/* ---------- Testimonials ---------- */
.testi-wrap { text-align: center; max-width: 820px; margin: 0 auto; }
.testi-wrap .ico { width: 40px; height: 40px; color: var(--gold); margin: 0 auto 1.2rem; }
.testi-placeholder { background: var(--cream); border: 1px dashed var(--gold-pale); padding: clamp(2rem, 5vw, 3.5rem); border-radius: 2px; }
.testi-placeholder .q { font-family: var(--font-display); font-style: italic; font-size: clamp(1.3rem, 2.2vw, 1.7rem); color: var(--brown); line-height: 1.4; }
.testi-placeholder .who { margin-top: 1.4rem; font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
.testi-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.testi-card { background: var(--cream); padding: 2.2rem; border-left: 2px solid var(--gold); }
.testi-card .q { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; color: var(--brown); line-height: 1.45; }
.testi-card .who { margin-top: 1.2rem; font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }

/* ---------- Instagram ---------- */
.ig-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; }
@media (min-width: 760px) { .ig-strip { grid-template-columns: repeat(6, 1fr); } }
.ig-tile { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: 2px; display: block; }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.ig-tile::after { content: ''; position: absolute; inset: 0; background: rgba(31,51,40,.45); opacity: 0; transition: opacity .4s; }
.ig-tile .ico { position: absolute; inset: 0; margin: auto; width: 26px; height: 26px; color: var(--ivory); opacity: 0; transform: scale(.7); transition: all .45s var(--ease); z-index: 2; }
.ig-tile:hover img { transform: scale(1.08); }
.ig-tile:hover::after, .ig-tile:hover .ico { opacity: 1; transform: none; }
.ig-handle { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--brown); transition: color .3s; }
.ig-handle:hover { color: var(--maroon); }
.ig-handle .ico { width: 30px; height: 30px; color: var(--gold); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; text-align: center; }
.cta-band .h2 { max-width: 760px; margin: 0 auto 1rem; }
.cta-band .lead { max-width: 560px; margin: 0 auto 2.4rem; }
.cta-band .btn-row { justify-content: center; }

/* ---------- Forms ---------- */
.form-card { background: var(--cream); padding: clamp(1.8rem, 4vw, 3rem); border: 1px solid var(--line); border-radius: 2px; position: relative; }
.form-card h3 { font-size: 1.8rem; margin-bottom: .4rem; }
.form-card .sub { color: var(--brown-3); font-size: .92rem; margin-bottom: 1.8rem; }
.form-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } .form-grid .full { grid-column: 1 / -1; } }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--brown-2); font-weight: 500; }
.field label .req { color: var(--maroon); }
.field input, .field select, .field textarea {
  font: inherit; font-weight: 300; font-size: 1rem; color: var(--brown); background: var(--ivory); border: 1px solid var(--line); border-radius: 2px; padding: .85rem 1rem; outline: none; transition: border-color .3s, box-shadow .3s; width: 100%; -webkit-appearance: none; appearance: none;
}
.field select { background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 2.5rem; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,147,74,.15); }
.field input:invalid:not(:placeholder-shown) { border-color: var(--maroon-soft); }
.form-actions { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; margin-top: 1.6rem; }
.form-actions .btn { flex: 1 1 200px; }
.form-msg { margin-top: 1rem; padding: .9rem 1.1rem; border-radius: 2px; font-size: .95rem; display: none; }
.form-msg.ok { display: block; background: rgba(47,74,58,.1); color: var(--green); border: 1px solid rgba(47,74,58,.25); }
.form-msg.err { display: block; background: rgba(110,47,52,.08); color: var(--maroon); border: 1px solid rgba(110,47,52,.25); }
.honey { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.contact-grid { display: grid; gap: 3rem; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: .85fr 1.15fr; gap: 4rem; align-items: start; } }
.contact-info h3 { font-size: 1.6rem; margin-bottom: 1.2rem; }
.contact-list { display: grid; gap: 1.4rem; margin: 1.8rem 0; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-list .ico { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; margin-top: .2rem; }
.contact-list .l { font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; color: var(--brown-3); }
.contact-list .v { font-size: 1.05rem; color: var(--brown); }
.contact-list .v a:hover { color: var(--maroon); }
.contact-info .sticky { position: sticky; top: 6rem; }
.form-tabs { display: flex; gap: .5rem; margin-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
.form-tab { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; padding: .8rem 1.2rem; color: var(--brown-3); border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all .3s; }
.form-tab.active { color: var(--brown); border-bottom-color: var(--gold); }
.form-panel { display: none; }
.form-panel.active { display: block; }

/* ---------- Journal ---------- */
.journal-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.post-card { background: var(--cream); border: 1px solid var(--line); overflow: hidden; display: flex; flex-direction: column; transition: transform .5s var(--ease), box-shadow .5s; }
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.post-card .pimg { aspect-ratio: 4/3; overflow: hidden; }
.post-card .pimg img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.post-card:hover .pimg img { transform: scale(1.05); }
.post-card .pbody { padding: 1.6rem 1.6rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.post-card .pcat { font-size: .62rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin-bottom: .6rem; }
.post-card h3 { font-size: 1.45rem; margin-bottom: .7rem; line-height: 1.2; }
.post-card p { color: var(--brown-2); font-size: .95rem; flex: 1; }
.article { max-width: 760px; margin: 0 auto; }
.article .article-img { aspect-ratio: 16/9; overflow: hidden; border-radius: 2px; margin-bottom: 2.5rem; }
.article .article-img img { width: 100%; height: 100%; object-fit: cover; }
.article p { font-size: 1.1rem; line-height: 1.85; color: var(--brown-2); }
.article p:first-of-type::first-letter { font-family: var(--font-display); font-size: 3.6em; float: left; line-height: .8; margin: .1em .12em 0 0; color: var(--maroon); }

/* ---------- Style pills ---------- */
.pill-row { display: flex; flex-wrap: wrap; gap: .6rem; }
.pill { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; padding: .55rem 1rem; border: 1px solid var(--gold); color: var(--brown); border-radius: 100px; }
.section-green .pill { border-color: rgba(215,184,119,.5); color: var(--gold-pale); }

/* ---------- Two-col editorial ---------- */
.editorial { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .editorial { grid-template-columns: 1fr 1fr; gap: 5rem; } .editorial.flip > :first-child { order: 2; } }
.editorial-img { position: relative; }
.editorial-img img { width: 100%; height: auto; border-radius: 2px; box-shadow: var(--shadow); }
.editorial-img.stack { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-items: start; }
.editorial-img.stack img:nth-child(2) { margin-top: 3rem; }
.editorial-img .frame-tag { position: absolute; left: 1.2rem; bottom: 1.2rem; background: var(--ivory); padding: .7rem 1rem; font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); box-shadow: var(--shadow-sm); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 1.2rem 0; }
.faq summary { cursor: pointer; list-style: none; font-family: var(--font-display); font-size: 1.35rem; color: var(--brown); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.6rem; color: var(--gold); transition: transform .3s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: .9rem 0 0; color: var(--brown-2); }

/* ---------- Footer (compact) ---------- */
.site-footer { background: var(--brown); color: rgba(246,241,231,.8); padding: 2rem 0 1.4rem; position: relative; }
.footer-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem 2rem; padding-bottom: 1.2rem; border-bottom: 1px solid rgba(246,241,231,.12); }
.footer-brand { display: flex; align-items: center; gap: .9rem; color: var(--ivory); }
.footer-brand > span { display: flex; flex-direction: column; gap: .25rem; }
.footer-logo { width: 52px; height: auto; flex: none; }
.footer-name { font-family: var(--font-brand); font-size: 1.05rem; letter-spacing: .06em; background: linear-gradient(120deg, var(--gold-pale), var(--gold), var(--gold-pale)); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1.1; }
.footer-title { font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-light); line-height: 1.4; }
.footer-contact { display: flex; flex-wrap: wrap; gap: .5rem 1.6rem; font-size: .88rem; }
.footer-contact li { display: flex; align-items: center; gap: .5rem; }
.footer-contact .ico { width: 16px; height: 16px; color: var(--gold-light); flex: none; }
.footer-contact a { transition: color .3s; } .footer-contact a:hover { color: var(--gold-light); }
.footer-links { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; padding-top: 1rem; padding-bottom: .9rem; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; }
.footer-links a { color: rgba(246,241,231,.75); transition: color .3s; } .footer-links a:hover { color: var(--gold-light); }
.footer-bottom { padding-top: .9rem; border-top: 1px solid rgba(246,241,231,.12); font-size: .76rem; color: rgba(246,241,231,.55); display: flex; flex-wrap: wrap; justify-content: space-between; gap: .4rem 2rem; }
.footer-bottom p { margin: 0; }
.footer-bottom .credit { font-size: .72rem; color: rgba(246,241,231,.45); line-height: 1.6; }
.footer-bottom .credit a { color: rgba(246,241,231,.7); border-bottom: 1px solid rgba(215,184,119,.35); transition: color .3s; }
.footer-bottom .credit a:hover { color: var(--gold-light); }
@media (max-width: 640px) {
  .site-footer { padding-top: 1.6rem; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: .9rem; }
  .footer-contact { flex-direction: column; gap: .45rem; }
  .footer-links { gap: .45rem 1.1rem; font-size: .64rem; }
  .footer-bottom { flex-direction: column; }
}

/* ---------- Floating WhatsApp & mobile bar ---------- */
.wa-float { position: fixed; right: 1.25rem; bottom: 1.25rem; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: none; place-items: center; box-shadow: 0 12px 30px -8px rgba(37,211,102,.6); z-index: 80; transition: transform .35s var(--ease); }
.wa-float:hover { transform: translateY(-3px) scale(1.04); }
.wa-float svg { width: 30px; height: 30px; }
@media (min-width: 1024px) { .wa-float { display: grid; } }
.mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; display: grid; grid-template-columns: repeat(6, 1fr); background: rgba(251,248,242,.96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-top: 1px solid rgba(184,147,74,.35); padding: .35rem .25rem calc(.35rem + env(safe-area-inset-bottom)); box-shadow: 0 -8px 24px -16px rgba(58,42,32,.45); }
.mobile-bar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .28rem; padding: .35rem .1rem .3rem; font-size: .54rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; color: var(--brown-3); position: relative; transition: color .3s; min-width: 0; }
.mobile-bar a span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.mobile-bar a .ico { width: 21px; height: 21px; stroke-width: 1.5; transition: color .3s, transform .3s var(--ease); }
.mobile-bar a.active { color: var(--green-deep); }
.mobile-bar a.active .ico { color: var(--gold); stroke-width: 1.9; transform: translateY(-1px); }
.mobile-bar a.active::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 16px; height: 2px; border-radius: 2px; background: var(--gold); }
main { padding-bottom: 0; }
@media (max-width: 1023px) {
  body { padding-bottom: calc(62px + env(safe-area-inset-bottom)); }
  .wa-float { display: grid; bottom: calc(76px + env(safe-area-inset-bottom)); right: .9rem; width: 48px; height: 48px; }
  .wa-float svg { width: 24px; height: 24px; }
  .site-footer { padding-bottom: 1.4rem; }
}
@media (max-width: 360px) { .mobile-bar a { font-size: .5rem; letter-spacing: .06em; } .mobile-bar a .ico { width: 19px; height: 19px; } }
@media (min-width: 1024px) { .mobile-bar { display: none; } }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(22,17,13,.95); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s; padding: 3rem 1rem; }
.lightbox.open { opacity: 1; visibility: visible; }
.lb-figure { margin: 0; max-width: min(1100px, 92vw); max-height: 88vh; display: flex; flex-direction: column; align-items: center; gap: 1rem; transform: scale(.96); transition: transform .5s var(--ease); }
.lightbox.open .lb-figure { transform: none; }
.lb-figure img { max-width: 100%; max-height: 78vh; object-fit: contain; border-radius: 2px; box-shadow: 0 40px 80px -30px rgba(0,0,0,.8); }
.lb-figure figcaption { color: var(--gold-pale); font-family: var(--font-display); font-size: 1.2rem; font-style: italic; text-align: center; }
.lb-close, .lb-prev, .lb-next { position: absolute; color: var(--ivory); font-size: 2.6rem; line-height: 1; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; transition: background .3s; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(246,241,231,.1); }
.lb-close { top: 1rem; right: 1rem; }
.lb-prev { left: .5rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: .5rem; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) { .lb-prev, .lb-next { top: auto; bottom: 1rem; transform: none; } .lb-prev { left: 30%; } .lb-next { right: 30%; } }

/* ---------- Misc ---------- */
.stat-row { display: flex; flex-wrap: wrap; gap: 2rem 3rem; }
.stat .n { font-family: var(--font-display); font-size: 2.4rem; color: var(--maroon); line-height: 1; }
.stat .l { font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--brown-3); margin-top: .4rem; }
.callout { background: var(--ivory-2); border-left: 3px solid var(--gold); padding: 1.4rem 1.6rem; font-size: .95rem; color: var(--brown-2); }
.section-green .callout { background: rgba(246,241,231,.06); color: rgba(246,241,231,.85); }
::selection { background: var(--gold-pale); color: var(--brown); }

/* ---------- Low-end device optimisations ---------- */
@media (max-width: 767px) {
  .site-header.scrolled, .site-header.solid { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(246,241,231,.97); }
  .mobile-bar { backdrop-filter: none; -webkit-backdrop-filter: none; background: #fbf8f2; }
  .hero .btn-row .btn:nth-child(2) { backdrop-filter: none; }
  .hero-arrow { backdrop-filter: none; }
  .mandala-bg { display: none; }
  .hero-slide .hero-media img, .hero-slide .hero-media video { transform: none; transition: none; }
  .service-card:hover, .post-card:hover { transform: none; }
  .g-item img, .service-img img, .rw-card img, .ig-tile img, .post-card .pimg img { transition: none; }
  .marquee-track { animation-duration: 55s; }
}
@media (prefers-reduced-data: reduce) { .hero-media video { display: none; } }
.hero-media img, .g-item img, .rw-card img { content-visibility: auto; }
img { -webkit-user-drag: none; }

/* IG reels */
.reel-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); max-width: 1000px; margin: 0 auto; }
.reel { position: relative; aspect-ratio: 9/16; background: var(--brown); border-radius: 4px; overflow: hidden; box-shadow: var(--shadow-sm); }
.reel iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.reel-ph { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; color: var(--ivory); padding: 1.5rem; cursor: pointer; background: linear-gradient(160deg, var(--green-deep), var(--brown)); }
.reel-ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .85; transition: transform .8s var(--ease); }
.reel-ph:hover img { transform: scale(1.04); }
.reel-ph::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(22,17,13,.85), transparent 45%); }
.reel-ph .play, .reel-ph .t { z-index: 2; }
.reel-ph .play { position: relative; width: 64px; height: 64px; border-radius: 50%; background: rgba(246,241,231,.92); color: var(--green-deep); display: grid; place-items: center; font-size: 1.6rem; padding-left: 4px; box-shadow: 0 10px 30px -8px rgba(0,0,0,.6); }
.reel-ph .t { position: relative; margin-top: 1rem; font-family: var(--font-display); font-size: 1.15rem; }
.ig-badge { position: absolute; top: .8rem; left: .8rem; z-index: 2; background: rgba(22,17,13,.7); color: var(--ivory); font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; padding: .35rem .6rem; border-radius: 100px; display: inline-flex; align-items: center; gap: .35rem; }
.ig-badge .ico { width: 12px; height: 12px; }
