:root {
  --bg: #0a0a0b;
  --bg-2: #101012;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-2: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --red: #e11d2a;
  --red-2: #ff3b41;
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --muted-2: #71717a;
  --gold: #fbbf24;
  --radius: 20px;
  --radius-sm: 14px;
  --maxw: 1120px;
  --shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.7);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

h1, h2, h3, .stat-num, .brand-name {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-2);
  margin-bottom: 14px;
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 11, 0.72);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 62px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { border-radius: 8px; object-fit: cover; }
.brand-name { font-size: 1.15rem; letter-spacing: -0.01em; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  transition: background 0.15s ease, border-color 0.15s ease;
}
.nav-cta:hover { background: var(--surface-2); border-color: var(--red); }
.nav-cta svg { color: var(--red-2); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  text-align: center;
  padding: 56px 0 64px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 55% at 50% -5%, rgba(225, 29, 42, 0.28), transparent 70%),
    radial-gradient(40% 40% at 85% 20%, rgba(225, 29, 42, 0.10), transparent 70%),
    radial-gradient(50% 50% at 10% 30%, rgba(120, 120, 130, 0.08), transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; display: flex; flex-direction: column; align-items: center; }

.badge-1 {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(225,29,42,0.22), rgba(225,29,42,0.10));
  border: 1px solid rgba(225, 29, 42, 0.45);
  box-shadow: 0 0 24px -6px rgba(225, 29, 42, 0.5);
  margin-bottom: 18px;
}
.badge-star { color: var(--gold); font-size: 0.95rem; }

.logo-badge {
  display: inline-flex;
  padding: 14px;
  border-radius: 26px;
  background: linear-gradient(160deg, rgba(255,255,255,0.10), rgba(255,255,255,0.02));
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow), 0 0 60px -18px rgba(225, 29, 42, 0.55);
  margin-bottom: 26px;
}
.logo { width: 100%; max-width: 260px; height: auto; display: block; border-radius: 16px; }

.hero h1 {
  font-size: clamp(2.3rem, 8vw, 4.2rem);
  margin-bottom: 26px;
}
.hero h1 .accent {
  background: linear-gradient(100deg, var(--red-2), var(--red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tagline {
  color: var(--muted);
  font-size: clamp(1.02rem, 2.6vw, 1.25rem);
  max-width: 600px;
  margin-bottom: 30px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 15px 26px;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.15s ease, border-color 0.15s ease;
  min-height: 52px;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-primary {
  background: linear-gradient(180deg, var(--red-2), var(--red));
  color: #fff;
  box-shadow: 0 10px 30px -8px rgba(225, 29, 42, 0.6);
}
.btn-primary:hover { box-shadow: 0 14px 36px -8px rgba(225, 29, 42, 0.75); transform: translateY(-2px); }
.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border-strong);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: var(--surface-2); border-color: var(--red); transform: translateY(-2px); }
.btn-sm { min-height: 46px; padding: 12px 20px; font-size: 0.95rem; }
.btn-lg { min-height: 56px; padding: 17px 32px; font-size: 1.1rem; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.hero-perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  margin-top: 22px;
}
.perk {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.96rem;
}
.perk .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.4);
  color: #34d399;
  font-size: 0.8rem;
  font-weight: 700;
}

/* ---------- Hero rating ---------- */
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  font-size: 1.02rem;
}
.hero-rating .google-g { flex: none; }
.hero-rating .stars { color: var(--gold); letter-spacing: 2px; font-size: 1.15rem; }
.hero-rating strong { font-family: "Space Grotesk", sans-serif; font-size: 1.25rem; color: #fff; }
.hero-rating-sub { color: var(--muted); }
.stars { color: var(--gold); }

/* Big two-line CTA buttons */
.btn-cta {
  min-height: 64px;
  padding: 12px 28px;
  gap: 13px;
  border-radius: 16px;
}
.btn-cta svg { flex: none; }
.btn-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.15; }
.btn-label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.85; }
.btn-main { font-family: "Space Grotesk", sans-serif; font-size: 1.22rem; font-weight: 700; }

/* ---------- Sections ---------- */
.section { padding: 76px 22px; }
.section-head { text-align: center; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(1.8rem, 5vw, 2.7rem); }

/* ---------- Cards / Services ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}
.service-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.service-grid .card {
  padding: 20px 18px;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.service-grid .card:hover { transform: translateY(-6px); border-color: var(--border-strong); background: var(--surface-2); }
.ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  font-size: 1.3rem;
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(225,29,42,0.20), rgba(225,29,42,0.05));
  border: 1px solid rgba(225, 29, 42, 0.25);
  margin-bottom: 12px;
}
.service-grid h3 { font-size: 1.05rem; margin-bottom: 3px; }
.service-grid p { color: var(--muted); font-size: 0.88rem; }
.services .section-head { margin-bottom: 30px; }

/* ---------- Mobile Service band ---------- */
.mobile-band {
  position: relative;
  overflow: hidden;
  padding: 80px 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent),
    var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.mobile-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(50% 60% at 50% 0%, rgba(225, 29, 42, 0.16), transparent 70%),
    radial-gradient(40% 50% at 100% 100%, rgba(251, 191, 36, 0.06), transparent 70%);
}
.mobile-band > .container { position: relative; }
.mobile-sub {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: clamp(0.9rem, 2.6vw, 1.15rem);
  margin-top: 8px;
}
.mobile-slogan {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: clamp(1.25rem, 4vw, 1.8rem);
  margin-bottom: 30px;
}
.mobile-slogan .accent {
  background: linear-gradient(100deg, var(--red-2), var(--red));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Pricing formula */
.price-formula {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}
.price-card {
  flex: 1 1 180px;
  max-width: 240px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  backdrop-filter: blur(8px);
}
.price-ico {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(225,29,42,0.20), rgba(225,29,42,0.05));
  border: 1px solid rgba(225, 29, 42, 0.25);
  margin-bottom: 6px;
}
.price-amt { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 1.5rem; color: #fff; }
.price-note { font-size: 0.82rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.price-plus {
  align-self: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--red-2);
}
.price-total {
  display: inline-block;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: clamp(0.95rem, 2.6vw, 1.15rem);
  color: var(--text);
  background: rgba(251, 191, 36, 0.10);
  border: 1px solid rgba(251, 191, 36, 0.35);
  border-radius: 12px;
  padding: 12px 22px;
  margin-bottom: 44px;
}
.price-total span { color: var(--red-2); margin: 0 4px; }

.mobile-cta { display: flex; justify-content: center; }

/* ---------- Location ---------- */
.location-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 22px; align-items: stretch; }
.location-info { padding: 34px; display: flex; flex-direction: column; gap: 20px; }
.info-row { display: flex; gap: 14px; align-items: flex-start; }
.info-ico {
  flex: none;
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  border-radius: 12px;
  background: var(--surface-2);
  border: 1px solid var(--border);
}
.info-label { display: block; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-2); margin-bottom: 2px; }
.info-row p { font-size: 1.06rem; }
.info-row strong { color: var(--gold); }
.hours-note { color: var(--gold); font-size: 0.88rem; font-weight: 500; margin-top: 2px; }
.phone-line { display: flex; align-items: center; gap: 10px; margin-top: 6px; }
.phone-lang {
  flex: none;
  display: inline-block;
  min-width: 66px;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px 10px;
}
.phone-lang.es {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}
.serving { color: var(--muted); font-size: 0.95rem; padding-top: 4px; border-top: 1px solid var(--border); }
.link { color: var(--red-2); font-weight: 600; }
.link:hover { text-decoration: underline; }
.info-cta { display: flex; gap: 12px; margin-top: auto; }
.info-cta .btn { flex: 1; }

.map-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 380px;
  box-shadow: var(--shadow);
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; filter: grayscale(0.2) contrast(1.05); }
.map-directions-btn {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  padding: 14px 26px;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--red-2), var(--red));
  box-shadow: 0 10px 28px -6px rgba(225, 29, 42, 0.75), 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: transform 0.14s ease, box-shadow 0.2s ease;
}
.map-directions-btn:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 16px 36px -6px rgba(225, 29, 42, 0.85), 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* ---------- Tire size inquiry ---------- */
.inquiry {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.inquiry-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(55% 60% at 50% -10%, rgba(225, 29, 42, 0.16), transparent 70%);
  pointer-events: none;
}
.inquiry-inner { position: relative; }
.inquiry-sub {
  color: var(--muted);
  font-size: clamp(1rem, 2.4vw, 1.12rem);
  max-width: 620px;
  margin: 12px auto 0;
}
.inquiry-form {
  max-width: 720px;
  margin: 0 auto;
  padding: 34px;
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field-full { margin-top: 18px; }
.field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.01em;
}
.field .req { color: var(--red-2); }
.field .opt { color: var(--muted-2); font-weight: 500; }
.field input,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input::placeholder,
.field textarea::placeholder { color: var(--muted-2); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 0 3px rgba(225, 29, 42, 0.18);
}
.field input:invalid:not(:placeholder-shown) { border-color: rgba(225, 29, 42, 0.55); }

/* honeypot — visually hidden, still in DOM for bots */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  text-align: center;
}
.form-footer .btn { width: 100%; max-width: 320px; }
.form-fineprint { color: var(--muted-2); font-size: 0.85rem; }
.form-status {
  margin-top: 18px;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.96rem;
  text-align: center;
}
.form-status.ok {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #86efac;
}
.form-status.err {
  background: rgba(225, 29, 42, 0.12);
  border: 1px solid rgba(225, 29, 42, 0.4);
  color: var(--red-2);
}

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center;
  padding: 72px 22px;
  background:
    radial-gradient(60% 120% at 50% 0%, rgba(225, 29, 42, 0.22), transparent 70%),
    var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-band h2 { font-size: clamp(1.8rem, 5vw, 2.6rem); margin-bottom: 10px; }
.cta-band p { color: var(--muted); font-size: 1.1rem; margin-bottom: 26px; }

/* ---------- Footer ---------- */
.footer { padding: 46px 22px 30px; background: var(--bg-2); }
.footer-inner { display: flex; flex-wrap: wrap; gap: 22px; justify-content: space-between; align-items: center; max-width: var(--maxw); margin: 0 auto; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand strong { font-family: "Space Grotesk", sans-serif; font-size: 1.1rem; }
.footer-brand p { color: var(--muted); font-size: 0.9rem; }
.footer-meta { text-align: right; }
.footer-meta p { color: var(--muted); font-size: 0.92rem; }
.fine { text-align: center; color: var(--muted-2); font-size: 0.82rem; max-width: var(--maxw); margin: 20px auto 0; }

/* ---------- Admin dashboard ---------- */
.admin-body { background: var(--bg); }
.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 22px;
  background: rgba(10, 10, 11, 0.8);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border);
}
.admin-brand { display: flex; align-items: center; gap: 12px; }
.admin-brand strong { font-family: "Space Grotesk", sans-serif; display: block; font-size: 1.05rem; }
.admin-brand span { color: var(--muted); font-size: 0.82rem; }
.admin-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.admin-user { color: var(--muted); font-size: 0.85rem; }
.admin-main { padding: 34px 22px 80px; }
.admin-muted { color: var(--muted); }
.admin-login { max-width: 420px; margin: 48px auto; padding: 34px; }
.admin-login h1 { font-size: 1.6rem; margin-bottom: 8px; }
.admin-login .admin-muted { margin-bottom: 22px; }
.admin-login code { background: var(--surface-2); padding: 2px 6px; border-radius: 6px; font-size: 0.9em; }

.dash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 6px;
}
.dash-head h1 { font-size: clamp(1.6rem, 4vw, 2.1rem); }
.dash-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 7px 15px;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.chip:hover { background: var(--surface-2); color: var(--text); }
.chip.is-active { color: #fff; background: var(--red); border-color: var(--red); }

.admin-empty { text-align: center; color: var(--muted); padding: 40px 0; }

/* 3-column status board */
.board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
  align-items: start;
}
.board-col {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
}
.board-col-head {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.board-col-head .dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.dot-new { background: var(--red); box-shadow: 0 0 8px rgba(225,29,42,0.6); }
.dot-contacted { background: var(--gold); box-shadow: 0 0 8px rgba(251,191,36,0.5); }
.dot-closed { background: #22c55e; box-shadow: 0 0 8px rgba(34,197,94,0.5); }
.col-count {
  margin-left: auto;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--muted);
  background: var(--surface-2);
  border-radius: 999px;
  padding: 2px 10px;
}
.board-col-body { display: flex; flex-direction: column; gap: 12px; }
.col-empty { color: var(--muted-2); font-size: 0.9rem; padding: 6px 2px; }
.board .inq-grid { grid-template-columns: 1fr; gap: 9px; }
@media (max-width: 860px) {
  .board { grid-template-columns: 1fr; }
}
.inq-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--muted-2);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}
.inq-card.status-new { border-left-color: var(--red); }
.inq-card.status-contacted { border-left-color: var(--gold); }
.inq-card.status-closed { border-left-color: #22c55e; opacity: 0.72; }
.inq-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.inq-name { font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 1.1rem; display: block; }
.inq-when { color: var(--muted-2); font-size: 0.8rem; }
.inq-status {
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  color: #f4f4f5;
  background: #1b1b20;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 6px 8px;
  cursor: pointer;
}
/* Solid colors so the option list is readable (fixes white-on-white) */
.inq-status option {
  background: #1b1b20;
  color: #f4f4f5;
}
.inq-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.inq-grid > div, .inq-notes { font-size: 0.95rem; }
.inq-k {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  margin-bottom: 3px;
}
.inq-notes { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border); color: var(--muted); }

@media (max-width: 520px) {
  .inq-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Sticky mobile call bar ---------- */
.call-bar {
  display: none;
  position: fixed;
  left: 14px; right: 14px; bottom: 14px;
  z-index: 90;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  padding: 15px;
  border-radius: 16px;
  background: linear-gradient(180deg, var(--red-2), var(--red));
  box-shadow: 0 14px 34px -8px rgba(225, 29, 42, 0.7);
}

/* ===================== Responsive ===================== */
@media (max-width: 900px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: 1fr; }
  .map-wrap { min-height: 300px; order: -1; }
  .map-wrap iframe { min-height: 300px; }
}

@media (max-width: 640px) {
  .hero { padding: 40px 0 52px; }
  .section, .mobile-band { padding: 56px 20px; }
  .service-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; }
  .btn-cta { justify-content: flex-start; padding-left: 32px; }
  /* Hero perks: plain centered lines (no chip backgrounds) */
  .hero-perks { flex-direction: column; align-items: center; gap: 9px; width: 100%; }
  .perk { justify-content: center; font-size: 0.95rem; }
  /* Mobile service price formula: clean vertical stack, centered */
  .price-formula { flex-direction: column; align-items: center; gap: 10px; }
  .price-card { width: 100%; max-width: 300px; flex: none; }
  .price-plus { margin: 0; }
  .inquiry-form { padding: 24px 20px; }
  .field-grid { grid-template-columns: 1fr; gap: 15px; }
  .form-footer .btn { max-width: none; }
  .brand-name { display: none; }
  .nav-cta span { font-size: 0.88rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .footer-meta { text-align: left; }
  /* room for sticky call bar */
  main { padding-bottom: 78px; }
  .cta-band { padding-bottom: 84px; }
  .call-bar { display: flex; }
}
