:root {
  --bg: #070707;
  --surface: rgba(18,18,20,.78);
  --border: rgba(255,255,255,.11);
  --text: #fff;
  --muted: #b7b7bd;
  --red: #ef233c;
  --shell: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.shell {
  width: min(var(--shell), calc(100% - 48px));
  margin-inline: auto;
}

::selection {
  background: var(--red);
  color: #fff;
}

:focus-visible {
  outline: 3px solid rgba(239,35,60,.75);
  outline-offset: 4px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #ff4c60;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -.045em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.3rem, 8vw, 7.2rem);
  font-weight: 800;
  line-height: .96;
}

h1 span {
  display: block;
  color: #f34858;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

p {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(to bottom, rgba(5,5,5,.94), rgba(5,5,5,.72));
  backdrop-filter: blur(20px);
}

.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 1.02rem;
  font-weight: 600;
  white-space: nowrap;
}

.brand strong {
  font-weight: 800;
}

.brand-dot {
  position: relative;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(239,35,60,.13);
}

.brand-dot::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  background: #fff;
  opacity: .78;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
}

.nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: #c9c9ce;
  font-size: .8rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav a:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
}

.nav a.active {
  color: #fff;
  background: var(--red);
  box-shadow: 0 8px 24px rgba(239,35,60,.3);
}

.header-cta {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 800;
}

.mobile-menu {
  position: relative;
  display: none;
  justify-self: end;
}

.mobile-menu summary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  cursor: pointer;
  list-style: none;
  font-size: .82rem;
  font-weight: 800;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.hamburger {
  width: 20px;
  display: grid;
  gap: 4px;
}

.hamburger span {
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: .2s ease;
}

.mobile-menu[open] .hamburger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu[open] .hamburger span:nth-child(2) {
  opacity: 0;
}

.mobile-menu[open] .hamburger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: min(320px, calc(100vw - 30px));
  padding: 12px;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 24px;
  background: rgba(10,10,11,.98);
  box-shadow: 0 28px 80px rgba(0,0,0,.55);
}

.mobile-menu-panel a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 15px;
  color: #c9c9ce;
  font-size: .9rem;
  font-weight: 750;
}

.mobile-menu-panel a:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
}

.mobile-menu-panel a.active {
  color: #fff;
  background: var(--red);
}

.mobile-phone {
  margin-top: 6px;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.14);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-size: .92rem;
  font-weight: 800;
  transition: .25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--red);
  box-shadow: 0 16px 38px rgba(239,35,60,.28);
}

.button.secondary {
  border-color: rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
}

.button.light {
  background: #fff;
  color: #111;
}

.button.outline {
  border-color: rgba(255,255,255,.38);
}

.full-width {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0,0,0,.95), rgba(0,0,0,.68) 55%, rgba(0,0,0,.28)),
    url("https://images.unsplash.com/photo-1503736334956-4c8f8e92946d?auto=format&fit=crop&w=2200&q=85")
    center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -120px;
  bottom: -220px;
  z-index: -1;
  border-radius: 50%;
  background: rgba(239,35,60,.28);
  filter: blur(100px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, #070707, transparent 30%);
}

.hero-content {
  padding-block: 130px 150px;
}

.hero-content > * {
  max-width: 850px;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 34px;
  color: #d0d0d3;
  font-size: 1.1rem;
}

.status-pill {
  width: max-content;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status-pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 16px rgba(239,35,60,.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.coverage-section,
.locations-section,
.faq-section {
  padding-block: 110px;
}

.coverage-section,
.faq-section {
  background: #070707;
}

.locations-section {
  background:
    radial-gradient(circle at top left, rgba(239,35,60,.08), transparent 30%),
    #0c0c0e;
}

.section-intro {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: end;
}

.section-intro h2 {
  margin-bottom: 0;
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0,1.55fr) minmax(300px,.45fr);
  gap: 28px;
}

.map-card {
  position: relative;
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 30px;
  background: rgba(255,255,255,.04);
  box-shadow: 0 30px 90px rgba(0,0,0,.42);
  overflow: hidden;
}

#map {
  width: 100%;
  height: 650px;
  border-radius: 22px;
  background: #151517;
}

.map-key {
    position: absolute;
    top: 20px;
    left: 20px;
    bottom: auto;

    z-index: 1000;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 11px 16px;

    border-radius: 999px;

    background: rgba(9,9,10,.92);
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(14px);
}

.key-circle {
  width: 15px;
  height: 15px;
  border: 2px solid var(--red);
  border-radius: 50%;
  background: rgba(239,35,60,.25);
}

.coverage-panel {
  padding: 34px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow: 0 30px 90px rgba(0,0,0,.3);
}

.coverage-panel h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.coverage-stat {
  margin-top: 16px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  background: rgba(0,0,0,.2);
}

.coverage-stat span {
  display: block;
  color: #9999a0;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.coverage-stat strong {
  display: block;
  margin-top: 4px;
  font-size: 1.5rem;
}

.coverage-panel .button {
  margin-top: 24px;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
}

.location-grid article {
  min-height: 240px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  transition: .25s ease;
}

.location-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(239,35,60,.3);
}

.location-grid article > span {
  margin-bottom: auto;
  color: #ff4c60;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.location-grid p {
  margin-bottom: 0;
  font-size: .86rem;
}

.outside-section {
  padding-block: 95px;
  background: linear-gradient(135deg, #a70f1c, var(--red));
}

.outside-card,
.booking-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.outside-card > div:first-child {
  max-width: 720px;
}

.outside-card .eyebrow,
.outside-card p,
.booking-cta .eyebrow,
.booking-cta p {
  color: rgba(255,255,255,.82);
}

.outside-card h2,
.booking-cta h2 {
  color: #fff;
}

.outside-actions,
.cta-actions {
  min-width: max-content;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 18px;
}

.faq-grid article {
  min-height: 210px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
}

.faq-grid p {
  margin-bottom: 0;
}

.booking-cta {
  padding-block: 90px;
  background: linear-gradient(135deg, #a90e1b, var(--red));
}

.site-footer {
  padding-top: 80px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: #050505;
}

.footer-grid {
  padding-bottom: 54px;
  display: grid;
  grid-template-columns: 1.3fr .7fr .7fr;
  gap: 60px;
}

.footer-brand p {
  max-width: 430px;
  margin-top: 22px;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-links strong {
  margin-bottom: 7px;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links span {
  color: #9d9da3;
  font-size: .87rem;
}

.footer-bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.07);
  color: #77777d;
  font-size: .78rem;
}

/* Leaflet styling */
.leaflet-control-zoom a {
  background: #101012 !important;
  color: #fff !important;
  border-color: rgba(255,255,255,.1) !important;
}

.leaflet-control-attribution {
  background: rgba(10,10,11,.85) !important;
  color: #aaa !important;
}

.leaflet-control-attribution a {
  color: #fff !important;
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: #101012;
  color: #fff;
}

.leaflet-popup-content {
  font-family: "Manrope", sans-serif;
}

.custom-marker {
  width: 30px;
  height: 30px;
  border: 5px solid #fff;
  border-radius: 50%;
  background: var(--red);
  box-shadow:
    0 0 0 8px rgba(239,35,60,.22),
    0 10px 30px rgba(0,0,0,.4);
}

@media (max-width: 1100px) {
  .nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .location-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 900px) {
  .section-intro,
  .map-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  #map {
    height: 520px;
  }

  .outside-card,
  .booking-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .outside-actions,
  .cta-actions {
    min-width: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 650px) {
  .shell {
    width: min(var(--shell), calc(100% - 30px));
  }

  .hero {
    min-height: 650px;
  }

  .hero-content {
    padding-block: 100px 115px;
  }

  .coverage-section,
  .locations-section,
  .faq-section {
    padding-block: 78px;
  }

  .location-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  #map {
    height: 440px;
  }

  .map-key {
    left: 20px;
    right: 20px;
    bottom: 20px;
    border-radius: 17px;
  }

  .coverage-panel {
    padding: 25px;
  }

  .outside-actions,
  .cta-actions,
  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .outside-actions .button,
  .cta-actions .button,
  .hero-actions .button {
    width: 100%;
  }

  .menu-label {
    display: none;
  }

  .mobile-menu summary {
    width: 44px;
    padding: 0;
    justify-content: center;
  }

  .footer-bottom {
    padding-block: 20px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .outside-section,
  .booking-cta,
  .site-footer {
    display: none !important;
  }

  body,
  .coverage-section,
  .locations-section,
  .faq-section {
    background: #fff !important;
    color: #000;
  }

  h1,
  h2,
  h3,
  p,
  .eyebrow {
    color: #000 !important;
  }

  .map-card,
  .coverage-panel,
  .location-grid article,
  .faq-grid article {
    break-inside: avoid;
    border: 1px solid #ccc;
    background: #fff !important;
    box-shadow: none;
  }
}