/* ============================================================
   The Relocation Manual — Brand Website Prototype
   Shared stylesheet · Hybrid: Classic Editorial + AI-Aware Premium
   Navy / Gold / Ivory · Playfair Display + Montserrat
   ============================================================ */

:root {
  --navy: #0F2A46;
  --navy-90: rgba(15, 42, 70, 0.90);
  --navy-70: rgba(15, 42, 70, 0.70);
  --navy-08: rgba(15, 42, 70, 0.08);
  --navy-12: rgba(15, 42, 70, 0.12);
  --navy-16: rgba(15, 42, 70, 0.16);
  --gold: #C8A96A;
  --gold-soft: rgba(200, 169, 106, 0.35);
  --ivory: #F7F3E9;
  --ivory-2: #F0EADC;
  --ink: #111111;
  --warm-grey: #5C5C5C;
  --cream-code: #EFE9D9;

  --on-navy: #F7F3E9;
  --on-navy-soft: rgba(247, 243, 233, 0.82);
  --on-navy-faint: rgba(247, 243, 233, 0.62);

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono: "Menlo", "Courier New", monospace;

  --container: 1100px;
  --narrow: 760px;
  --side: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; margin: 0; color: var(--navy); letter-spacing: -0.2px; }
p { margin: 0 0 1.1em; }
a { color: var(--navy); }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--container); margin: 0 auto; padding: 0 var(--side); }
.narrow { max-width: var(--narrow); margin-left: auto; margin-right: auto; }

/* ---------------- atoms ---------------- */
.eyebrow {
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 2.4px; text-transform: uppercase; color: var(--gold); margin: 0 0 16px;
}
.eyebrow.grey { color: var(--warm-grey); }
.rule { width: 80px; height: 1px; background: var(--gold); border: 0; margin: 26px 0; }
.rule.center { margin-left: auto; margin-right: auto; }
.serif-it { font-family: var(--serif); font-style: italic; font-weight: 600; }
.lede { font-size: 19px; color: var(--warm-grey); line-height: 1.7; }
.muted { color: var(--warm-grey); }

/* section header helper */
.shead { max-width: 680px; }
.shead.center { margin: 0 auto; text-align: center; }
.shead h2 { font-size: clamp(30px, 4.4vw, 40px); line-height: 1.18; }
.shead .sub { font-size: 18px; color: var(--warm-grey); margin-top: 16px; }

/* sections */
section { padding: 84px 0; }
.band-ivory2 { background: var(--ivory-2); }
.band-navy { background: var(--navy); color: var(--on-navy); }
.band-navy h1, .band-navy h2, .band-navy h3, .band-navy h4 { color: var(--on-navy); }
.band-navy .eyebrow { color: var(--gold); }
.band-navy p { color: var(--on-navy-soft); }

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-size: 14px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 17px 34px; background: var(--navy); color: var(--ivory);
  border: 1px solid var(--navy); border-radius: 2px; text-decoration: none; cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover { background: transparent; color: var(--navy); border-color: var(--gold); }
.btn.inverse { background: var(--ivory); color: var(--navy); border-color: var(--ivory); }
.btn.inverse:hover { background: transparent; color: var(--ivory); border-color: var(--gold); }
.btn.secondary { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn.secondary:hover { border-color: var(--gold); }
.btn.block { width: 100%; }
.txtlink {
  font-family: var(--sans); font-size: 14px; font-weight: 500; letter-spacing: 0.6px;
  color: var(--navy); text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 3px;
}
.band-navy .txtlink { color: var(--ivory); }
.arrow::after { content: "\2192"; margin-left: 8px; }

/* ---------------- top nav ---------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 243, 233, 0.92); backdrop-filter: saturate(120%) blur(8px);
  border-bottom: 1px solid var(--navy-08);
}
.nav .inner { display: flex; align-items: center; justify-content: space-between; padding: 16px var(--side); max-width: var(--container); margin: 0 auto; }
.nav .brand { font-family: var(--serif); font-weight: 700; font-size: 19px; letter-spacing: 0.2px; color: var(--navy); text-decoration: none; }
.nav .links { display: flex; gap: 26px; align-items: center; }
.nav .links a { font-size: 12px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase; color: var(--navy-70); text-decoration: none; transition: color .15s; }
.nav .links a:hover, .nav .links a[aria-current="page"] { color: var(--navy); }
.nav .links a.navcta { color: var(--navy); border-bottom: 1px solid var(--gold); padding-bottom: 3px; }
.nav .burger { display: none; background: none; border: 0; font-size: 22px; color: var(--navy); cursor: pointer; }

/* nav on navy hero pages (homepage) — transparent over navy */
.nav.on-dark { background: transparent; backdrop-filter: none; border-bottom: 1px solid var(--gold-soft); position: absolute; left: 0; right: 0; }
.nav.on-dark .brand { color: var(--on-navy); }
.nav.on-dark .links a { color: var(--on-navy-soft); }
.nav.on-dark .links a:hover { color: var(--on-navy); }
.nav.on-dark .links a.navcta { color: var(--on-navy); }
.nav.on-dark .burger { color: var(--on-navy); }

/* ---------------- chips / pills ---------------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-family: var(--sans); font-size: 11.5px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase;
  padding: 9px 15px; border: 1px solid var(--navy-16); color: var(--navy); background: var(--ivory); border-radius: 2px;
}
.chip b { color: var(--gold); font-weight: 700; }
.band-navy .chip { border-color: var(--gold-soft); color: var(--on-navy); background: transparent; }
.band-navy .chip b { color: var(--gold); }

.status {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans);
  font-size: 11px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; padding: 6px 12px; border-radius: 2px;
}
.status .d { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }
.status.live { color: #2F6B45; background: rgba(91, 140, 106, 0.14); }
.status.live .d { background: #4F9268; }
.status.soon { color: var(--warm-grey); background: rgba(92, 92, 92, 0.1); }
.status.soon .d { background: var(--warm-grey); }

/* ---------------- cover artifact (flat typographic) ---------------- */
.cover-art {
  background: var(--ivory); border: 1px solid var(--navy-16); aspect-ratio: 3 / 4;
  display: flex; flex-direction: column; justify-content: center; text-align: center; padding: 10% 12%;
}
.cover-art.shadowless { box-shadow: none; }
.cover-art .ca-eyebrow { font-size: 11px; letter-spacing: 2.4px; text-transform: uppercase; color: var(--gold); margin-bottom: 7%; }
.cover-art .ca-title { font-family: var(--serif); font-weight: 700; font-size: clamp(22px, 3vw, 34px); line-height: 1.08; color: var(--navy); }
.cover-art .ca-ed { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: clamp(15px, 1.9vw, 20px); margin: 4% 0; }
.cover-art .ca-rule { width: 48px; height: 1px; background: var(--gold); margin: 0 auto 6%; }
.cover-art .ca-tag { font-family: var(--serif); font-style: italic; font-size: clamp(11px, 1.4vw, 14px); color: var(--warm-grey); line-height: 1.45; }
.cover-art .ca-author { font-size: 10px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--navy); margin-top: 8%; }

/* placeholder (striped) for portrait etc. */
.ph {
  background: repeating-linear-gradient(45deg, var(--ivory-2), var(--ivory-2) 9px, #e8e1cf 9px, #e8e1cf 18px);
  border: 1px solid var(--navy-16); display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: 1px; color: var(--warm-grey); text-transform: uppercase; padding: 16px;
}
.band-navy .ph { border-color: var(--gold-soft); color: var(--on-navy-faint);
  background: repeating-linear-gradient(45deg, rgba(255,255,255,.04), rgba(255,255,255,.04) 9px, rgba(255,255,255,.09) 9px, rgba(255,255,255,.09) 18px); }

/* ---------------- four pillars ---------------- */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--navy-12); border: 1px solid var(--navy-12); margin-top: 48px; }
.pillar { background: var(--ivory); padding: 34px 28px; }
.band-ivory2 .pillar { background: var(--ivory-2); }
.pillar .n { font-family: var(--serif); font-weight: 700; font-size: 46px; line-height: 1; color: var(--navy); opacity: .22; margin-bottom: 18px; }
.pillar h3 { font-size: 21px; margin-bottom: 10px; }
.pillar p { font-size: 15px; color: var(--warm-grey); margin: 0; }

/* ---------------- three artifacts ---------------- */
.artifacts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.artifact { background: var(--ivory); border: 1px solid var(--navy-12); border-top: 3px solid var(--gold); padding: 30px 28px; display: flex; flex-direction: column; }
.band-navy .artifact { background: rgba(247,243,233,0.04); border-color: var(--gold-soft); border-top-color: var(--gold); }
.band-navy .artifact h3, .band-navy .artifact .a-meta { color: var(--on-navy); }
.artifact .a-eyebrow { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.artifact h3 { font-size: 22px; line-height: 1.2; margin-bottom: 12px; }
.artifact p { font-size: 15px; color: var(--warm-grey); margin: 0 0 18px; }
.band-navy .artifact p { color: var(--on-navy-soft); }
.artifact .a-meta { margin-top: auto; font-family: var(--mono); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--warm-grey); padding-top: 14px; border-top: 1px solid var(--navy-08); }
.band-navy .artifact .a-meta { color: var(--on-navy-faint); border-top-color: var(--gold-soft); }
.artifact.core { border-top-width: 3px; }
.artifact .core-tag { font-size: 10px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--navy); background: var(--gold); display: inline-block; padding: 3px 9px; margin-bottom: 14px; width: fit-content; }

/* ---------------- tracker artifact ---------------- */
.tracker { border: 1px solid var(--navy-16); border-left: 3px solid var(--gold); background: var(--ivory); overflow-x: auto; }
.tracker table { border-collapse: collapse; width: 100%; min-width: 520px; }
.tracker thead th {
  background: var(--navy); color: var(--on-navy); font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; text-align: left; padding: 12px 14px; border-right: 1px solid rgba(247,243,233,0.12); white-space: nowrap;
}
.tracker tbody td { font-size: 13px; padding: 12px 14px; border-right: 1px solid var(--navy-08); border-top: 1px solid var(--navy-08); color: var(--navy); white-space: nowrap; }
.tracker tbody tr:nth-child(odd) { background: var(--cream-code); }
.tracker .tp { font-family: var(--sans); font-size: 10px; letter-spacing: 0.6px; text-transform: uppercase; padding: 3px 9px; border: 1px solid var(--gold); display: inline-block; }
.tracker-cap { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--warm-grey); margin-top: 14px; }
.tracker-wrap { position: relative; }
.tracker-hint { display: none; }

/* ---------------- 90-day timeline ---------------- */
.timeline { margin-top: 40px; }
.timeline .track { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.timeline .track::before { content: ""; position: absolute; left: 0; right: 0; top: 6px; height: 1px; background: var(--navy); }
.timeline .phase { position: relative; }
.timeline .phase .dot { width: 11px; height: 11px; border-radius: 50%; background: var(--gold); position: relative; z-index: 1; margin-bottom: 18px; border: 2px solid var(--ivory); }
.band-ivory2 .timeline .phase .dot { border-color: var(--ivory-2); }
.timeline .phase .days { font-family: var(--serif); font-weight: 700; font-size: 15px; letter-spacing: 0.5px; color: var(--navy); margin-bottom: 6px; }
.timeline .phase .what { font-size: 13.5px; color: var(--warm-grey); line-height: 1.5; }

/* ---------------- answer cards (AI-aware) ---------------- */
.answers-head { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.tag-readable { font-family: var(--mono); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--warm-grey); border: 1px solid var(--navy-12); padding: 6px 11px; }
.answers { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 40px; }
.answer { background: var(--ivory); border: 1px solid var(--navy-12); border-top: 3px solid var(--gold); padding: 26px 28px; }
.band-ivory2 .answer { background: var(--ivory); }
.answer .q { font-family: var(--serif); font-weight: 700; font-size: 18px; color: var(--navy); margin-bottom: 11px; }
.answer .a { font-size: 15px; color: var(--warm-grey); margin: 0; line-height: 1.65; }
.answer .a b { color: var(--navy); }

/* ---------------- AI companion module ---------------- */
.companion { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 48px; align-items: center; }
.companion > * { min-width: 0; }
.companion .note { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--warm-grey); margin: 18px 0 0; }
.band-navy .companion .note { color: var(--on-navy-faint); }
.prompts { background: var(--ivory); border: 1px solid var(--navy-12); border-top: 3px solid var(--gold); padding: 26px; }
.prompts .pf-head { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--warm-grey); margin-bottom: 18px; }
.prompt { display: flex; gap: 12px; align-items: flex-start; font-family: var(--mono); font-size: 12.5px; line-height: 1.55; color: var(--navy);
  background: var(--cream-code); border-left: 2px solid var(--gold); padding: 13px 15px; margin-bottom: 11px; }
.prompt .copy { flex: 0 0 auto; font-size: 9px; letter-spacing: 0.6px; text-transform: uppercase; color: var(--warm-grey); border: 1px solid var(--navy-12); padding: 3px 7px; cursor: default; }

/* ---------------- edition cards ---------------- */
.editions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 48px; }
.edition { background: var(--ivory); border: 1px solid var(--navy-12); padding: 34px 32px; display: flex; flex-direction: column; min-height: 280px; position: relative; }
.edition.available { border-color: var(--navy-16); box-shadow: 0 24px 50px -38px rgba(15,42,70,0.4); }
.edition.available::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--gold); }
.edition.soon { background: var(--ivory-2); }
.edition .e-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; gap: 12px; }
.e-id { display: flex; align-items: center; gap: 12px; min-width: 0; }
.e-mark { width: 30px; height: 30px; flex: 0 0 auto; color: var(--navy); }
.edition.soon .e-mark { color: var(--warm-grey); opacity: 0.85; }
.edition .flag { font-family: var(--mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--warm-grey); }
.edition h3 { font-size: 27px; margin-bottom: 8px; }
.edition .e-sub { font-size: 15px; color: var(--warm-grey); margin: 0 0 22px; }
.edition .e-price { font-family: var(--serif); font-weight: 700; font-size: 26px; color: var(--navy); margin-bottom: 4px; }
.edition .e-pricenote { font-size: 12px; letter-spacing: 0.5px; color: var(--warm-grey); text-transform: uppercase; }
.edition .e-foot { margin-top: auto; padding-top: 24px; }
.edition.soon .e-foot .soonline { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--warm-grey); }
.edition .e-list { list-style: none; margin: 0 0 24px; padding: 0; }
.edition .e-list li { font-size: 14px; color: var(--navy); padding: 7px 0 7px 22px; position: relative; border-top: 1px solid var(--navy-08); }
.edition .e-list li::before { content: "\2014"; position: absolute; left: 0; color: var(--gold); }
.edition.soon .e-list li { color: var(--warm-grey); }

/* ---------------- buy box ---------------- */
.buybox { background: var(--ivory); border: 1px solid var(--gold); padding: 30px; position: sticky; top: 90px; }
.buybox .cover-wrap { max-width: 200px; margin: 0 auto 24px; }
.buybox h3 { font-size: 22px; line-height: 1.2; margin-bottom: 6px; }
.buybox .bb-sub { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--warm-grey); margin: 0 0 18px; }
.buybox .bb-price { font-family: var(--serif); font-weight: 700; font-size: 38px; color: var(--navy); line-height: 1; }
.buybox .bb-tags { font-family: var(--mono); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--warm-grey); margin: 10px 0 22px; }
.buybox .bb-micro { font-family: var(--serif); font-style: italic; font-size: 12.5px; color: var(--warm-grey); margin: 16px 0 0; text-align: center; }
.buybox .bb-trust { margin: 18px 0 0; padding-top: 16px; border-top: 1px solid var(--navy-08); font-size: 12.5px; color: var(--warm-grey); }

/* ---------------- who for / not for ---------------- */
.fitgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--navy-12); border: 1px solid var(--navy-12); margin-top: 40px; }
.fitcol { background: var(--ivory); padding: 32px 34px; }
.fitcol h3 { font-size: 20px; margin-bottom: 18px; }
.fitcol ul { list-style: none; margin: 0; padding: 0; }
.fitcol li { font-size: 15px; padding: 10px 0 10px 26px; position: relative; border-top: 1px solid var(--navy-08); color: var(--navy); }
.fitcol.for li::before { content: "\2713"; position: absolute; left: 0; color: #4F9268; font-weight: 700; }
.fitcol.notfor li { color: var(--warm-grey); }
.fitcol.notfor li::before { content: "\00d7"; position: absolute; left: 0; color: #A85B43; font-weight: 700; }

/* ---------------- FAQ accordion ---------------- */
.faq { max-width: var(--narrow); margin: 40px auto 0; }
.faq details { border-top: 1px solid var(--navy-12); }
.faq details:last-child { border-bottom: 1px solid var(--navy-12); }
.faq summary { list-style: none; cursor: pointer; padding: 24px 44px 24px 0; position: relative; font-family: var(--serif); font-weight: 700; font-size: 20px; color: var(--navy); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-family: var(--sans); font-weight: 400; font-size: 26px; color: var(--gold); line-height: 1; }
.faq details[open] summary::after { content: "\2013"; }
.faq .fa { padding: 0 44px 26px 0; font-size: 16px; color: var(--warm-grey); line-height: 1.7; }
.faq .fa b { color: var(--navy); }

/* ---------------- founder ---------------- */
.founder { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: center; }
.founder .portrait { aspect-ratio: 4 / 5; }
.founder .caption { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-top: 16px; }
.founder p { font-size: 17px; }

/* ---------------- disclaimer ---------------- */
.disclaimer { background: var(--ivory-2); }
.disclaimer p { max-width: var(--narrow); margin: 0 auto; text-align: center; font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--warm-grey); line-height: 1.7; }

/* ---------------- footer ---------------- */
.footer { background: var(--navy); color: var(--on-navy-faint); border-top: 1px solid var(--gold); padding: 60px 0 40px; }
.footer .ftop { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer .brand { font-family: var(--serif); font-weight: 700; font-size: 20px; color: var(--on-navy); }
.footer .ftag { font-size: 14px; color: var(--on-navy-soft); margin-top: 12px; max-width: 280px; }
.footer h4 { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 10px; }
.footer a { color: var(--on-navy-soft); text-decoration: none; font-size: 14px; }
.footer a:hover { color: var(--on-navy); }
.footer .fbot { margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--gold-soft); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: 12px; }
.footer .fdisc { font-style: italic; max-width: 760px; line-height: 1.6; }

/* ---------------- sticky mobile buy bar ---------------- */
.stickybuy {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: none;
  background: var(--navy); border-top: 1px solid var(--gold); padding: 12px 16px;
  align-items: center; justify-content: space-between; gap: 14px;
  transform: translateY(100%); transition: transform .25s ease;
}
.stickybuy.show { transform: translateY(0); }
.stickybuy .sp { color: var(--on-navy); font-family: var(--serif); font-weight: 700; font-size: 17px; }
.stickybuy .sp small { font-family: var(--sans); font-weight: 500; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--on-navy-faint); display: block; }
.stickybuy .btn { padding: 14px 22px; }

/* mobile menu panel */
.mobpanel { display: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .pillars { grid-template-columns: 1fr 1fr; }
  .footer .ftop { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 820px) {
  :root { --side: 20px; }
  section { padding: 60px 0; }
  .nav .links { display: none; }
  .nav .burger { display: block; }
  .nav.open .mobpanel {
    display: block; position: absolute; top: 100%; left: 0; right: 0; background: var(--ivory);
    border-bottom: 1px solid var(--navy-12); padding: 10px var(--side) 22px;
  }
  .nav.on-dark.open .mobpanel { background: var(--navy); }
  .mobpanel a { display: block; padding: 14px 0; font-size: 14px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: var(--navy); text-decoration: none; border-top: 1px solid var(--navy-08); }
  .nav.on-dark .mobpanel a { color: var(--on-navy); border-top-color: var(--gold-soft); }

  .artifacts { grid-template-columns: 1fr; gap: 16px; }
  .answers { grid-template-columns: 1fr; }
  .editions { grid-template-columns: 1fr; }
  .e-mark { width: 26px; height: 26px; }
  .companion { grid-template-columns: 1fr; gap: 30px; }
  .tracker-wrap::after { content: ""; position: absolute; top: 0; right: 0; bottom: 0; width: 44px; pointer-events: none; background: linear-gradient(to right, rgba(240,234,220,0), var(--ivory-2)); }
  .tracker-hint { display: flex; align-items: center; justify-content: flex-end; gap: 6px; margin-top: 10px; font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); }
  .founder { grid-template-columns: 1fr; gap: 30px; }
  .founder .portrait { max-width: 320px; }
  .fitgrid { grid-template-columns: 1fr; }
  .timeline .track { grid-template-columns: 1fr; gap: 0; }
  .timeline .track::before { left: 5px; right: auto; top: 0; bottom: 0; width: 1px; height: auto; }
  .timeline .phase { padding: 0 0 26px 30px; }
  .timeline .phase .dot { position: absolute; left: 0; top: 4px; margin: 0; }
  .buybox { position: static; }
  .france-feature { grid-template-columns: 1fr !important; gap: 30px !important; }
  .france-feature .cover-wrap { max-width: 220px; }
  .prod-hero { grid-template-columns: 1fr !important; gap: 36px !important; }
  .stickybuy { display: flex; }
  .footer .fbot { flex-direction: column; }
}

@media (max-width: 560px) {
  .pillars { grid-template-columns: 1fr; }
  .footer .ftop { grid-template-columns: 1fr; }
  .shead h2 { font-size: 27px; }
}

/* hero utility classes (page-specific tuning kept minimal) */
.hero-pad { padding-top: 150px; padding-bottom: 110px; }
@media (max-width: 820px) { .hero-pad { padding-top: 120px; padding-bottom: 70px; } }

/* ---------------- content / legal pages ---------------- */
.prose { max-width: 760px; }
.prose h2 { font-size: 25px; margin: 44px 0 12px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 18px; margin: 28px 0 8px; }
.prose p { font-size: 16.5px; color: var(--navy); }
.prose ul { padding-left: 20px; margin: 0 0 18px; }
.prose li { font-size: 16.5px; margin-bottom: 9px; color: var(--navy); line-height: 1.6; }
.prose a:not(.btn):not(.txtlink) { color: var(--navy); border-bottom: 1px solid var(--gold); text-decoration: none; }
.prose .draftnote { font-style: italic; color: var(--warm-grey); font-size: 14px; border-left: 3px solid var(--gold); background: var(--cream-code); padding: 15px 18px; margin: 0 0 32px; }
.prose .lastupd { font-family: var(--mono); font-size: 12px; letter-spacing: 0.5px; text-transform: uppercase; color: var(--warm-grey); margin-bottom: 28px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--navy-12); border: 1px solid var(--navy-12); margin-top: 8px; }
.contact-grid .cc { background: var(--ivory); padding: 28px 30px; }
.contact-grid .cc h3 { font-size: 18px; margin-bottom: 8px; }
.contact-grid .cc p { font-size: 15px; color: var(--warm-grey); margin: 0; }
.contact-grid .cc a { font-size: 15px; }
@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } }

/* Build 031 — fixed cover image (official Hybrid B square product shot) */
.cover-img{display:block;width:100%;height:auto;border-radius:6px;}
.buybox .cover-wrap{max-width:300px;}
.france-feature .cover-wrap{max-width:300px;}

/* ===== Launch polish (2026-06-10) — editorial motion, focus visibility, reduced-motion ===== */

/* Keyboard focus — visible, on-brand, never removed for mouse users */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
.btn:focus-visible { outline-offset: 4px; }

/* Quiet card lift — editorial, not SaaS. Coming-soon cards do NOT lift (they are not clickable). */
.artifact, .edition.available, .pillar { transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease; }
.artifact:hover, .edition.available:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: 0 10px 28px rgba(15,42,70,.08); }
.pillar:hover { transform: translateY(-2px); }

/* Reveal-on-scroll — applied by site.js only when the visitor allows motion */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Respect prefers-reduced-motion: no smooth scroll, no reveals, near-instant transitions */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
