/* ==========================================================================
   RICHMADE — styles.css
   Tokens and rules from DESIGN_BRIEF.md §3–§5. The brief is law.
   ========================================================================== */

/* ---------- §3 fonts: exactly 2 files, self-hosted woff2, latin, swap (§7) ---------- */
@font-face {
  font-family: "Schibsted Grotesk";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("../assets/fonts/schibsted-grotesk-latin-400-900.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../assets/fonts/instrument-sans-latin-400-600.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- §3 tokens (amended 19 Jul 2026 — DesignJoy/Clay direction) ---------- */
:root {
  --canvas: #FFFFFF;
  --ink: #0B0C0E;
  --ink-2: #55575D;
  --accent: #0E63F4;
  --accent-hover: #0A4FC7;
  --surface: #FFFFFF;
  --panel: #F6F6F7;
  --dark: #0A0A0B;
  --dark-ink-2: #A1A1A8;
  --line: #E7E7E9;
  --radius: 14px;
  --radius-sm: 8px;
  --max: 1120px;
  --gutter: 24px;
  --pad-desk: 96px;
  --pad-mob: 64px;
  --font-head: "Schibsted Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  --ease-sig: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
}

.container { max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.container-narrow { max-width: 760px; }

h1, h2, h3 { font-family: var(--font-head); font-weight: 700; line-height: 1.04; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.55rem); max-width: 20ch; margin-bottom: 40px; }
p { max-width: 68ch; }
a { color: var(--ink); }
.num, s { font-family: var(--font-head); }

::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

.kicker {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.section-intro { max-width: 56ch; color: var(--ink-2); font-size: 1.05rem; line-height: 1.6; }
h2 + .section-intro { margin-top: -24px; margin-bottom: 8px; }

.section { padding-block: var(--pad-desk); }
.section-alt { background: var(--panel); }

/* ---------- CTA (§6: one label, one style, everywhere) ---------- */
.btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  font-weight: 600; font-size: 0.98rem; text-decoration: none;
  padding: 13px 26px; border-radius: 999px;
  transition: background 180ms ease, transform 180ms ease;
}
.btn-wa:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-wa .wa-ico { width: 15px; height: 15px; fill: currentColor; flex: none; }
.btn-wa .arrow { transition: transform 180ms ease; }
.btn-wa:hover .arrow { transform: translateX(3px); }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.link-quiet { color: var(--ink-2); text-decoration: none; border-bottom: 1px solid var(--line); padding-bottom: 2px; transition: color 180ms ease, border-color 180ms ease; }
.link-quiet:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- NAV (§5.1) ---------- */
.nav {
  position: sticky; top: 0; z-index: 50; height: 64px;
  background: var(--canvas);
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease;
}
.nav.scrolled { border-color: var(--line); }
.nav-inner { max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.wordmark { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; text-decoration: none; letter-spacing: -0.02em; }
.wordmark sup { font-size: 0.5em; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { text-decoration: none; font-weight: 500; font-size: 0.95rem; color: var(--ink-2); transition: color 180ms ease; }
.nav-links a:hover { color: var(--ink); }

/* ---------- HERO (§5.2) ---------- */
.hero { padding-block: 88px 96px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.hero-h1 { font-size: clamp(2.4rem, 1.55rem + 3.4vw, 3.85rem); font-weight: 800; }
.hero-h1 em { font-style: normal; }
.hero-h1 .line { display: block; overflow: hidden; }
/* 420ms + 180ms max delay = 600ms total, per §4 */
.hero-h1 .line > span { display: block; transform: translateY(110%); animation: rise 420ms var(--ease-sig) forwards; }
.hero-h1 .line:nth-child(2) > span { animation-delay: 90ms; }
.hero-h1 .line:nth-child(3) > span { animation-delay: 180ms; }
@keyframes rise { to { transform: translateY(0); } }
.hero-h1 em {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.09em;
  text-decoration-skip-ink: auto;
}
.hero-sub { margin-top: 26px; font-size: 1.14rem; color: var(--ink-2); max-width: 46ch; }
.hero-ctas { margin-top: 36px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.cta-note { margin-top: 16px; font-size: 0.9rem; color: var(--ink-2); }
.cta-note--center { text-align: center; margin-top: 20px; color: var(--dark-ink-2); }
/* Credibility line under the FAQ (added 25 Jul): the only "who we are" statement on the
   page. Deliberately says nothing about team size or names. */
/* Real client work gets an accent tag so it reads apart from the example brands. */
.case-meta .tag--live { border-color: var(--accent); color: var(--accent); font-weight: 600; }

.studio-note { margin-top: 34px;
  font-size: 0.95rem; color: var(--ink-2); max-width: 60ch; }
.cta-note--center a { color: #fff; }
.trust-line { margin-top: 14px; font-size: 0.88rem; color: var(--ink-2); }

/* ---------- CSS concept visuals (placeholders for real shots) ---------- */
.browser { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 32px 64px -32px rgba(10, 10, 11, 0.28); }
.browser-bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; border-bottom: 1px solid var(--line); }
.browser-bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.browser-url { margin-left: 10px; font-size: 0.68rem; color: var(--ink-2); background: var(--panel); border-radius: 4px; padding: 2px 10px; }
.browser-body { padding: 18px; display: grid; gap: 14px; }

/* Example websites (rebuilt 21 Jul, realism pass) — modelled on the PROVEN homepage patterns
   of category-leading sites (photo-led hero, trust strip, content section, testimonial with a
   face, footer) so each reads as a real, live, polished website — not a wireframe. Four
   different design languages to show range. Fictional brands + original copy only. Image areas
   are layered photographic-tone gradients (warm/neutral, never the §8 purple-blue). Mockups use
   OS-system fonts (Georgia, Courier) — 0 font files, §7 intact. All frames aria-hidden. */

/* shared bits */
.ex-star { color: #F3A81E; letter-spacing: .5px; font-size: 8px; }
.ex-av { width: 19px; height: 19px; border-radius: 50%; flex: none; }
.av1 { background: linear-gradient(135deg, #E9C6A1 0%, #C7996E 100%); }
.av2 { background: linear-gradient(135deg, #DBAA8B 0%, #AE795B 100%); }
.av3 { background: linear-gradient(135deg, #ECD2AF 0%, #C6A074 100%); }

/* ============ 1. MAISON — interior studio · editorial, photo-led (full-bleed hero) ============ */
.ex-maison { font-family: Georgia, "Times New Roman", serif; background: #F4EFE7; color: #2B2621; text-align: left; }
.ex-maison .m-hero { position: relative; min-height: 168px; display: flex; flex-direction: column;
  background:
    linear-gradient(0deg, rgba(20,15,10,.55) 0%, rgba(20,15,10,.05) 42%, rgba(20,15,10,.12) 100%),
    linear-gradient(115deg, rgba(255,255,255,.30) 0 30%, transparent 30% 44%, transparent 100%),
    linear-gradient(160deg, #C7A87F 0%, #A9855D 46%, #6E5539 100%); }
.ex-maison .m-nav { display: flex; align-items: center; gap: 14px; padding: 13px 18px; }
.ex-maison .m-brand { font-size: 15px; letter-spacing: .12em; color: #fff; }
.ex-maison .m-links { margin-left: auto; display: flex; gap: 14px; font-family: var(--font-body); font-size: 7px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.85); }
.ex-maison .m-enq { font-family: var(--font-body); font-size: 7px; letter-spacing: .16em; text-transform: uppercase; color: #fff; border: 1px solid rgba(255,255,255,.6); padding: 4px 9px; }
.ex-maison .m-hero-txt { margin-top: auto; padding: 18px; }
.ex-maison .m-eyebrow { font-family: var(--font-body); font-size: 7px; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.85); margin-bottom: 8px; }
.ex-maison .m-title { font-size: 27px; line-height: 1.05; font-weight: 400; color: #fff; max-width: 15ch; }
.ex-maison .m-title em { font-style: italic; }
.ex-maison .m-press { display: flex; align-items: center; gap: 14px; padding: 12px 18px; border-bottom: 1px solid #E1D8C8; }
.ex-maison .m-press small { font-family: var(--font-body); font-size: 6.5px; letter-spacing: .16em; text-transform: uppercase; color: #63594A; }
.ex-maison .m-press b { font-size: 10px; letter-spacing: .04em; color: #736A5B; font-weight: 400; }
.ex-maison .m-gal { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 16px 18px; }
.ex-maison .m-gal figure { margin: 0; }
.ex-maison .m-ph { aspect-ratio: 4 / 5; border-radius: 1px; }
.ex-maison .g1 { background: linear-gradient(160deg, #D8C6AC 0%, #B69B77 100%); }
.ex-maison .g2 { background: linear-gradient(160deg, #C9BBA6 0%, #9E8E76 100%); }
.ex-maison .g3 { background: linear-gradient(160deg, #DDCBB4 0%, #B9A588 100%); }
.ex-maison .m-gal figcaption { font-size: 7.5px; font-style: italic; color: #6B6157; margin-top: 6px; }
.ex-maison .m-foot { display: flex; align-items: center; padding: 12px 18px; border-top: 1px solid #E1D8C8; font-family: var(--font-body); font-size: 7px; color: #63594A; letter-spacing: .04em; }
.ex-maison .m-foot span { margin-left: auto; }

/* ============ 2. STRUCTURA — renovation · bold, trust-heavy (dark, industrial) ============ */
.ex-struc { font-family: var(--font-head); background: #121316; color: #fff; text-align: left; }
.ex-struc .s-nav { display: flex; align-items: center; gap: 10px; padding: 12px 15px; border-bottom: 1px solid #26282D; }
.ex-struc .s-brand { font-weight: 800; font-size: 12px; letter-spacing: .16em; }
.ex-struc .s-links { margin-left: auto; display: flex; gap: 11px; font-size: 7.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: #A4A9B1; }
.ex-struc .s-cta { font-size: 7.5px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; background: #E58A25; color: #111; padding: 6px 10px; }
.ex-struc .s-hero { display: grid; grid-template-columns: 1.02fr .98fr; }
.ex-struc .s-hero-l { padding: 18px 15px; }
.ex-struc .s-kick { font-family: ui-monospace, "Courier New", monospace; font-size: 7.5px; letter-spacing: .06em; color: #F0A24A; margin-bottom: 8px; }
.ex-struc .s-title { font-size: 23px; font-weight: 800; line-height: .98; letter-spacing: -.02em; text-transform: uppercase; }
.ex-struc .s-sub { font-size: 8px; line-height: 1.5; color: #C2C6CC; margin-top: 9px; }
.ex-struc .s-actions { margin-top: 12px; display: flex; gap: 7px; }
.ex-struc .s-btn { font-size: 7.5px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; background: #fff; color: #111; padding: 7px 11px; }
.ex-struc .s-btn-ghost { font-size: 7.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; border: 1px solid #4A4E54; color: #fff; padding: 7px 11px; }
.ex-struc .s-hero-img { background:
    linear-gradient(115deg, rgba(255,255,255,.14) 0 26%, transparent 26% 40%, transparent 100%),
    linear-gradient(165deg, #6E5C46 0%, #40372B 60%, #2A2520 100%); }
.ex-struc .s-trust { display: flex; align-items: center; gap: 0; border-block: 1px solid #26282D; }
.ex-struc .s-trust div { flex: 1; padding: 9px 6px; text-align: center; border-right: 1px solid #26282D; font-size: 7.5px; font-weight: 600; color: #D6DADF; }
.ex-struc .s-trust div:last-child { border-right: 0; }
.ex-struc .s-trust b { display: block; font-size: 11px; font-weight: 800; color: #fff; }
.ex-struc .s-work { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 13px 15px; }
.ex-struc .s-work figure { margin: 0; }
.ex-struc .s-wimg { aspect-ratio: 4 / 3; }
.ex-struc .w1 { background: linear-gradient(160deg, #7A6547 0%, #443A2C 100%); }
.ex-struc .w2 { background: linear-gradient(160deg, #6C6660 0%, #3A3632 100%); }
.ex-struc .w3 { background: linear-gradient(160deg, #83725A 0%, #4A4234 100%); }
.ex-struc .s-work figcaption { font-family: ui-monospace, "Courier New", monospace; font-size: 6.5px; color: #A4A9B1; margin-top: 5px; }
.ex-struc .s-work figcaption b { color: #F0A24A; font-weight: 400; }
.ex-struc .s-foot { display: flex; align-items: center; gap: 8px; padding: 11px 15px; border-top: 1px solid #26282D; font-size: 7.5px; color: #9297A0; }
.ex-struc .s-foot .s-cta { margin-left: auto; }

/* ============ 3. BEAUSKIN — REAL CLIENT (beauskinsg.com) recreated in mini format.
   Cream + dusty rose, serif display, photo hero. Real work, not an example brand. ============ */
.ex-beau { font-family: var(--font-body); background: #FBF8F6; color: #2A2422; text-align: left; }
.ex-beau .b-nav { display: flex; align-items: center; gap: 10px; padding: 10px 15px; border-bottom: 1px solid #EFE6E2; }
.ex-beau .b-brand { font-family: Georgia, "Times New Roman", serif; font-style: italic; font-size: 14px; line-height: 1; }
.ex-beau .b-brand small { display: block; font-family: var(--font-body); font-style: normal; font-size: 4.6px; letter-spacing: .2em; color: #7E6F69; margin-top: 3px; }
.ex-beau .b-links { margin-left: auto; display: flex; gap: 9px; font-size: 7.5px; color: #5C524E; }
.ex-beau .b-book { font-size: 7.5px; font-weight: 600; color: #fff; background: #A2605E; padding: 6px 11px; border-radius: 3px; white-space: nowrap; }
.ex-beau .b-hero { display: grid; grid-template-columns: 1.04fr .96fr; gap: 13px; align-items: center; padding: 17px 15px; }
.ex-beau .b-eyebrow { font-size: 7px; font-weight: 600; letter-spacing: .1em; color: #9B5250; margin-bottom: 8px; }
.ex-beau .b-title { font-family: Georgia, "Times New Roman", serif; font-weight: 400; font-size: 25px; line-height: 1.02; letter-spacing: -.01em; }
.ex-beau .b-sub { font-size: 7.5px; line-height: 1.6; color: #63584F; margin-top: 9px; max-width: none; }
.ex-beau .b-actions { display: flex; gap: 7px; margin-top: 12px; }
.ex-beau .b-btn { font-size: 7.5px; font-weight: 600; color: #fff; background: #A2605E; padding: 7px 12px; border-radius: 3px; }
.ex-beau .b-ghost { font-size: 7.5px; font-weight: 600; color: #2A2422; border: 1px solid #D9CDC8; padding: 7px 12px; border-radius: 3px; }
.ex-beau .b-img { align-self: stretch; min-height: 122px; border-radius: 2px;
  background: linear-gradient(150deg, #F5E7DF 0%, #E6CABE 52%, #C9A192 100%); }
.ex-beau .b-serv { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 15px 13px; }
.ex-beau .b-serv span { font-size: 7px; color: #63584F; border: 1px solid #E7DBD5; border-radius: 999px; padding: 5px 10px; }
.ex-beau .b-foot { display: flex; align-items: center; padding: 10px 15px; border-top: 1px solid #EFE6E2; font-size: 7px; color: #7E6F69; letter-spacing: .04em; }
.ex-beau .b-foot span { margin-left: auto; padding-right: 30px; }

/* ============ 4. APEX — tuition · bright, social-proof ============ */
.ex-apex { font-family: var(--font-body); background: #fff; color: #16203B; text-align: left; }
.ex-apex .a-nav { display: flex; align-items: center; gap: 10px; padding: 12px 15px; }
.ex-apex .a-brand { font-family: var(--font-head); font-weight: 800; font-size: 12px; color: #1E40D8; }
.ex-apex .a-links { margin-left: auto; display: flex; gap: 11px; font-size: 8px; font-weight: 600; color: #4A5266; }
.ex-apex .a-cta { font-size: 8px; font-weight: 700; color: #fff; background: #1E40D8; padding: 7px 12px; border-radius: 999px; }
.ex-apex .a-hero { display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: 12px; margin: 6px 13px 0; background: #EEF3FF; border-radius: 14px; padding: 16px; }
.ex-apex .a-badge { display: inline-block; font-size: 6.5px; font-weight: 700; color: #1E40D8; background: #fff; padding: 4px 9px; border-radius: 999px; margin-bottom: 9px; }
.ex-apex .a-title { font-family: var(--font-head); font-size: 20px; font-weight: 800; line-height: 1.0; letter-spacing: -.02em; }
.ex-apex .a-title u { text-decoration: underline; text-decoration-color: #F5A623; text-decoration-thickness: 3px; text-underline-offset: 2px; }
.ex-apex .a-sub { font-size: 8px; line-height: 1.5; color: #4A5266; margin-top: 8px; }
.ex-apex .a-btn { display: inline-block; margin-top: 11px; font-size: 8.5px; font-weight: 800; color: #fff; background: #1E40D8; padding: 8px 14px; border-radius: 999px; }
.ex-apex .a-hero-img { align-self: stretch; min-height: 108px; border-radius: 12px;
  background: linear-gradient(150deg, #FFE0A6 0%, #F7B45C 52%, #E98D3A 100%); }
.ex-apex .a-stats { display: flex; gap: 8px; padding: 13px 15px 8px; }
.ex-apex .a-stat { flex: 1; background: #F5F7FE; border-radius: 12px; padding: 10px 8px; text-align: center; }
.ex-apex .a-stat b { font-family: var(--font-head); font-weight: 800; font-size: 15px; color: #1E40D8; display: block; letter-spacing: -.02em; }
.ex-apex .a-stat span { font-size: 6.5px; font-weight: 600; color: #4A5266; }
.ex-apex .a-quote { display: flex; align-items: center; gap: 9px; margin: 4px 15px 12px; padding: 11px; border: 1px solid #E6EAF2; border-radius: 12px; }
.ex-apex .a-quote p { font-size: 8px; line-height: 1.5; color: #2C3550; max-width: none; }
.ex-apex .a-quote .ex-star { font-size: 7px; }
.ex-apex .a-quote cite { font-style: normal; font-weight: 700; font-size: 7.5px; color: #16203B; }
.ex-apex .a-chips { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 15px 15px; }
.ex-apex .a-chips span { font-size: 7px; font-weight: 700; padding: 5px 10px; border-radius: 999px; }
.ex-apex .a-chips span:nth-child(1) { background: #FFEAD5; color: #9A4A08; }
.ex-apex .a-chips span:nth-child(2) { background: #D9F7E4; color: #12662F; }
.ex-apex .a-chips span:nth-child(3) { background: #DBE6FE; color: #1B39C0; }
.ex-apex .a-chips span:nth-child(4) { background: #FBE1EF; color: #8C1247; }

/* ===== Realism pass (24 Jul), style direction from founder's SG references (eightytwo /
   kapa / xwa). Original designs — conventions only (floating pill nav, cinematic photo hero,
   rounded pill CTA w/ circular arrow, floating WhatsApp bubble, lead form). Not reproductions. */

.browser { position: relative; }

/* floating WhatsApp bubble — on real SG business sites everywhere; clipped inside the frame */
.ex-wa { position: absolute; right: 13px; bottom: 13px; width: 27px; height: 27px; border-radius: 50%;
  background: #25D366; display: grid; place-items: center; box-shadow: 0 6px 14px -4px rgba(0,0,0,.4); z-index: 6; }
.ex-wa svg { width: 16px; height: 16px; fill: #fff; }

/* small circular-arrow used inside pill CTAs (kapa pattern) */
.c-arrow { display: inline-grid; place-items: center; width: 15px; height: 15px; border-radius: 50%;
  font-size: 9px; line-height: 1; margin-left: 6px; }

/* ---- STRUCTURA → cinematic (kapa): full-bleed dark hero, floating glass nav, headline bottom-left ---- */
.ex-struc .c-hero { position: relative; min-height: 216px; display: flex; flex-direction: column;
  background:
    linear-gradient(180deg, rgba(14,13,12,.12) 0%, rgba(14,13,12,.30) 52%, rgba(14,13,12,.86) 100%),
    linear-gradient(120deg, rgba(255,255,255,.10) 0 28%, transparent 28% 44%, transparent 100%),
    linear-gradient(158deg, #5E5348 0%, #3A342C 46%, #1B1917 100%); }
.ex-struc .c-nav { position: absolute; top: 12px; left: 12px; right: 12px; display: flex; align-items: center; gap: 10px;
  padding: 7px 7px 7px 14px; background: rgba(22,21,20,.34); border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.ex-struc .c-logo { font-weight: 800; font-size: 12px; letter-spacing: .16em; color: #fff; }
.ex-struc .c-links { margin-left: auto; display: flex; gap: 12px; font-size: 7.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.82); }
.ex-struc .c-enq { display: inline-flex; align-items: center; font-size: 7.5px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; background: #fff; color: #16130F; padding: 6px 6px 6px 12px; border-radius: 999px; }
.ex-struc .c-enq .c-arrow { background: #16130F; color: #fff; }
.ex-struc .c-hero-txt { margin-top: auto; padding: 16px; }
.ex-struc .c-eyebrow { font-family: ui-monospace, "Courier New", monospace; font-size: 7.5px; letter-spacing: .1em; color: #F2C089; margin-bottom: 9px; }
.ex-struc .c-title { font-size: 26px; font-weight: 800; line-height: .98; letter-spacing: -.02em; color: #fff; text-transform: none; }
.ex-struc .c-sub { font-size: 8.5px; line-height: 1.5; color: rgba(255,255,255,.86); margin-top: 9px; max-width: 40ch; }
.ex-struc .c-cta { display: inline-flex; align-items: center; margin-top: 13px; font-size: 8.5px; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; background: #E58A25; color: #16130F; padding: 8px 8px 8px 15px; border-radius: 999px; }
.ex-struc .c-cta .c-arrow { background: #16130F; color: #E58A25; }

/* ---- APEX → lead-capture split (xwa): copy left, booking form card right ---- */
.ex-apex .a-hero.a-hero--form { grid-template-columns: 1.02fr .98fr; background: #EEF3FF; }
.ex-apex .a-form { background: #fff; border-radius: 12px; padding: 12px; box-shadow: 0 10px 24px -14px rgba(30,64,216,.35); }
.ex-apex .a-form h4 { font-family: var(--font-head); font-size: 11px; font-weight: 800; letter-spacing: -.01em; margin: 0 0 3px; color: #16203B; }
.ex-apex .a-form p { font-size: 7px; color: #56607A; margin: 0 0 9px; }
.ex-apex .a-field { border: 1px solid #DCE2EE; border-radius: 7px; padding: 6px 8px; margin-bottom: 6px; font-size: 7.5px; color: #97A0B5; }
.ex-apex .a-field-row { display: flex; gap: 6px; }
.ex-apex .a-field-row .a-field { flex: 1; }
.ex-apex .a-form .a-submit { display: block; text-align: center; font-size: 8.5px; font-weight: 800; color: #fff; background: #1E40D8; padding: 8px; border-radius: 999px; margin-top: 2px; }

/* ---- MAISON: thin outline hero button (eightytwo) ---- */
.ex-maison .m-outline { display: inline-block; margin-top: 12px; font-family: var(--font-body); font-size: 7.5px; letter-spacing: .18em; text-transform: uppercase; color: #fff; border: 1px solid rgba(255,255,255,.7); padding: 7px 16px; }

.hero-visual { justify-self: end; width: 100%; max-width: 460px; }
.visual-note { margin-top: 12px; font-size: 0.8rem; color: var(--ink-2); text-align: right; }

/* ---------- PROOF STRIP (§5.3) ---------- */
.proof { border-block: 1px solid var(--line); background: var(--panel); }
.proof-inner { padding-block: 34px; display: flex; justify-content: space-between; align-items: baseline; gap: 24px; flex-wrap: wrap; }
.proof-main { font-size: 1.22rem; }
.proof-main strong { font-family: var(--font-head); font-weight: 700; }
.proof-main .proof-price { color: var(--accent); }
.proof-sub { color: var(--ink-2); font-size: 0.95rem; }

/* ---------- WORK (§5.4) ---------- */
.case { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; padding-block: 48px; }
.case + .case { border-top: 1px solid var(--line); }
article.case:nth-of-type(odd) .case-visual { order: 2; }
article.case:nth-of-type(odd) .case-meta { order: 1; }
.case-meta .tag {
  display: inline-block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--ink-2); border: 1px solid var(--line); background: var(--surface);
  border-radius: 999px; padding: 5px 14px; margin-bottom: 18px;
}
.case-meta h3 { font-size: clamp(1.35rem, 2.4vw, 1.8rem); max-width: 18ch; }

/* Client quote, sits with the case it refers to. Client-approved before publishing. */
.case-quote { margin: 26px 0 0; padding-top: 22px; border-top: 1px solid var(--line); max-width: 46ch; }
.case-quote blockquote { font-size: 1.02rem; line-height: 1.6; color: var(--ink); }
.case-quote figcaption { margin-top: 12px; font-size: 0.88rem; font-weight: 600; color: var(--ink-2); }
.case .browser { transition: transform 180ms var(--ease-sig), box-shadow 180ms var(--ease-sig); }
.case:hover .browser { transform: translateY(-4px); box-shadow: 0 40px 72px -32px rgba(10, 10, 11, 0.35); }

/* ---------- PRICING (§5.5) ---------- */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.price-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px 36px; }
.price-name { font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.82rem; color: var(--ink-2); }
.price-figure { margin-top: 14px; font-size: 2.2rem; line-height: 1.1; }
.price-figure s { color: var(--ink-2); font-size: 0.55em; margin-right: 8px; }
.price-figure .num { font-weight: 600; }
.price-note { font-size: 0.45em; color: var(--accent); font-weight: 600; letter-spacing: 0.04em; margin-left: 6px; font-family: var(--font-body); }
/* No public rates (founder call, 24 Jul) — the figure line now carries a short descriptor,
   so it sits smaller than a price and the qualifier drops to its own line. */
.price-figure--text { font-size: 1.5rem; }
.price-figure--text .num { font-weight: 700; letter-spacing: -0.02em; }
.price-figure--text .price-note { display: block; margin-left: 0; margin-top: 6px; font-size: 0.9rem; }
.price-list { list-style: none; margin-top: 26px; }
.price-list li { padding: 11px 0 11px 30px; position: relative; border-top: 1px solid var(--line); font-size: 0.98rem; }
.price-list li::before { content: ""; position: absolute; left: 2px; top: 19px; width: 14px; height: 2px; background: var(--accent); }
.price-terms { margin-top: 32px; color: var(--ink-2); font-size: 0.95rem; }

/* ---------- STEPS (§5.6) ---------- */
.steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; counter-reset: step; margin-top: 8px; }
.steps li { border-top: 2px solid var(--ink); padding-top: 22px; }
.step-num { display: block; font-size: 2.6rem; font-weight: 600; color: var(--accent); line-height: 1; margin-bottom: 12px; }
.steps p { font-size: 1.02rem; max-width: 26ch; }

/* ---------- ABOUT (§5.7 — text-only until real founder photos exist) ---------- */
/* (ABOUT styles removed 25 Jul with the section itself) */

/* ---------- FAQ (§5.8) ---------- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  cursor: pointer; list-style: none; padding: 22px 0;
  font-weight: 600; font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { position: relative; width: 14px; height: 14px; flex: none; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; inset: 0; margin: auto; background: var(--accent); transition: transform 180ms ease; }
.faq-icon::before { width: 14px; height: 2px; }
.faq-icon::after { width: 2px; height: 14px; }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); }
.faq-item p { padding: 0 0 24px; color: var(--ink-2); max-width: 60ch; }

/* ---------- FINAL CTA (§5.9 — the ONLY centered block, on the dark band) ---------- */
.final-cta { text-align: center; padding-block: 128px; background: var(--dark); color: #fff; }
.final-line { font-size: clamp(2.4rem, 5vw, 3.6rem); margin: 0 auto 36px; }

/* ---------- FOOTER (§5.10 — continues the dark band) ---------- */
.footer { background: var(--dark); border-top: 1px solid rgba(255, 255, 255, 0.12); padding-block: 26px; font-size: 0.88rem; color: var(--dark-ink-2); }
.footer a { color: var(--dark-ink-2); text-decoration: none; border-bottom: 1px solid rgba(255, 255, 255, 0.25); }
.footer a:hover { color: #fff; border-color: #fff; }

/* ---------- Mobile WhatsApp bar (§6) ---------- */
.wa-bar { display: none; }

/* ---------- §4 scroll reveals (hidden state only when JS is running) ---------- */
.js .reveal { opacity: 0; transform: translateY(12px); transition: opacity 250ms ease, transform 250ms ease; }
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .section { padding-block: var(--pad-mob); }
  .hero { padding-block: 48px 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { justify-self: start; max-width: 520px; }
  .visual-note { text-align: left; }
  .case { grid-template-columns: 1fr; gap: 28px; padding-block: 40px; }
  article.case:nth-of-type(odd) .case-visual { order: 0; }
  article.case:nth-of-type(odd) .case-meta { order: 0; }
  .price-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .proof-inner { flex-direction: column; gap: 6px; }
  /* keep Work/Pricing/FAQ reachable on mobile — the CTA moved to the bottom bar, so there's room */
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 0.88rem; }
  .nav .btn-wa { display: none; } /* bottom bar owns the CTA on mobile */

  /* fixed bottom WhatsApp bar — the thumb never travels */
  .wa-bar {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
    background: var(--canvas); border-top: 1px solid var(--line);
  }
  .btn-bar { width: 100%; justify-content: center; }
  body { padding-bottom: 72px; }
  .nav .btn-wa { padding: 9px 18px; font-size: 0.9rem; }
}

/* ---------- §4 reduced motion: everything appears instantly ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-h1 .line > span { animation: none; transform: none; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .btn-wa, .btn-wa .arrow, .faq-icon::before, .faq-icon::after, .case .browser { transition: none; }
}
