:root {
  --black: #050708;
  --ink: #0a1214;
  --panel: #10191b;
  --line: rgba(45, 212, 191, 0.18);
  --teal: #14b8a6;
  --teal-bright: #2dd4bf;
  --mint: #9ff5e8;
  --text: #eef7f5;
  --muted: #9bb3af;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 22px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Outfit, system-ui, sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--teal-bright);
  text-decoration: none;
}

h1,
h2,
h3,
.brand strong,
.price {
  font-family: Syne, Outfit, sans-serif;
  letter-spacing: -0.03em;
}

section[id] {
  scroll-margin-top: 88px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--teal);
  color: var(--black);
  padding: 8px 12px;
  z-index: 20;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(5, 7, 8, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.header-inner,
.hero-inner,
.split,
.services,
.companies-inner,
.locations,
.close-inner,
.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.brand strong {
  display: block;
  font-size: 0.95rem;
}

.brand small {
  color: var(--muted);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 12px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--mint);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a {
  color: var(--text);
  font-size: 0.92rem;
}

.nav-call {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--black) !important;
  font-weight: 700;
}

.nav-call.alt {
  background: transparent;
  color: var(--mint) !important;
  border: 1px solid var(--teal);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 8, 0.92) 0%, rgba(5, 7, 8, 0.55) 48%, rgba(5, 7, 8, 0.2) 100%),
    linear-gradient(180deg, transparent 40%, rgba(5, 7, 8, 0.85));
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 72px 0 120px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--teal-bright);
  font-weight: 700;
}

h1 {
  max-width: 14ch;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.95;
  margin: 12px 0 18px;
}

.lede {
  max-width: 38rem;
  color: #d5e8e4;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
}

.btn-teal {
  background: var(--teal);
  color: var(--black);
  box-shadow: 0 0 0 1px rgba(159, 245, 232, 0.25), 0 12px 30px rgba(20, 184, 166, 0.28);
}

.btn-teal:hover {
  background: var(--teal-bright);
}

.btn-ghost {
  border: 1px solid var(--teal-bright);
  color: var(--mint);
}

.btn-ghost:hover,
.btn-text:hover {
  color: white;
}

.btn-text {
  color: var(--mint);
}

.price-card {
  position: absolute;
  right: max(16px, calc((100% - 1120px) / 2));
  bottom: 36px;
  z-index: 2;
  width: min(280px, calc(100% - 32px));
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(10, 18, 20, 0.88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.price-kicker {
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

.price {
  margin: 4px 0;
  font-size: 4.4rem;
  line-height: 0.9;
  color: var(--mint);
}

.price-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.strip article {
  background: var(--ink);
  padding: 28px 18px;
  text-align: center;
}

.strip strong {
  display: block;
  font-family: Syne, sans-serif;
  font-size: 1.2rem;
  line-height: 1.25;
  color: var(--teal-bright);
}

.strip .price-stat {
  font-size: 1.8rem;
}

.split,
.services,
.locations {
  padding: 88px 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split-copy h2,
.section-head h2,
.clinic-copy h2,
.companies-inner h2,
.close-inner h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  margin: 8px 0 16px;
}

.split-copy p,
.clinic-copy p,
.companies-inner > p,
.close-inner p {
  color: var(--muted);
}

.checks {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.checks li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}

.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 12px var(--teal);
}

.split-media img,
.service img,
.clinic-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.split-media figcaption {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 10px;
}

.clinic-band {
  position: relative;
  min-height: 520px;
}

.clinic-band img {
  position: absolute;
  inset: 0;
  border-radius: 0;
  height: 100%;
  object-fit: cover;
}

.clinic-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 7, 8, 0.9) 0%, rgba(5, 7, 8, 0.45) 58%, rgba(5, 7, 8, 0.18) 100%);
}

.clinic-copy {
  position: relative;
  z-index: 1;
  width: min(640px, calc(100% - 32px));
  margin: 0 0 0 max(16px, calc((100% - 1120px) / 2));
  padding: 72px 0;
}

.clinic-copy h2,
.clinic-copy p {
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
}

.section-head {
  max-width: 720px;
  margin-bottom: 40px;
}

.section-head p:last-child {
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
}

.service {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.service:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 212, 191, 0.45);
}

.service img {
  height: 180px;
  border-radius: 0;
}

.service.featured {
  grid-row: span 2;
}

.service.featured img {
  height: 280px;
}

.service div {
  padding: 22px;
}

.tag {
  display: inline-block;
  margin: 0 0 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--black);
  font-weight: 800;
}

.service h3 {
  margin: 0 0 8px;
}

.service p {
  margin: 0;
  color: var(--muted);
}

.companies {
  background:
    radial-gradient(circle at 20% 20%, rgba(20, 184, 166, 0.16), transparent 28%),
    var(--ink);
  border-block: 1px solid var(--line);
}

.companies-inner {
  padding: 88px 0;
}

.company-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.company-points p {
  margin: 0;
  padding: 18px;
  background: rgba(5, 7, 8, 0.45);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.location {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.location h3 {
  margin-top: 0;
  font-size: 2rem;
}

.phone {
  display: inline-block;
  margin: 8px 0 14px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--mint);
}

.map-link {
  display: inline-block;
  margin: 0 0 16px 12px;
}

.location iframe {
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: 16px;
  filter: grayscale(0.4) contrast(1.05);
}

.close {
  padding: 20px 0 120px;
}

.close-inner {
  padding: 48px;
  border-radius: 32px;
  background: linear-gradient(135deg, #103532, #050708 55%);
  border: 1px solid var(--line);
  text-align: center;
}

.close-inner .hero-actions {
  justify-content: center;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 0 110px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  gap: 12px;
}

.footer-brand p,
.footer-cols p {
  margin: 4px 0 0;
}

.footer-cols {
  display: flex;
  gap: 48px;
}

.mobile-bar {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.8s ease forwards;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    padding: 16px;
    background: var(--ink);
    border: 1px solid var(--line);
    border-radius: 16px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-inner {
    padding-bottom: 220px;
  }

  .price-card {
    left: 16px;
    right: 16px;
    width: auto;
  }

  .strip,
  .split,
  .service-grid,
  .company-points,
  .location-grid,
  .site-footer,
  .footer-cols {
    grid-template-columns: 1fr;
    display: grid;
  }

  .site-footer,
  .footer-cols {
    gap: 20px;
  }

  .service.featured {
    grid-row: auto;
  }

  .close-inner {
    padding: 28px 18px;
  }

  .mobile-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 12;
    background: #07100f;
    border-top: 1px solid var(--line);
  }

  .mobile-bar a {
    padding: 16px;
    text-align: center;
    color: var(--black);
    font-weight: 800;
    background: var(--teal);
  }

  .mobile-bar a:last-child {
    background: var(--black);
    color: var(--mint);
  }
}
