/* Pararead landing — hand-maintained stylesheet.
   Skinned to the team CANON (docs/landing/canon-index.html): paper/cream surface,
   blue + amber + mint + lilac accents, Inter body, Georgia serif headings (no serif
   webfont). The generator (build_landing.py) only links this file; markup classes
   below mirror the canon. Additions beyond the canon: per-locale chrome, the Android
   email-waitlist, the sticky mobile CTA bar, the noindex locale ribbon, the legal-page
   layout and RTL logical overrides. No third-party requests, no em-dashes. */

/* ----------------------------------------------------------------- tokens */
:root {
  --paper: #fbf8ef;
  --surface: #fffdf8;
  --ink: #15131a;
  --muted: #665f70;
  --line: #e3dccf;
  --blue: #25345f;
  --blue-2: #17203d;
  --amber: #f4b43c;
  --mint: #26b891;
  --coral: #e9575b;
  --lilac: #ece8ff;
  --plum: #171018;
  --plum-2: #2b1729;
  --shadow: 0 24px 70px rgba(27, 32, 52, .16);
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

/* ------------------------------------------------------------------- base */
* { box-sizing: border-box; letter-spacing: 0; }
html { scroll-behavior: smooth; }
/* clip (not hidden) keeps the hero's decorative shapes from causing horizontal
   scroll WITHOUT turning html/body into a scroll container -- so the sticky
   header keeps pinning to the top while the page scrolls. */
html, body { overflow-x: clip; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); line-height: 1.5; }
img { display: block; max-width: 100%; height: auto; }
figure { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
:focus-visible { outline: 3px solid rgba(244, 180, 60, .65); outline-offset: 3px; }

.container, .wrap { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }
.skip-link, .skip { position: absolute; top: -60px; inset-inline-start: 16px; z-index: 100; padding: 10px 14px; border-radius: 8px; background: var(--ink); color: #fff; }
.skip-link:focus, .skip:focus { top: 16px; }

h1, h2, h3 { margin: 0; line-height: 1.04; }
h1, h2 { font-family: var(--serif); font-weight: 800; }
h2 { max-width: 820px; font-size: clamp(26px, 3.2vw, 42px); }
h3 { font-size: 22px; }
p { margin: 0; }
.lead { max-width: 640px; margin-top: 18px; color: #352f43; font-size: clamp(18px, 1.75vw, 22px); line-height: 1.25; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 14px; color: var(--blue); font-size: 13px; font-weight: 950; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 7px rgba(38, 184, 145, .14); }
.muted { color: var(--muted); }

/* ----------------------------------------------------------------- header */
.site-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid rgba(227, 220, 207, .78); background: rgba(251, 248, 239, .9); backdrop-filter: blur(18px); }
.nav { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; }
.brand svg { display: block; }
.nav-links { display: flex; align-items: center; gap: 22px; color: var(--muted); font-size: 14px; font-weight: 800; }
.nav-links a:hover { color: var(--ink); }
/* single language picker (header dropdown, all 15 locales) */
.langpicker { position: relative; }
.langpicker > summary { list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 7px; min-height: 40px; padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--ink); font-size: 13px; font-weight: 900; }
.langpicker > summary::-webkit-details-marker { display: none; }
.langpicker .globe { display: block; flex: 0 0 auto; color: var(--blue); }
.langpicker > summary::after { content: ""; width: 6px; height: 6px; border-inline-end: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: rotate(45deg); margin-top: -3px; margin-inline-start: 2px; }
.langpicker[open] > summary::after { transform: rotate(-135deg); margin-top: 2px; }
.langpicker-menu { position: absolute; inset-inline-end: 0; top: calc(100% + 8px); z-index: 60; display: grid; grid-template-columns: repeat(2, minmax(132px, 1fr)); gap: 2px; width: max-content; max-width: 86vw; padding: 8px; border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: var(--shadow); }
.langpicker-menu a { padding: 8px 12px; border-radius: 8px; color: var(--ink); font-size: 13px; font-weight: 750; white-space: nowrap; }
.langpicker-menu a:hover { background: var(--lilac); }
.langpicker-menu a[aria-current="true"] { background: var(--blue-2); color: #fff; }

/* -------------------------------------------------------------------- CTA */
.cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 30px; }
.store-badge { display: inline-flex; align-items: center; border-radius: 8px; box-shadow: 0 14px 30px rgba(0, 0, 0, .14); }
.store-badge img { height: 46px; width: auto; display: block; border-radius: 8px; }
.store-badge .b { display: inline-flex; flex-direction: column; line-height: 1.1; text-align: start; }
.store-badge small { font-size: 11px; font-weight: 700; opacity: .85; }
.store-badge strong { font-size: 18px; }
.secondary-link { display: inline-flex; align-items: center; min-height: 50px; padding: 0 4px; color: var(--blue); font-weight: 900; }
.microcopy { display: block; margin-top: 14px; color: var(--muted); font-size: 14px; font-weight: 850; }
.qr-card { display: inline-flex; align-items: center; gap: 12px; min-height: 66px; padding: 8px 14px 8px 8px; border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: 0 14px 36px rgba(27, 32, 52, .08); }
.qr-card .qr { width: 52px; height: 52px; flex: 0 0 auto; border: 4px solid #fff; border-radius: 6px; box-shadow: inset 0 0 0 1px var(--line); overflow: hidden; }
.qr-card .qr svg, .qr-card .qr img { width: 100%; height: 100%; display: block; }
.qr-card .txt strong { display: block; color: var(--ink); font-weight: 950; }
.qr-card .txt span { display: block; margin-top: 3px; color: var(--muted); font-size: 13px; font-weight: 750; }
/* desktop hero CTA: App Store badge + divider + scan QR (one row) */
.cta-pair { align-items: center; gap: 16px; }
.cta-div { width: 1px; height: 46px; flex: 0 0 auto; background: var(--line); }
.qr-link { display: inline-flex; align-items: center; gap: 12px; }
.qr-link .qr { width: 56px; height: 56px; flex: 0 0 auto; border: 4px solid #fff; border-radius: 6px; box-shadow: inset 0 0 0 1px var(--line); overflow: hidden; }
.qr-link .qr img { width: 100%; height: 100%; display: block; }
.qr-link .txt strong { display: block; color: var(--ink); font-weight: 950; }
.qr-link .txt span { display: block; margin-top: 2px; color: var(--muted); font-size: 13px; font-weight: 750; }
.secondary-link .arr { margin-inline-start: 4px; }
.cta-row .secondary-link { flex-basis: 100%; }
.final-cta .qr-link .txt strong { color: #fff; }
.final-cta .qr-link .txt span { color: #c4c8dc; }
.final-cta .cta-div { background: rgba(255, 255, 255, .22); }

/* platform-aware CTA: one block per platform (canon .platform-* system) */
.cta-ios { display: none; }
.platform-desktop .cta-desktop { display: inline-flex; }
.platform-ios .cta-ios, .platform-android .cta-ios { display: inline-flex; }
.platform-ios .cta-desktop, .platform-android .cta-desktop { display: none; }

/* ------------------------------------------------------------------- hero */
.hero { position: relative; overflow: hidden; padding: 54px 0 70px; background: linear-gradient(180deg, #fbf8ef 0%, #fffdf8 72%, #fbf8ef 100%); }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 1px; background: var(--line); opacity: .7; }
.hero-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, .88fr); gap: clamp(44px, 6vw, 84px); align-items: center; }
.hero-copy { position: relative; z-index: 2; padding: 18px 0 0; }
.hero-copy h1 { font-size: clamp(50px, 6.4vw, 84px); }
.hero-copy h1 .wordmark { display: block; }
.hero-copy h1 .tagline { display: block; margin-top: 12px; max-width: 16ch; font-family: var(--sans); font-weight: 800; font-size: clamp(22px, 2.6vw, 32px); line-height: 1.12; color: var(--blue); }
.hero-proof { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; max-width: 560px; margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(227, 220, 207, .9); }
.proof strong { display: block; color: var(--blue-2); font-size: 22px; line-height: 1; }
.proof span { display: block; margin-top: 7px; color: var(--muted); font-size: 13px; font-weight: 750; }

.phone-stage { position: relative; isolation: isolate; min-height: 560px; display: grid; place-items: center; }
.phone-stage::before { content: ""; position: absolute; width: min(560px, 96%); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(244, 180, 60, .28), rgba(38, 184, 145, .13) 38%, rgba(37, 52, 95, .06) 62%, transparent 70%); z-index: -3; }
.phone-stage::after { content: ""; position: absolute; inset-inline-end: 0; bottom: 18px; width: min(100%, 520px); height: 270px; border-radius: 8px; background: linear-gradient(135deg, #17203d 0%, #1f2e63 100%); box-shadow: 0 28px 70px rgba(23, 32, 61, .22); z-index: -2; }
.phone-frame { overflow: hidden; width: min(100%, 322px); border: 1px solid rgba(20, 18, 28, .16); border-radius: 32px; background: #fff; box-shadow: var(--shadow); }
.phone-frame img { width: 100%; }
.hero-phone-main { position: relative; z-index: 1; width: min(40vw, 300px); transform: translate(-72px, 8px) rotate(-3deg); }
.hero-phone-side { position: absolute; z-index: 2; inset-inline-end: 26px; top: 78px; width: min(28vw, 214px); transform: rotate(5deg); box-shadow: 0 18px 58px rgba(27, 32, 52, .18); }
.callout { display: none; position: absolute; inset-inline-start: 34px; bottom: 28px; max-width: 230px; padding: 14px 16px; border: 1px solid rgba(227, 220, 207, .9); border-radius: 8px; background: #fff; box-shadow: 0 18px 44px rgba(27, 32, 52, .15); font-weight: 900; }
.callout span { display: block; margin-top: 5px; color: var(--muted); font-size: 13px; font-weight: 700; }

/* --------------------------------------------------------------- sections */
section { padding: 94px 0; }
.band { background: var(--surface); }
.blue-band { background: var(--blue-2); color: #fff; }
.blue-band .section-copy, .blue-band .feature p, .blue-band .caption, .blue-band .muted, .blue-band .lead { color: #d6d8e8; }
.blue-band .eyebrow { color: var(--amber); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 34px; }
.section-copy { max-width: 620px; color: var(--muted); font-size: 18px; }

.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.step, .feature, .language-cell, .faq-item { border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.step { min-height: 220px; padding: 24px; }
.step-num { width: 38px; height: 38px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 8px; background: var(--blue-2); color: #fff; font-weight: 950; }
.step p, .feature p { margin-top: 12px; color: var(--muted); }

.showcase { display: grid; grid-template-columns: minmax(0, .86fr) minmax(360px, 1fr); gap: clamp(36px, 6vw, 76px); align-items: center; }
.showcase.reverse { grid-template-columns: minmax(360px, 1fr) minmax(0, .86fr); }
.copy-block p { max-width: 650px; margin-top: 20px; color: var(--muted); font-size: 18px; }
.blue-band .copy-block p { color: #d6d8e8; }
.selling-point { margin-top: 24px; padding: 18px 20px; border-inline-start: 5px solid var(--amber); border-radius: 0 8px 8px 0; background: rgba(244, 180, 60, .13); font-weight: 950; }
.blue-band .selling-point { color: #fff; background: rgba(244, 180, 60, .18); }

.screen-scene { position: relative; min-height: 650px; display: grid; place-items: center; }
.screen-scene.two { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; align-items: center; }
.screen-scene.two .phone-frame:first-child { transform: translateY(28px) rotate(-3deg); }
.screen-scene.two .phone-frame:last-child { transform: translateY(-18px) rotate(3deg); }
.caption { position: absolute; inset-inline-start: 0; bottom: 24px; max-width: 270px; padding: 13px 15px; border-radius: 8px; background: var(--surface); box-shadow: 0 14px 34px rgba(27, 32, 52, .18); color: var(--ink); font-size: 13px; font-weight: 800; }
.blue-band .caption { color: #fff; background: #101a36; border: 1px solid rgba(255, 255, 255, .16); }
.screen-scene.two .caption { grid-column: 1 / -1; }

.practice-layout { display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); gap: 30px; align-items: start; }
.feature-list { display: grid; gap: 14px; margin-top: 24px; }
.feature { padding: 22px; }
.feature strong { color: var(--blue); font-size: 18px; }
.screen-mosaic { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; align-items: start; }
.screen-mosaic .phone-frame { width: 100%; border-radius: 24px; }
.screen-mosaic .phone-frame:nth-child(2), .screen-mosaic .phone-frame:nth-child(4) { margin-top: 46px; }

.content-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr); gap: 34px; align-items: center; }
.phone-stack { position: relative; min-height: 560px; }
.phone-stack .phone-frame { position: absolute; width: min(48%, 276px); }
.phone-stack .phone-frame:first-child { inset-inline-start: 6%; top: 8%; transform: rotate(-4deg); }
.phone-stack .phone-frame:last-child { inset-inline-end: 7%; bottom: 4%; transform: rotate(4deg); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.chip { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: #342d42; font-size: 14px; font-weight: 900; }
.level-strip { display: grid; gap: 10px; margin-top: 22px; }
.level { display: flex; justify-content: space-between; gap: 12px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.level strong { color: var(--blue); }
.tiny { color: var(--muted); font-size: 13px; }
.content-grid .tiny { margin-top: 16px; }

.language-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; margin-top: 28px; }
.language-cell { padding: 12px 8px; text-align: center; font-weight: 850; font-size: 13px; line-height: 1.2; overflow-wrap: anywhere; hyphens: auto; }

.faq-list { display: grid; gap: 12px; max-width: 900px; }
.faq-item { overflow: hidden; }
.faq-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 21px 22px; border: 0; background: transparent; color: var(--ink); text-align: start; cursor: pointer; font-weight: 950; font-size: 17px; }
/* The +/× toggle is drawn as two centered bars (not a text glyph): a "+" glyph
   isn't optically centered in the box, and the offset becomes obvious once the
   icon rotates 45° into "×". Bars are geometrically centered, so both states sit
   dead-centre. font-size:0 hides the literal "+" in the markup; currentColor lets
   the luxury theme recolor the bars via `color`. */
.faq-icon { position: relative; width: 28px; height: 28px; flex: 0 0 auto; border-radius: 8px; background: var(--lilac); color: var(--blue); font-size: 0; transition: transform .18s ease; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; top: 50%; left: 50%; width: 13px; height: 2.5px; border-radius: 2px; background: currentColor; transform: translate(-50%, -50%); }
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-panel { display: none; padding: 0 22px 22px; color: var(--muted); }
.faq-item[open] .faq-panel { display: block; }
.faq-item[open] .faq-icon { transform: rotate(45deg); }

/* --------------------------------------------------------------- final CTA */
.final-cta { overflow: hidden; background: var(--blue-2); color: #fff; }
.final-grid { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 760px; }
.final-cta p { max-width: 620px; margin-top: 18px; color: #d6d8e8; font-size: 20px; }
.final-cta .eyebrow { color: var(--amber); }
.final-cta .secondary-link { color: var(--amber); }
.final-preview { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; align-items: center; }
.final-preview .phone-frame { width: 100%; border-radius: 24px; }
.final-preview .phone-frame:last-child { margin-top: 48px; }
.final-cta .microcopy { color: #d6d8e8; }

/* ----------------------------------------------------------------- footer */
footer.site { padding: 34px 0; border-top: 1px solid var(--line); background: #fff; }
.footer-grid { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-grid .brand { margin-bottom: 8px; }
.footer-tagline { font-family: var(--serif); font-weight: 800; font-size: 18px; max-width: 22ch; }
.footer-copy { display: block; margin-top: 6px; color: var(--muted); font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px 18px; color: var(--muted); font-size: 14px; font-weight: 800; }
.footer-links a:hover { color: var(--ink); }
.footer-end { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; width: 100%; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }

/* --------------------------------------------------- locale (noindex) ribbon */
.localebar { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 6px 12px; padding: 9px 16px; background: var(--lilac); color: var(--blue-2); font-size: 13px; font-weight: 750; text-align: center; }
.localebar a { font-weight: 950; text-decoration: underline; }

/* -------------------------------------------------------- sticky mobile bar */
.mobile-bar { display: none; position: fixed; inset-inline: 0; bottom: 0; z-index: 60; padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); background: rgba(251, 248, 239, .94); border-top: 1px solid var(--line); backdrop-filter: blur(14px); }
.mobile-bar .mb-text { flex: 1 1 auto; min-width: 0; }
.mobile-bar .mb-text strong { display: block; font-weight: 900; font-size: 14px; line-height: 1.2; color: var(--ink); }
.mobile-bar .mb-text span { display: block; font-size: 12px; color: var(--muted); }
.mobile-bar .store-badge { flex: 0 0 auto; width: auto; }

/* ------------------------------------------------------------ legal pages
   Codex reading layout, retokenized. The legal body is a LIGHT paper sheet
   sandwiched between the (dark, luxury) header and footer -- this also fixes
   the prior dark-on-dark contrast bug where --paper is dark under luxury. */
/* Reset the design tokens back to the LIGHT base palette (identical to the Codex
   reference) inside the legal/contact subtree, so the reading area renders as the
   clean cream editorial page from the mockup -- while the page keeps the dark
   luxury header/footer (which match the Codex dark plum chrome). */
.legal-main, .contact-redesign {
  --paper: #fbf8ef; --surface: #fffdf8; --ink: #15131a; --muted: #665f70;
  --line: #e3dccf; --blue: #17203d; --blue-2: #17203d; --amber: #f4b43c; --mint: #26b891;
}
.legal-main { background: var(--paper); padding: 56px 0 0; }
/* Codex kicker look: amber text + mint dot (override the luxury hard-coded eyebrow). */
body.luxury-direction .legal-main .eyebrow { color: var(--amber); }
body.luxury-direction .legal-main .eyebrow::before { background: var(--mint); box-shadow: none; }

.page-head { max-width: 820px; margin: 0 auto; padding: 0 0 38px; text-align: center; }
.page-head h1 { font-family: var(--serif); margin-top: 10px; color: var(--ink); font-size: clamp(40px, 5.8vw, 68px); line-height: 1.04; }
.page-head > p { max-width: 660px; margin: 16px auto 0; color: #3f3949; font-size: 19px; line-height: 1.55; }
.page-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 22px; }
.page-meta span { min-height: 34px; display: inline-flex; align-items: center; padding: 0 12px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--muted); font-size: 13px; font-weight: 850; }

.reading-layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: clamp(34px, 6vw, 74px); align-items: start; padding: 0 0 82px; }
/* Legal pages: single centred column (no "On this page" sidebar). */
.legal-body { padding: 0 0 82px; }
.legal-body .copy { margin-inline: auto; }
.copy { max-width: 760px; }
.copy h2 { font-family: var(--serif); color: var(--ink); font-size: clamp(27px, 3vw, 31px); line-height: 1.08; margin: 0; }
.copy h2 ~ h2 { margin-top: 28px; padding-top: 26px; border-top: 1px solid var(--line); }
.copy h3 { font-family: var(--serif); color: var(--ink); font-size: 21px; margin-top: 22px; }
.copy p, .copy li { color: #3f3949; font-size: 17px; line-height: 1.62; }
.copy p { margin: 0; }
.copy h2 + p, .copy h3 + p, .copy p + p, .copy p + ul, .copy p + ol { margin-top: 13px; }
.copy ul, .copy ol { margin: 13px 0 0; padding-inline-start: 22px; }
/* In-text links (emails, cross-references) must stand out from body prose. */
/* Distinct link blue so emails and cross-references read clearly as links on the
   cream legal background (the legal-scope --blue #17203d is too close to the
   body text colour to be noticeable). */
.copy a { color: #2456c9; font-weight: 800; text-decoration: none; transition: color .15s ease, text-decoration-color .15s ease, text-underline-offset .15s ease; }
/* No underline at rest (colour alone marks the link); on hover the header/footer
   signature appears: amber underline with a wider offset, text darkens to ink. */
.copy a:hover, .copy a:focus-visible { color: var(--ink); text-decoration: underline; text-decoration-color: var(--amber); text-decoration-thickness: 2px; text-underline-offset: 6px; }
.copy li + li { margin-top: 8px; }

.side { position: sticky; top: 96px; border-top: 2px solid var(--ink); padding-top: 18px; }
.side strong { display: block; margin-bottom: 12px; color: var(--blue-2); font-size: 13px; font-weight: 950; text-transform: uppercase; letter-spacing: .04em; }
.side ul { margin: 0; padding: 0; list-style: none; }
.side li { margin-top: 10px; font-size: 14px; line-height: 1.4; }
.side a { color: var(--blue); font-weight: 850; }
.side a:hover { color: var(--amber); }
.side a[aria-current="true"] { color: var(--amber); }

.crumbs { color: var(--muted); font-size: 14px; font-weight: 800; margin-bottom: 18px; }
.crumbs a { color: var(--blue); }
.updated { color: var(--muted); font-size: 14px; }
.placeholder { display: inline-block; margin-top: 8px; padding: 2px 8px; border-radius: 6px; background: rgba(233, 87, 91, .12); color: #a83236; font-size: 13px; font-weight: 800; }
.lead-note { display: block; margin: 18px 0 0; padding: 14px 16px; border-inline-start: 4px solid var(--amber); border-radius: 0 8px 8px 0; background: rgba(244, 180, 60, .12); color: #5b4a1f; font-size: 14px; line-height: 1.5; }

/* --------------------------------------------------- contact: dark split hero */
.contact-redesign { min-height: calc(100vh - 74px); padding: clamp(42px, 7vw, 86px) 0 54px; background: linear-gradient(165deg, var(--plum) 0%, var(--plum-2) 100%); }
.contact-landing { display: flex; flex-direction: column; justify-content: center; min-height: min(620px, calc(100vh - 220px)); }
.contact-story { color: #fff8e8; }
body.luxury-direction .contact-story .eyebrow { color: var(--amber); }
body.luxury-direction .contact-story .eyebrow::before { background: var(--mint); box-shadow: none; }
.contact-story h1 { font-family: var(--serif); max-width: 720px; margin-top: 12px; color: #fff8e8; font-size: clamp(46px, 7vw, 88px); line-height: 1.02; }
.contact-story > p { max-width: 590px; margin: 20px 0 0; color: #ded4c6; font-size: clamp(18px, 1.9vw, 22px); line-height: 1.5; }
.mail-action { width: min(100%, 440px); min-height: 76px; display: inline-flex; align-items: center; gap: 16px; margin-top: 34px; padding-block: 12px; padding-inline: 12px 18px; border: 1px solid rgba(244, 180, 60, .36); border-radius: 8px; background: rgba(255, 248, 232, .08); color: #fff8e8; box-shadow: 0 20px 60px rgba(0, 0, 0, .22); }
.mail-action:hover { background: rgba(255, 248, 232, .12); color: #fff8e8; }
.mail-mark { width: 52px; height: 52px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: var(--amber); color: var(--plum); font-size: 25px; font-weight: 950; }
.mail-action strong, .mail-action small { display: block; }
.mail-action strong { font-size: 16px; font-weight: 950; }
.mail-action small { margin-top: 3px; color: #ded4c6; font-size: 14px; font-weight: 750; overflow-wrap: anywhere; }
.reply-panel { position: relative; padding: clamp(24px, 4vw, 34px); border: 1px solid rgba(244, 180, 60, .28); border-radius: 8px; background: #fffdf8; box-shadow: 0 30px 80px rgba(0, 0, 0, .22); }
.reply-panel::before { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(227, 220, 207, .74); border-radius: 6px; pointer-events: none; }
.reply-panel > * { position: relative; }
.reply-topline { color: var(--blue-2); font-size: 13px; font-weight: 950; text-transform: uppercase; letter-spacing: .04em; }
.reply-topline.sub { margin-top: 22px; }
.reply-panel h2 { font-family: var(--serif); margin-top: 12px; color: var(--ink); font-size: clamp(24px, 2.6vw, 30px); line-height: 1.1; }
.reply-panel p { margin: 12px 0 0; color: #3f3949; font-size: 16px; line-height: 1.55; }
.reply-panel ul { display: grid; gap: 12px; margin: 22px 0 0; padding-inline-start: 20px; }
.reply-panel li { color: #3f3949; font-size: 16px; }

/* legal + contact: collapse the two-column reading/contact grids; the TOC
   moves above the body, the contact hero stacks story over panel. */
@media (max-width: 880px) {
  .reading-layout, .contact-landing { grid-template-columns: 1fr; }
  .side { position: static; order: -1; border-top: 0; padding-top: 0; }
  .side strong { padding-top: 16px; border-top: 2px solid var(--ink); }
  .contact-landing { min-height: auto; }
}
@media (max-width: 560px) {
  .page-head { padding-bottom: 30px; }
  .reading-layout { padding-bottom: 56px; }
  .copy p, .copy li { font-size: 16px; }
  .contact-redesign { padding-top: 34px; }
  .mail-action { min-height: 70px; }
  .mail-mark { width: 46px; height: 46px; }
}

/* --------------------------------------------------------------- responsive */
@media (max-width: 980px) {
  .hero-grid, .showcase, .showcase.reverse, .practice-layout, .content-grid, .final-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .phone-stage { min-height: 600px; }
  /* stacked layout: drop the fixed scene height + stagger transforms so the
     phone frames never overflow upward into the section heading */
  .screen-scene { min-height: auto; }
  .screen-scene.two .phone-frame:first-child,
  .screen-scene.two .phone-frame:last-child { transform: none; }
  .hero-phone-main { transform: translate(-42px, 10px) rotate(-4deg); }
  .hero-phone-side { inset-inline-end: 8%; }
  .section-head { display: grid; }
  .steps { grid-template-columns: 1fr; }
  .screen-mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .language-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .showcase.reverse .screen-scene, .showcase.reverse .phone-stack { order: 2; }
  .showcase.reverse .copy-block, .showcase.reverse .content-copy { order: 1; }
  /* content+levels: phones flow BELOW the copy on tablet/mobile, never over the heading */
  .content-grid .content-copy { order: 1; }
  .content-grid .phone-stack { order: 2; position: static; min-height: 0; display: flex; gap: 12px; justify-content: center; margin-top: 22px; }
  .content-grid .phone-stack .phone-frame { position: static; inset: auto; width: min(46%, 200px); transform: none; }
}

@media (max-width: 680px) {
  .container, .wrap { width: min(100% - 24px, 1180px); }
  .nav { min-height: 62px; }
  .nav-links { display: none; }
  .hero-copy h1 { font-size: clamp(46px, 14vw, 58px); }
  h2 { font-size: clamp(24px, 6.5vw, 32px); }
  .lead { margin-top: 14px; font-size: 18px; line-height: 1.25; }
  .eyebrow { margin-bottom: 10px; font-size: 12px; }
  .cta-row { gap: 10px; margin-top: 22px; }
  .hero { padding: 34px 0 24px; }
  .hero-copy { padding-top: 0; }
  .hero-proof { display: none; }
  .secondary-link { width: 100%; justify-content: center; min-height: 38px; padding: 0; }
  .phone-stage { min-height: 430px; margin-top: 10px; }
  .phone-stage::before { width: min(430px, 110%); }
  .hero-phone-main { width: min(64vw, 246px); transform: translate(-54px, 8px) rotate(-4deg); }
  .hero-phone-side { width: min(46vw, 176px); inset-inline-end: 12px; top: 38px; transform: rotate(6deg); }
  .store-badge, .qr-card { width: 100%; }
  /* mobile only: official App Store badge centred at a comfortable size (not stretched) */
  .store-badge { justify-content: center; box-shadow: none; }
  .store-badge img { height: 60px; width: auto; }
  .mobile-bar .store-badge img { height: 40px; }
  section { padding: 68px 0; }
  .screen-scene { min-height: auto; }
  .screen-scene.two { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .screen-scene.two .phone-frame:first-child, .screen-scene.two .phone-frame:last-child { transform: none; }
  .caption { position: static; max-width: none; margin-top: 14px; }
  .phone-frame { border-radius: 24px; }
  .screen-mosaic { gap: 10px; }
  .screen-mosaic .phone-frame:nth-child(2), .screen-mosaic .phone-frame:nth-child(4) { margin-top: 24px; }
  .phone-stack { min-height: 470px; }
  .phone-stack .phone-frame { width: 55%; }
  .phone-stack .phone-frame:first-child { inset-inline-start: 0; }
  .phone-stack .phone-frame:last-child { inset-inline-end: 0; }
  .language-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .final-preview { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid, .footer-end { align-items: flex-start; flex-direction: column; }
  /* sticky mobile install bar shows on phones for ios/android only */
  .platform-ios, .platform-android { padding-bottom: 76px; }
  .platform-ios .mobile-bar.ios, .platform-android .mobile-bar.ios { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
}

/* ----------------------------------------------------------------- RTL */
[dir="rtl"] .hero-phone-main { transform: translate(72px, 8px) rotate(3deg); }
[dir="rtl"] .hero-phone-side { transform: rotate(-5deg); }
[dir="rtl"] .screen-scene.two .phone-frame:first-child { transform: translateY(28px) rotate(3deg); }
[dir="rtl"] .screen-scene.two .phone-frame:last-child { transform: translateY(-18px) rotate(-3deg); }
[dir="rtl"] .phone-stack .phone-frame:first-child { transform: rotate(4deg); }
[dir="rtl"] .phone-stack .phone-frame:last-child { transform: rotate(-4deg); }
@media (max-width: 980px) {
  [dir="rtl"] .hero-phone-main { transform: translate(42px, 10px) rotate(4deg); }
}

/* --------------------------------------------------- reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* ----------------------------------------------------- luxury direction pass
   Review concept: screenshots stay untouched. This changes the surrounding
   art direction: deeper editorial color, stronger shapes, sculptural product
   staging, and more premium section rhythm. */
body.luxury-direction {
  --paper: #17111b;
  --surface: #f8f0e3;
  --ink: #17131a;
  --muted: #6b625c;
  --line: #d7c7b2;
  --blue: #4a344b;
  --blue-2: #17111b;
  --amber: #d3aa63;
  --mint: #7e9b84;
  --coral: #9b4e50;
  --lilac: #eee5ef;
  --shadow: 0 34px 100px rgba(10, 8, 13, .28);
  background:
    radial-gradient(circle at 78% 4%, rgba(211, 170, 99, .20), transparent 30%),
    radial-gradient(circle at 4% 26%, rgba(126, 155, 132, .12), transparent 28%),
    linear-gradient(180deg, #17111b 0%, #241827 48%, #17111b 100%);
}
body.luxury-direction .site-header {
  border-bottom: 1px solid rgba(211, 170, 99, .20);
  background: rgba(23, 17, 27, .80);
  color: #f8f0e3;
  backdrop-filter: blur(22px);
}
body.luxury-direction .brand svg rect { fill: #d3aa63; }
body.luxury-direction .brand svg text { fill: #f8f0e3; }
body.luxury-direction .nav-links { color: rgba(248, 240, 227, .72); }
body.luxury-direction .nav-links a:hover { color: #fff7eb; text-decoration: underline; text-decoration-color: var(--amber); text-decoration-thickness: 2px; text-underline-offset: 6px; }
body.luxury-direction .langpicker > summary {
  border-color: rgba(211, 170, 99, .28);
  background: rgba(248, 240, 227, .10);
  color: #fffaf1;
}
body.luxury-direction .langpicker > summary::after {
  border-color: rgba(248, 240, 227, .72);
}
body.luxury-direction .langpicker-menu {
  border-color: rgba(211, 170, 99, .24);
  background: #f8f0e3;
}
body.luxury-direction .hero {
  overflow: hidden;
  padding: 74px 0 86px;
  color: #f8f0e3;
  background:
    radial-gradient(circle at 80% 15%, rgba(211, 170, 99, .25), transparent 26%),
    radial-gradient(circle at 58% 88%, rgba(126, 155, 132, .16), transparent 34%),
    linear-gradient(116deg, #17111b 0%, #2b1a2d 52%, #483249 100%);
}
body.luxury-direction .hero::before {
  content: "";
  position: absolute;
  inset: 42px max(22px, calc((100vw - 1180px) / 2)) 42px auto;
  width: min(44vw, 620px);
  border: 1px solid rgba(211, 170, 99, .24);
  border-radius: 44% 56% 18% 28%;
  background:
    linear-gradient(145deg, rgba(248, 240, 227, .16), rgba(248, 240, 227, .03)),
    radial-gradient(circle at 70% 18%, rgba(211, 170, 99, .22), transparent 34%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14);
  z-index: 0;
}
body.luxury-direction .hero::after {
  background: linear-gradient(90deg, transparent, rgba(211, 170, 99, .34), transparent);
}
body.luxury-direction .hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, .82fr) minmax(440px, 1fr);
}
body.luxury-direction .hero-copy h1 {
  color: #fff7eb;
  text-shadow: 0 18px 70px rgba(0, 0, 0, .24);
}
body.luxury-direction .hero-copy h1 .tagline {
  max-width: 15ch;
  color: #d3aa63;
}
body.luxury-direction .lead {
  color: rgba(248, 240, 227, .86);
}
body.luxury-direction .store-badge {
  box-shadow: 0 18px 40px rgba(0, 0, 0, .32);
}
body.luxury-direction .qr-link,
body.luxury-direction .secondary-link {
  color: #f2d49a;
}
body.luxury-direction .qr-link .txt strong {
  color: #fff7eb;
}
body.luxury-direction .qr-link .txt span,
body.luxury-direction .microcopy,
body.luxury-direction .proof span {
  color: rgba(248, 240, 227, .68);
}
body.luxury-direction .hero-proof {
  border-top-color: rgba(211, 170, 99, .26);
}
body.luxury-direction .proof strong {
  color: #fff7eb;
}
body.luxury-direction .phone-stage {
  min-height: 610px;
}
body.luxury-direction .phone-stage::before {
  width: min(620px, 105%);
  border-radius: 30% 70% 62% 38%;
  background:
    radial-gradient(circle at 58% 42%, rgba(211, 170, 99, .34), transparent 30%),
    radial-gradient(circle at 38% 66%, rgba(126, 155, 132, .18), transparent 36%),
    linear-gradient(145deg, rgba(248, 240, 227, .22), rgba(248, 240, 227, .04));
  box-shadow: inset 0 0 0 1px rgba(211, 170, 99, .18);
}
body.luxury-direction .phone-stage::after {
  inset-inline-end: -4px;
  bottom: 34px;
  width: min(100%, 560px);
  height: 310px;
  border-radius: 36px 8px 36px 8px;
  background:
    linear-gradient(135deg, rgba(211, 170, 99, .14), transparent 38%),
    linear-gradient(135deg, #191223 0%, #44304b 100%);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .34);
}
body.luxury-direction .phone-frame {
  border-color: rgba(248, 240, 227, .24);
  box-shadow: 0 28px 80px rgba(6, 5, 8, .32);
}
body.luxury-direction .hero-phone-main {
  transform: translate(-86px, 6px) rotate(-5deg);
}
body.luxury-direction .hero-phone-side {
  inset-inline-end: 16px;
  top: 64px;
  transform: rotate(7deg);
}
body.luxury-direction section {
  position: relative;
}
body.luxury-direction .band,
body.luxury-direction section:not(.hero):not(.blue-band):not(.final-cta):not(.about-hero):not(.about-band):not(.about-section):not(.about-cta) {
  background:
    linear-gradient(180deg, #f8f0e3 0%, #f3e8d8 100%);
}
body.luxury-direction #reader,
body.luxury-direction #content,
body.luxury-direction #faq {
  background:
    radial-gradient(circle at 90% 4%, rgba(211, 170, 99, .18), transparent 26%),
    linear-gradient(180deg, #fbf5ea 0%, #f5eadb 100%);
}
body.luxury-direction .section-head {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(74, 52, 75, .12);
}
body.luxury-direction h2,
body.luxury-direction .copy-block h2,
body.luxury-direction .content-copy h2,
body.luxury-direction .footer-tagline {
  color: #17111b;
}
body.luxury-direction .section-copy,
body.luxury-direction .copy-block p,
body.luxury-direction .content-copy p,
body.luxury-direction .step p,
body.luxury-direction .feature p {
  color: #5e554f;
}
body.luxury-direction .eyebrow {
  color: #4a344b;
}
body.luxury-direction .eyebrow::before {
  background: #d3aa63;
  box-shadow: 0 0 0 7px rgba(211, 170, 99, .17);
}
body.luxury-direction .step,
body.luxury-direction .feature,
body.luxury-direction .language-cell,
body.luxury-direction .faq-item,
body.luxury-direction .level,
body.luxury-direction .chip {
  border-color: rgba(74, 52, 75, .14);
  background:
    linear-gradient(180deg, rgba(255, 252, 245, .96), rgba(246, 235, 219, .92));
  box-shadow: 0 20px 54px rgba(55, 38, 31, .10);
}
body.luxury-direction .steps {
  gap: 18px;
}
body.luxury-direction .step {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 28px;
}
body.luxury-direction .step::after {
  content: "";
  position: absolute;
  inset: auto -30px -60px auto;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(211, 170, 99, .12);
}
body.luxury-direction .step:nth-child(2)::after {
  background: rgba(126, 155, 132, .14);
}
body.luxury-direction .step:nth-child(3)::after {
  background: rgba(74, 52, 75, .12);
}
body.luxury-direction .step-num {
  background: #17111b;
  color: #f8f0e3;
  box-shadow: 0 12px 26px rgba(23, 17, 27, .20);
}
body.luxury-direction .step:nth-child(1) { border-top: 5px solid #d3aa63; }
body.luxury-direction .step:nth-child(2) { border-top: 5px solid #7e9b84; }
body.luxury-direction .step:nth-child(3) { border-top: 5px solid #4a344b; }
body.luxury-direction .selling-point {
  border-inline-start-color: #d3aa63;
  background:
    linear-gradient(90deg, rgba(211, 170, 99, .20), rgba(126, 155, 132, .08));
  color: #211721;
}
body.luxury-direction .caption {
  border: 1px solid rgba(74, 52, 75, .12);
  background: rgba(255, 250, 241, .92);
  box-shadow: 0 20px 54px rgba(55, 38, 31, .14);
}
body.luxury-direction .blue-band,
body.luxury-direction .final-cta {
  background:
    radial-gradient(circle at 86% 12%, rgba(211, 170, 99, .20), transparent 30%),
    radial-gradient(circle at 16% 80%, rgba(126, 155, 132, .14), transparent 32%),
    linear-gradient(135deg, #15101a 0%, #2b1a2d 58%, #4a344b 100%);
}
body.luxury-direction .blue-band .eyebrow,
body.luxury-direction .final-cta .eyebrow {
  color: #d3aa63;
}
body.luxury-direction .blue-band h2,
body.luxury-direction .final-cta h2 {
  color: #fff7eb;
}
body.luxury-direction .blue-band .section-copy,
body.luxury-direction .blue-band .feature p,
body.luxury-direction .blue-band .caption,
body.luxury-direction .blue-band .muted,
body.luxury-direction .blue-band .lead,
body.luxury-direction .blue-band .copy-block p,
body.luxury-direction .final-cta p {
  color: rgba(248, 240, 227, .78);
}
body.luxury-direction .blue-band .caption {
  background: rgba(23, 17, 27, .78);
  border-color: rgba(211, 170, 99, .24);
}
body.luxury-direction .screen-mosaic .phone-frame,
body.luxury-direction .phone-stack .phone-frame,
body.luxury-direction .screen-scene .phone-frame {
  box-shadow: 0 26px 72px rgba(42, 26, 32, .18);
}
body.luxury-direction .language-cell {
  background:
    linear-gradient(180deg, rgba(255, 252, 245, .96), rgba(241, 228, 210, .90));
  color: #2b1a2d;
}
body.luxury-direction .faq-icon {
  background: rgba(211, 170, 99, .22);
  color: #4a344b;
}
body.luxury-direction .final-cta .secondary-link {
  color: #d3aa63;
}
body.luxury-direction footer.site {
  border-top-color: rgba(211, 170, 99, .20);
  background: #17111b;
  color: #f8f0e3;
}
body.luxury-direction footer.site .brand svg text { fill: #f8f0e3; }
body.luxury-direction .footer-copy,
body.luxury-direction .footer-links {
  color: rgba(248, 240, 227, .68);
}
body.luxury-direction .footer-links a:hover {
  color: #fff7eb;
  text-decoration: underline;
  text-decoration-color: var(--amber);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}
body.luxury-direction .mobile-bar {
  background: rgba(23, 17, 27, .92);
  border-top-color: rgba(211, 170, 99, .22);
}
body.luxury-direction .mobile-bar .mb-text strong { color: #f8f0e3; }
body.luxury-direction .mobile-bar .mb-text span { color: rgba(248, 240, 227, .68); }
@media (max-width: 980px) {
  body.luxury-direction .hero::before {
    inset: auto 12px 24px 12px;
    width: auto;
    height: 460px;
  }
  body.luxury-direction .hero-grid {
    grid-template-columns: 1fr;
  }
  body.luxury-direction .hero-phone-main {
    transform: translate(-46px, 8px) rotate(-4deg);
  }
}
@media (max-width: 680px) {
  body.luxury-direction .hero {
    padding: 38px 0 34px;
  }
  body.luxury-direction .hero-copy h1 {
    font-size: clamp(48px, 14vw, 62px);
  }
  body.luxury-direction .phone-stage::after {
    border-radius: 24px 8px 24px 8px;
  }
  body.luxury-direction .step {
    min-height: 230px;
  }
  /* mobile: drop the luxury drop-shadow so no box shows behind the App Store badge */
  body.luxury-direction .store-badge,
  body.luxury-direction .mobile-bar .store-badge {
    box-shadow: none;
  }
}

/* ===================================================================
   ABOUT PAGE (/about) — page-scoped; reuses the home header/footer/JS.
   Mobile-first: base rules are mobile, the @media block adds desktop.
   =================================================================== */
.about-main h1, .about-main h2, .about-main h3 { margin: 0; line-height: 1.08; }
.about-main h1, .about-main h2 { font-family: var(--serif); font-weight: 800; }
.about-main h1 { font-size: clamp(26px, 6.6vw, 34px); line-height: 1.16; max-width: 760px; }
.about-main h2 { font-size: clamp(24px, 5.2vw, 34px); line-height: 1.14; max-width: 700px; }
.about-main h3 { font-size: 19px; line-height: 1.22; }
.about-main p { margin: 0; }
.about-main .eyebrow { margin-bottom: 12px; }

.about-hero { padding: 40px 0 52px; background: linear-gradient(180deg, #fbf8ef 0%, #fffdf8 78%, #fbf8ef 100%); }
.about-hero-grid { display: grid; gap: 30px; }
.about-phone-scene { position: relative; isolation: isolate; min-height: 380px; display: grid; place-items: center; }
.about-phone-scene::before { content: ""; position: absolute; width: min(420px, 108%); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(244, 180, 60, .22), rgba(38, 184, 145, .12) 40%, transparent 70%); z-index: -3; }
.about-phone-scene::after { content: ""; position: absolute; right: 0; bottom: 14px; width: min(100%, 340px); height: 200px; border-radius: 10px; background: linear-gradient(135deg, #17203d 0%, #25345f 100%); box-shadow: 0 26px 64px rgba(23, 32, 61, .20); z-index: -2; }
.about-main .phone-frame.about-phone-main { width: min(70%, 240px); transform: translateX(-30px) rotate(-3deg); }
.about-main .phone-frame.about-phone-side { position: absolute; right: 4px; top: 54px; width: min(48%, 164px); transform: rotate(5deg); z-index: 2; }

.about-band { background: #fffdf8; border-top: 1px solid rgba(227, 220, 207, .65); border-bottom: 1px solid rgba(227, 220, 207, .65); }
.about-section { background: #fbf8ef; }
.about-band, .about-section { padding: 58px 0; }
.about-grid, .about-definition, .about-future { display: grid; gap: 18px; }
.about-label { color: #25345f; font-size: 12px; font-weight: 950; text-transform: uppercase; letter-spacing: .02em; }
.about-story { display: grid; gap: 18px; color: #322d3e; font-size: 18px; line-height: 1.66; }
.about-story strong { color: #15131a; }

.about-def-card { padding: 20px; border: 1px solid #e3dccf; border-radius: 10px; background: #fff; box-shadow: 0 16px 40px rgba(27, 32, 52, .08); }
.about-def-card p { margin-top: 14px; color: #665f70; font-size: 16px; }

.about-beliefs { display: grid; gap: 12px; }
.about-belief { padding: 20px; border: 1px solid #e3dccf; border-radius: 10px; background: #fff; }
.about-belief:nth-child(3) { background: #17203d; color: #fff; border-color: #17203d; }
.about-belief:nth-child(3) p { color: #d6d8e8; }
.about-belief p { margin-top: 12px; color: #665f70; }
.about-belief-num { display: inline-grid; place-items: center; width: 34px; height: 34px; margin-bottom: 14px; border-radius: 9px; background: #ece8ff; color: #25345f; font-weight: 950; }
.about-belief:nth-child(3) .about-belief-num { background: rgba(255, 255, 255, .14); color: #fff; }

.about-future-copy p { margin-top: 18px; color: #342e40; font-size: 18px; line-height: 1.66; }
.about-lang-panel { padding: 22px; border: 1px solid #e3dccf; border-radius: 10px; background: #fff; box-shadow: 0 16px 40px rgba(27, 32, 52, .08); }
.about-lang-panel strong { display: block; font-family: var(--serif); font-size: 42px; line-height: 1; color: #17203d; }
.about-lang-panel span { display: block; margin-top: 8px; color: #665f70; font-weight: 800; }

.about-cta { padding: 58px 0; background: #17203d; color: #fff; }
.about-cta-grid { display: grid; gap: 22px; }
body.luxury-direction .about-cta h2 { color: #fff; }
.about-cta p { margin-top: 14px; color: #d6d8e8; font-size: 18px; }
.about-cta .store-badge { box-shadow: none; }
.about-cta-grid .store-badge { justify-self: start; }

@media (min-width: 760px) {
  .about-hero { padding: 74px 0 70px; }
  .about-hero-grid { grid-template-columns: minmax(0, .95fr) minmax(320px, .65fr); gap: clamp(40px, 6vw, 80px); align-items: center; }
  .about-main h1 { font-size: clamp(36px, 4vw, 52px); }
  .about-main h2 { font-size: clamp(30px, 3.2vw, 42px); }
  .about-main h3 { font-size: 20px; }
  .about-phone-scene { min-height: 520px; }
  .about-phone-scene::after { right: 2%; bottom: 32px; width: min(96%, 420px); height: 250px; }
  .about-main .phone-frame.about-phone-main { width: min(78%, 280px); transform: rotate(-3deg) translateX(-26px); }
  .about-main .phone-frame.about-phone-side { right: 0; top: 80px; width: min(52%, 188px); }
  .about-band, .about-section { padding: 84px 0; }
  .about-grid { grid-template-columns: minmax(200px, .38fr) minmax(0, .84fr); gap: clamp(30px, 6vw, 80px); align-items: start; }
  .about-label { position: sticky; top: 96px; font-size: 13px; }
  .about-story { font-size: 20px; }
  .about-definition { grid-template-columns: minmax(0, .92fr) minmax(260px, .55fr); gap: clamp(28px, 5vw, 60px); align-items: center; }
  .about-beliefs { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .about-belief { min-height: 210px; padding: 24px; }
  .about-future { grid-template-columns: minmax(0, .86fr) minmax(260px, .56fr); gap: clamp(34px, 6vw, 78px); align-items: center; }
  .about-cta { padding: 74px 0; }
  .about-cta-grid { grid-template-columns: minmax(0, .9fr) auto; gap: 28px; align-items: center; }
}

/* ===================================================================
   CONTACT (/contact) — dark, centered support card (approved mockup).
   Reuses the existing .contact-redesign dark background.
   =================================================================== */
.contact-redesign { display: grid; place-items: center; }
.contact-redesign .contact-shell { width: min(640px, 100%); margin: 0 auto; text-align: left; }
.contact-redesign .kicker { display: inline-flex; align-items: center; gap: 10px; color: var(--amber); font-size: 13px; font-weight: 950; text-transform: uppercase; letter-spacing: .02em; }
.contact-redesign .kicker::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--mint); }
.contact-redesign h1 { font-family: var(--serif); margin: 18px 0 0; color: #fff8eb; font-size: clamp(40px, 8vw, 72px); line-height: 1.0; }
.contact-redesign .lede { max-width: 560px; margin: 18px 0 0; color: #cfc4bb; font-size: clamp(18px, 2vw, 22px); line-height: 1.45; }
.contact-card { width: min(560px, 100%); display: grid; grid-template-columns: 54px minmax(0, 1fr); gap: 16px; align-items: center; margin: 30px 0 0; padding: 16px 18px; border: 1px solid rgba(218, 173, 92, .28); border-radius: 10px; background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .035)); box-shadow: 0 22px 70px rgba(0, 0, 0, .24); }
.cc-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: var(--amber); color: #171018; font-size: 26px; font-weight: 950; }
.cc-label { display: block; color: #fff8eb; font-size: 18px; font-weight: 900; }
.cc-email { display: inline-block; margin-top: 4px; color: #cfc4bb; font-size: 18px; font-weight: 800; overflow-wrap: anywhere; }
.cc-email:hover { color: var(--amber); }
.contact-notes { width: min(560px, 100%); display: grid; gap: 10px; margin: 22px 0 0; padding: 20px 0 0; border-top: 1px solid rgba(218, 173, 92, .20); color: #cfc4bb; font-size: 15px; line-height: 1.5; }
.contact-notes p { margin: 0; }

@media (min-width: 760px) {
  .contact-redesign .contact-shell { text-align: center; }
  .contact-redesign h1, .contact-redesign .lede { margin-left: auto; margin-right: auto; }
  .contact-card, .contact-notes { margin-left: auto; margin-right: auto; text-align: left; }
}
