/* ==========================================================================
   Golf Cart Rental Pro — marketing site
   Extends the product's own "Atelier" language: paper canvas, forest accent,
   chartreuse spark, mono labels, hairline rules, numbered sections.
   ========================================================================== */

@font-face {
  font-family: 'Walbaum';
  src: url('fonts/walbaum-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* canvas + ink, matched to the product's tokens.css */
  --paper:    #FCFCFA;
  --paper-2:  #F6F6F1;
  --lift:     #FFFFFF;
  --ink:      #14140F;
  --ink-2:    #3A3A33;
  --muted:    #6E6A61;
  --faint:    #9A968C;
  --line:     #ECECE4;
  --line-2:   #E2E1D6;

  /* brand */
  --forest:      #1F4D2E;
  --forest-600:  #1A4327;
  --forest-700:  #143A20;
  --forest-50:   #EFF3EF;
  --forest-100:  #E0EAE1;
  --forest-ring: rgba(31,77,46,.14);
  --spark:       #C6F032;
  --spark-deep:  #A6CF18;

  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue',
          Helvetica, Arial, sans-serif;
  --mono: ui-monospace, 'SF Mono', SFMono-Regular, Menlo, Monaco, Consolas,
          'Liberation Mono', monospace;
  --display: 'Walbaum', Georgia, 'Times New Roman', serif;

  --shell: 1200px;
  --gut: clamp(20px, 5vw, 56px);
  --r: 12px;
  --r-lg: 18px;

  --shadow-sm: 0 1px 2px rgba(20,20,15,.05), 0 4px 14px rgba(20,20,15,.05);
  --shadow:    0 2px 6px rgba(20,20,15,.05), 0 18px 44px rgba(20,20,15,.09);
  --shadow-lg: 0 4px 10px rgba(20,20,15,.06), 0 30px 70px rgba(20,20,15,.13);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scrollbar-color: #CFCEC4 var(--paper-2);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

::selection { background: var(--spark); color: var(--ink); }

/* webkit scrollbars, page and internal */
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--paper-2); }
::-webkit-scrollbar-thumb { background: #CFCEC4; border-radius: 99px; border: 3px solid var(--paper-2); }
::-webkit-scrollbar-thumb:hover { background: #B6B4A8; }

:focus-visible { outline: 2px solid var(--forest); outline-offset: 3px; border-radius: 4px; }

/* ---------------------------------------------------------------- layout */
.shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 var(--gut); }
.shell--wide { max-width: 1360px; }
.shell--narrow { max-width: 820px; }

section { position: relative; }
.band { padding: clamp(64px, 9vw, 132px) 0; }
.band--tight { padding: clamp(48px, 6vw, 84px) 0; }
.band--paper2 { background: var(--paper-2); }
.band--ink { background: var(--ink); color: var(--paper); }
.band--forest { background: var(--forest); color: #EAF0EA; }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------------------------------------------------------------- type */
h1, h2, h3, h4 { margin: 0; font-weight: 400; letter-spacing: -.015em; }

.display {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -.018em;
}
.display em { font-style: italic; color: var(--forest); }
.band--ink .display em, .band--forest .display em { color: var(--spark); }

h1.display { font-size: clamp(2.5rem, 6.2vw, 4.35rem); }
h2.display { font-size: clamp(2rem, 4.4vw, 3.15rem); }
h3.display { font-size: clamp(1.5rem, 2.6vw, 2rem); }

.lede {
  font-size: clamp(1.06rem, 1.7vw, 1.28rem);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 62ch;
}
.band--ink .lede, .band--forest .lede { color: rgba(255,255,255,.76); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
.muted { color: var(--muted); }
.small { font-size: .95rem; }

/* mono label, the product's signature */
.label {
  font-family: var(--mono);
  font-size: .69rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}
.band--ink .label, .band--forest .label { color: rgba(255,255,255,.55); }

/* numbered section head, echoing the product's nav */
.sechead {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: clamp(28px, 4vw, 52px);
}
.sechead::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
  transform: translateY(-4px);
}
.band--ink .sechead::after, .band--forest .sechead::after { background: rgba(255,255,255,.16); }
.sechead__n { font-family: var(--mono); font-size: .69rem; letter-spacing: .2em; color: var(--faint); }

/* ---------------------------------------------------------------- buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 99px;
  border: 1px solid transparent;
  font-size: .97rem;
  font-weight: 600;
  letter-spacing: -.005em;
  cursor: pointer;
  transition: transform .18s cubic-bezier(.2,.7,.3,1), background-color .18s, border-color .18s, box-shadow .18s, color .18s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--forest); color: #FFF; box-shadow: 0 6px 18px rgba(31,77,46,.22); }
.btn--primary:hover { background: var(--forest-600); box-shadow: 0 10px 26px rgba(31,77,46,.28); }

.btn--spark { background: var(--spark); color: var(--ink); box-shadow: 0 6px 18px rgba(166,207,24,.3); }
.btn--spark:hover { background: #D2F84E; }

.btn--ghost { border-color: var(--line); background: var(--lift); color: var(--ink); }
.btn--ghost:hover { border-color: #D8D6CB; background: #FFF; box-shadow: var(--shadow-sm); }

.band--ink .btn--ghost, .band--forest .btn--ghost {
  background: transparent; border-color: rgba(255,255,255,.28); color: #FFF;
}
.band--ink .btn--ghost:hover, .band--forest .btn--ghost:hover {
  border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.06);
}

.btn--lg { padding: 16px 32px; font-size: 1.02rem; }

.btnrow { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* text link with an arrow that travels on hover */
.tlink {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 34px; padding: 6px 0;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .17em;
  text-transform: uppercase; font-weight: 500; color: var(--forest);
}
.tlink svg { transition: transform .22s cubic-bezier(.2,.7,.3,1); }
.tlink:hover svg { transform: translateX(5px); }
.band--ink .tlink, .band--forest .tlink { color: var(--spark); }

/* ---------------------------------------------------------------- header */
.hdr {
  position: absolute;
  inset: 0 0 auto;
  z-index: 60;
  padding: 22px 0;
}
.hdr__in { display: flex; align-items: center; gap: 28px; }

.brand { display: inline-flex; align-items: center; margin-right: auto; }
/* The lockup carries the mark and the wordmark together, so the height is the
   only thing worth setting; width follows from the intrinsic aspect. */
.brand__logo { display: block; height: 42px; width: auto; }
@media (max-width: 700px) { .brand__logo { height: 34px; } }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px; border-radius: 99px;
  font-size: .95rem; font-weight: 500; color: var(--ink-2);
  transition: background-color .16s, color .16s;
}
.nav__link:hover, .nav__item:focus-within .nav__link { background: var(--forest-50); color: var(--forest); }
.nav__link[aria-current="page"] { color: var(--forest); font-weight: 600; }
.nav__caret { transition: transform .2s; }
.nav__item:hover .nav__caret, .nav__item:focus-within .nav__caret { transform: rotate(180deg); }

.nav__menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 268px; padding: 8px;
  background: var(--lift); border: 1px solid var(--line);
  border-radius: var(--r); box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s, transform .18s, visibility .18s;
}
.nav__item:hover .nav__menu, .nav__item:focus-within .nav__menu {
  opacity: 1; visibility: visible; transform: none;
}
.nav__menu a {
  display: block; padding: 11px 13px; border-radius: 8px; min-height: 40px;
  font-size: .93rem; color: var(--ink-2); transition: background-color .14s, color .14s;
}
.nav__menu a:hover { background: var(--forest-50); color: var(--forest); }

.hdr__cta { display: flex; align-items: center; gap: 10px; }
.burger {
  display: none; width: 42px; height: 42px; border-radius: 10px;
  border: 1px solid var(--line); background: var(--lift);
  align-items: center; justify-content: center; cursor: pointer;
}

/* full screen overlay nav, phones and tablets */
.ovl {
  position: fixed; inset: 0; z-index: 90;
  background: var(--paper);
  padding: 22px var(--gut) 40px;
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .24s, transform .24s, visibility .24s;
  overflow-y: auto;
}
.ovl.is-open { opacity: 1; visibility: visible; transform: none; }
.ovl__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 34px; }
.ovl .brand__logo { height: 34px; }
.ovl__list { display: flex; flex-direction: column; gap: 2px; }
.ovl__list a {
  font-family: var(--display); font-size: 1.9rem; line-height: 1.25;
  padding: 8px 0; border-bottom: 1px solid var(--line);
}
.ovl__list a:last-child { border-bottom: 0; }
.ovl__sub { font-family: var(--sans) !important; font-size: 1.02rem !important; color: var(--ink-2); padding-left: 16px !important; }
.ovl__foot { margin-top: auto; padding-top: 32px; }

@media (max-width: 980px) {
  .nav, .hdr__cta .btn { display: none; }
  .burger { display: inline-flex; }
}

/* ---------------------------------------------------------------- hero */
.hero { padding: clamp(128px, 17vw, 190px) 0 0; position: relative; overflow: hidden; }
.hero::before {
  content: '';
  position: absolute; inset: -20% -10% auto -10%; height: 82%;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, #FFFFFF 0%, transparent 70%);
  pointer-events: none;
}
.hero__in { position: relative; text-align: center; }
.hero .label { margin-bottom: 20px; display: block; }
.hero h1 { margin-bottom: 22px; }
.hero .lede { margin: 0 auto 30px; }
.hero .btnrow { justify-content: center; }
.hero__note {
  margin-top: 18px; font-family: var(--mono); font-size: .68rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}

.hero__shot { margin-top: clamp(46px, 6vw, 78px); }

/* ---------------------------------------------------------------- shot frame */
.shot {
  margin: 0;
  border-radius: var(--r-lg);
  background: var(--lift);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.shot__chrome {
  display: flex; align-items: center; gap: 7px;
  padding: 11px 15px;
  background: linear-gradient(180deg, #FBFBF8, #F4F4EF);
  border-bottom: 1px solid var(--line);
}
.shot__chrome span { width: 10px; height: 10px; border-radius: 50%; background: #DEDDD3; }
.shot__chrome span:first-child { background: #E4C3BC; }
.shot__chrome span:nth-child(2) { background: #E8DDBD; }
.shot__chrome span:nth-child(3) { background: #CBDCC6; }
.shot__scroll { overflow: hidden; }
.shot img { width: 100%; }

.shot--plain { border-radius: var(--r); }
.shot--plain .shot__chrome { display: none; }

@media (max-width: 720px) {
  /* a desktop screenshot shrunk to 340px is a grey smear; let it scroll instead */
  .shot__scroll { overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; }
  .shot__scroll img { min-width: 660px; }
  .hero .btnrow .btn { width: 100%; }
}

.shot--phone {
  max-width: 300px; margin: 0 auto; border-radius: 30px; padding: 9px;
  background: var(--ink); border-color: var(--ink); box-shadow: var(--shadow-lg);
}
.shot--phone .shot__chrome { display: none; }
.shot--phone img { border-radius: 22px; min-width: 0; width: 100%; }

/* ---------------------------------------------------------------- grids */
.grid { display: grid; gap: clamp(18px, 2.4vw, 28px); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 940px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

/* capability tile */
.tile {
  background: var(--lift);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px 24px 24px;
  transition: transform .22s cubic-bezier(.2,.7,.3,1), box-shadow .22s, border-color .22s;
}
.tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #DFDDD2; }
.tile__ico {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--forest-50); color: var(--forest);
  display: grid; place-items: center; margin-bottom: 16px;
}
.tile h3 { font-size: 1.06rem; font-weight: 650; letter-spacing: -.01em; margin-bottom: 7px; }
.tile p { font-size: .96rem; color: var(--muted); line-height: 1.58; }

/* ---------------------------------------------------------------- feature beat */
.beat { display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); gap: clamp(32px, 5vw, 72px); align-items: center; padding: 50px 0; }
.beat + .beat { margin-top: clamp(64px, 8vw, 120px); }
.beat--flip .beat__copy { order: 2; }
.beat__copy .label { display: block; margin-bottom: 16px; }
.beat__copy h3 { margin-bottom: 16px; }
.beat__copy .lede { font-size: 1.06rem; margin-bottom: 22px; }

.checks { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 11px; }
.checks li { display: flex; gap: 11px; align-items: flex-start; font-size: .99rem; color: var(--ink-2); }
.checks svg { flex: 0 0 auto; margin-top: 4px; color: var(--forest); }

.beat--even { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: start; }

@media (max-width: 900px) {
  .beat, .beat--even { grid-template-columns: 1fr; }
  .beat--flip .beat__copy { order: 0; }
}

/* ---------------------------------------------------------------- stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.stat { background: var(--lift); padding: 28px 24px; }
.stat__n { font-family: var(--display); font-size: clamp(2rem, 3.4vw, 2.7rem); line-height: 1; margin-bottom: 8px; }
.stat__l { font-family: var(--mono); font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 780px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------------------------------------------------------------- module list */
.mods { columns: 3; column-gap: clamp(24px, 4vw, 56px); }
.mods li {
  break-inside: avoid; list-style: none;
  padding: 11px 0 11px 26px; position: relative;
  border-bottom: 1px solid var(--line);
  font-size: .97rem;
}
.mods { padding: 0; margin: 0; }
.mods li::before {
  content: ''; position: absolute; left: 4px; top: 19px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--spark-deep);
}
@media (max-width: 900px) { .mods { columns: 2; } }
@media (max-width: 560px) { .mods { columns: 1; } }

/* ---------------------------------------------------------------- proof
   Stage: reserved slots. The disc (a span) scales. Images never
   carry the transform. Quote fade is driven in JS via WAAPI. */
.proofs {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding-bottom: 72px;
}
.proofs__cast {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  margin: 0 auto 28px;
}
.proofs__face {
  flex: 0 0 148px;
  width: 148px;
  height: 180px;
  margin: 0 -22px;
  padding: 0;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.proofs__disc {
  display: block;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--lift);
  border: 3px solid var(--paper);
  transform: scale(1);
  transform-origin: center center;
  transition: transform .8s cubic-bezier(.22, 1, .36, 1),
              border-color .8s cubic-bezier(.22, 1, .36, 1);
}
.band--paper2 .proofs__disc { border-color: var(--paper-2); }
.proofs__disc img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
}
.proofs__face--logo .proofs__disc img {
  object-fit: contain;
  padding: 10px;
  box-sizing: border-box;
}
.proofs__face.is-on { z-index: 3; }
.proofs__face.is-on .proofs__disc {
  transform: scale(1.72);
  border-color: var(--forest-100);
}
.proofs__face:hover:not(.is-on) { z-index: 2; }
.proofs__face:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 4px;
  border-radius: 50%;
}
.proofs__said {
  margin: 0 auto;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.6vw, 2.05rem);
  line-height: 1.28;
  max-width: 20em;
  min-height: 9em;
  text-wrap: pretty;
}
.proofs__said::before { content: '\201C'; }
.proofs__said::after  { content: '\201D'; }
.proofs__by { margin-top: 16px; }
.proofs__nm {
  display: block;
  font-style: normal;
  font-size: .98rem;
  font-weight: 650;
  line-height: 1.3;
}
.proofs__ro {
  display: block;
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.35;
}

@media (max-width: 600px) {
  .proofs__cast { height: 156px; margin-bottom: 20px; }
  .proofs__face { flex-basis: 88px; width: 88px; height: 140px; margin: 0 -10px; }
  .proofs__disc { width: 68px; height: 68px; }
  .proofs__face.is-on .proofs__disc { transform: scale(1.62); }
  .proofs { padding-bottom: 56px; }
  .proofs__said { font-size: 1.28rem; min-height: 12em; }
}

@media (prefers-reduced-motion: reduce) {
  .proofs, .proofs * {
    animation-duration: .8s !important;
    transition-duration: .8s !important;
  }
}

/* ---------------------------------------------------------------- forms */
.field { display: block; margin-bottom: 18px; }
.field__l { display: block; font-size: .87rem; font-weight: 600; margin-bottom: 7px; }
.field__r { color: var(--forest); }
.input, .select, .textarea {
  width: 100%; padding: 13px 15px;
  background: var(--lift); border: 1px solid var(--line);
  border-radius: 10px; font-family: inherit; font-size: 1rem; color: var(--ink);
  transition: border-color .16s, box-shadow .16s;
}
.input:hover, .select:hover, .textarea:hover { border-color: #D8D6CB; }
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--forest); box-shadow: 0 0 0 3px var(--forest-ring);
}
.textarea { min-height: 118px; resize: vertical; line-height: 1.55; }
.field__err { display: none; margin-top: 6px; font-size: .86rem; color: #A6402C; }
.field.is-bad .input, .field.is-bad .select, .field.is-bad .textarea { border-color: #C97B69; }
.field.is-bad .field__err { display: block; }

.formcard {
  background: var(--lift); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(24px, 3.4vw, 38px);
  box-shadow: var(--shadow-sm);
}

.note {
  padding: 14px 16px; border-radius: 10px;
  font-size: .95rem; margin-bottom: 22px;
}
.note--ok { background: var(--forest-50); color: var(--forest-700); border: 1px solid var(--forest-100); }
.note--bad { background: #FBF0ED; color: #8C3A26; border: 1px solid #F0DBD4; }

/* ---------------------------------------------------------------- faq */
.faq { border-top: 1px solid var(--line); }
.faq__i { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 0; background: none; border: 0; cursor: pointer;
  font-size: 1.06rem; font-weight: 600; text-align: left; letter-spacing: -.01em;
}
.faq__q svg { flex: 0 0 auto; color: var(--muted); transition: transform .24s; }
.faq__i.is-open .faq__q svg { transform: rotate(45deg); }
.faq__a { display: none; padding: 0 0 24px; max-width: 72ch; color: var(--ink-2); }
.faq__i.is-open .faq__a { display: block; }

/* ---------------------------------------------------------------- price */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.plan {
  background: var(--lift); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px 28px;
  display: flex; flex-direction: column; gap: 18px;
}
.plan--feature { border-color: var(--forest); box-shadow: var(--shadow); position: relative; }
.plan__tag {
  position: absolute; top: -11px; left: 28px;
  background: var(--spark); color: var(--ink);
  font-family: var(--mono); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 99px; font-weight: 600;
}
.plan h3 { font-size: 1.25rem; font-weight: 650; }
.plan__for { font-size: .95rem; color: var(--muted); }
@media (max-width: 900px) { .plans { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------- cta band */
.ctaband { text-align: center; }
.ctaband .btnrow { justify-content: center; margin-top: 26px; }

/* ---------------------------------------------------------------- footer */
.ftr { background: var(--ink); color: rgba(255,255,255,.72); padding: clamp(56px, 7vw, 88px) 0 0; }
.ftr a { color: rgba(255,255,255,.72); transition: color .16s; }
.ftr a:hover { color: #FFF; }
.ftr__top { display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr)); gap: clamp(28px, 4vw, 56px); }
.ftr .brand__logo { height: 44px; }
.ftr__blurb { margin-top: 18px; font-size: .96rem; line-height: 1.62; max-width: 40ch; }
.ftr__h {
  font-family: var(--mono); font-size: .66rem; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 16px;
}
.ftr__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; font-size: .96rem; }
.ftr__list li { padding: 2px 0; }
.ftr__list a { display: inline-block; padding: 8px 0; }
.ftr__bar {
  margin-top: clamp(40px, 5vw, 64px); padding: 22px 0 28px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: 14px 26px; align-items: center;
  font-size: .87rem; color: rgba(255,255,255,.5);
}
.ftr__bar .sep { margin-left: auto; }
@media (max-width: 880px) {
  .ftr__top { grid-template-columns: repeat(2, 1fr); }
  .ftr__bar .sep { margin-left: 0; }
}
@media (max-width: 520px) { .ftr__top { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------- page hero (interior) */
.phero { padding: clamp(126px, 15vw, 168px) 0 clamp(40px, 5vw, 64px); }
.phero .label { display: block; margin-bottom: 18px; }
.phero .lede { margin-top: 20px; }
.crumb { font-family: var(--mono); font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--faint); margin-bottom: 16px; }
.crumb a:hover { color: var(--forest); }

/* ---------------------------------------------------------------- reveal */
.rv { opacity: 0; transform: translateY(14px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.rv.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; } }

/* ---------------------------------------------------------------- utilities */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 18px; }
.mt-3 { margin-top: 28px; }
.mt-4 { margin-top: 44px; }
.mb-3 { margin-bottom: 28px; }
.maxw { max-width: 70ch; }
.maxw-c { max-width: 70ch; margin-left: auto; margin-right: auto; }
.sr {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.sr:focus {
  position: fixed; top: 14px; left: 14px; z-index: 200;
  width: auto; height: auto; margin: 0; padding: 12px 20px;
  clip: auto; overflow: visible;
  background: var(--forest); color: #FFF;
  border-radius: 99px; font-size: .95rem; font-weight: 600;
  box-shadow: var(--shadow);
}
