/* ==========================================================================
   I AM LUXURY — Noir design system (static)
   Shared stylesheet for all pages. Matches the approved home page exactly.
   ========================================================================== */

:root {
  /* surfaces — dark */
  --dark: #100e0b;
  --dark-alt: #16130e;
  --card: #1d1a14;
  --hover: #241f18;
  /* surfaces — cream */
  --cream: #efe6d6;
  --cream-alt: #e7dcc8;
  --cream-ink: #1a1712;
  --cream-muted: #5a5142;
  /* gold */
  --gold: #e7d2a0;        /* champagne — on dark */
  --gold-soft: #d9bf86;
  --gold-antique: #a47e2c;/* antique — on cream */
  --gold-deep: #8c6a22;
  /* text on dark */
  --head: #f4ecdc;
  --lead: #e8dfc9;
  --body: #d6ccb8;
  --muted: #a99c83;
  --disabled: #6b6052;
  /* hairlines */
  --rule-gold-dark: rgba(231,210,160,0.26);
  --rule-neut-dark: rgba(244,236,220,0.09);
  --rule-cream: rgba(26,23,18,0.16);
  /* type */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --caps: 'Cinzel', serif;
  --sans: 'Mulish', sans-serif;
  /* layout */
  --maxw: 1320px;
  --pad: clamp(24px, 5vw, 84px);
  --sec-y: clamp(90px, 13vh, 160px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--dark);
  color: var(--body);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { -webkit-tap-highlight-color: transparent; }
::selection { background: rgba(217,191,134,0.35); }

/* ---------- typography helpers ---------- */
.eyebrow {
  font-family: var(--caps); text-transform: uppercase; letter-spacing: 0.34em;
  font-weight: 500; font-size: 0.72rem; color: var(--gold-antique); display: inline-block;
}
.eyebrow.on-dark { color: var(--gold); }
.h-serif { font-family: var(--serif); font-weight: 400; letter-spacing: 0; margin: 0; line-height: 1.08; color: var(--cream-ink); }
.h-serif.on-dark { color: var(--head); }
.h-serif .it { font-style: italic; }
.gold { color: var(--gold-antique); }
.on-dark .gold, .gold.on-dark { color: var(--gold); }
.lead { font-family: var(--sans); font-size: 1.06rem; line-height: 1.8; color: var(--cream-muted); }
.lead.on-dark { color: var(--muted); }
.body-copy { font-family: var(--sans); font-size: 1.02rem; line-height: 1.85; color: var(--cream-muted); }
.body-copy.on-dark { color: var(--body); }
.rule { display: block; width: 54px; height: 1px; background: var(--gold-antique); }
.rule.on-dark { background: var(--gold); }

/* ---------- buttons & links ---------- */
.btn-gold {
  display: inline-block; font-family: var(--caps); font-size: 0.74rem; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 500; color: var(--dark); background: var(--gold-antique);
  padding: 16px 36px; text-decoration: none; border: none; cursor: pointer;
  transition: background .25s ease;
}
.btn-gold.on-dark { background: var(--gold); }
.btn-gold:hover { background: var(--gold-soft); }
.caps-link {
  display: inline-block; font-family: var(--caps); font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 500; color: var(--cream-ink); text-decoration: none;
  border-bottom: 1px solid var(--gold-antique); padding-bottom: 5px; transition: color .25s ease;
}
.caps-link.on-dark { color: var(--head); border-bottom-color: var(--gold); }
.caps-link:hover { color: var(--gold-antique); }
.caps-link.on-dark:hover { color: var(--gold-soft); }

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.section { padding-top: var(--sec-y); padding-bottom: var(--sec-y); }
.section.dark { background: var(--dark); }
.section.dark-alt { background: var(--dark-alt); }
.section.cream { background: var(--cream); color: var(--cream-ink); }
.section.cream-alt { background: var(--cream-alt); color: var(--cream-ink); }

/* ---------- header ---------- */
.hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: transparent;
  border-bottom: 1px solid transparent; transition: background .4s ease, border-color .4s ease;
}
.hdr.solid { background: rgba(16,14,11,0.82); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--rule-gold-dark); }
.hdr-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 22px clamp(20px,5vw,40px);
  display: flex; align-items: center; justify-content: space-between; transition: padding .4s ease;
}
.hdr.solid .hdr-inner { padding: 14px clamp(20px,5vw,40px); }
.hdr-logo img { height: 38px; width: auto; transition: height .4s ease; }
.hdr.solid .hdr-logo img { height: 30px; }
.nav { display: flex; gap: clamp(18px,2vw,28px); align-items: center; }
.nav a.nav-link {
  font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; white-space: nowrap;
  font-weight: 500; color: var(--head); opacity: 0.78; text-decoration: none; transition: opacity .25s, color .25s;
}
.nav a.nav-link:hover { opacity: 1; color: var(--gold); }
.nav a.nav-cta {
  font-family: var(--caps); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; white-space: nowrap;
  font-weight: 500; color: var(--dark); background: var(--gold); padding: 11px 22px; text-decoration: none;
}
.menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 8px; align-items: center; gap: 8px;
  color: var(--head); font-family: var(--caps); font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; }
.menu-btn .bars { display: inline-block; width: 26px; }
.menu-btn .bars span { display: block; height: 1px; background: var(--gold); }
.menu-btn .bars span:first-child { margin-bottom: 6px; }

.overlay {
  position: fixed; inset: 0; z-index: 200; background: rgba(12,10,8,0.97);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  opacity: 0; pointer-events: none; transition: opacity .4s ease;
}
.overlay.open { opacity: 1; pointer-events: auto; }
.overlay a.ov-link { font-family: var(--serif); font-size: 2rem; color: var(--head); text-decoration: none; padding: 10px 0; }
.overlay a.ov-cta { margin-top: 24px; font-family: var(--caps); font-size: 0.74rem; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 500; color: var(--dark); background: var(--gold); padding: 15px 34px; text-decoration: none; }
.overlay .ov-close { position: absolute; top: 24px; right: 28px; background: none; border: none; color: var(--head);
  font-size: 1.9rem; cursor: pointer; line-height: 1; }

/* ---------- page hero (dark full-bleed) ---------- */
.page-hero {
  position: relative; overflow: hidden; display: grid; place-items: center; text-align: center;
  min-height: 68vh; padding: clamp(150px,20vh,220px) 24px clamp(80px,12vh,130px); color: var(--head);
}
.page-hero .bg { position: absolute; inset: -8% 0; z-index: 0; }
.page-hero .bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .scrim { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(16,14,11,0.62) 0%, rgba(16,14,11,0.45) 45%, rgba(16,14,11,0.9) 100%); }
.page-hero .inner { position: relative; z-index: 2; max-width: 940px; }
.page-hero h1 { font-size: clamp(2.8rem, 7vw, 6rem); line-height: 1.0; margin: 24px 0 0; }
.page-hero .lead { margin: 28px auto 0; max-width: 620px; color: var(--muted); }

/* ---------- intro / statement band ---------- */
.statement { text-align: center; }
.statement .inner { max-width: 940px; margin: 0 auto; }
.statement h2 { font-size: clamp(2rem, 4.4vw, 3.6rem); line-height: 1.18; margin: 26px 0 0; }
.statement .rule { margin: 44px auto 0; width: 70px; }

/* ---------- split (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,100px); align-items: center; max-width: var(--maxw); margin: 0 auto; }
.split .media img { width: 100%; height: clamp(360px, 52vh, 600px); object-fit: cover; }
.split .txt h2 { font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1.12; margin: 22px 0 0; }
.split .txt .body-copy { margin: 28px 0 0; max-width: 480px; }
.split .txt .caps-link, .split .txt .btn-gold { margin-top: 34px; }
.split.rev .media { order: 2; }

/* full-bleed vision */
.fullbleed { position: relative; min-height: 86vh; display: grid; align-items: center; overflow: hidden; color: var(--head); }
.fullbleed .bg { position: absolute; inset: -8% 0; z-index: 0; }
.fullbleed .bg img { width: 100%; height: 100%; object-fit: cover; }
.fullbleed .scrim { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(16,14,11,0.9) 0%, rgba(16,14,11,0.55) 45%, rgba(16,14,11,0.15) 100%); }
.fullbleed .inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; width: 100%; padding: 0 clamp(40px,7vw,120px); }
.fullbleed .panel { max-width: 600px; }
.fullbleed h2 { font-size: clamp(2.2rem, 4.6vw, 3.8rem); line-height: 1.1; margin: 22px 0 0; }
.fullbleed .body-copy { margin: 28px 0 0; max-width: 480px; }
.fullbleed .caps-link { margin-top: 34px; }

/* ---------- personal note (cream editorial) ---------- */
.note { position: relative; overflow: hidden; }
.note .grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(40px,6vw,96px); align-items: center; }
.note .portrait { position: relative; }
.note .portrait img { width: 100%; object-fit: cover; aspect-ratio: 4/5; }
.note .portrait .accent { position: absolute; bottom: -1px; left: -1px; right: 30%; height: 1px; background: var(--gold-antique); }
.note h2.quote { font-style: italic; font-size: clamp(1.9rem, 3.6vw, 3rem); line-height: 1.2; margin: 24px 0 0; }
.note .body-copy { margin: 26px 0 0; max-width: 620px; }
.note .sign { font-family: var(--serif); font-style: italic; font-size: 1.7rem; font-weight: 500; color: var(--cream-ink); margin: 30px 0 0; }
.note .role { font-family: var(--caps); font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--cream-muted); margin: 8px 0 0; }

/* pull-quote block inside note */
.note.tall .grid { align-items: start; }
.note.tall .portrait { position: sticky; top: 110px; }
@media (max-width: 960px) { .note.tall .portrait { position: static; } }
.note blockquote { margin: 30px 0 0; padding: 22px 0 22px 26px; border-left: 1px solid var(--gold-antique);
  font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem,2.2vw,1.7rem); line-height: 1.35; color: var(--cream-ink); }

/* ---------- section head (services etc.) ---------- */
.sec-head { max-width: var(--maxw); margin: 0 auto 64px; padding: 0 var(--pad); }
.sec-head .flex { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; margin-top: 18px; }
.sec-head h2 { font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.08; }
.sec-head .lead { max-width: 380px; font-size: 0.98rem; }

/* ---------- service tiles ---------- */
.svc-grid { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.svc-tile { position: relative; display: block; height: 420px; overflow: hidden; text-decoration: none; }
.svc-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.svc-tile:hover img { transform: scale(1.06); }
.svc-tile .scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,14,11,0.1) 0%, rgba(16,14,11,0.85) 100%); }
.svc-tile .num { position: absolute; left: 24px; top: 22px; font-family: var(--serif); font-size: 1rem; color: var(--gold); z-index: 2; }
.svc-tile .content { position: absolute; left: 24px; right: 24px; bottom: 24px; z-index: 2; }
.svc-tile .content h3 { font-family: var(--serif); font-weight: 400; font-size: 1.6rem; color: var(--head); margin: 0; }
.svc-tile .content p { font-family: var(--sans); font-size: 0.9rem; line-height: 1.65; color: var(--muted); margin: 10px 0 0; }

/* ---------- editorial service rows (alternating) ---------- */
.svc-editorial { display: flex; flex-direction: column; gap: clamp(70px,10vh,130px); }
.svc-item { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,6vw,90px); align-items: center; }
.svc-item .media { position: relative; overflow: hidden; }
.svc-item .media img { width: 100%; height: clamp(320px, 46vh, 520px); object-fit: cover; transition: transform 1s ease; }
.svc-item:hover .media img { transform: scale(1.05); }
.svc-item .num { font-family: var(--serif); font-size: 1.1rem; }
.svc-item h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.7rem,3vw,2.6rem); line-height: 1.1; margin: 16px 0 0; }
.svc-item .body-copy { margin: 20px 0 0; max-width: 480px; }
.svc-item .caps-link { margin-top: 26px; }
.svc-item.rev .media { order: 2; }

/* ---------- numbered hairline rows (corporate on cream) ---------- */
.svc-rows { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.svc-row { display: grid; grid-template-columns: 60px 1.1fr 1.4fr 0.5fr; gap: 28px; align-items: center;
  padding: 26px 8px; border-top: 1px solid var(--rule-cream); text-decoration: none; color: var(--cream-ink); }
.svc-row:last-child { border-bottom: 1px solid var(--rule-cream); }
.svc-row .num { font-family: var(--serif); font-size: 1.1rem; color: var(--gold-antique); }
.svc-row h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.4rem,2.4vw,2rem); margin: 0; }
.svc-row .il-svc-desc { font-family: var(--sans); font-size: 0.95rem; line-height: 1.7; color: var(--cream-muted); margin: 0; }
.svc-row .svc-arrow { justify-self: end; font-family: var(--serif); font-size: 1.4rem; color: var(--gold-antique); transition: transform .3s; }
.svc-row:hover .svc-arrow { transform: translateX(8px); }
.svc-row.on-dark { color: var(--head); border-top-color: var(--rule-gold-dark); }
.svc-row.on-dark:last-child { border-bottom-color: var(--rule-gold-dark); }
.svc-row.on-dark .num, .svc-row.on-dark .svc-arrow { color: var(--gold); }
.svc-row.on-dark .il-svc-desc { color: var(--muted); }

/* ---------- quote chapter ---------- */
.quote-ch { position: relative; overflow: hidden; background: var(--dark); padding: clamp(120px,18vh,220px) 24px; text-align: center; }
.quote-ch .bg { position: absolute; inset: -10% 0; z-index: 0; opacity: 0.22; }
.quote-ch .bg img { width: 100%; height: 100%; object-fit: cover; }
.quote-ch .scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(16,14,11,0.7), rgba(16,14,11,0.92)); }
.quote-ch .inner { position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; }
.quote-ch .crest { height: 30px; opacity: 0.9; margin: 0 auto 36px; }
.quote-ch h2 { font-style: italic; font-size: clamp(2rem, 4.6vw, 3.7rem); line-height: 1.24; color: var(--head); }
.quote-ch .tag { font-family: var(--caps); font-size: 0.7rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--muted); margin-top: 40px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; text-align: center; color: var(--head); padding: clamp(110px,16vh,180px) 24px; }
.cta-band .bg { position: absolute; inset: -10% 0; z-index: 0; opacity: 0.4; }
.cta-band .bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band .scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(16,14,11,0.82), rgba(16,14,11,0.9)); }
.cta-band .inner { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; }
.cta-band h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); line-height: 1.12; margin: 22px 0 0; }
.cta-band .lead { margin: 24px auto 0; max-width: 560px; color: var(--muted); }
.cta-band .btn-gold { margin-top: 40px; }

/* ---------- packages ---------- */
.pkg-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--rule-cream); }
.pkg-cell { padding: clamp(34px,3vw,52px); display: flex; flex-direction: column; }
.pkg-cell + .pkg-cell { border-left: 1px solid var(--rule-cream); }
.pkg-cell .pkg-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.pkg-cell h3 { font-family: var(--serif); font-weight: 400; font-size: 1.7rem; margin: 0; color: var(--cream-ink); }
.pkg-cell .badge { font-family: var(--caps); font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cream); background: var(--gold-antique); padding: 5px 10px; white-space: nowrap; }
.pkg-cell .rule { margin: 26px 0; width: 40px; }
.pkg-cell ul { list-style: none; margin: 0; padding: 0; flex: 1; }
.pkg-cell li { font-family: var(--sans); font-size: 0.94rem; color: var(--cream-muted); padding: 9px 0; display: flex; gap: 12px; line-height: 1.55; }
.pkg-cell li .fl { color: var(--gold-antique); }
.pkg-cell .pkg-note { font-family: var(--sans); font-size: 0.88rem; line-height: 1.7; color: var(--cream-muted); margin: 0 0 8px; }
.pkg-cell .pkg-cta { margin-top: 30px; text-align: center; font-family: var(--caps); font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 500; text-decoration: none; padding: 14px 0; color: var(--cream-ink);
  border: 1px solid var(--gold-antique); transition: background .25s, color .25s; }
.pkg-cell .pkg-cta:hover { background: var(--gold-antique); color: var(--cream); }
.pkg-cell.featured { background: rgba(166,126,44,0.06); }
.pkg-cell.featured .pkg-cta { background: var(--gold-antique); color: var(--cream); border: none; }
.pkg-cell.featured .pkg-cta:hover { background: var(--gold-deep); }

/* ---------- contact ---------- */
.contact-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,100px); }
.contact .disp h2 { font-size: clamp(2.2rem, 4.4vw, 3.8rem); line-height: 1.08; margin: 20px 0 0; }
.contact .disp .body-copy { margin: 26px 0 40px; max-width: 440px; }
.contact-row { display: flex; gap: 20px; padding: 16px 0; border-top: 1px solid var(--rule-neut-dark); }
.contact-row .k { font-family: var(--caps); font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); width: 70px; flex: none; }
.contact-row .v { font-family: var(--serif); font-size: 1.15rem; color: var(--head); text-decoration: none; }
a.v:hover { color: var(--gold); }
.form { display: grid; gap: 26px; }
.form .field { display: grid; gap: 0; }
.form label { font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.form input, .form textarea, .form select {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--rule-neut-dark);
  padding: 12px 0; font-family: var(--sans); font-size: 0.98rem; color: var(--head); outline: none; transition: border-color .3s;
}
.form input::placeholder, .form textarea::placeholder { color: var(--disabled); }
.form input:focus, .form textarea:focus, .form select:focus { border-bottom-color: var(--gold); }
.form textarea { resize: vertical; min-height: 90px; }
.form .two { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.form select option { background: var(--dark-alt); color: var(--head); }

/* ---------- cinematic full-bleed service panel ---------- */
.cine { position: relative; width: 100%; min-height: clamp(560px, 82vh, 940px); display: grid; align-items: center; overflow: hidden; color: var(--head); }
.cine .bg { position: absolute; inset: -8% 0; z-index: 0; }
.cine .bg img { width: 100%; height: 100%; object-fit: cover; }
.cine.tone-1 { background: linear-gradient(135deg, #1b1710 0%, #100e0b 60%, #241f18 100%); }
.cine.tone-2 { background: radial-gradient(120% 120% at 25% 25%, #201c15 0%, #100e0b 70%); }
.cine .scrim { position: absolute; inset: 0; z-index: 1; }
.cine.left .scrim { background: linear-gradient(90deg, rgba(16,14,11,0.94) 0%, rgba(16,14,11,0.62) 44%, rgba(16,14,11,0.12) 100%); }
.cine.right .scrim { background: linear-gradient(270deg, rgba(16,14,11,0.94) 0%, rgba(16,14,11,0.62) 44%, rgba(16,14,11,0.12) 100%); }
.cine.tone-1 .scrim, .cine.tone-2 .scrim { background: radial-gradient(90% 90% at 50% 50%, rgba(16,14,11,0.2), rgba(16,14,11,0.55)); }
.cine .inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; width: 100%; padding: 0 var(--pad); }
.cine .panel { max-width: 600px; }
.cine.right .panel { margin-left: auto; }
.cine.tone-1 .panel, .cine.tone-2 .panel { max-width: 820px; margin: 0 auto; text-align: center; }
.cine .idx { font-family: var(--serif); font-size: clamp(3rem,7vw,6rem); line-height: 1; color: var(--gold); opacity: 0.5; display: block; }
.cine h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(2.3rem,5vw,4.2rem); line-height: 1.04; color: var(--head); margin: 8px 0 0; }
.cine .body-copy { margin: 24px 0 0; max-width: 460px; color: var(--body); }
.cine.tone-1 .body-copy, .cine.tone-2 .body-copy { max-width: 620px; margin-left: auto; margin-right: auto; }
.cine .caps-link { margin-top: 30px; }
@media (max-width: 760px) {
  .cine { min-height: 78vh; }
  .cine.left .scrim, .cine.right .scrim { background: linear-gradient(180deg, rgba(16,14,11,0.45) 0%, rgba(16,14,11,0.82) 62%, rgba(16,14,11,0.94) 100%); }
  .cine .panel, .cine.right .panel { max-width: 100%; margin: 0; }
  .cine .body-copy { max-width: 100%; }
}

/* ---------- assurances / stats strip ---------- */
.stats { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--rule-gold-dark); }
.stat { padding: clamp(30px,3vw,52px) clamp(18px,2vw,28px); text-align: center; }
.stat + .stat { border-left: 1px solid var(--rule-gold-dark); }
.stat .big { font-family: var(--serif); font-weight: 400; font-size: clamp(2.2rem,3.4vw,3.2rem); color: var(--gold); line-height: 1; }
.stat .lbl { font-family: var(--caps); font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-top: 14px; line-height: 1.5; }
.stat.cream-stat .big { color: var(--gold-antique); }
.stat.cream-stat .lbl { color: var(--cream-muted); }
.stats.cream-stats { border-color: var(--rule-cream); }
.stats.cream-stats .stat + .stat { border-left-color: var(--rule-cream); }
@media (max-width: 760px) { .stats { grid-template-columns: 1fr 1fr; } .stat:nth-child(3), .stat:nth-child(4) { border-top: 1px solid var(--rule-gold-dark); } .stat:nth-child(3) { border-left: none; } .stats.cream-stats .stat:nth-child(3), .stats.cream-stats .stat:nth-child(4) { border-top-color: var(--rule-cream); } }

/* ---------- FAQ (visible Q&A for AEO) ---------- */
.faq { max-width: 900px; margin: 0 auto; padding: 0 var(--pad); }
.faq-item { border-top: 1px solid var(--rule-gold-dark); padding: 30px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--rule-gold-dark); }
.faq-item h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.4rem,2.6vw,2rem); color: var(--head); margin: 0 0 14px; line-height: 1.2; }
.faq-item p { font-family: var(--sans); font-size: 1.02rem; line-height: 1.85; color: var(--body); margin: 0; }
.faq.on-cream .faq-item { border-top-color: var(--rule-cream); }
.faq.on-cream .faq-item:last-child { border-bottom-color: var(--rule-cream); }
.faq.on-cream .faq-item h3 { color: var(--cream-ink); }
.faq.on-cream .faq-item p { color: var(--cream-muted); }

/* ---------- feature list (why us) ---------- */
.feat-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(30px,4vw,64px); }
.feat h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.4rem,2.2vw,1.9rem); margin: 18px 0 10px; }
.feat p { font-family: var(--sans); font-size: 0.98rem; line-height: 1.8; margin: 0; }
.feat .fnum { font-family: var(--caps); font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; }
@media (max-width: 760px) { .feat-grid { grid-template-columns: 1fr; } }

/* ---------- cinematic contact (image bleeds one side) ---------- */
.contact-cine { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.contact-cine .media { position: relative; overflow: hidden; min-height: 100%; }
.contact-cine .media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.contact-cine .media .scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,14,11,0.5), rgba(16,14,11,0.85)); z-index: 1; }
.contact-cine .media .over { position: relative; z-index: 2; padding: clamp(50px,7vh,110px) clamp(30px,5vw,72px); display: flex; flex-direction: column; justify-content: center; min-height: 100%; color: var(--head); }
.contact-cine .media .over h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(2rem,4vw,3.2rem); line-height: 1.08; color: var(--head); margin: 20px 0 0; }
.contact-cine .form-side { background: var(--dark-alt); padding: clamp(50px,7vh,110px) clamp(30px,5vw,72px); }
@media (max-width: 860px) {
  .contact-cine { grid-template-columns: 1fr; }
  .contact-cine .media { min-height: 52vh; }
}

/* ---------- footer ---------- */
.footer { background: var(--dark); color: var(--head); padding: clamp(70px,9vh,110px) clamp(24px,5vw,84px) 40px; border-top: 1px solid var(--rule-gold-dark); text-align: center; }
.footer .inner { max-width: var(--maxw); margin: 0 auto; }
.footer .crest { height: 120px; margin: 0 auto 26px; }
.footer .motto { font-family: var(--serif); font-style: italic; font-size: clamp(1.2rem,2.6vw,1.5rem); color: var(--head); margin: 0; }
.footer .fnav { display: flex; gap: clamp(18px,3vw,30px); justify-content: center; margin: 38px 0; flex-wrap: wrap; }
.footer .fnav a { font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color .25s; }
.footer .fnav a:hover { color: var(--gold); }
.footer .base { border-top: 1px solid var(--rule-gold-dark); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; align-items: center; }
.footer .base span, .footer .base a { font-family: var(--sans); font-size: 0.72rem; color: var(--muted); text-decoration: none; }
.footer .base .legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer .base a:hover { color: var(--gold); }
@media (max-width: 640px) { .footer .base { justify-content: center; text-align: center; } }

/* ---------- prose (policy pages) ---------- */
.prose { max-width: 820px; margin: 0 auto; padding: 0 var(--pad); }
.prose h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.5rem,2.6vw,2.1rem); color: var(--head); margin: 48px 0 14px; }
.prose h3 { font-family: var(--caps); font-weight: 500; font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin: 34px 0 12px; }
.prose p { font-family: var(--sans); font-size: 1rem; line-height: 1.85; color: var(--body); margin: 0 0 18px; }
.prose ul { margin: 0 0 18px; padding-left: 0; list-style: none; }
.prose li { font-family: var(--sans); font-size: 1rem; line-height: 1.7; color: var(--body); padding: 6px 0 6px 24px; position: relative; }
.prose li::before { content: "\2726"; color: var(--gold-antique); position: absolute; left: 0; }
.prose a { color: var(--gold); }
.prose .rule { margin: 8px 0 0; }

/* ---------- reveal / motion ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 1.1s cubic-bezier(0.16,1,0.3,1), transform 1.1s cubic-bezier(0.16,1,0.3,1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.rise-img { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
  [data-parallax] { transform: none !important; }
}

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .split, .contact-grid, .svc-item { grid-template-columns: 1fr; }
  .split.rev .media, .svc-item.rev .media { order: 0; }
  .note .grid { grid-template-columns: 1fr; }
  .note .portrait { max-width: 440px; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
  .pkg-cell + .pkg-cell { border-left: none; border-top: 1px solid var(--rule-cream); }
  .svc-row { grid-template-columns: 44px 1fr; row-gap: 6px; }
  .svc-row h3 { grid-column: 2; }
  .svc-row .il-svc-desc { grid-column: 2; }
  .svc-row .svc-arrow { display: none; }
  .fullbleed .scrim { background: linear-gradient(180deg, rgba(16,14,11,0.55), rgba(16,14,11,0.85)); }
}
@media (max-width: 1000px) {
  .nav { display: none; }
  .menu-btn { display: inline-flex; }
}
@media (max-width: 760px) {
  .svc-grid { grid-template-columns: 1fr; }
  .sec-head .flex { flex-direction: column; align-items: flex-start; }
  .form .two { grid-template-columns: 1fr; }
}
