/* =============================================================
   Foodies of TN — Stylesheet
   ============================================================= */

/* ----- Custom Properties ----- */
:root {
  --orange:    #E8762B;
  --orange-dk: #C45E18;
  --navy:      #1C3A5F;
  --navy-lt:   #2A5080;
  --gold:      #F0A800;
  --cream:     #FEF9F2;
  --cream-dk:  #F5EDD8;
  --light:     #FDF0E6;
  --text:      #2B2118;
  --text-mid:  #4A3E35;
  --text-mute: #6B6560;
  --green:     #2E6E3A;
  --green-lt:  #EDF7EE;
  --border:    #E0D8CC;
  --shadow:    0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 4px 18px rgba(0,0,0,.12);
  --radius:    8px;
  --radius-lg: 14px;
  --max-w:     1100px;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { padding-left: 1.25em; }

/* ----- Typography ----- */
h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.2;
  color: var(--navy);
  font-weight: 700;
}
h1 { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: .75rem; }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); margin-bottom: .6rem; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); margin-bottom: .5rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ----- Layout ----- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: 5rem 0;
}
.section-dark {
  background: var(--navy);
  color: #fff;
}
.section-dark h2,
.section-dark h3 { color: #fff; }
.section-light {
  background: var(--light);
}

/* ----- Buttons ----- */
.btn {
  display: inline-block;
  padding: .65rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  line-height: 1.4;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .18s, color .18s, border-color .18s, transform .1s;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dk);
  border-color: var(--orange-dk);
  color: #fff;
}
.btn-secondary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy-lt);
  border-color: var(--navy-lt);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.7);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
}
.btn-lg { padding: .85rem 2rem; font-size: 1rem; }
.btn-sm { padding: .45rem 1rem; font-size: .875rem; }
.btn-nav {
  background: var(--orange);
  color: #fff;
  padding: .45rem 1.1rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .875rem;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--orange-dk); text-decoration: none; color: #fff; }

/* ----- Header / Nav ----- */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .75rem;
  padding-bottom: .75rem;
  gap: 1.5rem;
}
.site-logo img { height: 46px; width: auto; }
.site-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.site-nav a {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  transition: color .15s;
}
.site-nav a:hover,
.site-nav a.active {
  color: #fff;
  text-decoration: none;
}
.site-nav a.active { border-bottom: 2px solid var(--orange); padding-bottom: 2px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: .2s;
}

/* ----- Hero ----- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #2A5080 100%);
  color: #fff;
  padding: 5rem 0 4rem;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.hero-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-plate { text-align: center; }
.plate-preview {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.plate-caption {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  margin-top: .75rem;
  font-style: italic;
}

/* ----- Mission Cards ----- */
.section-title {
  text-align: center;
  margin-bottom: .5rem;
}
.section-subtitle {
  text-align: center;
  color: var(--text-mute);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-icon { margin-bottom: 1.25rem; }
.card-icon svg { width: 48px; height: 48px; }
.card h3 { margin-bottom: .6rem; }
.card p { color: var(--text-mid); font-size: .95rem; }

/* ----- Tracker (mini — homepage) ----- */
.tracker-teaser { }
.tracker-teaser-content { max-width: 860px; margin: 0 auto; text-align: center; }
.tracker-teaser-content h2 { color: #fff; }
.tracker-teaser-content p { color: rgba(255,255,255,.8); margin-bottom: 2.5rem; }
.tracker-mini {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 0;
  margin-bottom: 2.5rem;
  overflow-x: auto;
  padding-bottom: .25rem;
}
.tracker-mini-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
  min-width: 64px;
}
.tracker-mini-dot { position: relative; z-index: 1; }
.tracker-mini-dot svg { width: 20px; height: 20px; }
.tracker-mini-label {
  font-size: .65rem;
  color: rgba(255,255,255,.7);
  margin-top: .4rem;
  text-align: center;
  max-width: 72px;
  line-height: 1.25;
}
.tracker-mini-step--complete .tracker-mini-label { color: rgba(255,255,255,.9); }
.tracker-mini-step--active .tracker-mini-label { color: var(--gold); font-weight: 700; }
.tracker-mini-line {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,.2);
  z-index: 0;
}
.tracker-mini-line--complete { background: var(--green); }
.tracker-mini-line--active { background: var(--gold); }

/* ----- Tracker (full — license plate page) ----- */
.tracker { max-width: 700px; margin: 0 auto; }
.tracker-step {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 0;
}
.tracker-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.tracker-dot svg { width: 36px; height: 36px; }
.tracker-connector {
  width: 3px;
  flex: 1;
  min-height: 24px;
  background: var(--border);
  border-radius: 2px;
  margin: 4px 0;
}
.tracker-connector--complete { background: var(--green); }
.tracker-connector--active   { background: var(--gold); }
.tracker-step-content {
  padding-bottom: 2.5rem;
  padding-top: 2px;
}
.tracker-step-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: .35rem;
}
.tracker-step-title {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 0;
}
.tracker-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cream-dk);
  color: var(--text-mute);
  font-size: .72rem;
  font-weight: 700;
  flex-shrink: 0;
}
.tracker-step--complete .tracker-step-number { background: var(--green-lt); color: var(--green); }
.tracker-step--active   .tracker-step-number { background: #FEF3D0; color: #B67800; }
.tracker-step-date {
  font-size: .82rem;
  color: var(--text-mute);
  white-space: nowrap;
}
.tracker-step-date--active { color: #B67800; font-weight: 600; }
.tracker-step-detail { color: var(--text-mid); font-size: .93rem; margin-bottom: .6rem; }
.tracker-badge {
  display: inline-block;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .2rem .65rem;
  border-radius: 50px;
}
.tracker-badge--complete { background: var(--green-lt); color: var(--green); }
.tracker-badge--active   { background: #FEF3D0; color: #B67800; }

/* ----- Pre-order / stat section ----- */
.preorder-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.preorder-text h2 { margin-bottom: 1rem; }
.preorder-text p  { color: var(--text-mid); margin-bottom: 1rem; }
.preorder-stat {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.stat-block {
  border-left: 4px solid var(--orange);
  padding-left: 1.25rem;
}
.stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--navy);
  font-family: Georgia, serif;
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: .875rem;
  color: var(--text-mute);
  margin-top: .25rem;
}

/* ----- Grant teaser ----- */
.grant-teaser-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: start;
}
.grant-teaser-eligibility { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; }
.grant-teaser-eligibility h3 { margin-bottom: 1rem; }

/* ----- Designer teaser ----- */
.designer-teaser-inner { text-align: center; max-width: 600px; margin: 0 auto; }
.designer-teaser-inner h2 { margin-bottom: .75rem; }
.designer-teaser-inner p  { color: var(--text-mid); margin-bottom: 1.75rem; }

/* ----- Origin story ----- */
.origin-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
}
.origin-text h2 { margin-bottom: 1rem; }
.origin-text p  { color: var(--text-mid); margin-bottom: 1rem; }
.origin-quote { display: flex; justify-content: center; }
.quote-block {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 1.5rem;
  position: relative;
}
.quote-block::before {
  content: '\201C';
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--orange);
  line-height: 1;
  display: block;
  margin-bottom: .25rem;
}
.quote-block p {
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255,255,255,.9);
  font-style: italic;
  margin-bottom: 1rem;
}
.quote-block cite {
  font-size: .82rem;
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
  letter-spacing: .03em;
}

/* ----- Page hero ----- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #2A5080 100%);
  color: #fff;
  padding: 4rem 0 3.5rem;
}
.page-hero h1 { color: #fff; margin-bottom: .75rem; }
.page-hero-lead { font-size: 1.1rem; color: rgba(255,255,255,.8); max-width: 600px; }

/* ----- Prose layout ----- */
.prose-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}
.prose h2 { margin-top: 2.5rem; margin-bottom: .75rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.75rem; margin-bottom: .6rem; color: var(--orange-dk); }
.prose p  { color: var(--text-mid); }
.prose ul,
.prose ol { color: var(--text-mid); }
.prose--centered { max-width: 680px; margin: 0 auto; }
.prose--centered h2 { text-align: center; }
.prose--centered p  { text-align: center; }

/* ----- Sidebar ----- */
.sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.sidebar-card h3 { margin-bottom: .75rem; font-size: 1rem; }
.sidebar-card ul { list-style: none; padding: 0; }
.sidebar-card ul li { padding: .3rem 0; border-bottom: 1px solid var(--border); font-size: .9rem; }
.sidebar-card ul li:last-child { border-bottom: none; }
.sidebar-card ul a { color: var(--navy); }
.sidebar-card ul a:hover { color: var(--orange); }
.sidebar-card--highlight {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.sidebar-card--highlight p { color: rgba(255,255,255,.85); }
.sidebar-card--highlight a { color: var(--gold); }
.sidebar-stat { font-size: 3rem; font-weight: 900; font-family: Georgia, serif; color: var(--gold); line-height: 1; margin-bottom: .5rem; display: block; }

/* ----- Status card ----- */
.status-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 1.5rem;
  box-shadow: var(--shadow);
}
.status-row {
  display: flex;
  padding: .85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}
.status-row:last-child { border-bottom: none; }
.status-label { font-weight: 700; font-size: .875rem; min-width: 220px; color: var(--text-mute); }
.status-value { font-size: .875rem; color: var(--text); }

/* ----- Zeffy embed ----- */
.zeffy-wrapper {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: 2rem 0 1rem;
}
.zeffy-fallback { text-align: center; font-size: .875rem; color: var(--text-mute); }
.zeffy-fallback a { color: var(--orange); font-weight: 600; }

/* ----- FAQ ----- */
.faq { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--orange);
  transition: transform .2s;
  flex-shrink: 0;
}
.faq-question[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .2s;
}
.faq-answer.open {
  max-height: 400px;
  padding-bottom: 1.25rem;
}
.faq-answer p { color: var(--text-mid); font-size: .95rem; }

/* ----- Forms ----- */
.form-layout {
  max-width: 680px;
  margin: 0 auto;
}
.form-intro { margin-bottom: 2.5rem; }
.form-intro h2 { margin-bottom: .75rem; }
.form-intro p { color: var(--text-mid); }
.form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: .65rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,118,43,.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-hint { font-size: .8rem; color: var(--text-mute); }
.form-actions { margin-top: .5rem; }
.required { color: var(--orange); }
.optional { color: var(--text-mute); font-weight: 400; font-size: .8rem; }

/* ----- Notices ----- */
.notice {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: .93rem;
  margin-bottom: 1.5rem;
}
.notice--info { background: #EEF4FF; border-left: 4px solid #3B7DD8; color: #1A3D6B; }
.notice--error { background: #FFF0F0; border-left: 4px solid #D93030; color: #8B1A1A; }
.notice--success { background: var(--green-lt); border-left: 4px solid var(--green); color: #1B4023; }

/* ----- Check list ----- */
.check-list {
  list-style: none;
  padding: 0;
}
.check-list li {
  padding: .35rem 0 .35rem 1.6rem;
  position: relative;
  color: var(--text-mid);
  font-size: .95rem;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .6rem;
  width: 10px;
  height: 6px;
  border-left: 2.5px solid var(--green);
  border-bottom: 2.5px solid var(--green);
  transform: rotate(-45deg);
}

/* ----- Numbered list ----- */
.numbered-list {
  list-style: none;
  padding: 0;
  counter-reset: steps;
}
.numbered-list li {
  padding: .5rem 0 .5rem 2.25rem;
  position: relative;
  counter-increment: steps;
  color: var(--text-mid);
  font-size: .95rem;
}
.numbered-list li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: .5rem;
  width: 22px;
  height: 22px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ----- Plate preview ----- */
.plate-preview-wrap { margin: 1.5rem 0; }
.plate-preview--large { max-width: 500px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

/* ----- Contact info block ----- */
.contact-info {
  background: var(--light);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-top: 1.25rem;
  font-size: .9rem;
  color: var(--text-mid);
}

/* ----- Success page ----- */
.success-section { padding: 6rem 0; }
.success-card {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-md);
}
.success-icon { margin-bottom: 1.5rem; }
.success-icon svg { width: 80px; height: 80px; margin: 0 auto; }
.success-card h1 { margin-bottom: .75rem; }
.success-card p  { color: var(--text-mid); margin-bottom: .75rem; }
.success-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: 2rem; }

/* ----- Empty state ----- */
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-mute);
}
.empty-state-icon { margin-bottom: 1.25rem; }
.empty-state-icon svg { width: 64px; height: 64px; margin: 0 auto; }
.empty-state h3 { margin-bottom: .5rem; }
.empty-state p  { color: var(--text-mute); font-size: .95rem; }

/* ----- Footer ----- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.65); margin-bottom: .5rem; }
.footer-ein { font-size: .78rem; color: rgba(255,255,255,.45); margin-top: .75rem; }
.footer-links h3,
.footer-contact h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.footer-links ul { list-style: none; padding: 0; }
.footer-links ul li { margin-bottom: .5rem; }
.footer-links ul a,
.footer-contact a {
  color: rgba(255,255,255,.7);
  font-size: .875rem;
}
.footer-links ul a:hover,
.footer-contact a:hover { color: #fff; }
.footer-contact p { font-size: .875rem; color: rgba(255,255,255,.65); margin-bottom: .5rem; }
.footer-preorder { margin-top: 1.25rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 0;
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}

/* ----- Responsive ----- */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-plate { order: -1; }
  .hero-plate img { max-width: 420px; margin: 0 auto; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .preorder-split { grid-template-columns: 1fr; gap: 2rem; }
  .grant-teaser-inner { grid-template-columns: 1fr; gap: 2rem; }
  .origin-inner { grid-template-columns: 1fr; gap: 2rem; }
  .prose-layout { grid-template-columns: 1fr; gap: 2rem; }
  .sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 3rem 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .hero { padding: 3rem 0; }
  .hero h1 { font-size: 1.9rem; }
  .form-row { grid-template-columns: 1fr; }
  .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); padding: 1rem 1.5rem; box-shadow: 0 8px 20px rgba(0,0,0,.2); z-index: 99; }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; gap: .75rem; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .sidebar { grid-template-columns: 1fr; }
  .status-row { flex-direction: column; gap: .2rem; }
  .status-label { min-width: auto; }
  .preorder-stat { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .visualizer-plate { padding: 0 0; }
}

/* ----- Radio group (designer form) ----- */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-top: .25rem;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: .65rem;
  cursor: pointer;
  font-size: .93rem;
  color: var(--text-mid);
  padding: .65rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  transition: border-color .15s, background .15s;
}
.radio-label:hover { border-color: var(--orange); }
.radio-label input[type="radio"] {
  accent-color: var(--orange);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  cursor: pointer;
}
.radio-label input[type="radio"]:checked + span { color: var(--navy); font-weight: 600; }
.radio-label:has(input:checked) { border-color: var(--orange); background: #FFF7F1; }

/* ----- Plate visualizer ----- */
.visualizer-wrap { max-width: 700px; margin: 0 auto; text-align: center; }
.visualizer-input-row { margin-bottom: 2rem; }
.plate-input {
  font-family: 'Arial Black', Impact, Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: .2em;
  text-align: center;
  text-transform: uppercase;
  padding: .75rem 1.5rem;
  border: 2.5px solid var(--navy);
  border-radius: var(--radius);
  background: #fff;
  color: var(--navy);
  width: 100%;
  max-width: 300px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.plate-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,118,43,.15);
}
.visualizer-plate {
  background: transparent;
  margin: 0 auto 1.25rem;
  max-width: 600px;
}
.plate-svg {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2816 / 1536;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 36px rgba(0,0,0,.25);
}
.visualizer-disclaimer {
  font-size: .8rem;
  color: var(--text-mute);
  font-style: italic;
  margin-top: .75rem;
}
