/**
 * Editorial B2B · Design System for nflsuperbowlnashville.com
 * Extracted from index.html · 2026-05-22
 *
 * "Bloomberg meets The Athletic." Independent commentary framing.
 * Cream paper + ink + crimson accent + brass. Fraunces serif + Inter UI +
 * JetBrains Mono for kickers. Sticky masthead, drop caps, host-city compare,
 * timeline strip, FAQ accordion, dark CTA strip.
 *
 * Components: .ed-independent, .ed-topbar, .ed-kicker, .ed-hero (+ .ed-pull,
 *   .ed-countdown, .ed-cdu, .ed-ctas, .ed-btn), .ed-figure, .ed-cities (+ .ed-city),
 *   .ed-intel (+ .ed-stories, .ed-story), .ed-timeline (+ .ed-tl, .ed-tl-item),
 *   .ed-faq (+ .ed-faq-item), .ed-cta-strip, .ed-foot, .ed-disclaimer,
 *   .ed-partner-network, .ed-wrap, .ed-page-head, .ed-prose, .ed-form-stack.
 *
 * Inline <style> in each page for page-specific overrides only.
 */

/* ── DESIGN TOKENS ───────────────────────────────────────────── */
:root {
  --paper: #F5EFE6;
  --paper-2: #EFE7D8;
  --paper-3: #E8DFCC;
  --ink: #15110D;
  --ink-2: #3A2F25;
  --ink-3: #5E4F3D;
  --rule: #15110D;
  --accent: #C7281E;
  --mute: #7A6A56;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Fraunces', Georgia, serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.ed-wrap { max-width: 1340px; margin: 0 auto; padding: 0 32px; }

/* ── INDEPENDENT BADGE (top strip) ───────────────────────────── */
.ed-independent {
  background: var(--ink); color: var(--paper);
  font-family: 'JetBrains Mono', monospace;
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  text-align: center; padding: 9px 16px;
}
.ed-independent .swatch {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
  margin-right: 10px; vertical-align: 2px;
}

/* ── STICKY MASTHEAD ─────────────────────────────────────────── */
.ed-topbar {
  padding: 18px 0 0;
  border-bottom: 1px solid var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
  position: sticky; top: 0;
  background: var(--paper); z-index: 50;
}
.ed-topbar .left {
  display: flex; gap: 18px; align-items: baseline;
  flex-wrap: wrap; padding-bottom: 14px;
  border-bottom: 1px solid var(--paper-3);
  justify-content: space-between;
}
.ed-topbar .left-inner {
  display: flex; gap: 20px; align-items: baseline;
  flex-wrap: wrap; flex: 1; min-width: 0;
}
.ed-topbar .masthead {
  font-family: 'Fraunces', serif; font-weight: 900;
  font-size: 1.5rem; letter-spacing: -.01em;
  text-transform: none; white-space: nowrap;
}
.ed-topbar .masthead em { font-style: italic; font-weight: 500; color: var(--accent); }
.ed-topbar .issue {
  font-family: 'JetBrains Mono', monospace;
  color: var(--mute); font-size: .66rem; letter-spacing: .18em;
  white-space: nowrap;
}
.ed-topbar .nav {
  display: flex; flex-wrap: wrap; gap: 18px 22px;
  color: var(--ink);
  align-items: center; padding: 14px 0 6px;
  border-top: 1px solid var(--paper-3);
  font-weight: 600;
  min-height: 48px;
}
.ed-topbar .nav a {
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid transparent; padding-bottom: 2px;
  transition: border-color .15s ease, color .15s ease;
  white-space: nowrap; flex-shrink: 0;
  font-weight: 600;
}
.ed-topbar .nav a:hover,
.ed-topbar .nav a.active { border-color: var(--accent); color: var(--accent); }
.ed-topbar .nav a.cta {
  background: var(--accent); color: var(--paper);
  padding: 8px 14px; border: 1px solid var(--accent);
  margin-left: auto; letter-spacing: .12em;
}
.ed-topbar .nav a.cta:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.ed-nav-toggle {
  display: none; background: none; border: 1px solid var(--ink);
  width: 40px; height: 36px; cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center; gap: 4px;
  flex-shrink: 0;
}
.ed-nav-toggle span { display: block; width: 18px; height: 1.5px; background: var(--ink); }

/* ── KICKER ──────────────────────────────────────────────────── */
.ed-kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent);
}
.ed-kicker .dot {
  display: inline-block; width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
  margin-right: 8px; vertical-align: 2px;
}

/* ── HERO (homepage scale) ───────────────────────────────────── */
.ed-hero {
  padding: 72px 0 96px;
  border-bottom: 1px solid var(--ink);
  display: grid; grid-template-columns: 1.45fr 1fr;
  gap: 64px; align-items: end;
}
.ed-hero h1 {
  font-family: 'Fraunces', serif; font-weight: 900;
  font-size: clamp(2.6rem, 6.4vw, 6.8rem);
  line-height: .94; letter-spacing: -.04em;
  margin: 24px 0 28px;
}
.ed-hero h1 em { font-style: italic; font-weight: 500; color: var(--ink-2); }
.ed-hero h1 .red { color: var(--accent); font-style: italic; font-weight: 600; }
.ed-hero .deck {
  font-family: 'Fraunces', serif; font-weight: 400; font-style: italic;
  font-size: 1.3rem; line-height: 1.45;
  color: var(--ink-2); max-width: 50ch;
}
.ed-hero .byline {
  font-family: 'Inter', sans-serif;
  font-size: .74rem; text-transform: uppercase; letter-spacing: .18em;
  color: var(--mute); margin-top: 28px;
  display: flex; gap: 18px; flex-wrap: wrap; align-items: center;
}
.ed-hero .byline strong { color: var(--ink); font-weight: 600; }
.ed-hero .byline .pipe { color: var(--paper-3); }

.ed-hero-side { border-left: 1px solid var(--ink); padding-left: 36px; }

.ed-pull {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 400;
  font-size: 1.5rem; line-height: 1.32;
  color: var(--ink); position: relative; padding-top: 24px;
}
.ed-pull::before {
  content: ""; display: block;
  width: 48px; height: 2px; background: var(--accent);
  position: absolute; top: 0; left: 0;
}
.ed-pull cite {
  display: block; font-style: normal;
  font-family: 'Inter', sans-serif;
  font-size: .7rem; text-transform: uppercase; letter-spacing: .2em;
  color: var(--mute); margin-top: 18px;
}

/* ── INNER PAGE HEAD ─────────────────────────────────────────── */
.ed-page-head {
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--ink);
}
.ed-page-head .eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px; display: inline-block;
}
.ed-page-head h1 {
  font-family: 'Fraunces', serif; font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: .98; letter-spacing: -.035em;
  margin: 0 0 24px; max-width: 22ch;
}
.ed-page-head h1 em { font-style: italic; font-weight: 500; color: var(--accent); }
.ed-page-head .deck {
  font-family: 'Fraunces', serif; font-weight: 400; font-style: italic;
  font-size: 1.25rem; line-height: 1.5;
  color: var(--ink-2); max-width: 58ch;
}
.ed-page-head .byline {
  font-family: 'Inter', sans-serif;
  font-size: .74rem; text-transform: uppercase; letter-spacing: .18em;
  color: var(--mute); margin-top: 28px;
}
.ed-page-head .byline strong { color: var(--ink); font-weight: 600; }

/* ── COUNTDOWN ───────────────────────────────────────────────── */
.ed-countdown {
  display: flex; gap: 0; margin-top: 36px;
  border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink);
}
.ed-cdu {
  flex: 1; padding: 18px 0; text-align: center;
  border-right: 1px solid var(--ink);
}
.ed-cdu:last-child { border-right: none; }
.ed-cdu .n {
  font-family: 'Fraunces', serif; font-weight: 900;
  font-size: 2.4rem; line-height: 1;
  font-variant-numeric: tabular-nums; letter-spacing: -.03em;
  display: block;
}
.ed-cdu .l {
  display: block; font-family: 'Inter', sans-serif;
  font-size: .6rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--mute); margin-top: 6px;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.ed-ctas { display: flex; gap: 14px; margin-top: 32px; align-items: center; flex-wrap: wrap; }
.ed-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: var(--ink); color: var(--paper);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--ink);
  transition: .18s ease; cursor: pointer;
}
.ed-btn:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-1px); }
.ed-btn.ghost { background: transparent; color: var(--ink); }
.ed-btn.ghost:hover { background: var(--ink); color: var(--paper); transform: none; }
.ed-btn .arr {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 400;
  font-size: 1.1rem; line-height: 1;
}

/* ── FIGURE ──────────────────────────────────────────────────── */
.ed-figure {
  border-top: 2px solid var(--ink); border-bottom: 1px solid var(--ink);
  padding: 36px 0 28px; margin: 0;
  display: grid; grid-template-columns: 1.7fr 1fr;
  gap: 48px; align-items: end;
}
.ed-figure .frame {
  position: relative; border: 1px solid var(--ink); background: #000;
  overflow: hidden; aspect-ratio: 16/9;
}
.ed-figure .frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(.92) contrast(1.04);
  transition: transform .8s cubic-bezier(.16,1,.3,1), filter .4s ease;
}
.ed-figure:hover .frame img { transform: scale(1.03); filter: saturate(1) contrast(1.06); }
.ed-figure figcaption { padding-bottom: 8px; }
.ed-figure figcaption .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: .66rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent);
  display: inline-block; position: relative; padding-bottom: 4px;
}
.ed-figure figcaption .num::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  height: 2px; width: 0; background: var(--accent);
  transition: width .45s cubic-bezier(.16,1,.3,1);
}
.ed-figure:hover figcaption .num::after { width: 48px; }
.ed-figure figcaption .cap {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 400;
  font-size: 1.25rem; line-height: 1.4;
  color: var(--ink); margin-top: 14px; letter-spacing: -.01em;
}
.ed-figure figcaption .credit {
  font-family: 'Inter', sans-serif;
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--mute); margin-top: 18px;
  border-top: 1px solid var(--paper-3); padding-top: 12px;
}

/* ── CITIES COMPARISON ───────────────────────────────────────── */
.ed-cities { padding: 88px 0; border-bottom: 1px solid var(--ink); }
.ed-cities .head {
  display: grid; grid-template-columns: 1fr auto;
  gap: 48px; align-items: end; margin-bottom: 56px;
}
.ed-cities h2 {
  font-family: 'Fraunces', serif; font-weight: 800;
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  line-height: .96; letter-spacing: -.03em;
  margin-top: 18px; max-width: 18ch;
}
.ed-cities h2 em { font-style: italic; font-weight: 500; color: var(--accent); }
.ed-cities .head-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--mute); text-align: right; line-height: 1.7;
}
.ed-city-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 2px solid var(--ink);
}
.ed-city {
  padding: 28px 24px 32px;
  border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink);
  position: relative; background: var(--paper);
  transition: background .25s ease, transform .35s cubic-bezier(.16,1,.3,1);
}
.ed-city:last-child { border-right: none; }
.ed-city.nash { background: var(--paper-2); }
.ed-city:hover { background: var(--paper-3); transform: translateY(-3px); z-index: 2; }
.ed-city .roman {
  font-family: 'Fraunces', serif; font-weight: 900;
  font-size: 2.1rem; letter-spacing: -.02em;
  color: var(--accent); line-height: 1;
  transition: transform .35s cubic-bezier(.16,1,.3,1), color .25s ease;
}
.ed-city:hover .roman { transform: translateY(-2px) scale(1.04); color: var(--accent); }
.ed-city .city-name {
  font-family: 'Fraunces', serif; font-weight: 700;
  font-size: 1.5rem; letter-spacing: -.02em;
  margin: 6px 0 4px;
}
.ed-city .year {
  font-family: 'JetBrains Mono', monospace;
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--mute); margin-bottom: 18px;
}
.ed-city .stat {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 500;
  font-size: 1.05rem; line-height: 1.4;
  color: var(--ink-2); margin-bottom: 14px;
}
.ed-city .take {
  font-family: 'Inter', sans-serif;
  font-size: .82rem; line-height: 1.55;
  color: var(--ink-3);
}
.ed-city .verdict {
  position: absolute; top: 24px; right: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid var(--ink);
  transition: background .25s ease, color .25s ease;
}
.ed-city .verdict.warn { color: var(--accent); border-color: var(--accent); }
.ed-city .verdict.good { color: var(--ink); border-color: var(--ink); }
.ed-city:hover .verdict.warn { background: var(--accent); color: var(--paper); }
.ed-city:hover .verdict.good { background: var(--ink); color: var(--paper); }

/* ── INTEL STORIES (4-up) ────────────────────────────────────── */
.ed-intel { padding: 88px 0; border-bottom: 1px solid var(--ink); }
.ed-intel h2 {
  font-family: 'Fraunces', serif; font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1; letter-spacing: -.03em;
  margin: 18px 0 18px; max-width: 18ch;
}
.ed-intel h2 em { font-style: italic; font-weight: 500; color: var(--accent); }
.ed-intel .lede {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 1.15rem; color: var(--ink-2);
  max-width: 62ch; margin-bottom: 56px; line-height: 1.5;
}
.ed-stories { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.ed-story {
  border-top: 2px solid var(--ink); padding-top: 18px;
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.ed-story:hover { transform: translateY(-3px); }
.ed-story:hover h3 { color: var(--accent); }
.ed-story .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: .7rem; letter-spacing: .18em; color: var(--mute);
  text-transform: uppercase;
}
.ed-story h3 {
  font-family: 'Fraunces', serif; font-weight: 700;
  font-size: 1.4rem; line-height: 1.12; letter-spacing: -.02em;
  margin: 14px 0 14px;
  transition: color .25s ease;
}
.ed-story p {
  font-family: 'Fraunces', serif;
  font-size: 1rem; line-height: 1.55; color: var(--ink-2);
}
.ed-story p::first-letter {
  font-weight: 800; font-size: 1.4em; color: var(--accent);
  float: left; line-height: .95; padding: 4px 6px 0 0;
}

/* ── TIMELINE ────────────────────────────────────────────────── */
.ed-timeline {
  padding: 88px 0; border-bottom: 1px solid var(--ink);
  background: var(--paper-2);
}
.ed-timeline h2 {
  font-family: 'Fraunces', serif; font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1; letter-spacing: -.03em;
  margin: 18px 0 56px; max-width: 18ch;
}
.ed-timeline h2 em { font-style: italic; font-weight: 500; color: var(--accent); }
.ed-tl {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
}
.ed-tl-item {
  padding: 28px 22px 32px;
  border-right: 1px solid var(--ink);
  position: relative;
  transition: background .25s ease;
}
.ed-tl-item:hover { background: rgba(0,0,0,.04); }
.ed-tl-item:last-child { border-right: none; }
.ed-tl-item .year {
  font-family: 'Fraunces', serif; font-weight: 900;
  font-size: 2.4rem; letter-spacing: -.03em;
  color: var(--ink); line-height: 1;
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.ed-tl-item:hover .year { transform: translateY(-2px); }
.ed-tl-item.future .year { color: var(--accent); }
.ed-tl-item .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--mute); margin: 8px 0 14px;
}
.ed-tl-item h4 {
  font-family: 'Fraunces', serif; font-weight: 700;
  font-size: 1.15rem; line-height: 1.15; letter-spacing: -.01em;
  margin-bottom: 10px;
}
.ed-tl-item p {
  font-family: 'Inter', sans-serif;
  font-size: .82rem; line-height: 1.55; color: var(--ink-3);
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.ed-faq { padding: 88px 0; border-bottom: 1px solid var(--ink); }
.ed-faq h2 {
  font-family: 'Fraunces', serif; font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1; letter-spacing: -.03em;
  margin: 18px 0 48px; max-width: 18ch;
}
.ed-faq h2 em { font-style: italic; font-weight: 500; color: var(--accent); }
.ed-faq-list { border-top: 2px solid var(--ink); }
.ed-faq-item {
  border-bottom: 1px solid var(--ink);
  padding: 24px 0; cursor: pointer;
  transition: background .2s ease;
}
.ed-faq-item:hover { background: rgba(0,0,0,.025); }
.ed-faq-item .q {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 24px;
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: 1.35rem; line-height: 1.25; letter-spacing: -.01em;
  color: var(--ink);
}
.ed-faq-item .q .toggle {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.2rem; color: var(--accent);
  flex-shrink: 0; line-height: 1.3;
  transition: transform .2s;
}
.ed-faq-item.open .q .toggle { transform: rotate(45deg); }
.ed-faq-item .a {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem; line-height: 1.55; color: var(--ink-2);
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, margin-top .3s ease;
  margin-top: 0;
}
.ed-faq-item.open .a { max-height: 800px; margin-top: 16px; }

/* ── CTA STRIP (dark) ────────────────────────────────────────── */
.ed-cta-strip {
  padding: 80px 0; border-bottom: 1px solid var(--ink);
  background: var(--ink); color: var(--paper);
}
.ed-cta-strip .grid {
  display: grid; grid-template-columns: 1.4fr auto;
  gap: 48px; align-items: end;
}
.ed-cta-strip h2 {
  font-family: 'Fraunces', serif; font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1; letter-spacing: -.03em;
  margin-top: 18px; max-width: 22ch;
}
.ed-cta-strip h2 em { font-style: italic; font-weight: 500; color: var(--accent); }
.ed-cta-strip .ed-kicker { color: var(--accent); }
.ed-cta-strip p {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 1.1rem; line-height: 1.5;
  color: var(--paper-3); max-width: 56ch; margin-top: 18px;
}
.ed-cta-strip .actions { display: flex; flex-direction: column; gap: 12px; min-width: 280px; }
.ed-cta-strip .ed-btn {
  background: var(--accent); border-color: var(--accent); color: var(--paper);
  justify-content: center;
}
.ed-cta-strip .ed-btn:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.ed-cta-strip .ed-btn.ghost { background: transparent; color: var(--paper); border-color: var(--paper); }
.ed-cta-strip .ed-btn.ghost:hover { background: var(--paper); color: var(--ink); }

/* ── PROSE (long-form pages) ─────────────────────────────────── */
.ed-prose {
  max-width: 66ch; margin: 0 auto;
  font-family: 'Fraunces', serif; font-size: 1.16rem;
  line-height: 1.7; color: var(--ink-2);
}
.ed-prose h2, .ed-prose h3, .ed-prose h4 {
  font-family: 'Fraunces', serif; color: var(--ink);
  margin: 48px 0 16px; line-height: 1.18;
}
.ed-prose h2 { font-size: 2.1rem; font-weight: 800; letter-spacing: -.02em; }
.ed-prose h3 { font-size: 1.45rem; font-weight: 700; letter-spacing: -.01em; }
.ed-prose h4 { font-size: .8rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); font-family: 'JetBrains Mono', monospace; }
.ed-prose p { margin: 0 0 22px; }
.ed-prose a { color: var(--accent); border-bottom: 1px solid var(--accent); padding-bottom: 1px; text-decoration: none; transition: background .2s ease; }
.ed-prose a:hover { background: rgba(199,40,30,0.08); }
.ed-prose ul, .ed-prose ol { margin: 0 0 22px 1.4em; padding: 0; }
.ed-prose li { margin: 0 0 10px; line-height: 1.6; }
.ed-prose strong { color: var(--ink); font-weight: 600; }
.ed-prose em { font-style: italic; }
.ed-prose blockquote {
  border-left: 2px solid var(--accent);
  margin: 0 0 22px; padding: 4px 0 4px 18px;
  font-style: italic; color: var(--ink);
}

/* ── STACKED FORM ────────────────────────────────────────────── */
.ed-form-stack { display: flex; flex-direction: column; gap: 18px; max-width: 640px; }
.ed-form-stack label {
  font-family: 'JetBrains Mono', monospace;
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-2); margin-bottom: 6px; display: block;
}
.ed-form-stack input,
.ed-form-stack textarea,
.ed-form-stack select {
  width: 100%;
  font-family: 'Fraunces', serif; font-size: 1.05rem;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--ink); color: var(--ink);
  outline: none; min-height: 48px;
}
.ed-form-stack textarea { min-height: 140px; resize: vertical; line-height: 1.5; }
.ed-form-stack input:focus,
.ed-form-stack textarea:focus,
.ed-form-stack select:focus { background: var(--paper-2); border-color: var(--accent); }
.ed-form-stack button {
  align-self: flex-start;
  padding: 16px 32px;
  background: var(--ink); color: var(--paper);
  border: 1px solid var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: .8rem; letter-spacing: .08em; text-transform: uppercase;
  font-weight: 600; cursor: pointer;
  transition: background .2s ease;
}
.ed-form-stack button:hover { background: var(--accent); border-color: var(--accent); }

/* ── PRICE TAG (contact-only) ────────────────────────────────── */
.ed-price-tag {
  display: inline-block;
  font-family: 'Fraunces', serif; font-style: italic;
  color: var(--accent);
  font-size: 1rem; letter-spacing: .02em;
  border-bottom: 1px solid var(--accent);
  padding: 2px 0;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.ed-foot {
  background: var(--paper); color: var(--ink);
  padding: 64px 0 32px;
  border-top: 1px solid var(--ink);
}
.ed-foot-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--ink);
}
.ed-foot-brand {
  font-family: 'Fraunces', serif; font-weight: 900;
  font-size: 1.6rem; letter-spacing: -.01em; margin-bottom: 14px;
}
.ed-foot-brand em { font-style: italic; font-weight: 500; color: var(--accent); }
.ed-foot-about {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 1.02rem; line-height: 1.5;
  color: var(--ink-2); max-width: 42ch;
}
.ed-foot h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--mute); margin-bottom: 18px;
}
.ed-foot ul { list-style: none; }
.ed-foot ul li { margin-bottom: 10px; }
.ed-foot ul a {
  font-family: 'Inter', sans-serif;
  font-size: .88rem; color: var(--ink); text-decoration: none;
  border-bottom: 1px solid transparent; padding-bottom: 2px;
}
.ed-foot ul a:hover { border-color: var(--ink); }
.ed-foot-bar {
  padding-top: 24px;
  font-family: 'Inter', sans-serif;
  font-size: .78rem; color: var(--mute);
  text-align: center; line-height: 1.7;
}
.ed-foot-eco {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 18px; margin-top: 18px;
}
.ed-foot-eco a {
  font-family: 'JetBrains Mono', monospace;
  font-size: .72rem; color: var(--ink-2); text-decoration: none;
  letter-spacing: .06em;
}
.ed-foot-eco a:hover { color: var(--accent); }
.ed-disclaimer {
  margin-top: 28px; padding: 24px;
  border: 1px solid var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: .74rem; line-height: 1.65;
  color: var(--ink-3); text-align: left;
  max-width: 980px; margin-left: auto; margin-right: auto;
}
.ed-disclaimer strong { color: var(--ink); font-weight: 600; }
.ed-partner-network {
  margin-top: 28px; padding-top: 18px;
  border-top: 1px solid var(--paper-3);
  text-align: center;
}
.ed-partner-network .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--mute); margin-bottom: 10px;
}
.ed-partner-network .links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
}
.ed-partner-network a {
  font-family: 'Inter', sans-serif;
  font-size: .78rem; color: var(--ink-2); text-decoration: none;
}
.ed-partner-network a:hover { color: var(--accent); }
.ed-partner-network .sep { color: var(--paper-3); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .ed-hero { grid-template-columns: 1fr; gap: 48px; padding: 56px 0 72px; }
  .ed-hero-side { border-left: none; padding-left: 0; border-top: 1px solid var(--ink); padding-top: 36px; }
  .ed-figure { grid-template-columns: 1fr; gap: 24px; }
  .ed-city-grid { grid-template-columns: repeat(2, 1fr); }
  .ed-city:nth-child(2) { border-right: none; }
  .ed-stories { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .ed-tl { grid-template-columns: repeat(2, 1fr); }
  .ed-tl-item { border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
  .ed-tl-item:nth-child(2n) { border-right: none; }
  .ed-tl-item:last-child { border-bottom: none; }
  .ed-cta-strip .grid { grid-template-columns: 1fr; gap: 32px; }
  .ed-cta-strip .actions { min-width: 0; }
  .ed-foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 720px) {
  .ed-wrap { padding: 0 20px; }
  .ed-topbar .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); flex-direction: column;
    align-items: flex-start; padding: 24px 20px;
    border-bottom: 1px solid var(--ink);
    z-index: 50; overflow-x: visible;
  }
  .ed-topbar .nav.open { display: flex; }
  .ed-topbar .left { padding-bottom: 14px; border-bottom: none; gap: 10px; }
  .ed-topbar .masthead { font-size: 1.2rem; }
  .ed-topbar .issue { font-size: .6rem; letter-spacing: .16em; }
  .ed-nav-toggle { display: inline-flex; }
  .ed-figure { padding: 24px 0 20px; gap: 20px; }
  .ed-figure figcaption .cap { font-size: 1.05rem; }
  .ed-cities .head { grid-template-columns: 1fr; }
  .ed-cities .head-meta { text-align: left; }
  .ed-city-grid { grid-template-columns: 1fr; }
  .ed-city { border-right: none; }
  .ed-stories { grid-template-columns: 1fr; gap: 32px; }
  .ed-tl { grid-template-columns: 1fr; }
  .ed-tl-item { border-right: none; }
  .ed-foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .ed-cdu .n { font-size: 2rem; }
  .ed-hero h1 { font-size: clamp(2.4rem, 9vw, 3.6rem); }
  .ed-page-head { padding: 48px 0 40px; }
}
