/* SpazoutSounds — light page, black header, red actions. Mobile first. */
:root {
  --bg: #f6f5f2;
  --surface: #ffffff;
  --ink: #141414;
  --ink-2: #4a4a4a;
  --line: #e2dfd9;
  --red: #c41e24;
  --red-dark: #9e171c;
  --black: #0b0b0b;
  --gold: #f2b90c;
  --radius: 10px;
  --wrap: 1080px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); background: var(--bg); color: var(--ink); line-height: 1.55; font-size: 17px;
       padding-bottom: 76px; /* room for the sticky bar */ }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); }
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: clamp(1.9rem, 6vw, 3rem); }
h2 { font-size: clamp(1.45rem, 4.5vw, 2.1rem); margin-bottom: .6rem; }
h3 { font-size: 1.15rem; }
p + p { margin-top: .8rem; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 16px; }
.muted { color: var(--ink-2); font-size: .92rem; }
.section { padding: 44px 0; }
.section-alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-dark { background: var(--black); color: #fff; }
.section-dark a { color: #fff; }
.lead { font-size: 1.15rem; color: var(--ink-2); max-width: 60ch; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .4rem; padding: 14px 22px; border-radius: var(--radius);
       font-weight: 700; text-decoration: none; border: 2px solid transparent; cursor: pointer; font-size: 1rem; min-height: 48px; font-family: inherit; }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.section-dark .btn-outline { color: #fff; border-color: #fff; }
.btn-outline:hover { background: rgba(0,0,0,.06); }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.2rem; }

/* Header */
.topbar { background: var(--black); color: #fff; position: sticky; top: env(safe-area-inset-top, 0px); z-index: 20; }
.topbar-inner { display: flex; align-items: center; gap: 12px; min-height: 60px; }
.brand { display: flex; align-items: center; }
.logo { height: 44px; width: auto; }
.nav { display: flex; gap: 4px; margin-left: auto; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.nav::-webkit-scrollbar { display: none; }
.nav a { color: #fff; text-decoration: none; padding: 8px 10px; border-radius: 6px; white-space: nowrap; font-size: .95rem; font-weight: 600; opacity: .9; }
.nav a:hover, .nav a[aria-current="page"] { background: rgba(255,255,255,.12); opacity: 1; }
.nav .nav-cta { background: var(--red); opacity: 1; }
.topbar-phone { display: none; color: #fff; text-decoration: none; font-weight: 700; }
@media (min-width: 900px) { .topbar-phone { display: inline; } .nav { margin-left: auto; margin-right: 8px; } }

/* Hero */
.hero { background: var(--black); color: #fff; }
.hero-grid { display: grid; gap: 22px; padding: 28px 0 36px; align-items: center; }
.hero h1 { color: #fff; }
.hero .lead { color: #d6d6d6; }
.hero img { border-radius: var(--radius); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.hero-collage { display: grid; grid-template-columns: 1.5fr 1fr; grid-template-rows: 1fr 1fr; gap: 8px; aspect-ratio: 16/10; width: 100%; max-width: 560px; justify-self: center; }
.hero .hero-collage > * { display: block; width: 100%; height: 100%; min-height: 0; object-fit: cover; border-radius: var(--radius); background: #111; aspect-ratio: auto; }
.hero-collage .main { grid-row: 1 / span 2; }
.social-feed { margin-top: 18px; min-height: 480px; }
.hero .btn-outline { color: #fff; border-color: #fff; }
.badge-row { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 14px; font-size: .95rem; color: #d6d6d6; }
.badge-row strong { color: #fff; }
.stars { color: var(--gold); letter-spacing: 1px; }
@media (min-width: 820px) { .hero-grid { grid-template-columns: 1.1fr 1fr; padding: 52px 0; } }

/* Cards & grids */
.grid { display: grid; gap: 14px; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: 1fr 1fr; } .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; }
.card h3 { margin-bottom: .35rem; }
.card .price { font-weight: 800; color: var(--red); font-size: 1.15rem; margin-top: .5rem; }
.steps { counter-reset: step; }
.steps .card { position: relative; padding-left: 62px; }
.steps .card::before { counter-increment: step; content: counter(step); position: absolute; left: 18px; top: 18px; width: 32px; height: 32px;
  border-radius: 50%; background: var(--red); color: #fff; font-weight: 800; display: grid; place-items: center; }

/* Price tables */
.price-table { width: 100%; border-collapse: collapse; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.price-table th, .price-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.price-table th { background: #faf9f6; font-size: .85rem; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-2); }
.price-table td:last-child { white-space: nowrap; font-weight: 700; color: var(--red); text-align: right; }
.price-table .sub { display: block; color: var(--ink-2); font-size: .88rem; font-weight: 400; }
.table-wrap { overflow-x: auto; }

/* Gallery */
.gallery { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
@media (min-width: 720px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
.gallery figure { margin: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.gallery img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.gallery figcaption { padding: 10px 12px; font-size: .9rem; color: var(--ink-2); }

/* Cities */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: .8rem; }
.chips span { background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px; font-size: .9rem; }

/* FAQ */
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 16px; margin-bottom: 10px; }
.faq summary { font-weight: 700; cursor: pointer; }
.faq details p { margin-top: .6rem; color: var(--ink-2); }

/* Reviews */
.review-head { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-head .big { font-size: 2rem; font-weight: 900; }
.review { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; }
.review .who { font-weight: 700; margin-top: .6rem; font-size: .95rem; }
.review .who span { color: var(--ink-2); font-weight: 400; }

/* Callout / warranty */
.callout { border-left: 5px solid var(--red); background: var(--surface); padding: 16px 18px; border-radius: 0 var(--radius) var(--radius) 0; }

/* Sticky bar */
.sticky-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 30; display: flex; gap: 10px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(255,255,255,.96); border-top: 1px solid var(--line); backdrop-filter: blur(8px); }
.sticky-bar .btn { flex: 1; }
.sticky-bar .btn-primary { flex: 2; }
@media (min-width: 900px) { .sticky-bar { display: none; } body { padding-bottom: 0; } }

/* Footer */
.footer { background: #111; color: #cfcfcf; padding: 36px 0 20px; font-size: .95rem; }
.footer a { color: #fff; text-decoration: none; display: block; padding: 3px 0; }
.footer-grid { display: grid; gap: 24px; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand { font-weight: 900; font-size: 1.2rem; color: #fff; }
.footer-head { font-weight: 700; color: #fff; margin-bottom: 6px; }
.footer-bottom { border-top: 1px solid #2a2a2a; margin-top: 24px; padding-top: 16px; font-size: .85rem; color: #9a9a9a; }

/* Forms (quote) */
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.progress { display: flex; gap: 6px; margin-bottom: 18px; }
.progress span { flex: 1; height: 6px; border-radius: 3px; background: var(--line); }
.progress span.on { background: var(--red); }
.step { display: none; }
.step.active { display: block; }
.chip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 12px 0 18px; }
.chip-grid label { display: flex; align-items: center; gap: 10px; border: 2px solid var(--line); border-radius: var(--radius); padding: 12px; cursor: pointer; background: #fff; min-height: 52px; }
.chip-grid input { width: 20px; height: 20px; accent-color: var(--red); }
.chip-grid label:has(input:checked) { border-color: var(--red); background: #fff6f6; }
label.field { display: block; font-weight: 600; margin: 12px 0 4px; }
.field-input, select, textarea { width: 100%; font: inherit; padding: 12px; border: 2px solid var(--line); border-radius: 8px; background: #fff; min-height: 48px; }
.field-input:focus, select:focus, textarea:focus { outline: none; border-color: var(--red); }
.radio-row { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-row label { display: flex; align-items: center; gap: 8px; border: 2px solid var(--line); border-radius: 8px; padding: 10px 14px; cursor: pointer; background: #fff; }
.radio-row label:has(input:checked) { border-color: var(--red); background: #fff6f6; }
.form-nav { display: flex; gap: 10px; margin-top: 20px; }
.form-nav .btn { flex: 1; }
.err { color: var(--red); font-size: .92rem; margin-top: 6px; display: none; }
.consent { font-size: .85rem; color: var(--ink-2); margin-top: 12px; }
.hidden { display: none !important; }

/* photos inside guides and service pages */
.guide-photo { margin: 18px 0 22px; }
.guide-photo img { width: 100%; max-height: 520px; object-fit: cover; border-radius: var(--radius); display: block; }
.guide-photo figcaption { font-size: .9rem; color: var(--ink-2); margin-top: 6px; }
.photo-pair { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; margin: 18px 0 22px; }
.photo-pair .guide-photo { margin: 0; }
.photo-pair .guide-photo img { aspect-ratio: 3/4; max-height: none; }
.clip-row { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; max-width: 520px; margin: 18px 0 22px; }
.clip-row video { width: 100%; aspect-ratio: 9/16; object-fit: cover; border-radius: var(--radius); background: #111; }
.ambient-examples { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; max-width: 640px; margin-top: 18px; }
.ambient-examples figure { margin: 0; }
.ambient-examples video, .ambient-examples img { width: 100%; aspect-ratio: 9/16; object-fit: cover; border-radius: var(--radius); background: #111; display: block; }
.ambient-examples figcaption { font-size: .85rem; color: var(--ink-2); margin-top: 6px; }
