/* Shopframe dealer template — core stylesheet.
   Brand colors come from theme.css (generated per dealer from config). */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-size: 16px;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 .5em; font-weight: 800; letter-spacing: -0.015em; }
p { margin: 0 0 1em; }

:root {
  --ink: #16191f;
  --muted: #5b6472;
  --bg: #f4f5f7;
  --surface: #ffffff;
  --line: #e4e7ec;
  --success: #157f3d;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 1px 2px rgba(16,24,40,.06), 0 6px 18px -4px rgba(16,24,40,.08);
  --shadow-lg: 0 4px 10px rgba(16,24,40,.08), 0 20px 44px -12px rgba(16,24,40,.18);
  --maxw: 1180px;
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section.tight { padding: 40px 0; }
.section.alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brand); margin-bottom: 10px;
}
.section-head { margin-bottom: 32px; }
.section-head h2 { font-size: clamp(24px, 3.4vw, 34px); margin-bottom: 6px; }
.section-head p { color: var(--muted); max-width: 640px; margin: 0; }
.section-head.center { text-align: center; }
.section-head.center p { margin: 0 auto; }
.split-head { display: flex; align-items: end; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ---------- Buttons & badges ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--brand); color: #fff; font-weight: 700; font-size: 15px;
  padding: 12px 22px; border-radius: 10px; border: 1px solid transparent;
  cursor: pointer; transition: background .15s, transform .1s, box-shadow .15s;
  text-decoration: none !important; line-height: 1.2; font-family: inherit;
}
.btn:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn.block { width: 100%; }
.btn.lg { padding: 15px 28px; font-size: 16px; border-radius: 12px; }
.btn.sm { padding: 8px 14px; font-size: 13.5px; border-radius: 8px; }
.btn.ghost { background: transparent; color: var(--brand); border-color: currentColor; }
.btn.ghost:hover { background: color-mix(in srgb, var(--brand) 8%, transparent); }
.btn.inverse { background: #fff; color: var(--brand-dark); }
.btn.inverse:hover { background: #f1f3f6; }
.btn.dark { background: var(--ink); }
.btn.dark:hover { background: #000; }
.badge {
  display: inline-flex; align-items: center; gap: 5px; font-size: 11.5px; font-weight: 700;
  padding: 4px 9px; border-radius: 99px; background: color-mix(in srgb, var(--brand) 10%, #fff);
  color: var(--brand-dark); border: 1px solid color-mix(in srgb, var(--brand) 22%, #fff);
  white-space: nowrap;
}
.badge.neutral { background: #f0f2f5; color: var(--muted); border-color: var(--line); }

/* ---------- Header ---------- */
.topbar { background: var(--ink); color: #cfd5dd; font-size: 13px; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; min-height: 36px; gap: 16px; }
.topbar a { color: #fff; font-weight: 600; }
.topbar .hours-note { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.navbar { position: sticky; top: 0; z-index: 50; background: var(--surface); border-bottom: 1px solid var(--line); }
.navbar .container { display: flex; align-items: center; gap: 28px; min-height: 68px; }
.logo { display: flex; align-items: center; gap: 11px; text-decoration: none !important; color: var(--ink); }
.logo-mark {
  width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff; font-weight: 800; font-size: 15px; letter-spacing: .02em; flex: none;
}
.logo-name { font-weight: 800; font-size: 17.5px; letter-spacing: -.01em; line-height: 1.1; }
.logo-tag { font-size: 11px; color: var(--muted); font-weight: 600; }
.nav-links { display: flex; gap: 4px; margin-left: auto; align-items: center; }
.nav-links a {
  color: var(--ink); font-weight: 600; font-size: 14.5px; padding: 9px 13px;
  border-radius: 8px; text-decoration: none !important;
}
.nav-links a:hover { background: #f0f2f5; }
.nav-links a.active { color: var(--brand); background: color-mix(in srgb, var(--brand) 8%, transparent); }
.nav-cta { margin-left: 8px; }
.nav-toggle { display: none; margin-left: auto; background: none; border: 1px solid var(--line); border-radius: 8px; padding: 8px 10px; cursor: pointer; font-size: 18px; line-height: 1; }

/* ---------- Announcement bar (dealer-editable block) ---------- */
.announce { background: var(--accent); color: #241a05; font-weight: 700; font-size: 14px; }
.announce .container { display: flex; align-items: center; justify-content: center; gap: 14px; min-height: 42px; flex-wrap: wrap; padding-top: 6px; padding-bottom: 6px; }
.announce a { color: inherit; text-decoration: underline; white-space: nowrap; }

/* ---------- Specials (dealer-editable block) ---------- */
.specials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.special {
  background: var(--surface); border: 1px solid var(--line); border-left: 5px solid var(--accent);
  border-radius: var(--radius); padding: 22px 24px;
}
.special .tag { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--brand); }
.special h3 { font-size: 18px; margin: 6px 0 6px; }
.special p { font-size: 14px; color: var(--muted); margin: 0; }
@media (max-width: 760px) { .specials { grid-template-columns: 1fr; } }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(900px 420px at 85% -10%, color-mix(in srgb, var(--accent) 32%, transparent), transparent 60%),
    radial-gradient(700px 380px at -10% 110%, color-mix(in srgb, var(--brand) 55%, transparent), transparent 60%),
    linear-gradient(120deg, var(--brand-dark), color-mix(in srgb, var(--brand-dark) 35%, var(--ink)));
  color: #fff; padding: 72px 0 96px; position: relative;
}
.hero .container { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(32px, 4.6vw, 52px); margin-bottom: 14px; }
.hero .sub { font-size: 17.5px; color: rgba(255,255,255,.85); max-width: 560px; margin-bottom: 26px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.search-card {
  background: var(--surface); color: var(--ink); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 26px;
}
.search-card h3 { font-size: 18px; margin-bottom: 14px; }
.search-card .grid { display: grid; gap: 12px; }

/* ---------- Stats strip ---------- */
.stats-strip { background: var(--surface); border-bottom: 1px solid var(--line); }
.stats-strip .container { display: flex; justify-content: center; gap: clamp(28px, 8vw, 110px); padding: 22px 20px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat .v { font-size: 26px; font-weight: 800; color: var(--brand); line-height: 1.1; }
.stat .l { font-size: 13px; color: var(--muted); font-weight: 600; }

/* ---------- Vehicle cards ---------- */
.vgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.vcard {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; transition: transform .15s, box-shadow .15s;
}
.vcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.vcard .photo { aspect-ratio: 16/10; background: #e8eaee; position: relative; }
.vcard .photo img { width: 100%; height: 100%; object-fit: cover; }
.vcard .photo .badges { position: absolute; top: 10px; left: 10px; display: flex; gap: 6px; flex-wrap: wrap; }
.vcard .photo .badges .badge { background: rgba(255,255,255,.94); backdrop-filter: blur(4px); }
.vcard .body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.vcard .title { font-size: 16.5px; font-weight: 800; color: var(--ink); }
.vcard .title a { color: inherit; }
.vcard .trim { font-size: 13px; color: var(--muted); font-weight: 600; }
.vcard .meta { display: flex; gap: 12px; font-size: 12.5px; color: var(--muted); margin-top: 6px; flex-wrap: wrap; }
.vcard .rule { border: 0; border-top: 1px solid var(--line); margin: 12px 0 10px; }
.vcard .price-row { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; margin-top: auto; }
.vcard .price { font-size: 21px; font-weight: 800; color: var(--brand); }
.vcard .payment { font-size: 12px; color: var(--muted); font-weight: 600; }
.vcard .actions { display: flex; gap: 8px; margin-top: 12px; }
.vcard .actions .btn { flex: 1; }

/* ---------- Value props ---------- */
.props { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.prop { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.prop .ic {
  width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center; margin-bottom: 14px;
  background: color-mix(in srgb, var(--brand) 10%, #fff); color: var(--brand); font-size: 20px;
}
.prop h3 { font-size: 16px; margin-bottom: 6px; }
.prop p { font-size: 13.5px; color: var(--muted); margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(115deg, var(--brand-dark), var(--brand));
  border-radius: var(--radius); color: #fff; padding: 42px clamp(24px, 5vw, 56px);
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { font-size: clamp(22px, 3vw, 30px); margin-bottom: 6px; }
.cta-band p { margin: 0; color: rgba(255,255,255,.85); max-width: 520px; }
.cta-band .btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.review .stars { color: var(--accent); letter-spacing: 2px; font-size: 15px; margin-bottom: 10px; }
.review p { font-size: 14.5px; margin-bottom: 14px; }
.review .who { font-weight: 700; font-size: 13.5px; color: var(--muted); }

/* ---------- Visit / hours ---------- */
.visit { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: stretch; }
.info-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.info-card h3 { font-size: 17px; margin-bottom: 12px; }
.hours-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.hours-table td { padding: 8px 0; border-bottom: 1px solid var(--line); }
.hours-table tr:last-child td { border-bottom: 0; }
.hours-table td:last-child { text-align: right; font-weight: 700; }
.map-card {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  min-height: 260px; background: linear-gradient(140deg, #dde3ea, #c8d2dc); position: relative;
  display: grid; place-items: center;
}
.map-pin { text-align: center; padding: 20px; }
.map-pin .dot {
  width: 46px; height: 46px; margin: 0 auto 10px; border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg); background: var(--brand); box-shadow: var(--shadow-lg);
  display: grid; place-items: center;
}
.map-pin .dot span { transform: rotate(45deg); color: #fff; font-size: 18px; }
.map-pin .addr { font-weight: 700; font-size: 15px; }
.map-pin .cta { font-size: 13px; }

/* ---------- Footer ---------- */
footer.site { background: var(--ink); color: #aab2bd; margin-top: 72px; }
footer.site .cols {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; padding: 52px 0 36px;
}
footer.site h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
footer.site a { color: #cfd5dd; display: block; padding: 4px 0; font-size: 14px; }
footer.site .about { font-size: 14px; }
footer.site .legal {
  border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0 24px; font-size: 12.5px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
footer.site .legal a { display: inline; color: #8d96a3; }

/* ---------- SRP (inventory) ---------- */
.srp-layout { display: grid; grid-template-columns: 260px 1fr; gap: 28px; align-items: start; }
.filters { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; position: sticky; top: 84px; }
.filters h3 { font-size: 15px; margin-bottom: 4px; }
.filters .group { padding: 14px 0; border-bottom: 1px solid var(--line); }
.filters .group:last-of-type { border-bottom: 0; }
.filters .group > .label { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: 8px; }
.check { display: flex; align-items: center; gap: 8px; font-size: 14px; padding: 4px 0; cursor: pointer; }
.check input { accent-color: var(--brand); width: 15px; height: 15px; }
.srp-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 18px; flex-wrap: wrap; }
.srp-toolbar .count { font-weight: 700; font-size: 15px; }
.srp-toolbar .count span { color: var(--brand); }
.srp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.no-results { background: var(--surface); border: 1px dashed var(--line); border-radius: var(--radius); padding: 48px; text-align: center; color: var(--muted); grid-column: 1/-1; }

/* ---------- Forms ---------- */
label.f { display: block; font-size: 13px; font-weight: 700; margin-bottom: 5px; color: var(--ink); }
.input, select.input, textarea.input {
  width: 100%; padding: 11px 13px; font-size: 14.5px; font-family: inherit; color: var(--ink);
  border: 1px solid #cdd3db; border-radius: var(--radius-sm); background: #fff; outline: none;
  transition: border-color .12s, box-shadow .12s;
}
.input:focus { border-color: var(--brand); box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 18%, transparent); }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.frow.single { grid-template-columns: 1fr; }
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.form-success {
  display: none; background: color-mix(in srgb, var(--success) 8%, #fff); border: 1px solid color-mix(in srgb, var(--success) 30%, #fff);
  color: var(--success); font-weight: 700; border-radius: var(--radius-sm); padding: 16px 18px; margin-top: 16px; font-size: 14.5px;
}
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 12px; }
.trust-row { display: flex; gap: 18px; margin-top: 18px; flex-wrap: wrap; font-size: 13px; color: var(--muted); font-weight: 600; }

/* ---------- VDP ---------- */
.crumbs { font-size: 13px; color: var(--muted); padding: 18px 0 0; }
.crumbs a { color: var(--muted); }
.vdp { display: grid; grid-template-columns: 1.25fr .75fr; gap: 30px; align-items: start; padding-top: 18px; }
.gallery .main { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: #e8eaee; aspect-ratio: 16/10; }
.gallery .main img { width: 100%; height: 100%; object-fit: cover; }
.gallery .thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 10px; }
.gallery .thumbs button { padding: 0; border: 2px solid transparent; border-radius: 10px; overflow: hidden; cursor: pointer; background: none; aspect-ratio: 16/10; }
.gallery .thumbs button.active { border-color: var(--brand); }
.gallery .thumbs img { width: 100%; height: 100%; object-fit: cover; }
.buybox { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; position: sticky; top: 84px; box-shadow: var(--shadow); }
.buybox h1 { font-size: 23px; margin-bottom: 2px; }
.buybox .trim { color: var(--muted); font-weight: 600; font-size: 14px; margin-bottom: 12px; }
.buybox .badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.buybox .price { font-size: 34px; font-weight: 800; color: var(--brand); line-height: 1; }
.buybox .est { font-size: 13.5px; color: var(--muted); margin: 6px 0 18px; }
.buybox .est b { color: var(--ink); }
.buybox .cta-stack { display: grid; gap: 10px; }
.buybox .contact-mini { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 13.5px; color: var(--muted); }
.specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.spec { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 13px 15px; }
.spec .k { font-size: 11.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 800; }
.spec .v { font-weight: 700; font-size: 14.5px; margin-top: 2px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { background: var(--surface); border: 1px solid var(--line); font-size: 13px; font-weight: 600; padding: 7px 13px; border-radius: 99px; }
.calc { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.calc .out { font-size: 30px; font-weight: 800; color: var(--brand); }
.calc .out small { font-size: 14px; color: var(--muted); font-weight: 600; }
.calc .sliders { display: grid; gap: 16px; margin-top: 16px; }
.calc .srow label { display: flex; justify-content: space-between; font-size: 13.5px; font-weight: 700; margin-bottom: 4px; }
.calc .srow label output { color: var(--brand); }
input[type="range"] { width: 100%; accent-color: var(--brand); }
.disclaimer { font-size: 12px; color: var(--muted); margin-top: 14px; }

/* ---------- Sticky mobile bar ---------- */
.mobile-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  background: var(--surface); border-top: 1px solid var(--line); padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px; box-shadow: 0 -6px 20px rgba(16,24,40,.1);
}
.mobile-bar .btn { flex: 1; padding: 11px 8px; font-size: 13.5px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(115deg, var(--brand-dark), color-mix(in srgb, var(--brand-dark) 40%, var(--ink)));
  color: #fff; padding: 44px 0;
}
.page-hero h1 { font-size: clamp(26px, 3.6vw, 38px); margin-bottom: 6px; }
.page-hero p { color: rgba(255,255,255,.82); margin: 0; max-width: 640px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; position: relative; }
.step::before {
  counter-increment: step; content: counter(step);
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  background: var(--brand); color: #fff; font-weight: 800; font-size: 15px; margin-bottom: 12px;
}
.step h3 { font-size: 16px; } .step p { font-size: 13.5px; color: var(--muted); margin: 0; }

/* ---------- Trade estimate result ---------- */
.estimate {
  display: none; margin-top: 20px; background: linear-gradient(115deg, var(--brand-dark), var(--brand));
  color: #fff; border-radius: var(--radius); padding: 26px; text-align: center;
}
.estimate .range { font-size: 32px; font-weight: 800; margin: 6px 0; }
.estimate p { color: rgba(255,255,255,.85); margin: 0; font-size: 13.5px; }

/* ---------- Vibes ----------
   Four design personalities. The body carries vibe-<name>; each vibe shifts
   typography, shape language, and hero treatment — not just color. */

/* BOLD — loud, deal-driven, high contrast */
.vibe-bold h1, .vibe-bold h2 { text-transform: uppercase; letter-spacing: -.01em; font-weight: 900; }
.vibe-bold .hero h1 { letter-spacing: -.02em; }
.vibe-bold .btn { text-transform: uppercase; font-size: 14px; letter-spacing: .03em; font-weight: 800; }
.vibe-bold .price, .vibe-bold .buybox .price { font-weight: 900; }
.vibe-bold .eyebrow { letter-spacing: .18em; }
.vibe-bold .badge { text-transform: uppercase; font-size: 10.5px; letter-spacing: .04em; }

/* PREMIUM — refined, serif, understated */
.vibe-premium { --radius: 6px; --radius-sm: 4px; --bg: #f6f5f2; }
.vibe-premium h1, .vibe-premium h2, .vibe-premium h3, .vibe-premium .logo-name,
.vibe-premium .vcard .title, .vibe-premium .buybox h1 { font-family: Georgia, "Times New Roman", serif; font-weight: 700; letter-spacing: 0; }
.vibe-premium .eyebrow { color: var(--accent); letter-spacing: .26em; font-weight: 600; }
.vibe-premium .hero, .vibe-premium .page-hero {
  background: linear-gradient(120deg, var(--ink), color-mix(in srgb, var(--ink) 72%, var(--brand)));
}
.vibe-premium .btn { border-radius: 3px; text-transform: uppercase; letter-spacing: .09em; font-size: 13px; font-weight: 600; }
.vibe-premium .vcard, .vibe-premium .prop, .vibe-premium .review, .vibe-premium .info-card,
.vibe-premium .form-card, .vibe-premium .buybox, .vibe-premium .special { box-shadow: none; }
.vibe-premium .cta-band { background: var(--ink); border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent); }
.vibe-premium .stat .v { color: var(--accent); }
.vibe-premium .logo-mark { border-radius: 4px; }

/* FRIENDLY — warm, rounded, soft */
.vibe-friendly { --radius: 20px; --radius-sm: 13px; --bg: #f8f6f2; }
.vibe-friendly .btn { border-radius: 999px; }
.vibe-friendly .input, .vibe-friendly select.input, .vibe-friendly textarea.input { border-radius: 12px; }
.vibe-friendly .eyebrow { text-transform: none; letter-spacing: .01em; font-size: 14px; font-weight: 800; }
.vibe-friendly .hero, .vibe-friendly .page-hero {
  background:
    radial-gradient(700px 400px at 90% -20%, color-mix(in srgb, var(--accent) 40%, transparent), transparent 60%),
    linear-gradient(120deg, color-mix(in srgb, var(--brand) 82%, #241a05), var(--brand));
}
.vibe-friendly .logo-mark { border-radius: 999px; }
.vibe-friendly .vcard .photo { border-radius: 0 0 var(--radius-sm) var(--radius-sm); }
.vibe-friendly .badge { border-radius: 99px; }
.vibe-friendly .step::before { border-radius: 12px; }

/* MODERN — minimal, flat, precise (default) */
.vibe-modern { --bg: #fafafa; --radius: 10px; --radius-sm: 8px; }
.vibe-modern .hero, .vibe-modern .page-hero { background: #101318; }
.vibe-modern .hero { border-bottom: 3px solid var(--brand); }
.vibe-modern h1, .vibe-modern h2 { font-weight: 750; letter-spacing: -.025em; }
.vibe-modern .vcard, .vibe-modern .prop, .vibe-modern .review { box-shadow: none; }
.vibe-modern .vcard:hover { box-shadow: var(--shadow); }
.vibe-modern .eyebrow { color: var(--muted); }
.vibe-modern .cta-band { background: #101318; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .vgrid, .srp-grid, .reviews, .steps { grid-template-columns: repeat(2, 1fr); }
  .props { grid-template-columns: repeat(2, 1fr); }
  .hero .container { grid-template-columns: 1fr; gap: 32px; }
  .vdp { grid-template-columns: 1fr; }
  .buybox { position: static; }
  .specs { grid-template-columns: repeat(2, 1fr); }
  footer.site .cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .section { padding: 44px 0; }
  .srp-layout { grid-template-columns: 1fr; }
  .filters { position: static; }
  .vgrid, .srp-grid, .reviews, .steps, .props { grid-template-columns: 1fr; }
  .visit { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--surface); border-bottom: 1px solid var(--line); flex-direction: column;
    align-items: stretch; padding: 10px 16px 16px; gap: 2px; box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 12px; }
  .nav-cta { margin: 8px 0 0; }
  .nav-toggle { display: block; }
  .navbar .container { position: relative; }
  .topbar .hours-note { display: none; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 68px; }
  .gallery .thumbs { grid-template-columns: repeat(4, 1fr); }
  footer.site .cols { grid-template-columns: 1fr; gap: 24px; }
}
