/* ============================================================
   RJ Snowplowing, Landscaping & Property Maintenance
   ============================================================ */

:root {
  --red: #d21f2c;
  --red-dark: #a51420;
  --black: #0e0e12;
  --ink: #17171c;
  --ink-soft: #43434c;
  --muted: #84848e;
  --line: #e7e7ea;
  --paper: #f7f7f6;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(14, 14, 18, .08);
  --shadow-lg: 0 24px 60px rgba(14, 14, 18, .16);
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Archivo', 'Inter', system-ui, sans-serif;
  --header-h: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }

.container { width: min(1160px, 100% - 2.5rem); margin-inline: auto; }

h1, h2, h3, legend {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  letter-spacing: -.01em;
  line-height: 1.08;
  text-transform: uppercase;
}

.accent { color: var(--red); }

.kicker {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .9rem;
  position: relative;
  padding-left: 2.4rem;
}
.kicker::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 1.7rem; height: 3px;
  background: var(--red);
  transform: translateY(-50%) skewX(-20deg);
}
.kicker.light { color: #ff5a66; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: .95rem 1.9rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn:active { transform: scale(.97); }

.btn-red { background: var(--red); color: #fff; box-shadow: 0 8px 24px rgba(210, 31, 44, .35); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(210, 31, 44, .45); }

.btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .35); }
.btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .08); transform: translateY(-2px); }

.btn-ghost-dark { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost-dark:hover { border-color: var(--ink); }

.btn-white { background: #fff; color: var(--red); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0, 0, 0, .25); }

.btn-sm { padding: .6rem 1.35rem; font-size: .9rem; }
.btn-lg { padding: 1.1rem 2.3rem; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(14, 14, 18, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 1rem; }

.brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; min-width: 0; }
.brand-logo { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex-shrink: 0; box-shadow: 0 0 0 2px rgba(255,255,255,.15); }
.brand-text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.05;
  display: flex;
  flex-direction: column;
}
.brand-text em { color: var(--red); font-style: italic; }
.brand-text small {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  font-size: .58rem;
  letter-spacing: .18em;
  color: rgba(255, 255, 255, .55);
  margin-top: 2px;
}

.site-nav { display: flex; align-items: center; gap: 1.8rem; }
.site-nav > a:not(.btn) {
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  transition: color .15s ease;
}
.site-nav > a:not(.btn):hover { color: #fff; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .5rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--black);
  color: #fff;
  padding: calc(var(--header-h) + clamp(3.5rem, 9vw, 7rem)) 0 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(52% 60% at 82% 12%, rgba(210, 31, 44, .28), transparent 65%),
    radial-gradient(40% 50% at 8% 85%, rgba(210, 31, 44, .14), transparent 60%),
    linear-gradient(180deg, #101016 0%, #0e0e12 100%);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(115deg, transparent 46%, rgba(255,255,255,.03) 46%, rgba(255,255,255,.03) 54%, transparent 54%);
}
.hero-inner { position: relative; max-width: 860px; padding-bottom: clamp(3.5rem, 8vw, 6rem); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #ffb3b9;
  background: rgba(210, 31, 44, .14);
  border: 1px solid rgba(210, 31, 44, .45);
  padding: .5rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1.6rem;
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 0 rgba(210, 31, 44, .7); animation: pulse 1.8s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(210, 31, 44, .6); }
  70% { box-shadow: 0 0 0 9px rgba(210, 31, 44, 0); }
  100% { box-shadow: 0 0 0 0 rgba(210, 31, 44, 0); }
}

.hero-title { font-size: clamp(2.5rem, 7vw, 4.9rem); margin-bottom: 1.4rem; }
.hero-title .accent {
  position: relative;
  display: inline-block;
}
.hero-title .accent::after {
  content: "";
  position: absolute;
  left: 2%; right: -2%; bottom: .04em;
  height: .14em;
  background: var(--red);
  opacity: .35;
  transform: skewX(-20deg);
  z-index: -1;
}
.hero-sub { font-size: clamp(1.02rem, 2vw, 1.2rem); color: rgba(255, 255, 255, .72); max-width: 620px; margin-bottom: 2.2rem; }

.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.6rem; }

.hero-checks { display: flex; flex-wrap: wrap; gap: .5rem 1.6rem; list-style: none; }
.hero-checks li { display: flex; align-items: center; gap: .45rem; font-size: .88rem; font-weight: 600; color: rgba(255, 255, 255, .78); }
.hero-checks svg { width: 15px; height: 15px; color: var(--red); flex-shrink: 0; }

/* scrolling service strip */
.hero-strip {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, .09);
  background: rgba(255, 255, 255, .03);
  overflow: hidden;
  padding: .95rem 0;
}
.strip-track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.strip-track span {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  font-size: .95rem;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .55);
  white-space: nowrap;
}
.strip-track i { color: var(--red); font-style: normal; font-size: .6rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Sections ---------- */
.section { padding: clamp(4rem, 9vw, 7rem) 0; }

.section-head { max-width: 640px; margin-bottom: clamp(2.2rem, 5vw, 3.5rem); }
.section-head h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); margin-bottom: .8rem; }
.section-sub { color: var(--ink-soft); font-size: 1.05rem; }

/* ---------- Services ---------- */
.services { background: var(--paper); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleY(1); }

.service-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: 0 8px 20px rgba(210, 31, 44, .3);
  margin-bottom: .4rem;
}
.service-icon svg { width: 30px; height: 30px; }

.service-card h3 { font-size: 1.22rem; }
.service-card p { color: var(--ink-soft); font-size: .95rem; flex-grow: 1; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--red);
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
  margin-top: .3rem;
}
.service-link svg { width: 16px; height: 16px; transition: transform .18s ease; }
.service-link:hover svg { transform: translateX(4px); }

.service-card-cta {
  background: linear-gradient(140deg, var(--red) 0%, var(--red-dark) 100%);
  border: 0;
  color: #fff;
  justify-content: center;
}
.service-card-cta h3 { color: #fff; }
.service-card-cta p { color: rgba(255, 255, 255, .85); flex-grow: 0; margin-bottom: 1rem; }

/* ---------- Why RJ ---------- */
.why-inner {
  display: grid;
  grid-template-columns: minmax(280px, 440px) 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.why-media { position: relative; }
.why-media img {
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.why-content h2 { font-size: clamp(1.9rem, 4.4vw, 2.9rem); margin-bottom: 1rem; }
.why-content > p.reveal { color: var(--ink-soft); margin-bottom: 1.8rem; max-width: 560px; }

.why-list { list-style: none; display: grid; gap: 1.05rem; }
.why-list li { display: flex; gap: .9rem; align-items: flex-start; }
.why-list svg {
  width: 22px; height: 22px;
  padding: 4px;
  flex-shrink: 0;
  color: #fff;
  background: var(--red);
  border-radius: 8px;
  margin-top: 2px;
}
.why-list strong { display: block; font-size: 1.02rem; }
.why-list span { color: var(--muted); font-size: .92rem; }

/* ---------- Now Booking ---------- */
.now-booking {
  background: var(--black);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.now-booking::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 50% 0%, rgba(210, 31, 44, .18), transparent 70%);
}
.now-booking .container { position: relative; }
.now-booking .section-head { margin-inline: auto; text-align: center; }
.now-booking .kicker { padding-left: 0; }
.now-booking .kicker::before { display: none; }
.now-booking .section-sub { color: rgba(255, 255, 255, .68); }

.booking-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .7rem;
  max-width: 760px;
  margin: 0 auto 2.4rem;
}
.tag {
  font-weight: 600;
  font-size: .93rem;
  padding: .6rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .88);
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.tag:hover { border-color: var(--red); background: rgba(210, 31, 44, .16); transform: translateY(-2px); }
.tag-more { border-style: dashed; color: #ff8a93; }

.now-booking-cta { text-align: center; }

/* ---------- CTA band (index) ---------- */
.cta-band {
  background:
    radial-gradient(50% 90% at 85% 20%, rgba(210, 31, 44, .12), transparent 65%),
    var(--paper);
  border-top: 1px solid var(--line);
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band-text { max-width: 560px; }
.cta-band-text h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); margin-bottom: .8rem; }
.cta-band-text p { color: var(--ink-soft); font-size: 1.05rem; }
.cta-band-actions { display: flex; flex-direction: column; align-items: center; gap: .7rem; }
.cta-band-note { font-size: .85rem; font-weight: 600; color: var(--muted); }

/* ---------- Booking form ---------- */
.book { background: var(--paper); }

.book-page { padding: calc(var(--header-h) + 1.2rem) 0 clamp(3rem, 7vw, 5rem); }

.book-card-top {
  max-width: 780px;
  margin: 0 auto;
}

.book-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem 1.8rem;
  margin-top: 1.6rem;
}
.book-trust li { display: flex; align-items: center; gap: .45rem; font-size: .88rem; font-weight: 600; color: var(--muted); }
.book-trust svg { width: 15px; height: 15px; color: var(--red); flex-shrink: 0; }

.book-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.progress { height: 5px; background: var(--line); }
.progress-bar {
  height: 100%;
  width: 50%;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
  transition: width .35s ease;
}

#bookForm { padding: clamp(1.6rem, 4vw, 2.6rem); }

.hp-field { position: absolute; left: -9999px; top: -9999px; height: 0; width: 0; opacity: 0; }

.step { display: none; }
.step.is-active { display: block; animation: stepIn .3s ease; }
@keyframes stepIn {
  from { opacity: 0; transform: translateX(14px); }
  to { opacity: 1; transform: none; }
}
.step-title { font-size: 1.45rem; margin-bottom: .4rem; }
.step-hint { color: var(--muted); font-size: .92rem; margin-bottom: 1.2rem; }

.option-row { display: flex; gap: 1rem 2.5rem; flex-wrap: wrap; }
.option-group { min-width: 0; }

/* service chips */
.chip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: .8rem;
  margin-bottom: 1.6rem;
}
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip-body {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  padding: 1rem;
  border: 2px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color .16s ease, background .16s ease, transform .16s ease, box-shadow .16s ease;
  height: 100%;
}
.chip-body:hover { border-color: #c9c9cf; transform: translateY(-2px); }
.chip-icon {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink-soft);
  transition: background .16s ease, color .16s ease;
}
.chip-icon svg { width: 21px; height: 21px; }
.chip-label { font-weight: 700; font-size: .9rem; line-height: 1.25; }
.chip input:checked + .chip-body {
  border-color: var(--red);
  background: #fdf3f4;
  box-shadow: 0 6px 18px rgba(210, 31, 44, .14);
}
.chip input:checked + .chip-body .chip-icon { background: var(--red); color: #fff; }
.chip input:focus-visible + .chip-body { outline: 3px solid rgba(210, 31, 44, .35); outline-offset: 2px; }

/* segmented control */
.field-label { font-weight: 700; font-size: .92rem; margin-bottom: .6rem; }
.segmented {
  display: inline-flex;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 1.6rem;
  max-width: 100%;
}
.segmented.segmented-wrap { flex-wrap: wrap; border-radius: 18px; }
.segmented label { position: relative; }
.segmented input { position: absolute; opacity: 0; pointer-events: none; }
.segmented span {
  display: inline-block;
  padding: .55rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background .16s ease, color .16s ease, box-shadow .16s ease;
  white-space: nowrap;
}
.segmented input:checked + span { background: var(--ink); color: #fff; box-shadow: 0 4px 12px rgba(14, 14, 18, .25); }
.segmented input:focus-visible + span { outline: 3px solid rgba(210, 31, 44, .35); outline-offset: 2px; }

/* fields */
.field-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.field { margin-bottom: 1.15rem; min-width: 0; }
.field-grow { flex: 1 1 200px; }
.field-zip { flex: 0 1 130px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .4rem; }
.field label b { color: var(--red); }
.field label small { color: var(--muted); font-weight: 500; }
.field input, .field textarea {
  width: 100%;
  font: inherit;
  padding: .85rem 1rem;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  transition: border-color .16s ease, box-shadow .16s ease;
}
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(210, 31, 44, .12);
}
.field input.invalid { border-color: var(--red); background: #fdf3f4; }

/* step nav */
.step-nav { display: flex; justify-content: flex-end; gap: .8rem; margin-top: .6rem; flex-wrap: wrap; }
.step-nav .btn-prev { margin-right: auto; }

.form-error {
  display: none;
  margin-top: 1.1rem;
  padding: .85rem 1.1rem;
  border-radius: 12px;
  background: #fdf0f1;
  border: 1px solid #f3c2c6;
  color: var(--red-dark);
  font-weight: 600;
  font-size: .93rem;
}
.form-error.show { display: block; }

/* submit spinner */
.btn-submit .spinner {
  display: none;
  width: 18px; height: 18px;
  border: 2.5px solid rgba(255, 255, 255, .4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.btn-submit.loading { pointer-events: none; opacity: .85; }
.btn-submit.loading .spinner { display: inline-block; }

/* success */
.book-success { padding: clamp(2.4rem, 6vw, 4rem); text-align: center; animation: stepIn .35s ease; }
.success-icon {
  width: 74px; height: 74px;
  margin: 0 auto 1.4rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: 0 14px 34px rgba(210, 31, 44, .4);
}
.success-icon svg { width: 36px; height: 36px; }
.book-success h3 { font-size: 1.7rem; margin-bottom: .7rem; }
.book-success p { color: var(--ink-soft); margin-bottom: .5rem; }
.book-success strong { color: var(--red); letter-spacing: .06em; }
.success-detail { font-size: .95rem; }
.success-note { font-size: .9rem; color: var(--muted); margin-bottom: 1.6rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: #fff; padding: 3.2rem 0 0; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  flex-wrap: wrap;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.footer-brand { display: flex; align-items: center; gap: .9rem; }
.footer-brand img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  text-transform: uppercase;
  font-size: 1.05rem;
}
.footer-brand span { font-size: .78rem; color: rgba(255, 255, 255, .55); letter-spacing: .08em; text-transform: uppercase; }

.footer-tag { font-weight: 600; color: rgba(255, 255, 255, .75); }
.footer-tag em { color: var(--red); font-style: italic; font-weight: 800; }

.footer-nav { display: flex; gap: 1.6rem; }
.footer-nav a { color: rgba(255, 255, 255, .7); text-decoration: none; font-weight: 600; font-size: .92rem; }
.footer-nav a:hover { color: #fff; }

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: .6rem 1.6rem;
  flex-wrap: wrap;
  padding: 1.3rem 0 1.6rem;
  font-size: .8rem;
  color: rgba(255, 255, 255, .45);
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .strip-track { animation: none; }
  .why-media img { animation: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .why-inner { grid-template-columns: 1fr; }
  .why-media { max-width: 300px; margin-inline: auto; }
}

@media (max-width: 760px) {
  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(14, 14, 18, .97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding: .6rem 1.25rem 1.2rem;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: transform .22s ease, opacity .22s ease, visibility .22s;
  }
  .site-nav.open { transform: none; opacity: 1; visibility: visible; }
  .site-nav > a:not(.btn) { padding: .9rem .2rem; border-bottom: 1px solid rgba(255, 255, 255, .07); font-size: 1.05rem; }
  .site-nav .btn { margin-top: 1rem; justify-content: center; }
  .nav-toggle { display: block; }

  .brand-text { font-size: 1rem; }

  .hero-cta .btn { flex: 1 1 auto; justify-content: center; }
  .hero-checks { gap: .5rem 1.1rem; }

  .step-nav { flex-direction: column-reverse; }
  .step-nav .btn { width: 100%; }
  .step-nav .btn-prev { margin-right: 0; }

  .segmented { display: flex; flex-wrap: wrap; border-radius: 18px; }
  .segmented span { padding: .55rem 1rem; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-legal { flex-direction: column; }
}

@media (max-width: 420px) {
  .chip-grid { grid-template-columns: 1fr 1fr; }
  .chip-body { padding: .8rem; }
  .brand-text small { display: none; }
}
