:root {
  --bg: #f5f7f5;
  --surface: #ffffff;
  --surface-soft: #edf2ef;
  --ink: #18332f;
  --muted: #667b76;
  --accent: #2c6f63;
  --accent-dark: #1d5149;
  --accent-soft: #dcece7;
  --line: rgba(24, 51, 47, 0.12);
  --shadow: 0 24px 60px rgba(35, 66, 60, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(245, 247, 245, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color .25s ease, box-shadow .25s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(24, 51, 47, 0.06);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  box-shadow: 0 12px 26px rgba(44, 111, 99, 0.24);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-size: .96rem;
  font-weight: 700;
}

.brand-text small {
  margin-top: 4px;
  font-size: .78rem;
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  position: relative;
  color: var(--muted);
  font-weight: 600;
  font-size: .92rem;
  transition: color .2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--accent);
  transition: right .2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--ink);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  right: 0;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 10px 25px rgba(24, 51, 47, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  padding: 86px 0 96px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(44,111,99,.05) 1px, transparent 1px),
    linear-gradient(rgba(44,111,99,.05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}

.hero-orb-one {
  width: 420px;
  height: 420px;
  right: -150px;
  top: 45px;
  background: radial-gradient(circle at 35% 35%, rgba(163, 207, 195, .78), rgba(163,207,195,.08) 68%, transparent 70%);
}

.hero-orb-two {
  width: 300px;
  height: 300px;
  left: -180px;
  bottom: -20px;
  background: radial-gradient(circle, rgba(44,111,99,.13), transparent 70%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 80px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  line-height: .98;
  letter-spacing: -.04em;
}

.hero h1 span {
  color: var(--accent);
}

.hero-lead {
  margin: 28px 0 0;
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.24rem);
}

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

.btn {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: var(--accent);
  box-shadow: 0 15px 32px rgba(44,111,99,.24);
}

.btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 18px 36px rgba(44,111,99,.3);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.62);
}

.hero-details {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.hero-details > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail-label {
  color: var(--muted);
  font-size: .79rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
}

.hero-details strong {
  font-size: 1rem;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.visual-panel {
  position: relative;
  width: min(100%, 480px);
  min-height: 445px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 40px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.94), rgba(231,240,236,.78));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.visual-panel::before {
  content: "";
  position: absolute;
  inset: auto -80px -110px auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(44,111,99,.08);
}

.visual-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: .86rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
}

.visual-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(44,111,99,.1);
}

.therapy-mini-list {
  margin-top: 36px;
  display: grid;
  gap: 14px;
}

.mini-card {
  position: relative;
  z-index: 2;
  min-height: 72px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(24,51,47,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.74);
  transition: transform .25s ease, box-shadow .25s ease;
}

.mini-card:hover {
  transform: translateX(4px);
  box-shadow: 0 14px 28px rgba(24,51,47,.08);
}

.mini-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--accent);
  background: var(--accent-soft);
  font-size: .78rem;
  font-weight: 700;
}

.mini-card p {
  margin: 0;
  font-weight: 700;
}

.floating-badge {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 12px 30px rgba(24,51,47,.12);
  font-size: .88rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.badge-location {
  left: -18px;
  bottom: 82px;
}

.badge-contact {
  right: -16px;
  top: 80px;
}

.badge-icon {
  color: var(--accent);
}

.section {
  padding: 110px 0;
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading h2,
.modality-copy h2,
.location-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -.025em;
}

.section-heading-wide {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.section-heading-wide p {
  max-width: 390px;
  margin: 0 0 8px;
  color: var(--muted);
}

.intro-section {
  background: var(--surface);
}

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

.audience-card {
  position: relative;
  min-height: 300px;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.audience-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.audience-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  bottom: -80px;
  border-radius: 50%;
  border: 46px solid rgba(44,111,99,.06);
}

.card-number {
  color: var(--muted);
  font-size: .8rem;
  font-weight: 700;
}

.card-symbol {
  width: 70px;
  height: 70px;
  margin-top: 46px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: var(--accent);
  background: var(--surface);
  box-shadow: 0 14px 32px rgba(24,51,47,.08);
}

.card-symbol svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.audience-card h3 {
  margin: 24px 0 0;
  font-size: 1.55rem;
}

.therapies-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(44,111,99,.07), transparent 30%),
    var(--bg);
}

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

.therapy-card {
  min-height: 270px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.72);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.therapy-card:hover {
  transform: translateY(-6px);
  background: var(--surface);
  box-shadow: 0 20px 42px rgba(24,51,47,.09);
}

.therapy-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.therapy-index {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
}

.therapy-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: var(--accent-soft);
  font-size: 1.2rem;
}

.therapy-card h3 {
  margin: 0;
  max-width: 210px;
  font-size: 1.35rem;
  line-height: 1.25;
}

.modality-section {
  padding-top: 20px;
}

.modality-panel {
  position: relative;
  min-height: 390px;
  padding: 58px;
  border-radius: 38px;
  color: white;
  background: var(--ink);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.eyebrow-light {
  color: #a9d5ca;
}

.modality-copy {
  position: relative;
  z-index: 3;
}

.modality-copy h2 {
  max-width: 520px;
}

.modality-copy p {
  margin: 24px 0 0;
  color: #c9d6d3;
  font-size: 1.18rem;
  font-weight: 600;
}

.modality-decoration {
  position: relative;
  min-height: 260px;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(203,230,222,.26);
}

.ring-one {
  width: 240px;
  height: 240px;
  right: 0;
  top: 20px;
}

.ring-two {
  width: 170px;
  height: 170px;
  right: 35px;
  top: 55px;
}

.ring-three {
  width: 95px;
  height: 95px;
  right: 73px;
  top: 92px;
  background: rgba(169,213,202,.08);
}

.location-section {
  background: var(--surface);
}

.location-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 70px;
}

.location-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.location-line {
  width: 72px;
  height: 3px;
  margin-top: 28px;
  border-radius: 3px;
  background: var(--accent);
}

.location-graphic {
  min-height: 340px;
  display: grid;
  place-items: center;
}

.map-shape {
  position: relative;
  width: min(100%, 520px);
  height: 320px;
  border-radius: 50% 42% 48% 38% / 42% 50% 40% 48%;
  background:
    linear-gradient(130deg, rgba(44,111,99,.18), rgba(44,111,99,.04)),
    repeating-linear-gradient(35deg, transparent 0 30px, rgba(44,111,99,.06) 31px 32px);
  transform: rotate(-4deg);
}

.map-pin {
  position: absolute;
  left: 52%;
  top: 44%;
  width: 30px;
  height: 30px;
  border-radius: 50% 50% 50% 0;
  background: var(--accent);
  transform: rotate(-45deg);
  box-shadow: 0 15px 30px rgba(44,111,99,.25);
}

.map-pin::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  left: 10px;
  top: 10px;
  border-radius: 50%;
  background: white;
}

.map-ring {
  position: absolute;
  left: calc(52% - 21px);
  top: calc(44% - 21px);
  border-radius: 50%;
  border: 1px solid rgba(44,111,99,.25);
}

.ring-a {
  width: 72px;
  height: 72px;
}

.ring-b {
  width: 112px;
  height: 112px;
  left: calc(52% - 41px);
  top: calc(44% - 41px);
}

.contact-section {
  background: var(--bg);
}

.contact-card {
  padding: 52px;
  border-radius: 34px;
  background: var(--surface);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 56px;
  align-items: center;
}

.contact-copy h2 {
  max-width: 680px;
}

.contact-meta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-meta span {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface-soft);
  font-size: .87rem;
  font-weight: 600;
}

.contact-action {
  padding-left: 40px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-label {
  color: var(--muted);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.phone-link {
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
}

.btn-large {
  margin-top: 24px;
  min-width: 170px;
}

.closing-section {
  padding: 0 0 84px;
}

.closing-inner {
  padding-top: 28px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.closing-inner p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
}

.site-footer {
  padding: 42px 0;
  color: #d7e2df;
  background: #102824;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 40px;
  align-items: center;
}

.site-footer strong {
  color: white;
}

.site-footer p {
  margin: 6px 0 0;
  color: #9fb2ad;
  font-size: .9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.footer-links a,
.footer-phone {
  color: #c5d4d0;
  font-size: .88rem;
  font-weight: 600;
}

.footer-links a:hover,
.footer-phone:hover {
  color: white;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding-top: 64px;
  }

  .hero-grid,
  .location-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 50px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .therapies-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .modality-panel {
    grid-template-columns: 1fr .75fr;
  }

  .location-grid {
    gap: 35px;
  }

  .contact-card {
    gap: 36px;
  }

  .contact-action {
    padding-left: 0;
    padding-top: 30px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .brand-text strong {
    font-size: .88rem;
  }

  .brand-text small {
    font-size: .72rem;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 60;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 72px 0 auto;
    padding: 24px 20px 30px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(245,247,245,.98);
    display: grid;
    gap: 8px;
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 14px 12px;
    border-radius: 12px;
    background: rgba(255,255,255,.68);
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    padding: 58px 0 72px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 14vw, 4.7rem);
  }

  .hero-details {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .visual-panel {
    min-height: 420px;
    padding: 22px;
    border-radius: 30px;
  }

  .floating-badge {
    font-size: .78rem;
  }

  .badge-location {
    left: 8px;
    bottom: 22px;
  }

  .badge-contact {
    right: 8px;
    top: 40px;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading-wide {
    display: block;
  }

  .section-heading-wide p {
    margin-top: 16px;
  }

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

  .audience-card {
    min-height: 245px;
  }

  .therapy-card {
    min-height: 210px;
  }

  .modality-section {
    padding-top: 10px;
  }

  .modality-panel {
    min-height: 480px;
    padding: 36px 28px;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .modality-decoration {
    min-height: 190px;
  }

  .ring-one {
    width: 190px;
    height: 190px;
    right: 4px;
  }

  .ring-two {
    width: 130px;
    height: 130px;
    right: 34px;
    top: 50px;
  }

  .ring-three {
    width: 70px;
    height: 70px;
    right: 64px;
    top: 80px;
  }

  .location-graphic {
    min-height: 260px;
  }

  .map-shape {
    height: 250px;
  }

  .contact-card {
    padding: 30px 22px;
    border-radius: 26px;
  }

  .contact-meta {
    display: grid;
  }

  .closing-section {
    padding-bottom: 62px;
  }
}

@media (max-width: 430px) {
  .brand-text small {
    display: none;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .mini-card {
    grid-template-columns: 42px 1fr;
    padding: 14px;
  }

  .floating-badge {
    max-width: calc(100% - 28px);
  }

  .badge-contact {
    top: 16px;
  }

  .badge-location {
    bottom: 12px;
  }

  .phone-link {
    font-size: 1.75rem;
  }
}
