/* ============================================================
   Premier Locator Services — Redesign 2026
   Editorial, boutique-luxury system: deep navy + champagne gold
   ============================================================ */

:root {
  --ink: #111111;          /* near-black, matches logo */
  --ink-soft: #2a1010;     /* dark warm near-black */
  --red: #C81020;          /* logo red — outer ring / accent */
  --red-bright: #E53020;   /* logo bright red-orange — hover / highlight */
  --cream: #FAF8F7;        /* warm white background */
  --paper: #FFFFFF;
  --stone: #6b6b6b;
  --line: rgba(17, 17, 17, 0.1);
  --radius: 18px;
  --shadow: 0 20px 50px -22px rgba(17, 17, 17, 0.32);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
}

.wrap { width: min(1180px, 92%); margin-inline: auto; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  padding: 0.45rem 0;
}
.topbar .wrap { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.topbar a { color: #ff9080; font-weight: 600; }
.topbar .tagline { letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.7rem; opacity: 0.8; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, backdrop-filter .35s ease, border-color .35s ease;
}
.nav.scrolled {
  background: rgba(250, 247, 241, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
/* Over the hero (not yet scrolled) — light nav links + hamburger */
.nav:not(.scrolled) .nav-links a { color: rgba(255, 255, 255, 0.92); }
.nav:not(.scrolled) .nav-toggle span { background: #fff; }
/* On the white bar — dark gray from the logo */
.nav.scrolled .nav-toggle span { background: #3d3d3d; }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; padding: 0.25rem 0; }
.brand { display: flex; align-items: center; gap: 0.65rem; }
.brand-mark {
  width: 72px; height: 72px; border-radius: 0;
  background: transparent;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.brand-mark img { width: 72px; height: 72px; object-fit: contain; }
.nav .brand-mark, .nav .brand-mark img { width: 92px; height: 92px; }
.brand-name { font-family: var(--font-display); font-size: 1.12rem; font-weight: 700; line-height: 1.1; }
.brand-name small { display: block; font-family: var(--font-body); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--red); }

.nav-links { display: flex; align-items: center; gap: 1.9rem; list-style: none; }
.nav-links a { font-size: 0.92rem; font-weight: 500; color: var(--ink-soft); position: relative; padding: 0.25rem 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--red); transition: width 0.25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--ink); color: #fff;
  padding: 0.78rem 1.6rem; border-radius: 999px;
  font-weight: 600; font-size: 0.92rem; border: none; cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); background: #333; }
.btn.gold { background: linear-gradient(120deg, var(--red), var(--red-bright)); color: #fff; }
.btn.gold:hover { background: linear-gradient(120deg, var(--red-bright), var(--red)); }
.btn.ghost { background: transparent; border: 1.5px solid rgba(255, 255, 255, 0.55); color: #fff; }
.btn.ghost:hover { background: rgba(255, 255, 255, 0.12); }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 6px;
  width: 40px; height: 40px; padding: 0;
  background: none; border: none; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 30px; height: 2.5px; border-radius: 2px;
  background: var(--ink);
  transition: transform .3s ease, opacity .25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* ---------- Hero (video) ---------- */
.hero {
  position: relative; min-height: 86vh;
  display: flex; align-items: center;
  color: #fff; overflow: hidden;
  background: #0a0a0a;
}
.hero-media, .hero-media video, .hero-fallback {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
/* Crossfading video loop */
.video-loop video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1.1s ease;
}
.video-loop video.active { opacity: 1; }
.hero-fallback {
  background:
    linear-gradient(rgba(10,10,10,0.25), rgba(10,10,10,0.25)),
    url("https://images.unsplash.com/photo-1575917649705-5b59aaa12e6b?auto=format&fit=crop&w=2000&q=70") center/cover;
  animation: kenburns 28s ease-in-out infinite alternate;
}
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.12); } }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,10,10,0.9) 18%, rgba(10,10,10,0.6) 55%, rgba(10,10,10,0.28));
}
.hero .wrap { position: relative; z-index: 2; padding: 7rem 0 6rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red); margin-bottom: 1.3rem;
}
.hero .eyebrow, .page-hero .eyebrow { color: #fff; display: block; }
.hero h1 { font-size: clamp(2.6rem, 5.6vw, 4.4rem); max-width: 15ch; margin-bottom: 1.4rem; }
.hero h1 em { font-style: italic; color: #ff8070; }
.hero p.lede { font-size: clamp(1.02rem, 1.6vw, 1.22rem); max-width: 52ch; color: rgba(255,255,255,0.85); margin-bottom: 2.2rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 2.4rem; flex-wrap: wrap; margin-top: 3.4rem; }
.hero-badges div strong { display: block; font-family: var(--font-display); font-size: 1.7rem; color: #ff8070; }
.hero-badges div span { font-size: 0.82rem; color: rgba(255,255,255,0.75); }

/* ---------- Sections ---------- */
section { padding: 5.5rem 0; }
.section-head { max-width: 640px; margin-bottom: 3.2rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin: 0.5rem 0 1rem; }
.section-head p { color: var(--stone); font-size: 1.04rem; }

/* Cards */
.grid { display: grid; gap: 1.4rem; }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2rem 1.7rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card .icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(200,16,32,0.12), rgba(229,48,32,0.22));
  display: grid; place-items: center; font-size: 1.4rem; margin-bottom: 1.2rem;
}
.card h3 { font-size: 1.18rem; margin-bottom: 0.6rem; }
.card p { font-size: 0.93rem; color: var(--stone); }

/* Dark band */
.band {
  position: relative;
  background-color: var(--ink); color: #fff;
  background-image: linear-gradient(100deg, rgba(10,10,10,0.92) 30%, rgba(10,10,10,0.72) 70%, rgba(10,10,10,0.6)), url("https://images.unsplash.com/photo-1575917649705-5b59aaa12e6b?auto=format&fit=crop&w=1600&q=70");
  background-size: cover; background-position: center;
  border-radius: 28px; padding: 4rem clamp(1.6rem, 5vw, 4.5rem);
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3rem; align-items: center;
}
.band h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.band h2 em { color: #ff8070; font-style: italic; }
.band p { color: rgba(255,255,255,0.8); }
.band .big {
  font-family: var(--font-display); font-size: clamp(3.4rem, 7vw, 5.4rem);
  color: #ff8070; line-height: 1; text-align: center;
}
.band .big small { display: block; font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 0.8rem; }

/* Referral callout — the must-write-this-down spotlight */
.referral-callout {
  margin: 1.6rem 0 1rem;
  border: 2px dashed rgba(255, 128, 112, 0.55);
  border-radius: 18px; padding: 1.4rem 1.6rem;
  background: rgba(200, 16, 32, 0.14);
}
.referral-label {
  display: block; font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78); margin-bottom: 0.7rem;
}
.referral-phrase {
  display: block; font-family: var(--font-display); font-style: italic;
  font-size: clamp(2rem, 6vw, 3.4rem); line-height: 1.04;
  color: #ff8070; letter-spacing: 0.5px;
}
.referral-note { font-size: 0.95rem; }

/* Comparison table */
.compare-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.cmp-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
}
.cmp-card h3 { font-family: var(--font-display); font-size: 1.18rem; margin-bottom: 0.9rem; }
.cmp-opt {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.7rem 0; border-top: 1px solid var(--line);
}
.cmp-opt .cmp-label { font-size: 0.86rem; color: var(--muted); }
.cmp-opt .cmp-val { font-size: 0.9rem; font-weight: 700; text-align: right; }
.cmp-val.good { color: #1a7f4b; }
.cmp-val.bad { color: #b3433f; }
.cmp-opt.premier {
  margin: 0 -1.5rem; padding: 0.7rem 1.5rem;
  background: rgba(200,16,32,0.08); border-top: none;
  border-left: 3px solid var(--red);
}
.cmp-opt.premier .cmp-label { color: var(--ink); font-weight: 700; }
.cmp-card .cmp-opt.premier + .cmp-opt { border-top: none; }
@media (max-width: 720px) { .compare-cards { grid-template-columns: 1fr; } }

/* Neighborhoods */
.hoods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.hood {
  position: relative; border-radius: var(--radius); overflow: hidden; height: 240px;
  display: flex; align-items: flex-end; color: #fff;
}
.hood img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.hood:hover img { transform: scale(1.07); }
.hood::after { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(13,22,40,0) 40%, rgba(13,22,40,0.85)); }
.hood span { position: relative; z-index: 2; padding: 1.2rem 1.4rem; font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; }

/* Steps (process) */
.steps { display: grid; gap: 0; position: relative; }
.step {
  display: grid; grid-template-columns: 90px 1fr; gap: 1.6rem;
  padding: 2.2rem 0; border-bottom: 1px solid var(--line);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 700;
  color: transparent; -webkit-text-stroke: 1.5px var(--red);
}

/* ============================================================
   Animated icon cards
   ============================================================ */
.icon-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2rem 1.7rem;
  position: relative; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.icon-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,16,32,0.04) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.35s ease;
}
.icon-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: rgba(200,16,32,0.2); }
.icon-card:hover::before { opacity: 1; }

.icon-wrap {
  width: 68px; height: 68px; border-radius: 20px; margin-bottom: 1.4rem;
  background: linear-gradient(135deg, rgba(200,16,32,0.1), rgba(229,48,32,0.18));
  display: flex; align-items: center; justify-content: center;
  position: relative; transition: transform 0.35s ease;
}
.icon-card:hover .icon-wrap { transform: scale(1.1); }

.icon-wrap svg { width: 34px; height: 34px; display: block; }
.icon-card h3 { font-size: 1.18rem; margin-bottom: 0.55rem; }
.icon-card p { font-size: 0.93rem; color: var(--stone); }

/* SVG stroke animations */
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes bounce-y { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes pulse-scale { 0%,100% { transform: scale(1); } 50% { transform: scale(1.12); } }
@keyframes wave-key { 0%,100% { transform: rotate(-8deg); } 50% { transform: rotate(8deg); } }
@keyframes draw-in {
  from { stroke-dashoffset: 200; opacity: 0; }
  to { stroke-dashoffset: 0; opacity: 1; }
}

.icon-card:hover .anim-spin { animation: spin-slow 1.8s linear infinite; transform-origin: center; }
.icon-card:hover .anim-bounce { animation: bounce-y 0.6s ease infinite; }
.icon-card:hover .anim-pulse { animation: pulse-scale 0.7s ease infinite; }
.icon-card:hover .anim-wave { animation: wave-key 0.5s ease infinite; transform-origin: bottom left; }

/* Entrance dot / glow ring on icon wrap */
.icon-wrap::after {
  content: ""; position: absolute; inset: -4px; border-radius: 24px;
  border: 2px solid rgba(200,16,32,0.3);
  opacity: 0; transform: scale(0.85); transition: opacity 0.35s ease, transform 0.35s ease;
}
.icon-card:hover .icon-wrap::after { opacity: 1; transform: scale(1); }

/* Photo cards (replaces icon cards) */
.photo-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.photo-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: rgba(200,16,32,0.2); }
.photo-wrap { aspect-ratio: 4 / 3; overflow: hidden; }
.photo-wrap img,
.photo-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.photo-card:hover .photo-wrap img,
.photo-card:hover .photo-wrap video { transform: scale(1.06); }
.photo-body { padding: 1.4rem 1.5rem 1.6rem; }
.photo-body h3 { font-size: 1.18rem; margin-bottom: 0.5rem; }
.photo-body p { font-size: 0.93rem; color: var(--stone); }

/* Women-of-color feature blocks */
.women-feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem;
}
.woman-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--ink); aspect-ratio: 3/4;
}
.woman-card img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform 0.5s ease;
}
.woman-card:hover img { transform: scale(1.04); }
.woman-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(rgba(0,0,0,0) 50%, rgba(0,0,0,0.75));
}
.woman-card .caption {
  position: absolute; bottom: 1.4rem; left: 1.4rem; right: 1.4rem;
  color: #fff; font-family: var(--font-display); font-size: 1.15rem;
}
.woman-card .caption small {
  display: block; font-family: var(--font-body); font-size: 0.8rem;
  color: rgba(255,255,255,0.75); margin-top: 0.25rem;
}

/* Quote card stars */
.quote-card .stars { color: var(--red); }
.step h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.step p { color: var(--stone); max-width: 62ch; }

/* Testimonials */
.quote-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.8rem; }
.quote-card .stars { color: var(--red); letter-spacing: 0.15em; margin-bottom: 0.9rem; }
.quote-card p { font-size: 0.96rem; color: var(--ink-soft); margin-bottom: 1.2rem; }
.quote-card footer { font-size: 0.85rem; font-weight: 600; }
.quote-card footer span { display: block; color: var(--stone); font-weight: 400; }

/* FAQ accordion */
.faq-list { max-width: 780px; margin-inline: auto; }
details {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 14px; margin-bottom: 0.9rem; overflow: hidden;
}
details summary {
  list-style: none; cursor: pointer; padding: 1.25rem 1.5rem;
  font-weight: 600; font-size: 1.02rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
details summary::-webkit-details-marker { display: none; }
details summary::after { content: "+"; font-size: 1.5rem; color: var(--red); transition: transform 0.25s ease; }
details[open] summary::after { transform: rotate(45deg); }
details .answer { padding: 0 1.5rem 1.4rem; color: var(--stone); font-size: 0.95rem; }

/* CTA strip */
.cta-strip {
  background: linear-gradient(120deg, var(--ink), #2a0808);
  color: #fff; text-align: center;
  border-radius: 28px; padding: 4.2rem 2rem; position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ""; position: absolute; inset: -40%;
  background: radial-gradient(circle at 70% 30%, rgba(200,16,32,0.28), transparent 55%);
}
.cta-strip > * { position: relative; }
.cta-strip h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); margin-bottom: 0.9rem; }
.cta-strip p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; }

/* Page hero (inner pages) */
.page-hero {
  position: relative; padding: 9rem 0 5rem; color: #fff; background: #0a0a0a; overflow: hidden;
}
.page-hero .bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; opacity: 0.35; }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); max-width: 18ch; }
.page-hero p { max-width: 56ch; color: rgba(255,255,255,0.82); margin-top: 1rem; }

/* Forms */
.form-shell { background: var(--paper); border: 1px solid var(--line); border-radius: 24px; padding: clamp(1.6rem, 4vw, 3rem); box-shadow: var(--shadow); }
fieldset { border: none; margin-bottom: 2.4rem; }
legend {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
  margin-bottom: 1.2rem; padding-top: 0.4rem;
  display: flex; align-items: center; gap: 0.7rem;
}
legend::before { content: ""; width: 26px; height: 2px; background: var(--gold); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-grid .full { grid-column: 1 / -1; }
label.field { display: block; font-size: 0.83rem; font-weight: 600; }
label.field span.req { color: #b3433f; }
input[type="text"], input[type="email"], input[type="tel"], input[type="date"],
select, textarea {
  width: 100%; margin-top: 0.4rem;
  padding: 0.8rem 1rem; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: var(--font-body); font-size: 0.95rem; background: var(--cream);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(200,16,32,0.15);
}
.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chips label {
  border: 1.5px solid var(--line); border-radius: 999px; padding: 0.5rem 1.1rem;
  font-size: 0.86rem; cursor: pointer; background: var(--cream); user-select: none;
  transition: all 0.2s ease;
}
.chips input { display: none; }
.chips label:has(input:checked) { background: var(--red); color: #fff; border-color: var(--red); }
.radio-row { display: flex; gap: 1.4rem; flex-wrap: wrap; margin-top: 0.5rem; font-size: 0.92rem; }
.radio-row label { display: flex; align-items: center; gap: 0.45rem; cursor: pointer; }
.consent { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.85rem; color: var(--stone); margin-bottom: 1rem; }
.consent input { margin-top: 0.3rem; }

/* Footer */
footer.site {
  background: #0a0a0a; color: rgba(255,255,255,0.78);
  padding: 4rem 0 2rem; margin-top: 5rem;
}
footer.site .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.6rem; }
footer.site h4 { color: #fff; font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1rem; }
footer.site a:hover { color: #ff8070; }
footer.site ul { list-style: none; display: grid; gap: 0.55rem; font-size: 0.92rem; }
footer.site .legal { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.6rem; font-size: 0.8rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .hoods { grid-template-columns: repeat(2, 1fr); }
  .band { grid-template-columns: 1fr; text-align: center; }
  footer.site .cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav .brand-mark, .nav .brand-mark img { width: 60px; height: 60px; }
  .nav-links {
    position: fixed; inset: 68px 0 auto 0; flex-direction: column; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    display: none; padding: 1rem 0;
  }
  .nav-links.open { display: flex; }
  .nav:not(.scrolled) .nav-links a { color: var(--ink-soft); }
  .nav-links li { width: 100%; text-align: center; padding: 0.8rem 0; }
  .nav-toggle { display: flex; }
  .nav .btn { display: none; }
  .grid.cols-4, .grid.cols-3, .grid.cols-2, .hoods { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 56px 1fr; gap: 1rem; }
  .step-num { font-size: 1.9rem; }
  section { padding: 3.6rem 0; }
  .hero { min-height: 78vh; }
  footer.site .cols { grid-template-columns: 1fr; }
}
