/* =====================================================================
   IMMACULATE CARD RESERVE — the website
   Built on the v11 locked tokens. Light = the Morning Read,
   dark = the Evening Edition. Token remap only — geometry never changes.
   ===================================================================== */

:root{
  /* ---------- Palette (v11 locked) ---------- */
  --bone:           #F4F1EA;
  --bone-raised:    #FBF8F2;
  --bone-sunken:    #EDE9DF;
  --lead:           #1E1A17;
  --lead-soft:      #2A2522;
  --smoke:          #15110D;
  --ash:            #7F786F;
  --ash-light:      #B4ADA4;
  --oxblood:        #6B1F23;
  --oxblood-deep:   #4F1518;
  --sage:           #4A6B3E;
  --sage-deep:      #36502D;
  --signal-down:    #8C3A3A;
  --gold-soft:      #D9B048;
  --stone:          #B8AA8C;
  --cream-inv:      #EFE9DD;
  --nav-glass:      rgba(251, 248, 242, 0.92);

  /* shading */
  --drop-soft: 0 6px 14px -6px rgba(20,15,10,0.33);
  --drop-deep: 0 24px 60px -24px rgba(20,15,10,0.38);
  --plate-edge: rgba(244,241,234,0.12);

  /* ---------- Motion ---------- */
  --m-fast:       140ms;
  --m-standard:   220ms;
  --m-deliberate: 320ms;
  --ease-paper:   cubic-bezier(.16, 1, .3, 1);
  --ease-soft:    cubic-bezier(.22, .61, .36, 1);

  /* ---------- Type ---------- */
  --ff-display: 'Newsreader', 'Times New Roman', serif;
  --ff-ui:      'Inter', -apple-system, system-ui, sans-serif;

  /* ---------- Layout ---------- */
  --measure: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
}

/* Evening Edition — token remap only. Applies to the whole page via
   html[data-register="evening"], or to any subtree via .force-evening. */
html[data-register="evening"], .force-evening {
  --bone:           #1C1813;
  --bone-raised:    #2A2219;
  --bone-sunken:    #141009;
  --lead:           #ECE6D9;
  --lead-soft:      #CFC7B8;
  --smoke:          #100D0A;
  --ash:            #9C9384;
  --ash-light:      #4D453A;
  --oxblood:        #8E3338;
  --oxblood-deep:   #6B1F23;
  --sage:           #7E9A6D;
  --sage-deep:      #647F54;
  --signal-down:    #C47272;
  --stone:          #8F8268;
  --nav-glass:      rgba(26, 22, 17, 0.92);
  --drop-soft: 0 6px 16px -6px rgba(0,0,0,0.6);
  --drop-deep: 0 24px 60px -24px rgba(0,0,0,0.7);
  --plate-edge: rgba(244,241,234,0.12);
}

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

html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bone);
  color: var(--lead);
  font-family: var(--ff-ui);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background var(--m-deliberate) var(--ease-soft), color var(--m-deliberate) var(--ease-soft);
}

/* paper grain over everything */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 999;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.7' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.075 0 0 0 0 0.063 0 0 0 0 0.054 0 0 0 0.4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.42'/></svg>");
  background-size: 180px 180px;
  opacity: 0.09;
}
html[data-grain="off"] body::before { display: none; }

::selection { background: var(--oxblood); color: var(--cream-inv); }

a { color: inherit; }
img { display: block; }

.wrap { max-width: var(--measure); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- shared type roles ---------- */
.eyebrow {
  font-family: var(--ff-ui);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ash);
}
.eyebrow .tick { color: var(--oxblood); }
h1, h2, h3 { margin: 0; font-family: var(--ff-display); font-weight: 600; color: var(--lead); }
.display {
  font-size: clamp(44px, 6.2vw, 84px);
  line-height: 1.02; letter-spacing: -0.025em;
  text-wrap: balance;
}
.display em, .h-sect em { font-style: italic; font-weight: 500; color: var(--oxblood); }
.h-sect {
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.06; letter-spacing: -0.02em;
  text-wrap: balance;
}
.dek {
  font-family: var(--ff-display);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5; font-weight: 400;
  color: var(--lead-soft);
  text-wrap: pretty;
  max-width: 56ch;
}
.dek i { color: var(--ash); }
.body-serif { font-family: var(--ff-display); font-size: 17px; line-height: 1.55; color: var(--lead-soft); text-wrap: pretty; }
.hairline { border: 0; border-top: 0.5px solid var(--ash-light); margin: 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-ui); font-size: 15px; font-weight: 600;
  letter-spacing: 0.01em; text-decoration: none;
  padding: 14px 26px; border-radius: 999px;
  border: 0.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--m-fast), color var(--m-fast), border-color var(--m-fast), transform var(--m-fast);
}
.btn:active { transform: scale(0.972); }
.btn-ink { background: var(--lead); color: var(--bone); }
.btn-ink:hover { background: var(--lead-soft); }
.btn-ghost { border-color: var(--ash-light); color: var(--lead); background: transparent; }
.btn-ghost:hover { border-color: var(--ash); background: var(--bone-raised); }
.btn .v { font-family: var(--ff-display); font-style: italic; font-weight: 500; letter-spacing: -0.04em; text-transform: none; }

/* the sacred italic v */
.glyph-v { font-family: var(--ff-display); font-style: italic; font-weight: 500; letter-spacing: -0.04em; display: inline-block; text-transform: none; }

/* =====================================================================
   MASTHEAD — the site chrome. Light-on-bone, like the app's mag-header.
   ===================================================================== */
.masthead {
  position: sticky; top: 0; z-index: 90;
  background: color-mix(in srgb, var(--bone-raised) 92%, transparent);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1.25px solid var(--lead);
  transition: background var(--m-deliberate) var(--ease-soft);
}
.masthead .mh-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px var(--gutter) 12px;
  max-width: var(--measure); margin: 0 auto;
}
.mh-left { display: flex; align-items: baseline; gap: 18px; }
.mh-crest { width: 40px; height: 26px; object-fit: contain; align-self: center; }
.mh-nav { display: flex; gap: 18px; }
.mh-nav a {
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none;
  color: var(--ash);
  white-space: nowrap;
  transition: color var(--m-fast);
}
.mh-nav a:hover { color: var(--lead); }
.mh-nav a .soon {
  font-family: var(--ff-display); font-style: italic; font-weight: 400;
  text-transform: none; letter-spacing: 0; color: var(--stone); font-size: 12px;
}
.mh-brand { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 3px; text-decoration: none; }
.mh-brand-line {
  font-family: var(--ff-display);
  font-size: 17px; font-weight: 500;
  letter-spacing: 0.32em; padding-left: 0.32em;
  color: var(--lead); line-height: 1;
}
.mh-brand-sub {
  font-size: 7.5px; font-weight: 600; letter-spacing: 0.28em;
  color: var(--ash); text-transform: uppercase;
}
.mh-right { display: flex; align-items: center; justify-content: flex-end; gap: 20px; }

/* register toggle — italic words, never a switch widget */
.register-toggle {
  display: flex; gap: 8px; align-items: baseline;
  font-family: var(--ff-display); font-style: italic;
  font-size: 14px; color: var(--ash);
  background: none; border: 0; padding: 0; cursor: pointer;
}
.register-toggle span { transition: color var(--m-fast); }
.register-toggle .dot { color: var(--ash-light); font-style: normal; }
.register-toggle .active { color: var(--oxblood); }
.register-toggle span:not(.dot):hover { color: var(--lead); }

.mh-signin {
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  text-decoration: none; text-transform: uppercase;
  color: var(--cream-inv); background: var(--smoke);
  padding: 9px 18px; border-radius: 999px;
  border: 0.5px solid var(--plate-edge);
  white-space: nowrap;
}
.mh-signin .soon { font-family: var(--ff-display); font-style: italic; font-weight: 400; text-transform: none; letter-spacing: 0; opacity: 0.55; }

/* dateline ribbon under masthead — the clock, like the app */
.dateline {
  display: flex; justify-content: space-between; align-items: baseline;
  max-width: var(--measure); margin: 0 auto;
  padding: 10px var(--gutter);
  border-bottom: 0.5px solid var(--ash-light);
}
.dateline .desk { font-family: var(--ff-display); font-style: italic; font-size: 15px; color: var(--lead); }
.dateline .day { font-size: 10.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ash); white-space: nowrap; }

/* =====================================================================
   HERO VARIANTS — exactly one shows, per html[data-hero]
   ===================================================================== */
.hero { display: none; }
html[data-hero="frontpage"] .hero-frontpage { display: block; }
html[data-hero="vault"]     .hero-vault     { display: block; }
html[data-hero="ledger"]    .hero-ledger    { display: block; }

/* ---------- A · The Front Page ---------- */
.hero-frontpage .hf-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding-top: clamp(48px, 7vh, 96px);
}
.hf-copy { display: flex; flex-direction: column; gap: 28px; padding-bottom: 64px; }
.hf-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hf-note { font-family: var(--ff-display); font-style: italic; font-size: 14px; color: var(--ash); }
.hf-phone { display: flex; justify-content: center; align-items: flex-end; }

/* ---------- B · The Vault ---------- */
.hero-vault .hv-plate {
  background: var(--smoke);
  border-bottom: 0.5px solid var(--plate-edge);
  position: relative;
  overflow: hidden;
}
.hero-vault .hv-plate::before {
  /* lamplight corner glow — a translation of the letter plate's glow */
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(70% 55% at 50% -10%, rgba(217,176,72,0.10), transparent 70%),
    radial-gradient(50% 40% at 12% 100%, rgba(107,31,35,0.16), transparent 70%);
}
.hv-inner {
  position: relative;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 26px;
  padding: clamp(56px, 9vh, 110px) var(--gutter) 0;
  max-width: var(--measure); margin: 0 auto;
}
.hv-crest { width: 110px; height: 62px; object-fit: contain; }
.hv-inner .eyebrow { color: var(--gold-soft); }
.hv-inner .display { color: var(--cream-inv); }
.hv-inner .display em { color: var(--gold-soft); }
.hv-inner .dek { color: rgba(239,233,221,0.72); margin: 0 auto; }
.hv-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hv-ctas .btn-ink { background: var(--cream-inv); color: #15110D; }
.hv-ctas .btn-ink:hover { background: #FFFDF6; }
.hv-ctas .btn-ghost { border-color: rgba(239,233,221,0.3); color: var(--cream-inv); }
.hv-ctas .btn-ghost:hover { background: rgba(239,233,221,0.06); border-color: rgba(239,233,221,0.5); }
.hv-phone { margin-bottom: -160px; position: relative; z-index: 2; }
.hero-vault .hv-after { height: 180px; }

/* ---------- C · The Ledger ---------- */
.hero-ledger .hl-inner {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 26px;
  padding-top: clamp(56px, 8vh, 100px);
}
.hl-rule { width: 64px; border-top: 1.25px solid var(--lead); }
.hl-stats {
  display: grid; grid-template-columns: repeat(3, minmax(120px, 180px));
  gap: 0; margin-top: 18px;
}
.hl-stats > div { padding: 0 28px; }
.hl-stats > div + div { border-left: 0.5px solid var(--ash-light); }
.hl-stats .num {
  font-family: var(--ff-display); font-style: italic; font-weight: 500;
  font-size: 30px; letter-spacing: -0.018em; color: var(--lead);
  font-variant-numeric: tabular-nums;
}
.hl-stats .lbl { font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ash); margin-top: 4px; }
.hl-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hl-phone { margin-top: 30px; }

/* =====================================================================
   SECTIONS
   ===================================================================== */
section.story { padding: clamp(72px, 11vh, 140px) 0; }
section.story.tight { padding-top: clamp(48px, 7vh, 88px); }

.sect-head { display: flex; flex-direction: column; gap: 18px; max-width: 720px; }
.sect-head.centered { margin: 0 auto; text-align: center; align-items: center; }

/* two-column feature: copy + artifact */
.feature {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
}
.feature .copy { display: flex; flex-direction: column; gap: 22px; }
.feature .copy .fine {
  font-size: 13px; color: var(--ash); line-height: 1.6;
}
.feat-list { list-style: none; margin: 6px 0 0; padding: 0; display: flex; flex-direction: column; }
.feat-list li {
  display: flex; gap: 14px; align-items: baseline;
  padding: 13px 0; border-top: 0.5px solid var(--ash-light);
  font-family: var(--ff-display); font-size: 16.5px; color: var(--lead-soft);
}
.feat-list li:last-child { border-bottom: 0.5px solid var(--ash-light); }
.feat-list .n { font-style: italic; color: var(--oxblood); font-size: 14px; flex: 0 0 22px; }

/* ---------- the three desks (intelligence layer) ---------- */
.desks {
  display: grid; grid-template-columns: repeat(3, 1fr);
  margin-top: 56px;
  border-top: 1.25px solid var(--lead);
}
.desk-card { padding: 28px 28px 34px 0; }
.desk-card + .desk-card { border-left: 0.5px solid var(--ash-light); padding-left: 28px; }
.desk-card .no { font-family: var(--ff-display); font-style: italic; font-size: 15px; color: var(--oxblood); }
.desk-card h3 { font-size: 26px; letter-spacing: -0.015em; margin: 10px 0 10px; }
.desk-card p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--ash); }

/* ---------- scanned strip object ---------- */
.strip-object {
  background: var(--bone-raised);
  border: 0.5px solid var(--ash-light);
  border-radius: 20px;
  padding: 26px;
  box-shadow: var(--drop-deep);
  display: flex; flex-direction: column; gap: 20px;
}
.strip-row { display: flex; gap: 16px; align-items: flex-end; }
.strip-card {
  width: 88px; height: 124px; border-radius: 8px;
  border: 0.5px solid rgba(20,15,10,0.18);
  box-shadow: 0 8px 18px -8px rgba(20,15,10,0.4);
  position: relative; overflow: hidden;
}
.strip-card .tag {
  position: absolute; left: 7px; top: 6px;
  font-family: var(--ff-display); font-style: italic;
  font-size: 9px; color: rgba(239,233,221,0.8);
}
.strip-meta { display: flex; flex-direction: column; gap: 4px; padding-bottom: 4px; }
.strip-meta .nm { font-family: var(--ff-display); font-size: 17px; color: var(--lead); }
.strip-meta .vl { font-family: var(--ff-display); font-style: italic; font-size: 15px; color: var(--lead-soft); font-variant-numeric: tabular-nums; }
.strip-meta .gd { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage); }
.strip-ack {
  border-top: 0.5px solid var(--ash-light);
  padding-top: 16px;
  display: flex; gap: 12px; align-items: baseline;
}
.strip-ack .v-mark {
  font-family: var(--ff-display); font-style: italic; font-weight: 500;
  color: var(--cream-inv); background: var(--smoke);
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; flex: 0 0 22px; align-self: center;
}
.strip-ack p { margin: 0; font-family: var(--ff-display); font-style: italic; font-size: 17px; line-height: 1.4; color: var(--lead-soft); }

/* card art gradients — artwork, identical in both registers */
.art-1 { background: radial-gradient(90% 70% at 50% 38%, #A99BCC 0%, #6B5E92 48%, #3E3560 100%); }
.art-2 { background: radial-gradient(90% 70% at 50% 38%, #D9C08A 0%, #A98C54 48%, #6E5A33 100%); }
.art-3 { background: radial-gradient(90% 70% at 45% 40%, #E0A45C 0%, #B06F35 50%, #6E3F1D 100%); }
.art-4 { background: radial-gradient(90% 70% at 50% 38%, #E4D9C2 0%, #B8A98C 50%, #7E7258 100%); }
.art-5 { background: radial-gradient(90% 70% at 50% 38%, #8FA9B8 0%, #5C7282 48%, #35444F 100%); }
.art-6 { background: radial-gradient(90% 70% at 50% 38%, #C4848A 0%, #8E4F55 50%, #59262B 100%); }

/* ---------- Virgil plate ---------- */
.virgil-plate {
  background: var(--smoke);
  border-radius: 24px;
  border: 0.5px solid var(--plate-edge);
  box-shadow: var(--drop-deep), inset 0 1px 0 rgba(244,241,234,0.07);
  padding: 30px 30px 24px;
  position: relative; overflow: hidden;
}
.virgil-plate::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 45% at 18% 0%, rgba(217,176,72,0.10), transparent 70%);
}
.vp-eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-soft);
  display: flex; gap: 10px; align-items: center;
}
.vp-eyebrow .v-mark {
  font-family: var(--ff-display); font-style: italic; font-weight: 500;
  font-size: 12px; color: var(--gold-soft);
  width: 20px; height: 20px; border-radius: 50%;
  border: 0.5px solid rgba(217,176,72,0.45);
  display: inline-flex; align-items: center; justify-content: center;
}
.vp-q {
  font-family: var(--ff-display); font-style: italic;
  font-size: clamp(20px, 2vw, 25px); line-height: 1.35; font-weight: 400;
  color: var(--cream-inv); margin: 16px 0 0;
}
.vp-q .tail { color: rgba(239,233,221,0.5); }
.vp-a {
  border-top: 0.5px solid rgba(239,233,221,0.14);
  margin-top: 20px; padding-top: 18px;
  font-family: var(--ff-display);
  font-size: 16.5px; line-height: 1.55;
  color: rgba(239,233,221,0.85);
}
.vp-a .em-val { font-style: italic; color: var(--gold-soft); font-variant-numeric: tabular-nums; }
.vp-reply {
  border-top: 0.5px solid rgba(239,233,221,0.14);
  margin-top: 20px; padding-top: 14px;
  display: flex; align-items: baseline; gap: 10px;
  font-family: var(--ff-display); font-style: italic;
  font-size: 15px; color: rgba(239,233,221,0.45);
}
.vp-reply .send { margin-left: auto; color: var(--gold-soft); font-weight: 500; }

/* ---------- correspondence rows (Circle) ---------- */
.corr { border-top: 1.25px solid var(--lead); margin-top: 48px; }
.corr-row {
  display: grid; grid-template-columns: 64px 1fr auto;
  gap: 22px; align-items: center;
  padding: 22px 0;
  border-bottom: 0.5px solid var(--ash-light);
}
.corr-init {
  width: 56px; height: 56px;
  background: var(--bone-raised);
  border: 0.5px solid var(--ash-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 24px; color: var(--lead);
}
.corr-body .who { font-family: var(--ff-display); font-weight: 600; font-size: 18px; color: var(--lead); }
.corr-body .who i { font-weight: 400; font-size: 14px; color: var(--ash); margin-left: 8px; }
.corr-body .what { font-family: var(--ff-display); font-style: italic; font-size: 16px; color: var(--lead-soft); margin-top: 3px; }
.corr-when { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ash); display: flex; align-items: center; gap: 8px; }
.corr-when .dot-ox { width: 7px; height: 7px; border-radius: 50%; background: var(--oxblood); }
.corr-thumbs { display: flex; gap: 6px; margin-top: 10px; }
.corr-thumbs span { width: 26px; height: 36px; border-radius: 3px; border: 0.5px solid rgba(20,15,10,0.2); }

/* ---------- evening edition band ---------- */
.evening-band {
  /* always evening — owns its register */
  background: var(--bone);
  color: var(--lead);
  border-top: 0.5px solid var(--plate-edge);
  border-bottom: 0.5px solid var(--plate-edge);
  overflow: hidden;
  transition: background var(--m-deliberate) var(--ease-soft);
}
.evening-band .feature { align-items: center; }
.evening-band .phone-col { display: flex; justify-content: center; padding: 64px 0; }
.eb-toggle-demo {
  display: inline-flex; gap: 10px; align-items: baseline;
  font-family: var(--ff-display); font-style: italic; font-size: 17px;
  color: var(--ash); margin-top: 6px;
}
.eb-toggle-demo .on { color: var(--oxblood); }

/* ---------- reserve shop teaser ---------- */
.shop-teaser {
  border: 0.5px solid var(--ash-light);
  border-radius: 24px;
  background: var(--bone-raised);
  padding: clamp(36px, 5vw, 64px);
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  box-shadow: var(--drop-soft);
}
.shop-list { list-style: none; margin: 0; padding: 0; }
.shop-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 15px 0; border-top: 0.5px solid var(--ash-light);
  font-family: var(--ff-display); font-size: 18px; color: var(--lead);
}
.shop-list li:last-child { border-bottom: 0.5px solid var(--ash-light); }
.shop-list .when { font-style: italic; font-size: 14px; color: var(--stone); }

/* ---------- final CTA ---------- */
.cta-final { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 26px; }
.cta-final .crest { width: 96px; height: 54px; object-fit: contain; }
.appstore-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--smoke); color: var(--cream-inv);
  border: 0.5px solid var(--plate-edge);
  border-radius: 14px; padding: 12px 24px;
  text-decoration: none;
}
.appstore-badge .apple { font-size: 26px; line-height: 1; }
.appstore-badge .txt { text-align: left; line-height: 1.15; }
.appstore-badge .txt .s { font-size: 10px; letter-spacing: 0.06em; opacity: 0.7; display: block; white-space: nowrap; }
.appstore-badge .txt .b { font-size: 17px; font-weight: 600; font-family: var(--ff-ui); }
.cta-note { font-family: var(--ff-display); font-style: italic; font-size: 14px; color: var(--ash); }

/* ---------- footer ---------- */
footer.colophon {
  border-top: 1.25px solid var(--lead);
  padding: 40px 0 56px;
}
.colo-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }
.colo-left { font-size: 12px; color: var(--ash); }
.colo-center { text-align: center; }
.colo-center .mh-brand-line { font-size: 13px; }
.colo-right { text-align: right; display: flex; gap: 18px; justify-content: flex-end; }
.colo-right a { font-size: 12px; color: var(--ash); text-decoration: none; }
.colo-right a:hover { color: var(--lead); }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 960px) {
  .hero-frontpage .hf-grid { grid-template-columns: 1fr; }
  .hf-phone { padding-bottom: 48px; }
  .feature { grid-template-columns: 1fr; }
  .desks { grid-template-columns: 1fr; border-top: 0; }
  .desk-card { border-top: 1.25px solid var(--lead); padding-left: 0 !important; padding-right: 0; }
  .desk-card + .desk-card { border-left: 0; }
  .shop-teaser { grid-template-columns: 1fr; }
  .mh-nav { display: none; }
  .masthead .mh-row { grid-template-columns: auto 1fr auto; }
  .hl-stats { grid-template-columns: 1fr; gap: 18px; }
  .hl-stats > div + div { border-left: 0; }
  .colo-grid { grid-template-columns: 1fr; text-align: center; }
  .colo-left, .colo-right { text-align: center; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 1ms !important; animation-duration: 1ms !important; }
}
