@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --turquoise: #4bb6b1;
  --petrol: #087f82;
  --graphite: #302a3d;
  --soft: #f4f6f7;
  --white: #ffffff;
  --ink: #111111;
  --muted: #697178;
  --line: rgba(48, 42, 61, 0.12);
  --shadow: 0 22px 60px rgba(24, 42, 50, 0.13);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--graphite);
  background: var(--white);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 82px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 235px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: 126px;
  height: 52px;
  object-fit: contain;
  object-position: left center;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: linear-gradient(145deg, var(--petrol), var(--turquoise));
  border-radius: 50%;
  font-family: "Oswald", sans-serif;
  font-size: 20px;
}

.brand-name {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.brand-sub {
  display: block;
  color: var(--muted);
  max-width: 240px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 28px 10px;
  color: #342f3f;
  font-size: 13px;
  font-weight: 800;
}

.nav-link:hover {
  color: var(--petrol);
}

.dropdown {
  position: absolute;
  top: calc(100% - 8px);
  left: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(210px, 1fr));
  gap: 8px;
  min-width: 520px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.18s ease;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown a {
  padding: 10px 12px;
  border-radius: 6px;
  color: #3c3945;
  font-size: 13px;
  font-weight: 700;
}

.dropdown a:hover {
  color: var(--petrol);
  background: #edf8f7;
}

.cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
}

.cta,
.button.primary {
  color: var(--white);
  background: var(--petrol);
  box-shadow: 0 12px 28px rgba(8, 127, 130, 0.25);
}

.cta:hover,
.button.primary:hover {
  background: #066a6d;
  transform: translateY(-1px);
}

.button.secondary {
  color: var(--petrol);
  background: var(--white);
  border-color: rgba(8, 127, 130, 0.22);
}

.button.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.42);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: calc(100vh - 82px);
  padding: 96px 0 42px;
  overflow: hidden;
  color: var(--white);
  background: #152b31;
}

.hero.compact {
  min-height: 560px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.82), rgba(8, 127, 130, 0.38), rgba(17, 17, 17, 0.18)),
    var(--hero-image, url("https://images.unsplash.com/photo-1579684385127-1ef15d508118?auto=format&fit=crop&w=1800&q=80")) center / cover;
  transform: scale(1.02);
}

.hero .container,
.hero-next {
  position: relative;
  z-index: 1;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(260px, 360px);
  align-items: end;
  gap: 44px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--turquoise);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 850px;
  font-size: clamp(42px, 6.6vw, 86px);
}

h2 {
  color: var(--graphite);
  font-size: clamp(32px, 4vw, 56px);
}

h3 {
  color: var(--graphite);
  font-size: 25px;
}

.lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-panel {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.hero-panel strong {
  display: block;
  margin-bottom: 14px;
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  text-transform: uppercase;
}

.mini-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mini-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.hero-next {
  width: min(1180px, calc(100% - 40px));
  margin: 36px auto 0;
}

.audience-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.audience-card {
  min-height: 168px;
  padding: 26px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(8, 127, 130, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.audience-card.patient {
  background: rgba(48, 42, 61, 0.88);
}

.audience-card p {
  margin: 10px 0 18px;
  color: rgba(255, 255, 255, 0.82);
}

section {
  padding: 92px 0;
}

.section-soft {
  background: linear-gradient(180deg, var(--soft), #ffffff);
}

.section-dark {
  color: var(--white);
  background: linear-gradient(135deg, var(--graphite), #153f43);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
}

.section-dark .section-head p,
.section-dark p {
  color: rgba(255, 255, 255, 0.75);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.path-panel {
  position: relative;
  min-height: 470px;
  padding: 34px;
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--white);
  background: #203b42;
  box-shadow: var(--shadow);
}

.path-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.82)),
    var(--panel-image) center / cover;
  transition: 0.35s ease;
}

.path-panel:hover::before {
  transform: scale(1.04);
}

.path-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 402px;
}

.path-panel h3 {
  color: var(--white);
  font-size: clamp(31px, 4vw, 48px);
}

.path-panel p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.82);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(30, 44, 50, 0.08);
}

.card-image {
  height: 190px;
  margin: -26px -26px 22px;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card p {
  color: var(--muted);
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: var(--turquoise);
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  color: var(--petrol);
  background: #e7f6f5;
  font-size: 12px;
  font-weight: 800;
}

.feature-list {
  display: grid;
  gap: 13px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 12px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}

.feature-list i {
  color: var(--turquoise);
}

.stack {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.program-photo {
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.program-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.icon-grid .card > i {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--petrol);
  background: #e7f6f5;
  border-radius: 50%;
}

.program-grid .card {
  position: relative;
  overflow: hidden;
}

.step-number {
  display: block;
  margin-bottom: 14px;
  color: var(--turquoise);
  font-family: "Oswald", sans-serif;
  font-size: 34px;
  line-height: 1;
}

.expert-card h3 {
  margin-bottom: 10px;
}

.reviews-placeholder {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px;
  border: 1px dashed rgba(8, 127, 130, 0.35);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(30, 44, 50, 0.08);
}

.reviews-placeholder i {
  color: var(--turquoise);
}

.timeline {
  display: grid;
  gap: 14px;
}

.date-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.date-row strong {
  color: var(--turquoise);
  font-family: "Oswald", sans-serif;
  font-size: 28px;
  text-transform: uppercase;
}

.expert {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: center;
}

.expert img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
}

.location {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: stretch;
}

.map-box {
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(rgba(8, 127, 130, 0.22), rgba(48, 42, 61, 0.38)),
    url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=1200&q=80") center / cover;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
}

.content-block {
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.content-block p,
.content-block li {
  color: #566069;
}

.side-panel {
  position: sticky;
  top: 108px;
}

.price-card {
  padding: 28px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(145deg, var(--petrol), var(--graphite));
  box-shadow: var(--shadow);
}

.price-card h3 {
  color: var(--white);
}

.price-card p {
  color: rgba(255, 255, 255, 0.76);
}

.faq {
  display: grid;
  gap: 12px;
}

details {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

summary {
  font-weight: 800;
  cursor: pointer;
}

footer {
  padding: 64px 0 30px;
  color: rgba(255, 255, 255, 0.78);
  background: #15131b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 28px;
}

footer h3,
footer strong {
  color: var(--white);
}

footer a {
  display: block;
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.72);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: fixed;
    inset: 82px 0 auto;
    display: none;
    max-height: calc(100vh - 82px);
    padding: 18px 20px 30px;
    overflow: auto;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
  }

  body.menu-open .nav-links {
    display: block;
  }

  .nav-link {
    width: 100%;
    padding: 14px 0;
  }

  .dropdown {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    min-width: 0;
    margin-bottom: 14px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
  }

  .nav-shell > .cta {
    display: none;
  }

  .hero-grid,
  .split,
  .location,
  .content-layout {
    grid-template-columns: 1fr;
  }

  .side-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .nav-shell,
  .container,
  .hero-next {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    min-height: auto;
    padding: 74px 0 28px;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand-logo {
    width: 94px;
    height: 42px;
  }

  .brand-sub {
    display: none;
  }

  .hero.compact {
    min-height: 480px;
  }

  .audience-strip,
  .grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 64px 0;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 14px;
  }

  .date-row {
    grid-template-columns: 1fr;
  }

  .path-panel,
  .path-content {
    min-height: 360px;
  }
}
