:root {
  --red: #C9181F;
  --red-hover: #E01E26;
  --white: #FFFFFF;
  --offwhite: #F8F7F4;
  --light: #F0EFE9;
  --border: #E2E0D8;
  --border2: #CCCAB8;
  --ink: #0D0D0B;
  --ink2: #2A2A24;
  --muted: #6A6858;
  --muted2: #9A9880;
  --glass: rgba(255, 255, 255, 0.18);
  --glass-border: rgba(255, 255, 255, 0.25);
  --shadow: 0 12px 36px rgba(0, 0, 0, 0.07);
  --btn-shadow: 0 6px 20px rgba(201, 24, 31, 0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Nunito, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.93;
  margin: 0;
}
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.alert {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
}
.alert a { color: var(--white); text-decoration: none; white-space: nowrap; }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--white);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-right: auto;
}
.brand strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  letter-spacing: 0.04em;
  line-height: 1;
}
.logo {
  height: 58px;
  width: auto;
  display: block;
  background: linear-gradient(90deg, #0b5713 0%, #3d9a4a 100%);
  border-radius: 10px;
  padding: 6px 10px;
}
.brand .tag {
  display: block;
  margin-top: 4px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 22px;
}
.nav-links a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink2);
}
.nav-phone {
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  white-space: nowrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  border-radius: 8px;
  padding: 14px 22px;
  box-shadow: var(--btn-shadow);
}
.btn:hover { background: var(--red-hover); }
.btn.light {
  background: var(--white);
  color: var(--red);
  box-shadow: none;
}
.btn.ghost {
  background: transparent;
  color: var(--white);
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero {
  position: relative;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(6, 6, 4, 0.84) 0%, rgba(6, 6, 4, 0.62) 48%, rgba(6, 6, 4, 0.4) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
  padding: 72px 0 64px;
}
.hero h1 {
  font-size: clamp(52px, 6.5vw, 82px);
  max-width: 640px;
  margin: 18px 0 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--red);
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 13, 11, 0.55);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 800;
}
.hero-copy p {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}
.hero-actions .call {
  text-decoration: none;
}
.hero-actions small {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--muted2);
}
.hero-actions strong { font-size: 20px; }
.checks {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 26px;
  font-size: 14px;
  font-weight: 700;
}
.checks li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--red);
}
.stats { display: grid; gap: 14px; }
.stat {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 16px 18px;
  backdrop-filter: blur(8px);
}
.stat b {
  display: block;
  font-size: 21px;
  line-height: 1.2;
}
.stat span { font-size: 14px; color: rgba(255, 255, 255, 0.85); }
.mark {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--red);
  display: grid;
  place-items: center;
}

.section { padding: 72px 0; }
.section h2 {
  font-size: clamp(38px, 5vw, 60px);
  margin-bottom: 16px;
}
.lede {
  max-width: 660px;
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 32px;
}
.center { text-align: center; }
.center .lede { margin-left: auto; margin-right: auto; }

.services { background: var(--offwhite); }
.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.card .art {
  height: 190px;
  padding: 0;
  background: var(--light);
}
.card .art img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}
.card div { padding: 18px 18px 22px; }
.card h3 { font-size: 28px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; }

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}
.why-grid li {
  position: relative;
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid var(--border);
  font-weight: 700;
}
.why-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
}
.why-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.frame {
  background: var(--light);
  border-radius: 16px;
  min-height: 420px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.frame svg, .frame img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; display: block; }

.slideshow {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--ink);
  margin-top: 8px;
}
.slide { display: none; position: relative; }
.slide.is-on { display: block; }
.slide img { width: 100%; height: min(560px, 70vw); object-fit: cover; display: block; }
.slide figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  margin: 0;
  max-width: calc(100% - 120px);
  background: rgba(13, 13, 11, 0.72);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 800;
}
.shot-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.shot-btn.prev { left: 12px; }
.shot-btn.next { right: 12px; }

.steps { background: var(--ink); color: var(--white); }
.steps .lede { color: rgba(255, 255, 255, 0.75); }
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.step {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
}
.step em {
  display: block;
  font-style: normal;
  color: var(--red);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}
.step h3 { font-size: 32px; margin-bottom: 10px; }
.step p { color: rgba(255, 255, 255, 0.8); }

.reviews { background: var(--offwhite); }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.review p { font-size: 15px; }
.stars {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  letter-spacing: 0.12em;
  font-size: 14px;
}
.slot {
  display: inline-block;
  margin-top: 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.town-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 8px;
}
.town-grid a {
  display: block;
  text-decoration: none;
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
  font-weight: 800;
}
.town-grid a span {
  display: block;
  font-weight: 600;
  color: var(--muted);
  font-size: 14px;
}

.map-band { background: var(--light); }
.map-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}
.area-map {
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border2);
  background: var(--white);
}
.area-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.faq-list { display: grid; gap: 12px; max-width: 860px; }
.faq-list p {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
}
.faq-list p strong { display: block; margin-bottom: 4px; }

.quote {
  background: var(--offwhite);
  text-align: center;
}
.quote .lede { margin-bottom: 0; }
.quote a { color: var(--red); font-weight: 800; }

.final {
  background: var(--red);
  color: var(--white);
  text-align: center;
}
.final .lede { color: rgba(255, 255, 255, 0.9); }
.final-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 28px;
}
.footer h4 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 14px;
}
.footer a { text-decoration: none; }
.footer li { margin: 0 0 8px; font-size: 15px; }
.footer .brand strong,
.footer .brand .tag { color: var(--white); }
.footer .brand .tag { color: #ffb4b4; }
.legal {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  color: var(--muted2);
}
.menu-toggle { display: none; }

@media (max-width: 960px) {
  .cards-4,
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner,
  .why-grid,
  .map-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 12px;
    font-weight: 800;
  }
  .nav-links, .nav-phone, .nav .btn { display: none; }
  .nav.is-open .nav-links,
  .nav.is-open .nav-phone,
  .nav.is-open .btn {
    display: flex;
  }
  .nav.is-open .nav-inner {
    flex-wrap: wrap;
    padding-bottom: 16px;
  }
  .nav.is-open .nav-links {
    order: 5;
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 640px) {
  .cards-4,
  .step-grid,
  .review-grid,
  .town-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .alert { flex-direction: column; align-items: flex-start; }
  .hero-inner { padding: 48px 0; }
}
