@font-face{font-family:'Bricolage Grotesque';font-style:normal;font-weight:500 800;font-display:swap;src:url('/assets/fonts/bricolage-grotesque-normal.woff2') format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}
@font-face{font-family:'JetBrains Mono';font-style:normal;font-weight:400 600;font-display:swap;src:url('/assets/fonts/jetbrains-mono-normal.woff2') format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}
@font-face{font-family:'Newsreader';font-style:italic;font-weight:400;font-display:swap;src:url('/assets/fonts/newsreader-italic.woff2') format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}
@font-face{font-family:'Newsreader';font-style:normal;font-weight:400 600;font-display:swap;src:url('/assets/fonts/newsreader-normal.woff2') format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}

/* County Seat. Tokens first; nothing below :root uses a raw color. */
:root {
  --paper: #F3F1E8;
  --paper-2: #EAE6D8;
  --surface: #FBFAF5;
  --ink: #17201C;
  --ink-2: #39423D;
  --muted: #5B635C;
  --rule: #D3CEBD;
  --field-border: #8F968F;
  --label: #7A6320;
  --link-underline: #C7A64A;

  --green: #1E4B3B;
  --green-deep: #153629;
  --on-green: #F3F1E8;
  --on-green-muted: #C4CFC7;
  --on-green-rule: #3A6554;
  --gold: #C7A64A;

  --btn: #C2441A;
  --btn-hover: #A93A14;
  --on-btn: #FFFFFF;
  --orange: #E8551C;
  --focus: #E8551C;
  --error: #B3261E;
  --choice-on: #E4ECE6;
  --shadow: #17201C33;

  --map-open: #D6E3D9;
  --map-held: #1E4B3B;
  --map-large: #E4DFD0;
  --map-hover: #F2C3AC;
  --map-stroke: #FBFAF5;
  --map-dot: #C2441A;

  --display: "Bricolage Grotesque", ui-sans-serif, system-ui, "Segoe UI", Arial, sans-serif;
  --body: "Newsreader", Georgia, "Times New Roman", serif;
  --mono: "JetBrains Mono", ui-monospace, Consolas, "Courier New", monospace;

  --step--1: clamp(0.8rem, 0.77rem + 0.12vw, 0.88rem);
  --step-0: clamp(1.06rem, 1rem + 0.25vw, 1.2rem);
  --step-1: clamp(1.25rem, 1.12rem + 0.55vw, 1.55rem);
  --step-2: clamp(1.55rem, 1.3rem + 1.1vw, 2.2rem);
  --step-3: clamp(2rem, 1.55rem + 2.1vw, 3.2rem);
  --step-4: clamp(2.5rem, 1.7rem + 3.9vw, 5rem);

  --gutter: clamp(1rem, 4vw, 2.5rem);
  --max: 74rem;
  --measure: 66ch;
  --radius: 4px;
  --header-h: 4.5rem;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #111814;
    --paper-2: #16201B;
    --surface: #1A241F;
    --ink: #ECEBE3;
    --ink-2: #CFD3CB;
    --muted: #A3ADA5;
    --rule: #2E3B34;
    --field-border: #6F7A72;
    --label: #D6B65C;
    --link-underline: #9C8340;
    --green: #173C2F;
    --green-deep: #0E271E;
    --on-green-rule: #2F5646;
    --choice-on: #203129;
    --shadow: #00000066;
    --map-open: #2A4A3C;
    --map-held: #7FB89E;
    --map-large: #1E2622;
    --map-hover: #7A4128;
    --map-stroke: #111814;
    --map-dot: #F07A4A;
    --error: #F2877F;
  }
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-padding-top: 1rem; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--step-0);
  line-height: 1.6;
  font-optical-sizing: auto;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-color: var(--link-underline); text-decoration-thickness: 1.5px; text-underline-offset: 0.2em; }
a:hover { text-decoration-color: currentColor; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; border-radius: 2px; }
p { margin: 0 0 1em; max-width: var(--measure); }
h1, h2, h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.022em;
  text-wrap: balance;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3, .h3 { font-size: var(--step-1); font-weight: 700; line-height: 1.18; letter-spacing: -0.01em; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: 1rem; top: -20rem; z-index: 50;
  background: var(--ink); color: var(--paper); padding: 0.75rem 1rem; font-family: var(--display); font-weight: 700;
}
.skip:focus { top: 1rem; }
.wrap { width: min(100% - 2 * var(--gutter), var(--max)); margin-inline: auto; }
.narrow { max-width: 50rem; }
.eyebrow {
  margin: 0 0 1rem;
  font-family: var(--mono);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--label);
}

/* ------------------------------------------------ buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 48px; padding: 0.8rem 1.35rem;
  border: 2px solid transparent; border-radius: var(--radius);
  font-family: var(--display); font-size: 1.05rem; font-weight: 700; line-height: 1.1;
  text-decoration: none; cursor: pointer;
  transition: background-color 0.15s ease, transform 0.15s ease;
}
.btn-primary { background: var(--btn); color: var(--on-btn); }
.btn-primary:hover { background: var(--btn-hover); }
.btn-primary:active { transform: translateY(1px); }
.btn-line { background: transparent; border-color: currentColor; color: inherit; }
.btn-small { min-height: 44px; padding: 0.55rem 1rem; font-size: 0.98rem; }
.link-btn {
  background: none; border: 0; padding: 0; color: inherit; font: inherit; cursor: pointer;
  text-decoration: underline; text-decoration-color: var(--link-underline); text-underline-offset: 0.2em;
}

/* ------------------------------------------------ header */
.site-header { position: relative; background: var(--paper); border-bottom: 1px solid var(--rule); }
.header-row { display: flex; align-items: center; gap: 1.5rem; min-height: var(--header-h); }
.brand {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--display); font-size: 1.3rem; font-weight: 800; letter-spacing: -0.015em;
  text-decoration: none;
}
.seal { width: 2.3rem; height: 2.3rem; flex: none; }
.seal-ring { fill: none; stroke: var(--green); stroke-width: 2.5; }
.seal-inner { fill: none; stroke: var(--green); stroke-width: 2; }
.seal-star { fill: var(--orange); }
.primary-nav { margin-left: auto; }
.primary-nav ul { display: flex; gap: 1.5rem; margin: 0; padding: 0; list-style: none; }
.primary-nav a {
  display: inline-block; padding: 0.6rem 0;
  font-family: var(--display); font-size: 1rem; font-weight: 600; text-decoration: none;
}
.primary-nav a[aria-current="page"] {
  text-decoration: underline; text-decoration-color: var(--orange);
  text-decoration-thickness: 3px; text-underline-offset: 0.5em;
}
.mobile-nav { display: none; margin-left: auto; }
.mobile-nav summary {
  display: flex; align-items: center; min-height: 44px; padding: 0.5rem 1rem;
  border: 1.5px solid var(--ink); border-radius: var(--radius);
  font-family: var(--display); font-weight: 700; cursor: pointer; list-style: none;
}
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-panel {
  position: absolute; left: 0; right: 0; top: 100%; z-index: 30;
  padding: 0.5rem var(--gutter) 1.5rem; background: var(--paper); border-bottom: 1px solid var(--rule);
}
.mobile-panel ul { margin: 0; padding: 0; list-style: none; }
.mobile-panel a {
  display: block; padding: 0.85rem 0; border-bottom: 1px solid var(--rule);
  font-family: var(--display); font-size: 1.25rem; font-weight: 700; text-decoration: none;
}
@media (max-width: 62rem) {
  .primary-nav, .header-cta { display: none; }
  .mobile-nav { display: block; }
}

/* ------------------------------------------------ hero */
.hero { background: var(--green); color: var(--on-green); overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
  padding-block: clamp(3rem, 7vw, 6rem);
}
.hero .eyebrow { color: var(--on-green-muted); }
.hero h1 { color: var(--on-green); max-width: 11ch; }
.h1-star { display: inline-block; width: 0.62em; height: 0.62em; margin-left: 0.12em; vertical-align: 0.02em; }
.h1-star .seal-ring, .h1-star .seal-inner { stroke: var(--gold); }
.hero .lede { margin-top: 1.4rem; max-width: 38ch; font-size: var(--step-1); line-height: 1.45; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem 1rem; margin-top: 2rem; }
.hero .btn-line { color: var(--on-green); }
.hero-tally {
  display: flex; flex-wrap: wrap; gap: 0.4rem 1.6rem;
  margin: 2.25rem 0 0; padding: 1.25rem 0 0; list-style: none;
  border-top: 1px solid var(--on-green-rule);
  font-family: var(--mono); font-size: var(--step--1); color: var(--on-green-muted);
}
.hero-map { margin: 0; }
.hero-map img { width: 100%; max-width: 34rem; margin-inline: auto; }
.hero-map figcaption {
  margin-top: 0.75rem; text-align: center;
  font-family: var(--mono); font-size: var(--step--1); color: var(--on-green-muted);
}
@media (max-width: 54rem) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-map img { max-width: 22rem; }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-map img { animation: settle 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
  .hero-copy > * { animation: settle 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
  .hero-copy > :nth-child(2) { animation-delay: 0.05s; }
  .hero-copy > :nth-child(3) { animation-delay: 0.1s; }
  .hero-copy > :nth-child(4) { animation-delay: 0.15s; }
  @keyframes settle { from { opacity: 0.001; transform: translateY(10px); } to { opacity: 1; transform: none; } }
}

/* ------------------------------------------------ inner page head */
.page-head { padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(2rem, 4vw, 3rem); border-bottom: 1px solid var(--rule); }
.page-head h1 { max-width: 16ch; }
.page-head .lede { margin-top: 1.25rem; max-width: 46ch; font-size: var(--step-1); line-height: 1.45; color: var(--ink-2); }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0 0 1.5rem; padding: 0; list-style: none; font-family: var(--mono); font-size: var(--step--1); color: var(--muted); }
.crumbs li + li::before { content: "/"; margin-right: 0.5rem; }

/* ------------------------------------------------ sections */
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--tight { padding-block: clamp(2rem, 4vw, 3rem); }
.section--alt { background: var(--paper-2); }
.section + .section:not(.section--alt) { border-top: 1px solid var(--rule); }
.section-head { max-width: 52rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head p:not(.eyebrow) { margin-top: 1rem; font-size: var(--step-1); line-height: 1.45; color: var(--ink-2); }
.split { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
@media (max-width: 54rem) { .split { grid-template-columns: 1fr; } }
.capsule { font-size: var(--step-1); line-height: 1.5; max-width: 48ch; }
.prose h2 { margin: 2.75rem 0 1rem; font-size: var(--step-2); }
.prose h2:first-child { margin-top: 0; }
.prose ul, .prose ol:not(.steps) { max-width: var(--measure); padding-left: 1.2rem; }
.prose li { margin-bottom: 0.45rem; }
.source { margin-top: 1rem; font-family: var(--mono); font-size: var(--step--1); color: var(--muted); }

.checks { margin: 1.5rem 0 0; padding: 0; list-style: none; }
.checks li { position: relative; padding: 0.85rem 0 0.85rem 2rem; border-top: 1px solid var(--rule); }
.checks li::before {
  content: ""; position: absolute; left: 0.1rem; top: 1.25rem; width: 0.9rem; height: 0.9rem;
  border: 2px solid var(--green); border-radius: 50%; background: var(--surface);
}
.checks strong { font-family: var(--display); font-weight: 700; }

.terms { margin: 0; padding: 0; list-style: none; border-top: 2px solid var(--ink); }
.terms li {
  display: grid; grid-template-columns: minmax(10rem, 15rem) minmax(0, 1fr); gap: 0.4rem 2rem;
  padding: 1.3rem 0; border-bottom: 1px solid var(--rule);
}
.terms p { margin: 0; }
.term { font-family: var(--display); font-size: 1.12rem; font-weight: 700; line-height: 1.3; }
@media (max-width: 40rem) { .terms li { grid-template-columns: 1fr; } }

.steps { margin: 0; padding: 0; list-style: none; counter-reset: step; }
.steps > li {
  counter-increment: step; display: grid; grid-template-columns: 3.25rem minmax(0, 1fr); gap: 1rem;
  padding: 1.6rem 0; border-top: 1px solid var(--rule);
}
.steps > li::before {
  content: counter(step, decimal-leading-zero);
  padding-top: 0.2rem; font-family: var(--mono); font-weight: 600; color: var(--label);
}
.steps h2, .steps h3 { margin-bottom: 0.6rem; }
.steps p:last-child { margin-bottom: 0; }

/* ------------------------------------------------ report specimen */
.slip {
  margin: 0; padding: clamp(1.25rem, 3vw, 2rem); max-width: 36rem;
  background: var(--surface); border: 1px solid var(--rule); border-radius: 2px;
  box-shadow: 0 22px 44px -30px var(--shadow);
  font-family: var(--mono); font-size: 0.9rem;
}
.slip-head {
  display: flex; justify-content: space-between; gap: 1rem;
  padding-bottom: 0.75rem; margin-bottom: 0.25rem; border-bottom: 2px solid var(--ink);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
}
.slip dl { display: grid; grid-template-columns: minmax(0, 1fr) auto; margin: 0; }
.slip dt, .slip dd { margin: 0; padding: 0.6rem 0; border-bottom: 1px dashed var(--rule); }
.slip dd { padding-left: 1rem; text-align: right; color: var(--muted); }
.slip figcaption { margin-top: 1rem; font-size: 0.8rem; line-height: 1.5; color: var(--muted); }

/* ------------------------------------------------ pricing */
.tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 15.5rem), 1fr)); gap: 1rem; }
.tier {
  display: grid; align-content: start; gap: 0.7rem; padding: 1.6rem;
  background: var(--surface); border: 1px solid var(--rule); border-top: 5px solid var(--green); border-radius: var(--radius);
}
.tier--addon { border-top-color: var(--gold); }
.tier-name { font-family: var(--mono); font-size: var(--step--1); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--label); }
.tier-price { margin: 0; font-family: var(--display); font-size: var(--step-3); font-weight: 800; line-height: 1; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.tier-price span { display: block; margin-top: 0.35rem; font-family: var(--mono); font-size: 0.85rem; font-weight: 400; letter-spacing: 0; color: var(--muted); }
.tier-scope { margin: 0; font-family: var(--display); font-weight: 600; }
.tier ul { margin: 0; padding-left: 1.1rem; font-size: 1rem; }
.tier li { margin-bottom: 0.35rem; }
.after-tiers { margin: 1.5rem 0 0; }
.steps + .notice { margin-top: 2rem; }
.notice h3 { margin-bottom: 0.6rem; }

/* ------------------------------------------------ tables */
/* position: relative keeps absolutely positioned descendants (visually-hidden
   labels) inside the scroll box, so a wide table never widens the page. */
.table-wrap { position: relative; overflow-x: auto; border-top: 2px solid var(--ink); }
table { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
th, td { padding: 0.7rem 0.75rem; text-align: left; vertical-align: top; border-bottom: 1px solid var(--rule); }
thead th { font-family: var(--mono); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--label); }
tbody th { font-family: var(--display); font-weight: 700; }
.num { text-align: right; }
.row-actions { white-space: nowrap; }
.row-actions > * + * { margin-left: 1rem; }
.status { font-family: var(--mono); font-size: 0.82rem; white-space: nowrap; }
.status::before { content: ""; display: inline-block; width: 0.6rem; height: 0.6rem; margin-right: 0.45rem; border-radius: 50%; vertical-align: 0.05rem; }
.status--open::before { background: var(--map-open); box-shadow: inset 0 0 0 1.5px var(--green); }
.status--held::before { background: var(--map-held); }
.status--large::before { background: var(--map-large); box-shadow: inset 0 0 0 1.5px var(--field-border); }

/* ------------------------------------------------ faq */
.faq { border-top: 1px solid var(--rule); }
.faq:last-of-type { border-bottom: 1px solid var(--rule); }
.faq summary {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  min-height: 44px; padding: 1.15rem 0; cursor: pointer; list-style: none;
  font-family: var(--display); font-size: var(--step-1); font-weight: 700; line-height: 1.25;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--mono); font-weight: 400; color: var(--label); }
.faq[open] summary::after { content: "\2212"; }
.faq-a { padding-bottom: 1.25rem; }
.faq-a p:last-child { margin-bottom: 0; }

/* ------------------------------------------------ call to action band */
.band { background: var(--green); color: var(--on-green); }
.band-row { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 1.5rem; padding-block: clamp(3rem, 7vw, 5rem); }
.band h2 { color: var(--on-green); max-width: 17ch; }
.band p { margin: 0.9rem 0 0; color: var(--on-green-muted); }

/* ------------------------------------------------ seat map */
.map-controls { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 1rem 2rem; margin-bottom: 1.25rem; }
.map-legend { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; margin: 0; padding: 0; list-style: none; font-family: var(--mono); font-size: 0.82rem; }
.swatch { display: inline-block; width: 0.95rem; height: 0.95rem; margin-right: 0.45rem; vertical-align: -0.12rem; border: 1px solid var(--field-border); }
.swatch--open { background: var(--map-open); }
.swatch--held { background: var(--map-held); }
.swatch--large { background: var(--map-large); }
.seatmap { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(17rem, 0.65fr); gap: clamp(1.25rem, 3vw, 2.5rem); align-items: start; }
@media (max-width: 56rem) { .seatmap { grid-template-columns: 1fr; } }
.map-frame { padding: clamp(0.5rem, 2vw, 1.25rem); background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius); }
.gamap { width: 100%; max-width: 40rem; margin-inline: auto; }
.cty path { fill: var(--map-open); stroke: var(--map-stroke); stroke-width: 0.8; stroke-linejoin: round; transition: fill 0.12s ease; }
.cty--held path { fill: var(--map-held); }
.cty--large path { fill: var(--map-large); }
.cty:hover path { fill: var(--map-hover); }
.cty[aria-current="true"] path { fill: var(--map-hover); stroke: var(--ink); stroke-width: 1.8; }
.seat-dots circle { fill: var(--map-dot); pointer-events: none; }
.seat-panel {
  position: sticky; top: 1rem; display: grid; gap: 0.75rem; padding: 1.5rem;
  background: var(--surface); border: 1px solid var(--rule); border-top: 6px solid var(--green); border-radius: var(--radius);
}
.seat-panel h3 { font-size: var(--step-2); }
.seat-panel p { margin: 0; }
.seat-status { font-family: var(--display); font-weight: 700; }
.seat-facts { margin: 0; display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 0.35rem 1rem; font-family: var(--mono); font-size: 0.88rem; }
.seat-facts dt { color: var(--muted); }
.seat-facts dd { margin: 0; }
.list-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 1rem 2rem; margin-bottom: 1.25rem; }
.list-head h2 { font-size: var(--step-2); }

/* ------------------------------------------------ forms */
.form { display: grid; gap: 1.35rem; max-width: 44rem; }
.field { display: grid; gap: 0.4rem; min-width: 0; margin: 0; padding: 0; border: 0; }
.field label, .field legend { font-family: var(--display); font-size: 1.02rem; font-weight: 700; padding: 0; }
.field--inline { display: grid; gap: 0.35rem; }
.hint { margin: 0; font-size: 0.95rem; color: var(--muted); }
.optional { font-family: var(--mono); font-size: 0.78rem; font-weight: 400; color: var(--muted); margin-left: 0.4rem; }
input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="search"], select, textarea {
  width: 100%; min-height: 48px; padding: 0.7rem 0.8rem;
  font: inherit; font-size: 1.05rem; color: var(--ink);
  background: var(--surface); border: 1.5px solid var(--field-border); border-radius: var(--radius);
}
select { padding-right: 2rem; }
textarea { min-height: 8rem; resize: vertical; }
input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid var(--focus); outline-offset: 1px; border-color: var(--ink); }
.row-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr)); gap: 1.35rem; }
.choice-group { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.choice {
  display: inline-flex; align-items: center; gap: 0.6rem; min-height: 48px; padding: 0.6rem 1rem;
  border: 1.5px solid var(--field-border); border-radius: var(--radius); cursor: pointer;
  font-family: var(--display); font-weight: 600;
}
.choice:has(input:checked) { border-color: var(--green); background: var(--choice-on); }
input[type="radio"] { width: 1.15rem; height: 1.15rem; margin: 0; accent-color: var(--green); }
.field--error input, .field--error select, .field--error textarea { border-color: var(--error); border-width: 2px; }
.error-text { margin: 0; font-family: var(--display); font-size: 0.95rem; font-weight: 600; color: var(--error); }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: 0.95rem; color: var(--muted); }
.notice { padding: 1.25rem 1.5rem; background: var(--surface); border: 1px solid var(--rule); border-left: 5px solid var(--green); border-radius: var(--radius); }
.notice--error { border-left-color: var(--error); }
.notice h2 { font-size: var(--step-2); margin-bottom: 0.75rem; }
.notice p:last-child { margin-bottom: 0; }
.ref { font-family: var(--mono); font-weight: 600; letter-spacing: 0.04em; }
.form-layout { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.6fr); gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 54rem) { .form-layout { grid-template-columns: 1fr; } }
.aside-card { padding: 1.5rem; background: var(--paper-2); border-radius: var(--radius); }
.aside-card h2 { font-size: var(--step-1); margin-bottom: 0.75rem; }
.aside-card p:last-child { margin-bottom: 0; }

/* ------------------------------------------------ contact lines */
.contact-line { display: block; width: fit-content; padding: 0.2rem 0; font-family: var(--mono); font-size: 0.95rem; }

/* ------------------------------------------------ footer */
.site-footer { background: var(--green-deep); color: var(--on-green); padding-block: 3.5rem 2rem; }
.site-footer .seal-ring, .site-footer .seal-inner { stroke: var(--gold); }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr)); gap: 2rem; }
@media (max-width: 48rem) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { margin-top: 0.75rem; color: var(--on-green-muted); }
.footer-title { margin-bottom: 0.75rem; font-family: var(--mono); font-size: var(--step--1); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-green-muted); }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links a { display: inline-block; padding: 0.3rem 0; }
.site-footer a { color: var(--on-green); text-decoration-color: var(--on-green-rule); }
.footer-legal { margin: 2.5rem 0 0; padding-top: 1.25rem; max-width: none; border-top: 1px solid var(--on-green-rule); font-family: var(--mono); font-size: 0.8rem; color: var(--on-green-muted); }

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