:root {
  --black: #0a0a0a;
  --dark: #141414;
  --panel: #1c1c1f;
  --gray: #2a2a2e;
  --red: #dc2626;
  --red-dark: #991b1b;
  --text: #fff;
  --muted: rgba(255, 255, 255, 0.65);
  --max: 72rem;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
}
h1, h2, h3, h4 { font-family: Oswald, Impact, sans-serif; letter-spacing: 0.02em; text-transform: uppercase; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.section { padding: 4rem 0; }
.eyebrow { color: var(--red); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; }
.heading { font-size: clamp(1.75rem, 4vw, 3rem); line-height: 1.1; }
.muted { color: var(--muted); }
.accent { color: var(--red); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.25rem; border-radius: 0.375rem; font-weight: 600; border: 1px solid transparent;
  cursor: pointer; transition: 0.2s;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); }
.btn-outline { border-color: rgba(255,255,255,0.2); }
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.btn-ghost { background: rgba(255,255,255,0.05); }
.card {
  background: var(--panel); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem; padding: 1.5rem;
}
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,10,0.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 4rem; gap: 1rem; }
.logo { display: flex; align-items: center; gap: 0.5rem; }
.logo-mark {
  width: 2.25rem; height: 2.25rem; background: var(--red); border-radius: 0.375rem;
  display: grid; place-items: center; font-family: Oswald; font-weight: 700;
}
.logo-text { font-family: Oswald; text-transform: uppercase; line-height: 1.1; }
.logo-text small { display: block; font-size: 0.55rem; letter-spacing: 0.2em; color: var(--muted); font-family: Inter; text-transform: uppercase; }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; }
.site-nav { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.nav-link { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.nav-link:hover, .nav-link--active { color: var(--red); }
.hero {
  position: relative; min-height: 85vh; display: flex; align-items: center;
  background-size: cover; background-position: center;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(10,10,10,0.92), rgba(20,20,20,0.85), rgba(220,38,38,0.45));
}
.hero .container { position: relative; z-index: 1; padding: clamp(4rem, 10vw, 6rem) 0; }
.hero-inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 992px) {
  .hero-inner { grid-template-columns: minmax(0, 1fr) minmax(300px, 400px); gap: 3rem; }
}
.hero-main { max-width: 42rem; }
.hero-title {
  margin: 0.75rem 0 0;
  font-size: clamp(2.25rem, 6vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
  max-width: none;
}
.hero-title-line { display: block; }
.hero-title .accent { color: var(--red); }
.hero-lead {
  margin: 1.25rem 0 0;
  max-width: 34rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
}
.hero-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.hero-location-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem; }
.nav-phones { display: flex; flex-wrap: wrap; gap: 0.35rem; align-items: center; }
.nav-phone--landline { font-size: 0.72rem; letter-spacing: 0.04em; }
.book-phone-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.footer-phones { margin: 0; line-height: 1.6; }
.hero-status-card {
  display: none;
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 48px rgba(0,0,0,0.45), 0 0 0 1px rgba(220,38,38,0.15);
}
@media (min-width: 992px) {
  .hero-status-card { display: block; }
}
.hero-status-book {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  padding: 0.55rem 1.1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: var(--red);
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(220,38,38,0.5);
  transition: transform 0.2s, background 0.2s;
}
.hero-status-book:hover {
  background: #b91c1c;
  transform: translateY(-1px);
  color: #fff;
}
.hero-status-card img {
  width: 100%;
  height: min(32rem, 72vh);
  min-height: 26rem;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.hero-status-overlay {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.92), transparent);
}
.hero-status-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
}
.hero-status-label {
  margin: 0;
  font-family: Oswald, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}
.hero-status-label--closed { color: #fbbf24; }
.hero-status-hours {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}
.hero-status-mobile {
  display: block;
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.45);
}
.hero-status-mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.35rem;
}
.hero-status-book--inline {
  position: static;
  box-shadow: none;
  padding: 0.4rem 0.85rem;
  font-size: 0.65rem;
}
@media (min-width: 992px) {
  .hero-status-mobile { display: none; }
}
.trust-bar { background: var(--dark); border-block: 1px solid rgba(255,255,255,0.08); padding: 1rem 0; }
.trust-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2rem; list-style: none; font-size: 0.85rem; color: var(--muted); }
.grid-2 { display: grid; gap: 2rem; }
.grid-3 { display: grid; gap: 1.5rem; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
.services-grid .card:hover { border-color: rgba(220,38,38,0.4); transform: translateY(-2px); }
.ba-grid img { width: 100%; height: 16rem; object-fit: cover; }
.ba-split { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; position: relative; }
.ba-split img { width: 100%; height: 16rem; object-fit: cover; object-position: center; }
.ba-label { position: absolute; top: 0.75rem; padding: 0.25rem 0.5rem; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; background: rgba(0,0,0,0.7); }
.ba-label.before { left: 0.75rem; }
.ba-label.after { right: 0.75rem; background: var(--red); }
.review-card blockquote { font-size: 0.9rem; color: var(--muted); margin: 0.75rem 0; }
.map-wrap { aspect-ratio: 16/10; background: var(--gray); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
.site-footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.1); margin-top: 4rem; padding: 3rem 0 1rem; }
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-links { list-style: none; }
.footer-links a { color: var(--muted); font-size: 0.9rem; }
.footer-links a:hover { color: #fff; }
.footer-bottom { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.75rem; color: var(--muted); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem; }
.float-cta { position: fixed; right: 1rem; bottom: 1rem; z-index: 40; display: flex; flex-direction: column; gap: 0.5rem; }
.float-btn { width: 3.5rem; height: 3.5rem; border-radius: 50%; display: grid; place-items: center; font-weight: 700; box-shadow: 0 4px 20px rgba(0,0,0,0.4); }
.float-wa { background: #25d366; color: #fff; }
.float-call { background: var(--red); color: #fff; }
.form-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-grid-2 { grid-template-columns: 1fr 1fr; } }
label { display: block; font-size: 0.85rem; margin-bottom: 0.35rem; color: rgba(255,255,255,0.8); }
input, select, textarea {
  width: 100%; padding: 0.75rem 1rem; border-radius: 0.375rem;
  border: 1px solid rgba(255,255,255,0.12); background: var(--gray); color: #fff;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--red); }
.field-error { color: #fca5a5; font-size: 0.75rem; margin-top: 0.25rem; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }
.alert { padding: 1rem; border-radius: 0.5rem; margin-bottom: 1rem; }
.alert-success { background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.4); }
.alert-error { background: rgba(220,38,38,0.15); border: 1px solid rgba(220,38,38,0.4); }
.toast { position: fixed; top: 1rem; right: 1rem; padding: 0.75rem 1rem; background: var(--panel); border: 1px solid rgba(255,255,255,0.15); border-radius: 0.5rem; opacity: 0; pointer-events: none; transition: opacity 0.3s; z-index: 100; }
.toast.show { opacity: 1; }
.cta-band {
  background: linear-gradient(90deg, rgba(10,10,10,0.95), rgba(220,38,38,0.5));
  padding: 4rem 0; text-align: center;
}
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--dark); flex-direction: column; padding: 1rem; border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .site-nav.open { display: flex; }
  .nav-phone { width: 100%; }
}
