/* ==========================================================================
   Quick Crave Snacks — brand stylesheet
   Palette derived from the logo: black + golden amber (#FFCC00).
   Added: Fresh Mint (#21D19F) for "healthy/go", warm Paper for light sections.
   Type: Archivo (display) / Hanken Grotesk (body) / Space Mono (vend codes).
   ========================================================================== */

:root {
  --ink:      #0B0C0E;   /* near-black background          */
  --ink-2:    #131419;   /* raised dark surface            */
  --ink-3:    #1A1C22;   /* card on dark                   */
  --gold:     #FFCC00;   /* brand yellow (from logo)       */
  --gold-2:   #E89C00;   /* deep amber (from logo)         */
  --mint:     #21D19F;   /* fresh / healthy / "go"         */
  --mint-ink: #04231B;
  --paper:    #F6F5F1;   /* light section background       */
  --paper-2:  #FFFFFF;
  --slate:    #56606F;   /* muted text on light            */
  --charcoal: #16181D;   /* dark text on light             */
  --line-d:   rgba(255,255,255,.09);  /* borders on dark   */
  --line-l:   #E7E3D9;                /* borders on light  */
  --gold-soft: rgba(255,204,0,.14);

  --container: 1180px;
  --radius: 16px;
  --radius-lg: 22px;
  --shadow: 0 24px 60px -28px rgba(0,0,0,.55);
  --shadow-gold: 0 18px 44px -18px rgba(255,204,0,.45);

  --f-display: 'Archivo', system-ui, sans-serif;
  --f-body: 'Hanken Grotesk', system-ui, sans-serif;
  --f-mono: 'Space Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  font-family: var(--f-body);
  background: var(--ink);
  color: #EDEDF0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  font-family: var(--f-display);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0;
  font-weight: 800;
}

p { margin: 0 0 1em; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

/* ---- Eyebrow / section headers ---------------------------------------- */
.eyebrow {
  font-family: var(--f-mono);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .6em;
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--gold);
  display: inline-block;
}
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.section-head p { margin-top: 16px; font-size: 1.08rem; color: #B9BDC6; }
.on-light .section-head p { color: var(--slate); }

/* ---- Buttons ---------------------------------------------------------- */
.btn {
  --b: var(--gold);
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -.01em;
  padding: 15px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--gold); color: #1A1400; box-shadow: var(--shadow-gold); }
.btn-primary:hover { transform: translateY(-2px); background: #FFD633; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.28); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.on-light .btn-ghost { color: var(--charcoal); border-color: #C9C4B8; }
.on-light .btn-ghost:hover { color: var(--gold-2); border-color: var(--gold-2); }
.btn-mint { background: var(--mint); color: var(--mint-ink); }
.btn-mint:hover { transform: translateY(-2px); background: #34E0AF; }
.btn-sm { padding: 11px 20px; font-size: .92rem; }

.link-arrow {
  font-family: var(--f-mono); font-size: .9rem; font-weight: 700;
  color: var(--gold); display: inline-flex; align-items: center; gap: .4em;
  transition: gap .2s ease;
}
.link-arrow:hover { gap: .8em; }
.on-light .link-arrow { color: var(--gold-2); }

/* ---- Navigation ------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,12,14,.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-d);
  transition: background .25s ease, box-shadow .25s ease;
}
.nav.scrolled { background: rgba(11,12,14,.94); box-shadow: 0 10px 30px -20px #000; }
.nav-inner { display: flex; align-items: center; gap: 28px; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 11px; }
.nav-logo img { height: 40px; width: auto; }
.nav-logo .wordmark { font-family: var(--f-display); font-weight: 900; font-size: 1.06rem; letter-spacing: -.02em; color: #fff; line-height: 1; }
.nav-logo .wordmark b { color: var(--gold); }
.nav-links { display: flex; gap: 26px; margin-left: auto; align-items: center; }
.nav-links a { font-size: .96rem; font-weight: 600; color: #C9CDD5; transition: color .16s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { margin-left: 6px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: .25s; }

/* ---- Sections --------------------------------------------------------- */
.section { padding-block: clamp(64px, 9vw, 116px); position: relative; }
.section.on-light { background: var(--paper); color: var(--charcoal); }
.section.on-ink-2 { background: var(--ink-2); }
.section.tight { padding-block: clamp(44px, 6vw, 72px); }

/* ---- Hero ------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; padding-top: clamp(48px, 7vw, 84px); padding-bottom: 0; }
.hero::before { /* vend glow */
  content: ""; position: absolute; inset: -20% 30% auto -10%;
  height: 620px;
  background: radial-gradient(closest-side, rgba(255,204,0,.20), rgba(255,204,0,0) 72%);
  pointer-events: none; z-index: 0;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.08fr .92fr; gap: 48px; align-items: center;
}
.hero h1 { font-size: clamp(2.5rem, 5.4vw, 4.15rem); font-weight: 900; }
.hero h1 .hl { color: var(--gold); }
.hero-sub { font-size: 1.18rem; color: #C7CBD3; max-width: 560px; margin-top: 22px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; align-items: center; }
.hero-quote-link { margin-left: 4px; }
.trust-chips { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line-d); }
.trust-chips li { list-style: none; font-family: var(--f-mono); font-size: .82rem; color: #AEB3BD; display: flex; align-items: center; gap: .5em; }
.trust-chips li::before { content: "✓"; color: var(--mint); font-weight: 700; }
.hero-machine { position: relative; }
.hero-machine .frame {
  position: relative;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #16181e, #0A0B0E);
  border: 1px solid var(--line-d);
  box-shadow: var(--shadow);
}
.hero-machine .frame::after { /* soft floor glow */
  content: ""; position: absolute; left: 10%; right: 10%; bottom: -26px; height: 40px;
  background: radial-gradient(closest-side, rgba(255,204,0,.28), transparent 70%);
  filter: blur(6px);
}
.hero-machine img { margin-inline: auto; max-height: 500px; }
.hero-badge {
  position: absolute; top: 8px; right: 8px; z-index: 2;
  background: var(--mint); color: var(--mint-ink);
  font-family: var(--f-mono); font-weight: 700; font-size: .76rem;
  padding: 8px 14px; border-radius: 999px;
  transform: rotate(3deg);
  box-shadow: var(--shadow);
}

/* ---- Benefit strip ---------------------------------------------------- */
.benefits { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.benefit {
  position: relative;
  background: var(--ink-3);
  border: 1px solid var(--line-d);
  border-radius: var(--radius);
  padding: 22px 18px;
  transition: transform .2s ease, border-color .2s ease;
}
.benefit:hover { transform: translateY(-4px); border-color: rgba(255,204,0,.4); }
.benefit .code { position: absolute; top: 12px; right: 14px; font-family: var(--f-mono); font-size: .7rem; color: var(--gold); opacity: .8; }
.benefit .ic { width: 30px; height: 30px; color: var(--gold); margin-bottom: 14px; }
.benefit h3 { font-size: 1.02rem; font-weight: 700; letter-spacing: -.01em; }

/* ---- Reason cards (Why choose us) ------------------------------------- */
.reasons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.reason {
  position: relative;
  background: var(--paper-2);
  border: 1px solid var(--line-l);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.reason:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.reason .code { font-family: var(--f-mono); font-size: .74rem; font-weight: 700; color: var(--gold-2); letter-spacing: .1em; }
.reason .ic { width: 34px; height: 34px; color: var(--charcoal); margin: 14px 0 16px; }
.reason h3 { font-size: 1.24rem; color: var(--charcoal); margin-bottom: 8px; }
.reason p { color: var(--slate); margin: 0; font-size: .98rem; }

/* ---- How it works (real sequence → numbered) -------------------------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding: 30px 26px; border: 1px solid var(--line-d); border-radius: var(--radius); background: var(--ink-3); }
.step .num {
  font-family: var(--f-display); font-weight: 900; font-size: 2.4rem; color: var(--gold);
  line-height: 1; display: block; margin-bottom: 14px;
}
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { color: #B7BCC5; margin: 0; }
.step:not(:last-child)::after {
  content: "→"; position: absolute; right: -22px; top: 50%; transform: translateY(-50%);
  color: var(--gold); font-size: 1.4rem; z-index: 2;
}

/* ---- Machine option cards --------------------------------------------- */
.machine-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.mcard {
  display: flex; flex-direction: column;
  background: var(--ink-3); border: 1px solid var(--line-d); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform .22s ease, border-color .22s ease;
}
.mcard:hover { transform: translateY(-6px); border-color: rgba(255,204,0,.45); }
.mcard .art {
  background: radial-gradient(120% 100% at 50% 0%, rgba(255,204,0,.12), transparent 60%), #0E1014;
  padding: 26px 26px 0; text-align: center;
}
.mcard .art img { margin-inline: auto; max-height: 260px; }
.mcard .body { padding: 24px 26px 28px; }
.mcard .kicker { font-family: var(--f-mono); font-size: .74rem; color: var(--mint); letter-spacing: .1em; }
.mcard h3 { font-size: 1.4rem; margin: 8px 0 8px; }
.mcard p { color: #B7BCC5; font-size: .96rem; }
.mcard .link-arrow { margin-top: 10px; }

/* ---- Locations -------------------------------------------------------- */
.loc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.loc {
  display: flex; align-items: center; gap: 14px;
  background: var(--paper-2); border: 1px solid var(--line-l); border-radius: 14px;
  padding: 20px 22px; transition: transform .18s ease, box-shadow .18s ease;
}
.loc:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.loc .ic { width: 30px; height: 30px; color: var(--gold-2); flex: none; }
.loc span { font-family: var(--f-display); font-weight: 700; color: var(--charcoal); font-size: 1.02rem; }

/* ---- Revenue / value band --------------------------------------------- */
.value-band {
  background:
    radial-gradient(90% 140% at 100% 0%, rgba(255,204,0,.14), transparent 55%),
    linear-gradient(180deg, #101116, #0A0B0E);
  border: 1px solid var(--line-d); border-radius: var(--radius-lg);
  padding: clamp(30px, 5vw, 52px);
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center;
}
.value-band h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.value-band p { color: #C2C6CE; margin-top: 14px; }
.value-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat { background: var(--ink); border: 1px solid var(--line-d); border-radius: 14px; padding: 20px; }
.stat .n { font-family: var(--f-display); font-weight: 900; font-size: 2.1rem; color: var(--gold); line-height: 1; }
.stat .l { font-size: .9rem; color: #AEB3BD; margin-top: 6px; }

/* ---- Big CTA ---------------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; text-align: center; background: var(--gold); color: #1A1400; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, rgba(0,0,0,.05) 0 2px, transparent 2px 26px);
  opacity: .5;
}
.cta-band .container { position: relative; }
.cta-band h2 { font-size: clamp(2rem, 4.6vw, 3.2rem); font-weight: 900; max-width: 860px; margin-inline: auto; }
.cta-band p { font-size: 1.14rem; margin: 18px auto 30px; max-width: 620px; color: #382e00; }
.cta-band .btn-primary { background: #111; color: #FFCC00; box-shadow: 0 18px 40px -18px rgba(0,0,0,.5); }
.cta-band .btn-primary:hover { background: #000; }
.cta-band .btn-ghost { border-color: rgba(0,0,0,.35); color: #1A1400; }
.cta-band .btn-ghost:hover { border-color: #111; color: #111; }

/* ---- Footer ----------------------------------------------------------- */
.footer { background: #08090B; border-top: 1px solid var(--line-d); padding-block: 60px 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer .brand-line { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer .brand-line img { height: 44px; }
.footer .brand-line .wordmark { font-family: var(--f-display); font-weight: 900; font-size: 1.15rem; }
.footer .brand-line .wordmark b { color: var(--gold); }
.footer p { color: #8A909B; font-size: .95rem; max-width: 320px; }
.footer h4 { font-family: var(--f-display); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul a, .footer ul li { color: #A9AEB8; font-size: .95rem; }
.footer ul a:hover { color: var(--gold); }
.footer .contact-line { display: flex; align-items: center; gap: 9px; }
.footer .contact-line svg { width: 16px; height: 16px; color: var(--gold); flex: none; }
.footer-bottom { border-top: 1px solid var(--line-d); margin-top: 44px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: #6E747E; font-size: .85rem; font-family: var(--f-mono); }

/* ---- Reveal on scroll ------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ==========================================================================
   Interior pages (About / Machines / Contact)
   ========================================================================== */
.page-hero { padding-block: clamp(56px, 8vw, 96px) clamp(40px, 6vw, 64px); position: relative; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; inset: -30% 0 auto 40%; height: 400px;
  background: radial-gradient(closest-side, rgba(255,204,0,.16), transparent 70%);
}
.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); font-weight: 900; max-width: 780px; }
.page-hero .lede { font-size: 1.2rem; color: #C7CBD3; max-width: 640px; margin-top: 20px; }

/* About */
.mvv { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.mvv .card { background: var(--paper-2); border: 1px solid var(--line-l); border-radius: var(--radius); padding: 30px 28px; }
.mvv .card .ic { width: 34px; height: 34px; color: var(--gold-2); margin-bottom: 14px; }
.mvv .card h3 { color: var(--charcoal); font-size: 1.35rem; margin-bottom: 10px; }
.mvv .card p { color: var(--slate); margin: 0; }
.story { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.story .prose p { color: #C4C8D0; font-size: 1.06rem; }
.story .prose p:first-of-type { font-size: 1.18rem; color: #E7E9ED; }
.story-aside { background: var(--ink-3); border: 1px solid var(--line-d); border-radius: var(--radius-lg); padding: 32px; }
.story-aside h3 { color: var(--gold); font-size: 1.05rem; font-family: var(--f-mono); letter-spacing: .06em; margin-bottom: 18px; text-transform: uppercase; }
.values-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.values-list li { display: flex; gap: 14px; align-items: flex-start; }
.values-list .v-code { font-family: var(--f-mono); color: var(--gold); font-weight: 700; font-size: .82rem; flex: none; padding-top: 3px; }
.values-list strong { color: #fff; }
.values-list span { color: #AEB3BD; display: block; font-size: .95rem; }

.service-area { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.area-chips li { list-style: none; font-family: var(--f-mono); font-size: .84rem; padding: 9px 14px; border-radius: 999px; border: 1px solid var(--line-l); color: var(--charcoal); background: #fff; }

/* Machines */
.machine-nav { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.machine-nav a { font-family: var(--f-mono); font-size: .86rem; padding: 10px 18px; border-radius: 999px; border: 1px solid var(--line-d); color: #D6D9DF; transition: .18s; }
.machine-nav a:hover { border-color: var(--gold); color: var(--gold); }

.spec-block { display: grid; grid-template-columns: .95fr 1.05fr; gap: 48px; align-items: center; scroll-margin-top: 96px; }
.spec-block.flip { grid-template-columns: 1.05fr .95fr; }
.spec-block.flip .spec-art { order: 2; }
.spec-art {
  background: radial-gradient(120% 100% at 50% 0%, rgba(255,204,0,.12), transparent 60%);
  border: 1px solid var(--line-d); border-radius: var(--radius-lg); padding: 30px; text-align: center;
}
.spec-art img { margin-inline: auto; max-height: 440px; }
.spec-content .kicker { font-family: var(--f-mono); color: var(--mint); letter-spacing: .12em; font-size: .8rem; text-transform: uppercase; }
.spec-content h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin: 12px 0 14px; }
.spec-content > p { color: #C2C6CE; max-width: 520px; }
.spec-table { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 0; border-top: 1px solid var(--line-d); }
.spec-table li { display: grid; grid-template-columns: 190px 1fr; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line-d); }
.spec-table .k { font-family: var(--f-mono); font-size: .82rem; color: #8E94A0; letter-spacing: .04em; text-transform: uppercase; }
.spec-table .val { color: #E7E9ED; font-weight: 600; }
.feature-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.feature-pills li { list-style: none; display: flex; align-items: center; gap: .5em; font-size: .86rem; font-family: var(--f-mono); color: #CBD0D8; background: var(--ink-3); border: 1px solid var(--line-d); padding: 8px 14px; border-radius: 999px; }
.feature-pills li svg { width: 15px; height: 15px; color: var(--mint); }

/* Contact / forms */
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: start; }
.form-card { background: var(--ink-3); border: 1px solid var(--line-d); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--f-mono); font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: #9CA2AE; margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--f-body); font-size: 1rem; color: #fff;
  background: var(--ink); border: 1px solid var(--line-d); border-radius: 12px; padding: 13px 15px;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-card .btn-primary { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: .82rem; color: #7E848F; margin-top: 14px; text-align: center; }

.contact-aside .info-block { padding: 22px 0; border-bottom: 1px solid var(--line-d); }
.contact-aside .info-block:first-child { padding-top: 0; }
.contact-aside .ic-row { display: flex; gap: 14px; align-items: flex-start; }
.contact-aside .ic-row svg { width: 22px; height: 22px; color: var(--gold); flex: none; margin-top: 3px; }
.contact-aside h3 { font-size: 1.05rem; margin-bottom: 4px; }
.contact-aside a, .contact-aside p { color: #B7BCC5; margin: 0; }
.contact-aside a:hover { color: var(--gold); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-machine { max-width: 440px; margin-inline: auto; }
  .benefits { grid-template-columns: repeat(3, 1fr); }
  .reasons { grid-template-columns: repeat(2, 1fr); }
  .machine-cards { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .loc-grid { grid-template-columns: repeat(2, 1fr); }
  .value-band, .story, .service-area, .contact-grid { grid-template-columns: 1fr; }
  .spec-block, .spec-block.flip { grid-template-columns: 1fr; }
  .spec-block.flip .spec-art { order: 0; }
  .mvv { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .step:not(:last-child)::after { display: none; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--ink-2); border-bottom: 1px solid var(--line-d); padding: 18px 24px; gap: 16px;
  }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .benefits { grid-template-columns: 1fr 1fr; }
  .reasons, .steps, .loc-grid, .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }
