:root {
  --ink: #173028;
  --ink-soft: #3e5248;
  --forest: #214236;
  --cream: #f4efe6;
  --paper: #fbf8f3;
  --white: #fffdf9;
  --clay: #d85a38;
  --clay-deep: #b84324;
  --sand: #e6dccb;
  --line: rgba(23, 48, 40, 0.12);
  --shadow: 0 28px 70px rgba(23, 48, 40, 0.14);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
  --radius: 22px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 0% 0%, rgba(216, 90, 56, 0.08), transparent 55%),
    var(--paper);
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
address { font-style: normal; }

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

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: var(--cream);
  padding: 0.6rem 1rem;
  z-index: 20;
}
.skip:focus { top: 1rem; }

.eyebrow {
  margin: 0 0 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--clay-deep);
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
}

h1 { font-size: clamp(3.1rem, 6.4vw, 6.2rem); }
h2 { font-size: clamp(2.2rem, 4vw, 3.6rem); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 3.1rem;
  padding: 0.75rem 1.3rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 560;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn { white-space: nowrap; }
.btn:hover { transform: translateY(-2px); }
.btn--clay { background: var(--clay); color: #fff; }
.btn--clay:hover { background: var(--clay-deep); }
.btn--ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--ink { background: var(--ink); color: var(--cream); }
.btn--ink:hover { background: var(--forest); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  margin: 0.55rem 1rem 0 0;
  color: var(--clay-deep);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.text-link::after { content: "→"; transition: transform 0.2s ease; }
.text-link:hover { border-bottom-color: currentColor; }
.text-link:hover::after { transform: translateX(4px); }

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 248, 243, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(23, 48, 40, 0.06);
}

.utility {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 4vw;
  background: var(--ink);
  color: #efe7da;
  font-size: 0.85rem;
}
.utility p { margin: 0; }
.utility a { color: #fff; }

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 4vw;
}

.logo img { width: 168px; height: auto; background: #fff; border-radius: 8px; }

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}
.menu-toggle__bars,
.menu-toggle__bars::before,
.menu-toggle__bars::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: relative;
}
.menu-toggle__bars { margin: 0 auto; }
.menu-toggle__bars::before,
.menu-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
}
.menu-toggle__bars::before { top: -6px; }
.menu-toggle__bars::after { top: 6px; }

.nav { display: flex; align-items: center; gap: 0.35rem; }
.nav__cta { white-space: nowrap; flex: none; align-self: center; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  background: none;
  border: 0;
  color: var(--ink);
  text-decoration: none;
  padding: 0.45rem 0.55rem;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  font-size: 0.95rem;
}
.nav__link:hover,
.has-sub:hover > .nav__link,
.has-sub:focus-within > .nav__link { background: var(--sand); }

.has-sub { position: relative; }
.submenu {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  min-width: 240px;
  margin: 0;
  padding: 0.45rem;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: 0.18s ease;
}
.has-sub:hover > .submenu,
.has-sub:focus-within > .submenu,
.has-sub.is-open > .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.submenu a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  text-decoration: none;
}
.submenu a:hover { background: var(--cream); }

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4vw;
  align-items: center;
  padding: 4.2rem 4vw 2.4rem;
}
.lede {
  max-width: 38rem;
  font-size: 1.15rem;
  color: var(--ink-soft);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.6rem 0 2rem; }
.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hero__facts strong { display: block; font-family: var(--serif); font-size: 1.35rem; }
.hero__facts span { color: var(--ink-soft); font-size: 0.92rem; }
.hero__visual {
  position: relative;
  margin: 0;
}
.hero__visual img {
  width: 100%;
  height: min(74vh, 700px);
  object-fit: cover;
  object-position: center 20%;
  border-radius: 28px 28px 96px 28px;
  box-shadow: 0 30px 70px rgba(23, 48, 40, 0.18);
}
.hero__visual figcaption {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  margin: 0;
  padding: 0.55rem 0.85rem;
  background: rgba(255, 253, 249, 0.94);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
}
.hero__badge {
  position: absolute;
  left: -1.5rem;
  bottom: 1.6rem;
  width: min(280px, 80%);
  padding: 1.1rem 1.2rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.hero__badge span {
  display: block;
  color: var(--clay-deep);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.hero__badge strong { display: block; margin: 0.25rem 0 0.4rem; font-family: var(--serif); font-size: 1.35rem; line-height: 1.15; }
.hero__badge a { color: var(--ink); font-weight: 600; }

.ribbon {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--cream);
  margin-top: 1rem;
}
.ribbon__track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  padding: 0.9rem 0;
  animation: marquee 28s linear infinite;
  font-weight: 560;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
}
.ribbon__track span::before { content: "· "; color: var(--clay); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.open, .programs, .therapy, .meals, .stories, .team, .visit { padding: 5rem 4vw; }
.open {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  counter-reset: card;
}
.section-head { max-width: 40rem; margin-bottom: 2rem; }
.section-head p:last-child { color: var(--ink-soft); }
.section-head--row {
  max-width: none;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
}
.section-head--row > p { max-width: 28rem; margin: 0; }

.open-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 1.5rem 1.5rem 1.3rem;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.open-card:hover { box-shadow: 0 18px 40px rgba(23, 48, 40, 0.1); }
.open-card--dark { background: var(--ink); color: var(--cream); }
.open-card__kicker {
  margin: 0 0 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 600;
}
.open-card__kicker::before {
  counter-increment: card;
  content: counter(card, decimal-leading-zero);
  display: block;
  margin-bottom: 0.55rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: 0;
  color: var(--clay);
}
.open-card h3 { font-size: 1.8rem; margin-bottom: 0.8rem; }
.open-card p { margin-top: 0; color: inherit; opacity: 0.86; }
.open-card > .text-link { margin-top: 0.4rem; color: var(--clay-deep); }
.open-card > .text-link:first-of-type { margin-top: auto; }
.open-card--dark > .text-link,
.open-card--dark a { color: #f3b39a; }

.reasons { margin: 1.4rem 0 1.6rem; }
.reasons article {
  padding: 0.9rem 0 0.9rem 1rem;
  border-left: 3px solid var(--sand);
}
.reasons article + article { margin-top: 0.35rem; }
.reasons h3, .panel h3, .therapy h3, .team h3, .price-grid h3, .story-grid h3 {
  font-size: 1.45rem;
  margin-bottom: 0.4rem;
}
.reasons p, .panel p, .therapy p { color: var(--ink-soft); }

.therapy { background: var(--cream); }
.therapy__grid, .two, .story-grid, .team__grid, .price-grid {
  display: grid;
  gap: 1rem;
}
.therapy__grid, .two { grid-template-columns: 1fr 1fr; }
.story-grid, .team__grid, .price-grid { grid-template-columns: repeat(3, 1fr); margin-bottom: 1.2rem; }
.story-grid article { position: relative; }
.story-grid h3 { padding-top: 0.2rem; }
.story-grid article::before {
  content: "“";
  font-family: var(--serif);
  font-size: 3.2rem;
  line-height: 0.6;
  color: var(--clay);
  display: block;
}
.team__grid article { border-top: 4px solid var(--clay); }
.therapy__grid article, .panel, .story-grid article, .team__grid article, .price-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 1.35rem;
  box-shadow: 0 16px 40px rgba(23, 48, 40, 0.04);
}
.panel, .sport__photos { overflow: hidden; }
.panel img, .sport__photos img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 1rem;
  transition: transform 0.5s ease;
}
.panel:hover img { transform: scale(1.04); }
.panel ul, .therapy ul { margin: 0.4rem 0 0.8rem; padding-left: 1.1rem; color: var(--ink-soft); }

.sport {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  padding: 0 4vw 4rem;
  align-items: center;
}
.sport__photos { display: grid; gap: 1rem; }
.price-grid h3 { color: var(--ink); }
.price-grid h3 span { display: block; font-family: var(--sans); font-size: 0.85rem; font-weight: 500; color: var(--ink-soft); opacity: 1; }
.price-grid p { margin: 0.35rem 0; color: var(--ink); font-weight: 560; }
.meals .btn { margin-top: 0.4rem; }

.visit { padding-top: 1rem; }
.visit__panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  padding: 1.5rem;
  background: var(--ink);
  color: var(--cream);
  border-radius: 32px;
}
.visit__copy { padding: 1.2rem 0.6rem 0.4rem 1rem; align-self: center; }
.visit__copy .eyebrow { color: #f0b59a; }
.visit__copy h2 { margin-bottom: 0.7rem; }
.visit__copy p { margin-top: 0; max-width: 34rem; color: rgba(246, 241, 231, 0.82); }
.visit__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.4rem; }
.visit__panel .btn--ghost { border-color: rgba(246, 241, 231, 0.45); color: var(--cream); }
.visit__panel .btn--ghost:hover { background: var(--cream); color: var(--ink); }
.visit__details { display: grid; gap: 0.75rem; align-content: center; }
.contact-card {
  display: grid;
  gap: 0.15rem;
  padding: 1rem 1.15rem;
  text-decoration: none;
  background: rgba(255, 253, 249, 0.06);
  border: 1px solid rgba(246, 241, 231, 0.12);
  border-radius: 18px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.contact-card:hover { background: rgba(255, 253, 249, 0.12); }
.contact-card span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: #f0b59a;
}
.contact-card strong { font-family: var(--serif); font-size: 1.35rem; font-weight: 560; line-height: 1.2; }
.contact-card em { font-style: normal; color: rgba(246, 241, 231, 0.7); font-size: 0.92rem; }
.visit__photo { grid-column: 1 / -1; margin: 0; }
.visit__photo img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 22px;
  margin: 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: var(--cream);
}
.split__media { position: sticky; top: 0; align-self: start; height: 100vh; }
.split__media img { width: 100%; height: 100%; object-fit: cover; min-height: 100%; }
.split__copy { padding: 4.5rem 6vw; align-self: center; }
.ticks { padding-left: 1.1rem; color: var(--ink-soft); }
.ticks li { margin: 0.4rem 0; }

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.program {
  display: flex;
  flex-direction: column;
  min-height: 210px;
  padding: 1.4rem;
  text-decoration: none;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.program:hover { transform: translateY(-4px); border-color: var(--clay); }
.program span { color: var(--clay-deep); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 650; }
.program strong { font-family: var(--serif); font-size: 1.7rem; line-height: 1.15; margin: 0.7rem 0 auto; font-weight: 560; }
.program em { font-style: normal; color: var(--ink-soft); }

.vision {
  margin: 0 4vw 1rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  padding: 4rem;
  border-radius: 32px;
  background: var(--forest);
  color: #f6f1e7;
}
.vision blockquote { margin: 0; }
.vision blockquote p {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  line-height: 1.25;
  margin: 0 0 1rem;
}
.vision footer { opacity: 0.75; }
.vision .eyebrow { color: #f0b59a; }
.vision .text-link { color: #fff; }

.js .reveal { opacity: 0; }
.hero__visual img, .split__media img, .panel img, .sport__photos img { will-change: transform; }

.footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding: 3rem 4vw 2rem;
  background: var(--ink);
  color: #efe7da;
}
.footer img { width: 160px; background: #fff; border-radius: 8px; }
.footer h3 { font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.7rem; }
.footer a { display: block; text-decoration: none; padding: 0.2rem 0; color: #fff; }
.footer a:hover { color: #f0b59a; }
.footer__legal { grid-column: 1 / -1; margin: 0; opacity: 0.65; font-size: 0.88rem; }

@media (max-width: 1120px) {
  .utility { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .nav {
    position: fixed;
    inset: 78px 1rem auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    max-height: calc(100vh - 100px);
    overflow: auto;
  }
  .nav.is-open { display: flex; }
  .nav__list { flex-direction: column; align-items: stretch; }
  .nav__link { width: 100%; text-align: left; }
  .submenu {
    position: static;
    opacity: 1;
    pointer-events: none;
    transform: none;
    display: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 0.4rem 0.6rem;
    background: transparent;
  }
  .has-sub.is-open > .submenu { display: block; pointer-events: auto; }
  .nav__cta { margin-top: 0.4rem; }
  .hero, .split, .vision, .visit__panel, .open, .therapy__grid, .two, .story-grid, .team__grid, .price-grid, .sport, .program-grid, .footer, .section-head--row {
    grid-template-columns: 1fr;
  }
  .visit__copy { padding: 0.6rem 0.4rem 0; }
  .visit__photo img { height: 240px; }
  .split__media { position: static; height: auto; }
  .split__media img { height: 420px; min-height: 0; }
  .hero__visual img { height: 420px; border-radius: 24px; }
  .hero__badge { left: 1rem; }
  .hero__facts { grid-template-columns: 1fr; }
  .vision { padding: 1.6rem; }
  .section-head--row { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ribbon__track { animation: none; }
  .btn, .program, .panel img { transition: none; }
  .js .reveal { opacity: 1; }
}
