:root {
  --bg: #08090c;
  --bg-soft: #10131a;
  --panel: #12161f;
  --panel-2: #171c26;
  --text: #f4f7fb;
  --muted: #b8c0cf;
  --line: rgba(255,255,255,0.08);
  --accent: #e11d2f;
  --accent-2: #ff5555;
  --accent-soft: rgba(225, 29, 47, 0.14);
  --shadow: 0 18px 45px rgba(0,0,0,0.42);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(225,29,47,0.24), transparent 24%),
    radial-gradient(circle at 20% 15%, rgba(255,85,85,0.08), transparent 20%),
    linear-gradient(180deg, #06070a 0%, #0d1016 100%);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3, h4 { margin: 0 0 1rem; line-height: 1.1; }
.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }
.section { padding: 4.5rem 0; }
.section-tight { padding: 3rem 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .86rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: #ffb3bb;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.muted { color: var(--muted); }
.lead { font-size: 1.1rem; color: #dbe1eb; }
.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .95rem 1.25rem;
  min-height: 50px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), #a90f20 100%);
  box-shadow: 0 14px 30px rgba(225,29,47,.26);
}
.btn-secondary {
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: white;
}
.btn-light {
  background: white;
  color: #0d1118;
}
.icon-badge {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(225,29,47,.18), rgba(225,29,47,.06));
  border: 1px solid rgba(225,29,47,.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ff7b87;
  flex-shrink: 0;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  background: #fff;
  color: #111;
  padding: .75rem 1rem;
  border-radius: 999px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(7, 9, 12, .78);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
}
.brand {
  display: flex;
  align-items: center;
  gap: .9rem;
}
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: radial-gradient(circle at 32% 35%, #ff9da7 0, #e11d2f 42%, #670b14 100%);
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 10px 24px rgba(225,29,47,.24);
}
.brand-mark::before {
  content: "";
  position: absolute;
  inset: 9px 12px 11px 12px;
  border: 3px solid white;
  border-radius: 20px 20px 16px 16px;
}
.brand-mark::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 7px;
  width: 6px;
  height: 12px;
  border: 3px solid white;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}
.brand-text strong {
  display: block;
  font-size: 1rem;
  letter-spacing: .03em;
}
.brand-text span {
  display: block;
  color: var(--muted);
  font-size: .84rem;
}
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  color: white;
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: white;
  margin: 5px auto;
  transition: transform .18s ease, opacity .18s ease;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: .4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 .95rem;
  border-radius: 999px;
  font-weight: 600;
  color: #dfe6f2;
}
.main-nav a:hover,
.main-nav a.active {
  background: rgba(225,29,47,.14);
  color: white;
}
.header-actions { display: flex; align-items: center; gap: .65rem; }
.hero {
  position: relative;
  overflow: clip;
  padding: 5rem 0 3rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 2rem;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  margin-bottom: 1.15rem;
}
.hero-copy .stat-line {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin: 1.6rem 0 2rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: #edf1f8;
  font-weight: 600;
}
.hero-panel {
  padding: 1rem;
}
.hero-art {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-art::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: calc(var(--radius) - 6px);
  background:
    radial-gradient(circle at center, rgba(225,29,47,.30), transparent 38%),
    linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.06);
}
.hero-image {
  position: relative;
  width: min(100%, 500px);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.08);
}
.hero-image img { width: 100%; height: auto; }
.floating-note {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  max-width: 240px;
  padding: 1rem 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(6,8,12,.84);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
}
.stats-grid,
.cards-grid,
.service-grid,
.area-grid,
.faq-grid,
.footer-grid {
  display: grid;
  gap: 1.2rem;
}
.stats-grid {
  grid-template-columns: repeat(4, 1fr);
}
.stat-card { padding: 1.35rem; }
.stat-card strong {
  display: block;
  font-size: 1.85rem;
  margin-bottom: .35rem;
}
.cards-grid.three { grid-template-columns: repeat(3, 1fr); }
.cards-grid.two { grid-template-columns: repeat(2, 1fr); }
.info-card,
.service-card,
.area-card,
.faq-card,
.contact-card,
.cta-strip,
.quote-card,
.highlight-card,
.detail-card,
.notice-card { padding: 1.5rem; }
.info-card h3,
.service-card h3,
.area-card h3,
.contact-card h3,
.detail-card h3 { margin-bottom: .65rem; }
.service-card ul,
.detail-card ul,
.contact-list,
.footer-links,
.check-list,
.faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.check-list li,
.service-card li,
.detail-card li,
.contact-list li,
.footer-links li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  margin-bottom: .7rem;
}
.check-list li::before,
.service-card li::before,
.detail-card li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  background: rgba(225,29,47,.18);
  color: #ff9ca5;
  font-size: .8rem;
  margin-top: .1rem;
}
.service-grid { grid-template-columns: repeat(2, 1fr); }
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
  align-items: start;
}
.cta-banner {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  background: linear-gradient(135deg, rgba(225,29,47,.14), rgba(255,255,255,.04));
}
.cta-banner h2 { margin-bottom: .35rem; }
.notice-card {
  background: linear-gradient(135deg, rgba(225,29,47,.16), rgba(255,255,255,.03));
  border: 1px solid rgba(225,29,47,.22);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.8rem;
}
.section-heading h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}
.page-hero {
  padding: 4.25rem 0 2rem;
}
.page-hero .card {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(225,29,47,.18), rgba(255,255,255,.03));
}
.area-grid { grid-template-columns: repeat(3, 1fr); }
.kit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.kit-item {
  padding: 1.2rem;
  text-align: center;
}
.accordion-item {
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.accordion-item:last-child { border-bottom: 0; }
.accordion-trigger {
  width: 100%;
  border: 0;
  background: none;
  color: white;
  text-align: left;
  padding: 1.1rem 0;
  font: inherit;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
}
.accordion-trigger span:last-child {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(255,255,255,.05);
  flex-shrink: 0;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .22s ease;
}
.accordion-content-inner {
  padding: 0 0 1rem;
  color: var(--muted);
}
.contact-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 1.3rem;
}
.contact-block {
  display: grid;
  gap: 1.05rem;
}
.contact-card small { color: #ffb3bb; text-transform: uppercase; letter-spacing: .1em; }
.contact-card a.link {
  font-size: 1.2rem;
  font-weight: 800;
}
.form-card { padding: 1.6rem; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .95rem;
}
.field { display: grid; gap: .45rem; }
.field.full { grid-column: 1 / -1; }
label { font-weight: 700; }
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  color: white;
  border-radius: 16px;
  padding: .95rem 1rem;
  font: inherit;
}
textarea { min-height: 140px; resize: vertical; }
input::placeholder, textarea::placeholder { color: #909ab0; }
.form-note { font-size: .93rem; color: var(--muted); }
.map-embed {
  border: 0;
  width: 100%;
  min-height: 320px;
  border-radius: 20px;
}
.quote-box {
  padding: 1.4rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
}
.footer {
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(4,5,7,.7);
}
.footer-top { padding: 3.2rem 0 1.4rem; }
.footer-grid { grid-template-columns: 1.2fr .8fr .8fr .9fr; }
.footer-bottom {
  padding: 1.1rem 0 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: .94rem;
}
.tag {
  display: inline-flex;
  padding: .38rem .7rem;
  border-radius: 999px;
  background: rgba(225,29,47,.12);
  color: #ffb3bb;
  font-size: .8rem;
  font-weight: 700;
}
.subtle-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(225,29,47,.4), rgba(255,255,255,.06), transparent);
  margin: 1rem 0 0;
}
.banner-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.banner-chip {
  padding: 1rem 1.15rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.empty-state {
  text-align: center;
  padding: 4rem 1.5rem;
}
.inline-link { color: #ffb3bb; text-decoration: underline; text-underline-offset: .16em; }
@media (max-width: 1040px) {
  .hero-grid,
  .contact-layout,
  .split-grid,
  .service-grid,
  .cards-grid.three,
  .footer-grid,
  .kit-grid,
  .stats-grid,
  .area-grid,
  .banner-strip,
  .form-grid,
  .cards-grid.two {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .nav-toggle { display: inline-block; }
  .header-actions .desktop-only { display: none; }
  .main-nav {
    position: fixed;
    left: 1rem;
    right: 1rem;
    top: 88px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: .2s ease;
  }
  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .main-nav ul {
    display: grid;
    gap: .3rem;
    background: rgba(8,10,13,.98);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;
    padding: .7rem;
    box-shadow: var(--shadow);
  }
  .main-nav a { width: 100%; }
  .hero-grid,
  .contact-layout,
  .split-grid,
  .service-grid,
  .cards-grid.three,
  .footer-grid,
  .kit-grid,
  .stats-grid,
  .area-grid,
  .banner-strip,
  .form-grid,
  .cards-grid.two {
    grid-template-columns: 1fr;
  }
  .cta-banner,
  .section-heading {
    align-items: start;
    flex-direction: column;
  }
  .hero {
    padding-top: 3rem;
  }
  .hero-art {
    min-height: 360px;
  }
  .floating-note {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }
}
@media (max-width: 560px) {
  .header-inner { min-height: 76px; }
  .hero-copy h1 { font-size: clamp(2.05rem, 11vw, 3.4rem); }
  .section { padding: 3.7rem 0; }
  .page-hero { padding: 3.2rem 0 1.5rem; }
  .brand-text span { font-size: .77rem; }
}
