:root {
  --forest-950: #061719;
  --forest-900: #082124;
  --cream: #f5eddd;
  --cream-muted: #c9c4b8;
  --gold: #e9aa42;
  --gold-light: #f4c66d;
  --line: rgba(233, 170, 66, 0.3);
  --shell: 86rem;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--forest-950); color: var(--cream); font-family: "DM Sans", sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }
.shell { width: min(calc(100% - 5rem), var(--shell)); margin-inline: auto; }
.skip-link { position: fixed; top: .75rem; left: .75rem; z-index: 30; padding: .75rem 1rem; background: var(--cream); color: var(--forest-950); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }
.site-header { position: absolute; inset: 0 0 auto; z-index: 10; padding: 1.25rem 0; border-bottom: 1px solid rgba(245,237,221,.14); background: linear-gradient(180deg,rgba(4,20,23,.58),transparent); }
.header-inner, .footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: 1rem; }
.brand-mark { width: 4.8rem; height: auto; fill: none; stroke: var(--gold); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.brand-copy strong, .footer-brand strong { display: block; font-family: "Newsreader",Georgia,serif; font-size: 1.9rem; font-weight: 600; line-height: 1; letter-spacing: -.02em; }
.brand-copy small { display: block; margin-top: .4rem; font-size: .62rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: clamp(1.5rem,3vw,3rem); font-family: "Newsreader",Georgia,serif; font-size: 1.08rem; }
.nav > a:not(.button) { position: relative; padding: .5rem 0; }
.nav > a:not(.button)::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 1px; background: var(--gold); transform: scaleX(0); transition: transform 220ms ease; }
.nav > a:not(.button):hover::after { transform: scaleX(1); }
.button { display: inline-flex; min-height: 3.3rem; align-items: center; justify-content: center; gap: .65rem; border: 1px solid var(--gold); border-radius: .22rem; padding: .75rem 1.8rem; background: linear-gradient(145deg,var(--gold-light),var(--gold)); box-shadow: 0 .65rem 1.7rem rgba(3,19,21,.22); color: #102124; font-weight: 700; cursor: pointer; transition: transform 180ms ease,filter 180ms ease,box-shadow 180ms ease; }
.button:hover { filter: brightness(1.06); transform: translateY(-2px); box-shadow: 0 .85rem 2rem rgba(3,19,21,.28); }
.button:active { transform: translateY(0) scale(.985); }
.button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 3px; }
.button-small { min-height: 3rem; padding-inline: 1.7rem; font-family: "Libre Franklin",sans-serif; font-size: .94rem; }
.hero { position: relative; min-height: clamp(43rem,78vh,53rem); display: flex; align-items: center; overflow: hidden; border-bottom: 1px solid var(--line); background: #203d3b; }
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media { background-image: url("/assets/hero-clean.webp"); background-position: center center; background-size: cover; transform: scale(1.005); }
.hero-shade { background: linear-gradient(90deg,rgba(3,18,20,.92) 0%,rgba(3,18,20,.73) 33%,rgba(3,18,20,.26) 60%,rgba(3,18,20,.08) 100%),linear-gradient(0deg,rgba(3,18,20,.5) 0%,transparent 35%,rgba(3,18,20,.12) 100%); }
.hero-content { position: relative; z-index: 2; padding-top: 7.5rem; }
.hero-content > * { max-width: 43rem; }
.eyebrow { margin: 0 0 1rem; color: var(--gold-light); font-size: .75rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; }
h1, h2 { text-wrap: balance; }
h1 { margin: 0; font-family: "Newsreader",Georgia,serif; font-size: clamp(3.9rem,5.2vw,6rem); font-weight: 600; line-height: .94; letter-spacing: -.045em; text-shadow: 0 .12rem 1.1rem rgba(0,0,0,.3); }
.hero-copy { margin: 1.45rem 0 0; font-family: "Newsreader",Georgia,serif; font-size: clamp(1.18rem,1.5vw,1.45rem); line-height: 1.48; text-wrap: pretty; }
.hero-note { margin: .9rem 0 1.65rem; color: #ddd7cb; font-size: .94rem; }
.hero-button { min-width: 10.6rem; }
.pillars { background: radial-gradient(circle at 50% -40%,rgba(35,92,90,.28),transparent 55%),var(--forest-900); border-bottom: 1px solid var(--line); }
.pillars-grid { display: grid; grid-template-columns: repeat(5,1fr); }
.pillars article { position: relative; min-height: 10rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .9rem; padding: 2rem 1rem; text-align: center; }
.pillars article:not(:last-child)::after { content: ""; position: absolute; top: 22%; right: 0; bottom: 22%; width: 1px; background: rgba(245,237,221,.25); }
.pillars svg { width: 2.8rem; height: 2.8rem; fill: none; stroke: var(--gold); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.pillars h2 { margin: 0; font-family: "Libre Franklin",sans-serif; font-size: .79rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.cities-section { scroll-margin-top: 1rem; padding: 2.5rem 0; border-bottom: 1px solid var(--line); background: #0a2528; }
.cities-layout { display: grid; grid-template-columns: minmax(14rem,.65fr) minmax(0,1.35fr); align-items: center; gap: 2rem 4rem; }
.cities-heading .eyebrow { margin-bottom: .55rem; }
.cities-heading h2 { margin: 0; font-family: "Newsreader",Georgia,serif; font-size: clamp(1.8rem,2.4vw,2.5rem); font-weight: 600; letter-spacing: -.025em; }
.city-list { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); margin: 0; padding: 0; list-style: none; border-block: 1px solid rgba(245,237,221,.18); }
.city-list li { padding: 1.1rem .75rem; color: var(--cream-muted); font-family: "Libre Franklin",sans-serif; font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-align: center; text-transform: uppercase; }
.city-list li:not(:last-child) { border-right: 1px solid rgba(245,237,221,.18); }
.signup-section { padding: clamp(3rem,6vw,5rem) 0 2.2rem; background: radial-gradient(circle at 82% 0%,rgba(42,99,94,.17),transparent 35%),var(--forest-950); }
.signup-layout { display: grid; grid-template-columns: minmax(16rem,.8fr) minmax(36rem,1.6fr); align-items: center; gap: 2rem 4rem; }
.signup-heading h2 { margin: 0; font-family: "Libre Franklin",sans-serif; font-size: clamp(2rem,3.1vw,3.2rem); font-weight: 700; letter-spacing: -.045em; text-transform: uppercase; }
.signup-heading > p:last-child { margin: .65rem 0 0; font-family: "Newsreader",Georgia,serif; font-size: 1.25rem; color: var(--cream-muted); }
.signup-form { display: grid; grid-template-columns: 1.2fr 1.15fr auto; gap: .7rem; }
input, select { width: 100%; min-width: 0; min-height: 3.3rem; border: 1px solid rgba(245,237,221,.36); border-radius: .18rem; padding: 0 1rem; background: rgba(3,16,18,.46); color: var(--cream); transition: border-color 180ms ease,background 180ms ease; }
input::placeholder { color: #c9c4b8; opacity: .9; }
input:hover, select:hover { border-color: rgba(233,170,66,.65); }
select option { background: #fff; color: #112124; }
.share-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: .9rem; width: min(20rem,100%); margin: .65rem auto; color: var(--cream-muted); font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; }
.share-row::before, .share-row::after { content: ""; height: 1px; background: rgba(245,237,221,.24); }
.button-outline { min-height: 2.75rem; display: flex; width: min(20rem,100%); margin-inline: auto; background: transparent; box-shadow: none; color: var(--gold-light); font-size: .86rem; }
.button-outline svg { width: 1.25rem; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.form-message { min-height: 1.3rem; margin: .75rem 0 0; color: var(--cream-muted); font-size: .85rem; text-align: center; }
.form-message.is-error { color: #f2b4a2; }
.reader-count { grid-column: 1/-1; position: relative; margin: 1rem 0 0; padding: 1.8rem 0 .8rem; border-top: 1px solid rgba(245,237,221,.26); font-family: "Newsreader",Georgia,serif; font-size: clamp(1.45rem,2.2vw,2rem); font-variant-numeric: tabular-nums; text-align: center; }
.reader-count::after { content: ""; position: absolute; bottom: -.3rem; left: 50%; width: 2.7rem; height: 2px; background: var(--gold); transform: translateX(-50%); }
.site-footer { padding: 2rem 0; border-top: 1px solid rgba(245,237,221,.2); background: #061416; }
.footer-brand span { display: block; margin-top: .35rem; color: var(--cream-muted); font-size: .68rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.site-footer p { margin: 0; color: var(--cream-muted); font-size: .78rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); clip-path: inset(50%); white-space: nowrap; }
@media (max-width: 64rem) {
  .shell { width: min(calc(100% - 3rem),var(--shell)); }
  .hero { min-height: 46rem; }
  .hero-media { background-position: 57% center; }
  .pillars-grid { grid-template-columns: repeat(5,minmax(8rem,1fr)); overflow-x: auto; }
  .cities-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .cities-heading { text-align: center; }
  .signup-layout { grid-template-columns: 1fr; gap: 2rem; }
  .signup-heading { text-align: center; }
}
@media (max-width: 47rem) {
  .site-header { padding: .9rem 0; }
  .brand-mark { width: 3.6rem; }
  .brand-copy strong { font-size: 1.45rem; }
  .brand-copy small { font-size: .5rem; }
  .nav > a:not(.button) { display: none; }
  .button-small { min-height: 2.7rem; padding-inline: 1rem; font-size: .82rem; }
  .hero { min-height: 45rem; align-items: flex-end; }
  .hero-media { background-position: 59% center; }
  .hero-shade { background: linear-gradient(0deg,rgba(3,18,20,.95) 0%,rgba(3,18,20,.72) 48%,rgba(3,18,20,.18) 77%),linear-gradient(90deg,rgba(3,18,20,.45),transparent 80%); }
  .hero-content { padding: 8rem 0 3.2rem; }
  h1 { font-size: clamp(2.9rem,13vw,4.3rem); line-height: .97; }
  .hero-copy { font-size: 1.08rem; line-height: 1.45; }
  .hero-note { max-width: 21rem; line-height: 1.45; }
  .pillars-grid { grid-template-columns: repeat(2,minmax(0,1fr)); margin-inline: 0; padding-inline: 0; overflow-x: visible; }
  .pillars article { min-height: 8.6rem; padding: 1.35rem .8rem; }
  .pillars article { border-bottom: 1px solid rgba(245,237,221,.18); }
  .pillars article:nth-child(even)::after, .pillars article:last-child::after { display: none; }
  .pillars article:last-child { grid-column: 1/-1; border-bottom: 0; }
  .pillars svg { width: 2.3rem; height: 2.3rem; }
  .pillars h2 { font-size: .67rem; }
  .cities-section { padding: 2.8rem 0; }
  .city-list { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .city-list li { border-bottom: 1px solid rgba(245,237,221,.18); }
  .city-list li:nth-child(even) { border-right: 0; }
  .city-list li:last-child { grid-column: 1/-1; border-right: 0; border-bottom: 0; }
  .signup-section { padding-top: 3.5rem; }
  .signup-form { grid-template-columns: 1fr; }
  .signup-form .button { width: 100%; }
  .reader-count { margin-top: .5rem; }
  .footer-inner { align-items: flex-start; flex-direction: column; gap: 1.25rem; }
}
@media (max-width: 25rem) {
  .shell { width: min(calc(100% - 2rem),var(--shell)); }
  .brand-mark { width: 3rem; }
  .brand-copy strong { font-size: 1.25rem; }
  .brand-copy small { letter-spacing: .2em; }
  .button-small { padding-inline: .8rem; }
  .pillars-grid { margin-inline: 0; padding-inline: 0; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
