/* ============================================================
   VIDESHWAY — "Maison Editorial"
   Ivory paper · ink · terracotta · antique gold. Cormorant/Inter.
   No shadows, no gradients, hairlines only. 8px rhythm.
   ============================================================ */
:root {
  --paper: #FBF7EE;
  --ink-bg: #16222F;
  --ink: #1A2737;
  --muted: #6E6C61;
  --terra: #BE5A2C;
  --terra-action: #A8481F;
  --gold: #A98439;
  --gold-text: #7A5C1E;
  --gold-pale: #D9C79E;
  --hair: #E4D9C2;
  --hair-dark: #3A4654;
  --beige: #F4EDDC;
  --ivory-on-dark: #F6EFE2;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.25, 0.8, 0.25, 1);
}

@view-transition { navigation: auto; }
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.28s;
  animation-timing-function: var(--ease);
}
.nav-logo { view-transition-name: videshway-logo; contain: layout; }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; max-width: 100%; overflow-x: clip; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  font-variant-numeric: oldstyle-nums;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
::selection { background: var(--gold-pale); color: var(--ink); }
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--gold-pale);
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

/* paper grain */
.grain { position: relative; }
.grain::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23g)'/%3E%3C/svg%3E");
}
.dark.grain::before { opacity: 0.06; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 40px; position: relative; }
.section { padding: 112px 0; position: relative; }
.section.dark { background: var(--ink-bg); color: var(--ivory-on-dark); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }

em { font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--terra); font-size: 1.04em; }
.dark em { color: var(--gold-pale); }

/* kicker */
.kicker {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-text);
  display: flex;
  align-items: center;
  gap: 16px;
}
.kicker::before { content: ""; width: 34px; height: 1px; background: var(--gold-text); flex-shrink: 0; }
.dark .kicker { color: var(--gold-pale); }
.dark .kicker::before { background: var(--gold-pale); }

h1, h1.display, h2.display {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0;
}
h1.display, h2.display { font-size: clamp(44px, 5vw, 72px); margin-top: 26px; }
.standfirst { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: clamp(21px, 2.2vw, 27px); line-height: 1.4; color: var(--muted); }
.dark .standfirst { color: var(--gold-pale); }
.lede { margin-top: 22px; max-width: 58ch; color: var(--muted); font-size: 16.5px; }
.dark .lede { color: rgba(246, 239, 226, 0.68); }
.section-head { margin-bottom: 64px; position: relative; }

/* ghost numerals */
.ghost-num {
  position: absolute;
  top: -36px;
  right: 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(120px, 16vw, 220px);
  line-height: 1;
  color: var(--ink);
  opacity: 0.055;
  pointer-events: none;
  user-select: none;
}
.dark .ghost-num { color: var(--ivory-on-dark); opacity: 0.07; }

/* hairline rules */
.rule { height: 1px; background: var(--hair); border: none; }
.dark .rule { background: var(--hair-dark); }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 34px;
  border-radius: 2px;
  background: var(--terra-action);
  color: #fff;
  border: 1px solid var(--terra-action);
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s;
}
.btn:hover { background: #8F3D19; border-color: #8F3D19; }
.btn.ghost { background: transparent; color: var(--ivory-on-dark); border-color: var(--hair-dark); }
.btn.ghost:hover { border-color: var(--gold-pale); color: var(--gold-pale); background: transparent; }
.btn.ghost.on-light { color: var(--ink); border-color: var(--hair); }
.btn.ghost.on-light:hover { border-color: var(--gold-text); color: var(--gold-text); }

.textlink {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: var(--terra);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--hair);
  padding-bottom: 6px;
  transition: border-color 0.25s, color 0.25s;
}
.textlink:hover { border-color: var(--terra); }

/* ---------------- nav ---------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  transition: background 0.3s var(--ease), border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(22, 34, 47, 0.96); border-bottom-color: var(--hair-dark); }
.nav.on-paper { background: rgba(251, 247, 238, 0.96); border-bottom-color: var(--hair); }
.nav-logo {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 23px;
  letter-spacing: 0.01em;
  color: var(--ivory-on-dark);
  text-decoration: none;
}
.nav.on-paper .nav-logo { color: var(--ink); }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a:not(.btn) {
  color: rgba(246, 239, 226, 0.75);
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.nav-links a:not(.btn):hover { color: var(--gold-pale); }
.nav.on-paper .nav-links a:not(.btn) { color: var(--muted); }
.nav.on-paper .nav-links a:not(.btn):hover { color: var(--terra); }
.nav .btn { padding: 12px 22px; }
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(246, 239, 226, 0.28);
  background: transparent;
  color: var(--ivory-on-dark);
  border-radius: 2px;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  position: absolute;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle::before { transform: translateY(-6px); }
.nav-toggle::after { transform: translateY(6px); }
.nav.menu-open .nav-toggle span { opacity: 0; }
.nav.menu-open .nav-toggle::before { transform: rotate(45deg); }
.nav.menu-open .nav-toggle::after { transform: rotate(-45deg); }
.nav.on-paper .nav-toggle { color: var(--ink); border-color: var(--hair); }

/* ---------------- hero ---------------- */
.hero {
  min-height: 100vh;
  background: var(--ink-bg);
  color: var(--ivory-on-dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--hair);
}
.hero-map {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hero-map svg { width: 110%; min-width: 1100px; height: auto; opacity: 0.9; }
.hero .hero-inner { position: relative; z-index: 2; width: 100%; padding-top: 150px; padding-bottom: 120px; }
.hero h1 {
  font-size: clamp(48px, 6.4vw, 96px);
  font-weight: 500;
  max-width: 10.6em;
  margin-top: 30px;
}
.hero h1 em { color: var(--gold-pale); font-weight: 500; }
.hero .sub {
  margin-top: 28px;
  max-width: 470px;
  font-size: 16.5px;
  color: rgba(246, 239, 226, 0.72);
}
.hero .sub em { color: var(--gold-pale); }
.hero-ctas { display: flex; gap: 16px; margin-top: 44px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 64px;
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(246, 239, 226, 0.5);
}
.hero-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }

/* hero entrance */
.hero [data-stagger] { opacity: 0; transform: translateY(16px); animation: mrise 0.35s var(--ease) forwards; }
.hero [data-stagger="1"] { animation-delay: 0.05s; }
.hero [data-stagger="2"] { animation-delay: 0.15s; }
.hero [data-stagger="3"] { animation-delay: 0.25s; }
.hero [data-stagger="4"] { animation-delay: 0.35s; }
.hero [data-stagger="5"] { animation-delay: 0.45s; }
@keyframes mrise { to { opacity: 1; transform: none; } }

/* map elements */
.map-dot { fill: var(--gold-pale); opacity: 0.34; }
.map-arc {
  fill: none;
  stroke: var(--terra);
  stroke-width: 1.4;
  stroke-dasharray: 5 4;
  opacity: 0.9;
}
.map-destination {
  cursor: pointer;
  outline: none;
  pointer-events: auto;
}
.map-hit { fill: transparent; pointer-events: all; }
.map-city {
  fill: var(--gold-pale);
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity 0.3s var(--ease), transform 0.25s var(--ease), fill 0.25s var(--ease);
}
.map-city.on { opacity: 1; }
.map-destination:hover .map-city,
.map-destination:focus-visible .map-city,
.map-destination.is-active .map-city {
  fill: var(--ivory-on-dark);
  opacity: 1;
  transform: scale(1.9);
}
.map-home { fill: var(--terra); }
.map-pulse {
  fill: none;
  stroke: var(--terra);
  stroke-width: 1;
  transform-origin: center;
  animation: mpulse 2.6s var(--ease) infinite;
}
@keyframes mpulse {
  0% { opacity: 0.8; transform: scale(0.4); }
  100% { opacity: 0; transform: scale(2.4); }
}
.map-proof-tooltip {
  position: absolute;
  z-index: 4;
  width: min(250px, calc(100vw - 48px));
  padding: 13px 15px;
  border: 1px solid rgba(217, 199, 158, 0.52);
  background: rgba(22, 34, 47, 0.92);
  color: var(--ivory-on-dark);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s var(--ease), transform 0.18s var(--ease), visibility 0.18s;
}
.map-proof-tooltip.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.map-proof-tooltip strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 7px;
}
.map-proof-tooltip span {
  display: block;
  color: rgba(246, 239, 226, 0.76);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

/* ticker */
.ticker {
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  background: var(--paper);
  overflow: hidden;
  padding: 18px 0;
}
.ticker-track { display: flex; width: max-content; animation: tick 46s linear infinite; }
.ticker-track span {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 36px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 72px;
}
.ticker-track span::after { content: "·"; color: var(--gold); margin-left: 36px; }
@keyframes tick { to { transform: translateX(-50%); } }

/* ---------------- ledger (destinations) ---------------- */
.proof-map-shell { position: relative; }
.hero-map.proof-map-shell { position: absolute; }
.outcomes-proof {
  display: block;
}
.ledger-proof-map {
  height: 300px;
  margin-bottom: 42px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.ledger-proof-map svg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 112%;
  min-width: 1040px;
  height: auto;
  opacity: 0.82;
  transform: translate(-50%, -50%);
}
.ledger-proof-map .map-dot {
  fill: var(--ink);
  opacity: 0.15;
}
.ledger-proof-map .map-arc {
  stroke: var(--terra);
  opacity: 0.55;
}
.ledger-proof-map .map-city {
  fill: var(--terra);
  opacity: 0.78;
}
.ledger-proof-map .map-city.on { opacity: 0.78; }
.ledger-proof-map .map-destination:hover .map-city,
.ledger-proof-map .map-destination:focus-visible .map-city,
.ledger-proof-map .map-destination.is-active .map-city {
  fill: var(--ink);
  opacity: 1;
}
.ledger-proof-map .map-home { fill: var(--gold); }
.ledger-proof-map .map-pulse { stroke: var(--gold); }
.ledger-proof-map .map-proof-tooltip {
  background: rgba(251, 247, 238, 0.96);
  color: var(--ink);
  border-color: var(--hair);
  box-shadow: 0 18px 42px rgba(25, 34, 43, 0.12);
}
.ledger-proof-map .map-proof-tooltip span {
  color: var(--muted);
}
.ledger-stack { min-width: 0; }
.outcomes-proof .ledger-row {
  grid-template-columns: 88px 180px 1fr auto;
  gap: 32px;
  align-items: baseline;
}
.outcomes-proof .ledger-row .ln { font-size: 38px; }
.outcomes-proof .ledger-row .where {
  grid-column: auto;
  text-align: right;
  align-self: center;
  margin-top: 0;
}
.ledger { border-top: 1px solid var(--hair); }
.ledger-row {
  display: grid;
  grid-template-columns: 88px 180px 1fr auto;
  gap: 32px;
  align-items: baseline;
  padding: 26px 0;
  border-bottom: 1px solid var(--hair);
  position: relative;
}
.ledger-row::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width 0.25s var(--ease);
}
.ledger-row:hover::after,
.ledger-row.is-active::after,
.ledger-row:focus-visible::after { width: 100%; }
.ledger-row.is-active { background: rgba(169, 132, 57, 0.07); }
.ledger-row:focus-visible { outline: 1px solid var(--gold); outline-offset: 6px; }
.ledger-row .ln {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 38px;
  line-height: 1;
  color: var(--ink);
  opacity: 0.18;
}
.ledger-row .cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  align-self: center;
}
.ledger-row .who { display: flex; flex-direction: column; gap: 2px; }
.ledger-row .who .nm { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.ledger-row .who .uni { font-family: var(--serif); font-weight: 600; font-size: clamp(22px, 2.4vw, 30px); line-height: 1.15; color: var(--ink); }
.ledger-row .where {
  text-align: right;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  align-self: center;
}
.ledger-row .where .schol { display: block; color: var(--terra); font-weight: 600; margin-top: 3px; }
.ledger-note { margin-top: 28px; font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--muted); }

/* ---------------- on the record ---------------- */
.record-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 56px; }
.record-col h3 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-pale);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hair-dark);
  margin-bottom: 8px;
}
.record-col.wont h3 { color: var(--terra); }
.record-col ol { list-style: none; }
.record-col li {
  display: flex;
  gap: 22px;
  padding: 19px 0;
  border-bottom: 1px solid var(--hair-dark);
  font-size: 15.5px;
  color: rgba(246, 239, 226, 0.78);
  align-items: baseline;
}
.record-col li .n { font-family: var(--serif); font-weight: 500; font-size: 17px; color: var(--gold-pale); flex-shrink: 0; min-width: 24px; }
.record-col.wont li .n { color: var(--terra); }
.record-sig {
  margin-top: 56px;
  display: flex;
  justify-content: flex-end;
}
.record-sig span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--gold-pale);
  border-top: 1px solid var(--hair-dark);
  padding-top: 14px;
}

/* ---------------- founder ---------------- */
.founder-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 88px; align-items: center; }
.founder-photo { position: relative; border: 1px solid var(--hair-dark); }
.founder-photo img {
  width: 100%;
  display: block;
  filter: grayscale(1) contrast(1.06) brightness(1.04);
}
.founder-photo .tint {
  position: absolute;
  inset: 0;
  background: var(--ink-bg);
  mix-blend-mode: color;
  pointer-events: none;
}
.founder-photo .tint2 {
  position: absolute;
  inset: 0;
  background: rgba(22, 34, 47, 0.18);
  pointer-events: none;
}
.founder-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--hair-dark);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-pale);
}
.founder-body > p { color: rgba(246, 239, 226, 0.72); margin-top: 26px; max-width: 56ch; }
.founder-pull {
  font-family: var(--serif);
  font-style: italic;
  font-size: 21px;
  color: var(--gold-pale);
  margin-top: 30px;
}
.dark .textlink { color: var(--gold-pale); border-color: var(--hair-dark); }
.dark .textlink:hover { border-color: var(--gold-pale); }

/* ---------------- entries (who it's for) ---------------- */
.entry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--hair); border-left: 1px solid var(--hair); }
.entry {
  padding: 44px 36px 48px;
  border-right: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  position: relative;
}
.entry .e-cat { font-size: 10px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); display: flex; justify-content: space-between; }
.entry .e-cat .rn { font-family: var(--serif); font-style: italic; color: var(--muted); letter-spacing: 0.08em; }
.entry .grade { font-family: var(--serif); font-weight: 300; font-size: 44px; line-height: 1; margin: 44px 0 14px; }
.entry h3 { font-family: var(--serif); font-weight: 600; font-size: 23px; line-height: 1.25; }
.entry p { color: var(--muted); font-size: 14.5px; margin-top: 14px; }

/* ---------------- bandwidth / pillars items ---------------- */
.item-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--hair); border-left: 1px solid var(--hair); }
.item {
  padding: 38px 32px 42px;
  border-right: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.item .n { font-family: var(--serif); font-weight: 300; font-size: 30px; color: var(--gold); line-height: 1; }
.item h3 { font-family: var(--serif); font-weight: 600; font-size: 22px; margin: 18px 0 10px; }
.item p { color: var(--muted); font-size: 14.5px; }

/* beige band variant */
.section.beige { background: var(--beige); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.section.beige .item-grid, .section.beige .item { border-color: #DCCFB2; }

/* ---------------- roadmap ---------------- */
.roadmap { position: relative; max-width: 760px; }
.roadmap::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: var(--hair);
}
.rstep { display: grid; grid-template-columns: 52px 1fr; gap: 36px; padding: 26px 0; position: relative; }
.rstep .pt {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  position: relative;
  z-index: 1;
  background: var(--paper);
  border: 1px solid var(--gold);
  color: var(--gold);
}
.rstep:nth-child(even) .pt { background: var(--terra); border-color: var(--terra); color: var(--ivory-on-dark); }
.rstep h3 { font-family: var(--serif); font-weight: 600; font-size: 27px; }
.rstep p { color: var(--muted); font-size: 15px; max-width: 52ch; margin-top: 6px; }

/* ---------------- stats ---------------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); border-top: 1px solid var(--hair); margin-top: 56px; }
.stat { padding: 48px 40px 8px; border-right: 1px solid var(--hair); }
.stat:last-child { border-right: none; }
.stat .num { font-family: var(--serif); font-weight: 500; font-size: clamp(56px, 6vw, 88px); line-height: 1; color: var(--ink); }
.stat .num em { font-size: 0.6em; }
.stat .lbl { margin-top: 12px; font-size: 10.5px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); padding-bottom: 40px; }
.founder-photo picture { display: block; width: 100%; height: 100%; }

/* ---------------- testimonials ---------------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 8px; }
.quote {
  background: var(--beige);
  border-left: 2px solid var(--gold);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
}
.quote .qm { font-family: var(--serif); font-weight: 600; font-size: 72px; line-height: 0.4; color: var(--gold); margin-bottom: 30px; }
.quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.42;
  color: var(--ink);
  flex: 1;
}
.quote .attr { margin-top: 30px; padding-top: 18px; border-top: 1px solid #DCCFB2; font-size: 12.5px; color: var(--muted); }
.quote .attr strong { display: block; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; font-size: 10.5px; color: var(--terra); margin-top: 5px; }

/* ---------------- schools ---------------- */
.school-rows { border-top: 1px solid var(--hair); }
.school-row {
  display: grid;
  grid-template-columns: 170px 110px 1fr auto;
  gap: 36px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--hair);
  position: relative;
}
.school-row::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  height: 1px; width: 0;
  background: var(--gold);
  transition: width 0.25s var(--ease);
}
.school-row:hover::after { width: 100%; }
.school-row .badge { font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--terra); }
.school-row .city { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.school-row h3 { font-family: var(--serif); font-weight: 600; font-size: 25px; }
.school-row p { font-size: 14px; color: var(--muted); margin-top: 4px; }
.school-row .arr { font-family: var(--serif); font-size: 22px; color: var(--gold); }
.school-note { margin-top: 30px; font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--muted); }

/* ---------------- how it starts ---------------- */
.howit { max-width: 820px; }
.howit .lede { font-size: 17.5px; }

/* ---------------- starting point assessment ---------------- */
.start-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 88px;
  align-items: start;
}
.assessment {
  border-top: 1px solid #DCCFB2;
  border-bottom: 1px solid #DCCFB2;
  padding: 30px 0 24px;
}
.assessment-top {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
  margin-bottom: 34px;
}
.assessment-count {
  color: var(--gold);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}
.assessment-progress {
  height: 1px;
  background: #DCCFB2;
  overflow: hidden;
}
.assessment-progress span {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--terra);
  transition: width 0.28s var(--ease);
}
.assessment-step { display: none; }
.assessment-step.is-active {
  display: block;
  animation: assessmentIn 0.26s var(--ease) both;
}
@keyframes assessmentIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.assessment-q {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
  max-width: 11em;
}
.assessment-options {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid #DCCFB2;
  margin-top: 30px;
}
.assessment-options button {
  appearance: none;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: 100%;
  border: none;
  border-bottom: 1px solid #DCCFB2;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  padding: 19px 0;
  text-align: left;
  transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
}
.assessment-options button::after {
  content: "Select";
  color: var(--muted);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.assessment-options button:hover,
.assessment-options button:focus-visible,
.assessment-options button.is-selected {
  color: var(--terra);
  padding-left: 12px;
}
.assessment-options button.is-selected::after { color: var(--terra); content: "Selected"; }
.assessment-result {
  margin-top: 18px;
  color: var(--muted);
  font-size: 15.5px;
  max-width: 58ch;
}
.assessment-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 30px 0 26px;
}
.assessment-fields label {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.assessment-fields input {
  display: block;
  width: 100%;
  margin-top: 8px;
  border: none;
  border-bottom: 1px solid #DCCFB2;
  background: transparent;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  outline: none;
  padding: 8px 0 10px;
}
.assessment-fields input:focus { border-color: var(--gold); }
.assessment-consent { margin-bottom: 22px; }
.assessment-lead .btn {
  justify-content: center;
  width: 100%;
}
.assessment-link,
.assessment-nav button {
  appearance: none;
  border: none;
  border-bottom: 1px solid #DCCFB2;
  background: transparent;
  color: var(--terra);
  cursor: pointer;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  margin-top: 18px;
  padding: 0 0 5px;
  text-transform: uppercase;
}
.assessment-nav {
  min-height: 28px;
  margin-top: 24px;
}
.assessment-nav button:disabled {
  opacity: 0;
  pointer-events: none;
}
.assessment-status {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.assessment-status.error { color: var(--terra); }
.assessment-status a {
  display: inline-flex;
  color: var(--terra);
  text-decoration: none;
  border-bottom: 1px solid #DCCFB2;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-top: 8px;
  text-transform: uppercase;
}

/* ---------------- CTA + form (dark) ---------------- */
.cta-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 88px; align-items: start; }
.cta-tag {
  margin-top: 48px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--gold-pale);
}
.form-card {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--hair);
  padding: 48px 44px 40px;
  position: relative;
}
.form-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid var(--hair);
  pointer-events: none;
}
.form-card > * { position: relative; }
.form-card h3 { font-family: var(--serif); font-weight: 600; font-size: 28px; }
.form-card .fsub { font-size: 13.5px; color: var(--muted); margin: 8px 0 36px; }
.field { margin-bottom: 28px; }
.field label {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.field input, .field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hair);
  border-radius: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 19px;
  padding: 8px 0 10px;
  outline: none;
  transition: border-color 0.25s;
}
.field input:focus, .field select:focus { border-bottom-color: var(--gold); }
.form-card .btn { width: 100%; justify-content: center; margin-top: 10px; }
.form-light .btn { width: 100%; justify-content: center; margin-top: 10px; }
.form-foot { margin-top: 18px; text-align: center; font-size: 12px; color: var(--muted); }
.form-foot a { color: var(--terra); text-decoration: none; border-bottom: 1px solid var(--hair); }
.form-foot a:hover { border-color: var(--terra); }
.dpdp-notice {
  margin: -4px 0 14px;
  border-left: 2px solid var(--gold);
  padding-left: 14px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.55;
}
.dpdp-notice.compact {
  margin: 0 0 14px;
  max-width: 62ch;
}
.dpdp-notice a {
  color: var(--terra);
  text-decoration: none;
  border-bottom: 1px solid var(--hair);
}
.dpdp-notice a:hover { border-color: var(--terra); }
.consent-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 11px;
  align-items: start;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
}
.consent-check input {
  appearance: none;
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  border: 1px solid var(--gold);
  border-radius: 2px;
  background: transparent;
  display: grid;
  place-items: center;
}
.consent-check input::after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--terra);
  transform: scale(0);
  transition: transform 0.18s ease;
}
.consent-check input:checked::after { transform: scale(1); }
.consent-check input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.lead-status {
  margin-top: 16px;
  border: 1px solid var(--gold);
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink);
  background: var(--beige);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lead-status.error {
  border-color: var(--terra);
  background: var(--paper);
}
.lead-status a {
  align-self: flex-start;
  color: var(--terra);
  text-decoration: none;
  border-bottom: 1px solid var(--hair);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lead-status a:hover { border-color: var(--terra); }
.dark .lead-status { color: var(--ink); }

/* ---------------- footer ---------------- */
footer { background: var(--paper); padding: 88px 0 40px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 48px; }
.foot-grid h4 { font-size: 10.5px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
.foot-grid ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.foot-grid a { color: var(--muted); text-decoration: none; font-size: 14px; transition: color 0.25s; overflow-wrap: anywhere; }
.foot-grid a:hover { color: var(--terra); }
.foot-brand .fl { font-family: var(--serif); font-weight: 600; font-size: 30px; color: var(--ink); text-decoration: none; }
.foot-brand p { color: var(--muted); font-size: 14px; margin-top: 14px; max-width: 28ch; }
.foot-social { display: flex; gap: 22px; margin-top: 24px; }
.foot-social a { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); text-decoration: none; border-bottom: 1px solid var(--hair); padding-bottom: 4px; }
.foot-social a:hover { color: var(--terra); border-color: var(--terra); }
.foot-bottom {
  margin-top: 72px;
  padding-top: 26px;
  border-top: 1px solid var(--hair);
  display: flex;
  justify-content: space-between;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------------- concierge ---------------- */
.conc-launch {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 95;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--ink-bg);
  border: 1px solid var(--gold);
  color: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.25s var(--ease);
}
.conc-launch:hover { transform: translateY(-2px); }
.conc-panel[hidden] { display: none !important; }
.conc-panel {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 96;
  width: 400px;
  max-width: calc(100vw - 48px);
  height: 480px;
  max-height: calc(100vh - 130px);
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--hair);
  color: var(--ink);
}
.conc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--hair);
  background: var(--ink-bg);
  color: var(--ivory-on-dark);
}
.conc-head strong { font-family: var(--serif); font-weight: 600; font-size: 16px; display: block; white-space: nowrap; line-height: 1.2; }
.conc-head em { font-style: normal; font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-pale); display: block; margin-top: 2px; }
.conc-actions { display: flex; align-items: center; gap: 14px; }
.conc-wa { font-size: 9.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-pale); text-decoration: none; border: 1px solid var(--hair-dark); padding: 6px 10px; border-radius: 2px; white-space: nowrap; }
.conc-wa:hover { border-color: var(--gold-pale); }
.conc-close { background: none; border: none; color: var(--ivory-on-dark); font-size: 22px; line-height: 1; cursor: pointer; }
.conc-body { flex: 1; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 12px; }
.conc-msg { max-width: 88%; padding: 11px 14px; font-size: 14px; line-height: 1.55; border-radius: 2px; }
.conc-msg.bot { align-self: flex-start; background: var(--beige); border-left: 2px solid var(--gold); }
.conc-msg.user { align-self: flex-end; background: var(--ink-bg); color: var(--ivory-on-dark); }
.conc-voice { margin-top: 10px; padding-top: 9px; border-top: 1px solid rgba(169, 132, 57, 0.24); }
.conc-voice-btn {
  appearance: none;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hair);
  border-radius: 0;
  color: var(--terra);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  padding: 0 0 3px;
  text-transform: uppercase;
}
.conc-voice-btn:hover { border-color: var(--terra); }
.conc-voice-btn:disabled { cursor: wait; opacity: 0.7; }
.conc-voice-btn.is-playing { color: var(--ink); border-color: var(--gold); }
.conc-voice-btn.is-error { color: var(--muted); border-color: transparent; cursor: default; }
.conc-msg.typing { display: flex; gap: 5px; }
.conc-msg.typing i { width: 5px; height: 5px; border-radius: 50%; background: var(--muted); animation: cblink 1.2s infinite; font-style: normal; }
.conc-msg.typing i:nth-child(2) { animation-delay: 0.2s; }
.conc-msg.typing i:nth-child(3) { animation-delay: 0.4s; }
@keyframes cblink { 0%, 80%, 100% { opacity: 0.25; } 40% { opacity: 1; } }
.conc-lead { border: 1px solid var(--gold); background: var(--beige); padding: 12px 14px; font-size: 12.5px; display: flex; flex-direction: column; gap: 6px; }
.conc-lead span { color: var(--terra); font-weight: 600; }
.conc-lead a { color: var(--ink); font-size: 10.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; border-bottom: 1px solid var(--hair); align-self: flex-start; }
.conc-booking {
  border: 1px solid var(--gold);
  background: var(--paper);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.conc-booking strong { font-family: var(--serif); font-size: 18px; line-height: 1.2; }
.conc-slots { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.conc-slots button,
.conc-custom-slot input {
  border: 1px solid var(--hair);
  background: var(--beige);
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  padding: 9px 10px;
}
.conc-slots button { cursor: pointer; text-align: left; }
.conc-slots button:disabled,
.conc-custom-slot input:disabled { opacity: 0.55; cursor: not-allowed; }
.conc-custom-slot {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.conc-booking-status { color: var(--muted); font-size: 12px; line-height: 1.45; }
.conc-booking-status a { color: var(--terra); text-decoration: none; border-bottom: 1px solid var(--hair); }
.conc-bar { display: flex; gap: 10px; padding: 14px; border-top: 1px solid var(--hair); }
.conc-record {
  background: transparent;
  color: var(--terra);
  border: 1px solid var(--hair);
  border-radius: 2px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 12px;
  cursor: pointer;
}
.conc-record.is-recording {
  background: var(--terra);
  border-color: var(--terra);
  color: var(--ivory-on-dark);
}
.conc-record.is-agent:not(.is-recording) {
  border-color: var(--gold);
  color: var(--terra);
}
.conc-record[data-voice-state="thinking"],
.conc-record[data-voice-state="speaking"] {
  cursor: wait;
  opacity: 0.86;
}
.conc-bar input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hair);
  font-family: var(--sans);
  font-size: 14px;
  padding: 8px 2px;
  outline: none;
  color: var(--ink);
}
.conc-bar input:focus { border-bottom-color: var(--gold); }
.conc-bar button {
  background: var(--terra);
  color: var(--ivory-on-dark);
  border: none;
  border-radius: 2px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0 18px;
  cursor: pointer;
}

/* ---------------- reveals ---------------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.35s var(--ease), transform 0.35s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero [data-stagger] { opacity: 1; transform: none; animation: none; }
  .ticker-track { animation: none; }
  .map-pulse { animation: none; opacity: 0; }
  .map-arc { stroke-dashoffset: 0 !important; }
  .map-city { opacity: 1; }
  .assessment-step.is-active { animation: none; }
}

/* ---------------- responsive ---------------- */
@media (max-width: 1024px) {
  .wrap { padding: 0 28px; }
  .nav { padding: 16px 28px; gap: 18px; }
  .nav-toggle { display: inline-flex; position: relative; flex: 0 0 auto; }
  .nav-links {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 10px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px;
    background: var(--paper);
    border: 1px solid var(--hair);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  }
  .nav.menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-links a:not(.btn),
  .nav.on-paper .nav-links a:not(.btn) {
    display: block;
    color: var(--ink);
    padding: 14px 12px;
    border-bottom: 1px solid var(--hair);
  }
  .nav-links a.active { border-bottom: 1px solid var(--hair) !important; }
  .nav-links .btn {
    justify-content: center;
    margin-top: 12px;
    width: 100%;
  }
  .record-cols { grid-template-columns: 1fr; gap: 56px; }
  .founder-grid, .cta-grid, .start-grid { grid-template-columns: 1fr; gap: 56px; }
  .ledger-proof-map { height: 260px; }
  .ledger-proof-map svg { width: 130%; min-width: 880px; }
  .entry-grid, .item-grid, .quotes { grid-template-columns: 1fr 1fr; }
  .quotes { gap: 20px; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--hair); }
  .stat:last-child { border-bottom: none; }
  .hero-map svg { opacity: 0.34; }
}
@media (max-width: 680px) {
  .section { padding: 80px 0; }
  .wrap { padding: 0 26px; }
  .nav { padding: 16px 26px; align-items: flex-start; }
  .nav-logo { font-size: 21px; line-height: 1.2; padding-top: 10px; }
  .nav .btn { padding: 12px 18px; letter-spacing: 0.14em; }
  .hero { min-height: 100svh; }
  .hero .hero-inner { padding-top: 132px; padding-bottom: 96px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .entry-grid, .item-grid, .quotes { grid-template-columns: 1fr; }
  .ledger-proof-map { height: 210px; margin-bottom: 28px; }
  .ledger-proof-map svg { width: 180%; min-width: 680px; }
  .outcomes-proof .ledger-row { grid-template-columns: 1fr; gap: 6px; }
  .outcomes-proof .ledger-row .where { grid-column: auto; margin-top: 0; }
  .ledger-row { grid-template-columns: 1fr; gap: 6px; padding: 22px 0; }
  .ledger-row .ln { display: none; }
  .ledger-row .where { text-align: left; }
  .assessment { padding-top: 26px; }
  .assessment-top { grid-template-columns: 1fr; gap: 12px; margin-bottom: 28px; }
  .assessment-options button { font-size: 22px; grid-template-columns: 1fr; gap: 8px; }
  .assessment-fields { grid-template-columns: 1fr; gap: 18px; }
  .school-row { grid-template-columns: 1fr; gap: 6px; }
  .foot-grid { grid-template-columns: 1fr; gap: 34px; }
  .foot-social { flex-wrap: wrap; }
  .ticker-track span { font-size: 14px; letter-spacing: 0.18em; padding: 0 24px; gap: 32px; }
  .hero h1 { font-size: 46px; }
  .ghost-num { font-size: 96px; top: -20px; }
  .conc-panel {
    left: 14px;
    right: 14px;
    bottom: 86px;
    width: auto;
    max-width: none;
  }
  .conc-head { align-items: flex-start; }
  .conc-actions { gap: 8px; }
  .conc-bar { flex-direction: column; }
  .conc-record { min-height: 44px; }
  .conc-bar button { min-height: 44px; }
  .conc-slots { grid-template-columns: 1fr; }
}
