/* ============================================
   House Of Medwell — Luxury Landing Styles
   ============================================ */

:root {
  --navy: #112339;
  --navy-deep: #0b1828;
  --navy-soft: #1a334f;
  --gold: #be9354;
  --gold-light: #c49b5d;
  --gold-bright: #d4b078;
  --bronze: #94703c;
  --olive: #5d614f;
  --sage: #999576;
  --sage-muted: #757661;
  --cream: #f7f3eb;
  --cream-dark: #efe8dc;
  --ivory: #fbf9f5;
  --text: #1a2332;
  --text-muted: #5a6358;
  --white: #ffffff;
  --border: rgba(17, 35, 57, 0.1);
  --border-gold: rgba(190, 147, 84, 0.35);
  --shadow-soft: 0 20px 60px rgba(17, 35, 57, 0.08);
  --shadow-card: 0 12px 40px rgba(17, 35, 57, 0.06);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --header-h: 80px;
  --container: 1180px;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Jost", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --section-pad: clamp(4.5rem, 8vw, 7.5rem);

  /* type scale (φ-informed) */
  --fs-2xs: 0.72rem;
  --fs-xs: 0.8rem;
  --fs-sm: 0.9rem;
  --fs-base: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
  --fs-md: clamp(1.05rem, 1rem + 0.3vw, 1.2rem);
  --fs-lg: clamp(1.3rem, 1.2rem + 0.5vw, 1.5rem);
  --fs-xl: clamp(1.6rem, 1.45rem + 0.8vw, 2rem);
  --fs-2xl: clamp(2rem, 1.5rem + 2.2vw, 3.25rem);
  --fs-hero: clamp(2.6rem, 1.8rem + 3.5vw, 4.5rem);
  --fs-display: clamp(2.25rem, 1.8rem + 1.8vw, 3.25rem);

  /* line heights */
  --lh-tight: 1.12;
  --lh-heading: 1.18;
  --lh-card: 1.3;
  --lh-body: 1.7;
  --lh-small: 1.5;

  /* spacing scale */
  --sp-1: 0.5rem;
  --sp-2: 0.85rem;
  --sp-3: 1.35rem;
  --sp-4: 2.2rem;
  --sp-5: 3.5rem;
  --card-pad: clamp(1.6rem, 1.3rem + 1vw, 2rem);
  --grid-gap: clamp(2.5rem, 5vw, 4rem);
}

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

html {
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  color: var(--text);
  background: var(--ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

@media (min-width: 768px) {
  .container {
    width: min(100% - 4rem, var(--container));
  }
}

/* ---------- Loader ---------- */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--navy-deep);
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}

.page-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__inner {
  text-align: center;
  width: min(280px, 70vw);
}

.page-loader__logo {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1) sepia(0.2);
  opacity: 0.95;
  margin-bottom: var(--sp-3);
}

.page-loader__bar {
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.page-loader__bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  animation: loadBar 1.1s var(--ease) forwards;
}

@keyframes loadBar {
  to {
    width: 100%;
  }
}

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-2xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: var(--lh-small);
  color: var(--gold);
  margin-bottom: var(--sp-2);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.eyebrow--gold {
  color: var(--gold-bright);
}

.eyebrow--gold::before {
  background: var(--gold-bright);
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: var(--fs-2xl);
  line-height: var(--lh-heading);
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: var(--sp-3);
}

.section-title--light {
  color: var(--cream);
}

.section-lead {
  color: var(--text-muted);
  max-width: 38rem;
  margin-bottom: var(--sp-4);
  font-weight: 300;
  font-size: var(--fs-md);
  line-height: var(--lh-body);
}

.section-lead--light {
  color: rgba(247, 243, 235, 0.72);
}

.section-head {
  max-width: 40rem;
  margin-bottom: var(--sp-5);
}

.section-head .section-lead {
  margin-bottom: 0;
}

.section {
  padding-block: var(--section-pad);
  position: relative;
}

.section--soft {
  background: var(--cream);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: var(--lh-small);
  border: 1.5px solid transparent;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease),
    color 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  white-space: nowrap;
}

.btn--sm {
  padding: 0.7rem 1.25rem;
  font-size: var(--fs-2xs);
}

.btn--block {
  width: 100%;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--bronze) 100%);
  color: var(--navy-deep);
  box-shadow: 0 10px 30px rgba(190, 147, 84, 0.28);
}

.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  box-shadow: 0 14px 36px rgba(190, 147, 84, 0.4);
  transform: translateY(-2px);
}

.btn--navy {
  background: var(--navy);
  color: var(--cream);
}

.btn--navy:hover {
  background: var(--navy-soft);
  transform: translateY(-2px);
}

.btn--outline {
  border-color: rgba(247, 243, 235, 0.4);
  color: var(--cream);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  transform: translateY(-2px);
}

.btn--outline-light {
  border-color: rgba(247, 243, 235, 0.45);
  color: var(--cream);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

/* ---------- Image placeholders ---------- */
.img-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border-gold);
  background:
    linear-gradient(145deg, rgba(190, 147, 84, 0.12) 0%, transparent 45%),
    linear-gradient(160deg, #1a334f 0%, #112339 45%, #3d4438 100%);
  color: rgba(247, 243, 235, 0.65);
  font-size: var(--fs-xs);
  min-height: 220px;
}

.img-placeholder::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(190, 147, 84, 0.2);
  border-radius: calc(var(--radius) - 6px);
  pointer-events: none;
}

.img-placeholder::after {
  content: "";
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px dashed rgba(190, 147, 84, 0.35);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
}

.img-placeholder span {
  position: relative;
  z-index: 1;
  max-width: 14rem;
}

.img-placeholder--hero {
  aspect-ratio: 4 / 5;
  min-height: 420px;
  border-radius: var(--radius-lg);
}

.img-placeholder--tall {
  aspect-ratio: 3 / 4;
  min-height: 480px;
}

.img-placeholder--wide {
  aspect-ratio: 16 / 10;
  min-height: 240px;
  margin-top: var(--sp-4);
}

.img-placeholder--square {
  aspect-ratio: 1;
  min-height: 0;
}

.img-placeholder--dining {
  aspect-ratio: 4 / 5;
  min-height: 400px;
}

.img-placeholder--portrait {
  aspect-ratio: 3 / 4;
  min-height: 260px;
  border-radius: var(--radius-sm);
  margin-bottom: var(--sp-3);
}

.img-placeholder.has-image {
  background: var(--navy-deep);
  color: transparent;
  padding: 0;
}

.img-placeholder.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  border: none;
  border-radius: inherit;
  top: auto;
  left: auto;
  transform: none;
  opacity: 1;
  background:
    linear-gradient(160deg, rgba(17, 35, 57, 0.22) 0%, transparent 42%, rgba(190, 147, 84, 0.12) 100%);
  pointer-events: none;
  z-index: 2;
}

.img-placeholder.has-image::before {
  z-index: 3;
}

.img-placeholder.has-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.92) sepia(0.06) contrast(1.02);
  z-index: 1;
}

.img-placeholder--portrait.has-image::before {
  inset: 8px;
  border-radius: calc(var(--radius-sm) - 4px);
}

.img-placeholder--hero.has-image::before {
  border-radius: calc(var(--radius-lg) - 6px);
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.header.is-scrolled,
body.nav-open .header {
  background: rgba(11, 24, 40, 0.96);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  height: 100%;
}

.header__logo {
  position: relative;
  z-index: 1002;
}

.header__logo img {
  width: clamp(130px, 18vw, 168px);
  height: auto;
  filter: brightness(0) invert(1) sepia(0.15) saturate(0.4);
  transition: opacity 0.3s;
}

.header__nav {
  display: none;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1.5vw, 1.75rem);
}

.header__nav-list a {
  font-size: var(--fs-2xs);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: var(--lh-small);
  color: rgba(247, 243, 235, 0.78);
  position: relative;
  padding-block: 0.35rem;
}

.header__nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}

.header__nav-list a:hover {
  color: var(--gold-bright);
}

.header__nav-list a:hover::after {
  width: 100%;
}

.header__actions {
  position: relative;
  z-index: 1002;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.header__phone {
  display: none;
  font-size: var(--fs-sm);
  color: var(--cream);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: var(--lh-small);
}

.header__phone:hover {
  color: var(--gold-bright);
}

.header__toggle {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  z-index: 1003;
  -webkit-tap-highlight-color: transparent;
}

.header__toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.3s;
}

.header__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.header__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.header__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (min-width: 1024px) {
  .header__nav {
    display: block;
  }

  .header__toggle {
    display: none;
  }

  .header__phone {
    display: inline;
  }

  .header__actions .btn--sm {
    display: inline-flex;
  }

  .mobile-nav {
    display: none !important;
  }
}

@media (max-width: 1023px) {
  .header__actions .btn--sm {
    display: none;
  }

  .header__nav {
    display: none;
  }

  .header {
    z-index: 1100;
  }
}

/* ---------- Mobile nav drawer ---------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sp-4);
  padding: calc(var(--header-h) + 2rem) clamp(1.5rem, 6vw, 3rem) 3rem;
  background: var(--navy-deep);
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.45s var(--ease), visibility 0.45s;
}

.mobile-nav.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.mobile-nav__list a {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 6vw, 2.25rem);
  font-weight: 500;
  line-height: var(--lh-card);
  color: var(--cream);
  letter-spacing: 0.01em;
}

.mobile-nav__list a:hover,
.mobile-nav__list a:focus-visible {
  color: var(--gold-bright);
}

.mobile-nav__phone {
  font-size: var(--fs-md);
  color: var(--gold-bright);
  letter-spacing: 0.02em;
}

.mobile-nav__cta {
  align-self: flex-start;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  background: var(--navy-deep);
  color: var(--cream);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero__orb--1 {
  width: min(55vw, 520px);
  height: min(55vw, 520px);
  background: radial-gradient(circle, rgba(190, 147, 84, 0.22), transparent 70%);
  top: -10%;
  right: 5%;
}

.hero__orb--2 {
  width: min(45vw, 400px);
  height: min(45vw, 400px);
  background: radial-gradient(circle, rgba(93, 97, 79, 0.35), transparent 70%);
  bottom: 5%;
  left: -5%;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--grid-gap);
  align-items: center;
}

@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--grid-gap);
  }
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: var(--fs-hero);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: var(--sp-3);
}

.hero__lead {
  color: rgba(247, 243, 235, 0.72);
  font-weight: 300;
  font-size: var(--fs-md);
  line-height: var(--lh-body);
  max-width: 34rem;
  margin-bottom: var(--sp-4);
}

.hero__bullets {
  display: grid;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

.hero__bullets li {
  position: relative;
  padding-left: 1.5rem;
  color: rgba(247, 243, 235, 0.85);
  font-size: var(--fs-sm);
  line-height: var(--lh-body);
}

.hero__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(190, 147, 84, 0.2);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
  color: rgba(247, 243, 235, 0.45);
  font-size: var(--fs-2xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: var(--lh-small);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    transform: scaleY(0.6);
    opacity: 0.4;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@media (min-width: 960px) {
  .hero__scroll {
    display: flex;
  }
}

/* ---------- Stats ---------- */
.stats {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4) var(--sp-3);
}

@media (min-width: 768px) {
  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-4);
  }
}

.stats__item {
  text-align: center;
  padding: var(--sp-1);
}

.stats__number {
  font-family: var(--font-serif);
  font-size: var(--fs-display);
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
  margin-bottom: var(--sp-1);
}

.stats__label {
  font-size: var(--fs-2xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: var(--lh-small);
  color: var(--text-muted);
}

/* ---------- Treatment ---------- */
.treatment__grid {
  display: grid;
  gap: var(--grid-gap);
  align-items: center;
}

@media (min-width: 900px) {
  .treatment__grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: var(--grid-gap);
  }
}

.treatment__media {
  position: relative;
}

.treatment__badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(251, 249, 245, 0.95);
  backdrop-filter: blur(8px);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gold);
  font-size: var(--fs-sm);
  line-height: var(--lh-small);
  color: var(--olive);
  box-shadow: var(--shadow-soft);
}

.treatment__badge strong {
  color: var(--navy);
}

.feature-list {
  display: grid;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

.feature-list li {
  padding-left: 1.75rem;
  position: relative;
  color: var(--text);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px;
  height: 12px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--gold) 35%, transparent 40%);
}

.treatment__highlights {
  display: grid;
  gap: var(--sp-2);
}

@media (min-width: 560px) {
  .treatment__highlights {
    grid-template-columns: 1fr 1fr;
  }
}

.highlight-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: var(--card-pad);
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s var(--ease);
}

.highlight-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.highlight-card h3 {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  font-weight: 500;
  line-height: var(--lh-card);
  color: var(--navy);
  margin-bottom: var(--sp-1);
}

.highlight-card p {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: var(--lh-body);
}

/* ---------- Amenities ---------- */
.amenities__grid {
  display: grid;
  gap: var(--sp-3);
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .amenities__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .amenities__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-3);
  }
}

.amenity-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--card-pad);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
    border-color 0.4s;
}

.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--border-gold);
}

.amenity-card__icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: var(--sp-3);
}

.amenity-card__icon svg {
  width: 100%;
  height: 100%;
}

.amenity-card h3 {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  font-weight: 500;
  line-height: var(--lh-card);
  color: var(--navy);
  margin-bottom: var(--sp-1);
}

.amenity-card p {
  color: var(--text-muted);
  font-size: var(--fs-sm);
  line-height: var(--lh-body);
}

/* ---------- Therapies ---------- */
.therapies__grid {
  display: grid;
  gap: var(--grid-gap);
  margin-bottom: var(--sp-5);
}

@media (min-width: 900px) {
  .therapies__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--grid-gap);
    align-items: start;
  }
}

.therapies__lists {
  display: grid;
  gap: var(--sp-3);
}

@media (min-width: 520px) {
  .therapies__lists {
    grid-template-columns: 1fr 1fr;
  }
}

.therapy-list {
  display: grid;
  gap: var(--sp-2);
}

.therapy-list li {
  position: relative;
  padding: var(--sp-2) 0 var(--sp-2) 1.5rem;
  border-bottom: 1px solid var(--border);
  font-size: var(--fs-sm);
  line-height: var(--lh-body);
  color: var(--navy);
}

.therapy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.2em;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 1px;
  transform: rotate(45deg);
}

.supplemental {
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: var(--card-pad);
}

.supplemental__title {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-weight: 500;
  line-height: var(--lh-heading);
  margin-bottom: var(--sp-3);
  color: var(--gold-bright);
}

.supplemental__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.supplemental__tags span {
  padding: var(--sp-1) var(--sp-2);
  border: 1px solid rgba(190, 147, 84, 0.35);
  border-radius: 999px;
  font-size: var(--fs-xs);
  letter-spacing: 0.04em;
  line-height: var(--lh-small);
  color: rgba(247, 243, 235, 0.85);
}

/* ---------- Stay ---------- */
.stay__grid {
  display: grid;
  gap: var(--grid-gap);
  align-items: center;
}

@media (min-width: 900px) {
  .stay__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--grid-gap);
  }
}

.check-list {
  display: grid;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--text);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--bronze));
  box-shadow: inset 0 0 0 3px var(--ivory);
  outline: 1px solid var(--gold);
}

.stay__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
}

.stay__media .img-placeholder:first-child {
  margin-top: var(--sp-4);
}

.stay__media .img-placeholder:last-child {
  margin-bottom: var(--sp-4);
}

/* ---------- Process ---------- */
.process__steps {
  display: grid;
  gap: var(--sp-3);
  counter-reset: none;
}

@media (min-width: 700px) {
  .process__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .process__steps {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-3);
  }
}

.process__step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--card-pad);
  position: relative;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}

.process__step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--border-gold);
}

.process__num {
  display: block;
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--sp-3);
  opacity: 0.9;
}

.process__step h3 {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  font-weight: 500;
  line-height: var(--lh-card);
  color: var(--navy);
  margin-bottom: var(--sp-1);
}

.process__step p {
  color: var(--text-muted);
  font-size: var(--fs-sm);
  line-height: var(--lh-body);
}

/* ---------- Dining ---------- */
.dining {
  background: var(--navy-deep);
  color: var(--cream);
  overflow: hidden;
}

.dining__grid {
  display: grid;
  gap: var(--grid-gap);
  align-items: center;
}

@media (min-width: 900px) {
  .dining__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: var(--grid-gap);
  }
}

.dining__copy {
  color: rgba(247, 243, 235, 0.65);
  max-width: 36rem;
  font-weight: 300;
  font-size: var(--fs-md);
  line-height: var(--lh-body);
}

/* ---------- Testimonials ---------- */
.testimonials__slider {
  position: relative;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  transition: transform 0.6s var(--ease);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 100%;
  max-width: 100%;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--card-pad);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  margin: 0 0.25rem;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 0.5rem);
    margin: 0 0.75rem;
  }
}

@media (min-width: 1100px) {
  .testimonial-card {
    flex: 0 0 calc(33.333% - 1rem);
  }
}

.testimonial-card p {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  font-style: italic;
  line-height: var(--lh-card);
  color: var(--navy);
  margin-bottom: var(--sp-4);
}

.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 500;
  font-size: var(--fs-sm);
  line-height: var(--lh-small);
  color: var(--navy);
}

.testimonial-card footer span {
  font-size: var(--fs-2xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: var(--lh-small);
  color: var(--gold);
}

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--navy);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.slider-btn svg {
  width: 20px;
  height: 20px;
}

.slider-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--cream);
}

.testimonials__dots {
  display: flex;
  gap: var(--sp-1);
}

.testimonials__dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(17, 35, 57, 0.2);
  transition: background 0.3s, transform 0.3s;
}

.testimonials__dots button.is-active {
  background: var(--gold);
  transform: scale(1.25);
}

/* ---------- Team ---------- */
.team__grid {
  display: grid;
  gap: var(--sp-3);
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .team__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.team-card {
  text-align: center;
}

.team-card h3 {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  font-weight: 500;
  line-height: var(--lh-card);
  color: var(--navy);
  margin-bottom: var(--sp-1);
}

.team-card p {
  font-size: var(--fs-sm);
  line-height: var(--lh-small);
  color: var(--text-muted);
}

.team-card:hover .img-placeholder {
  border-color: var(--gold);
}

/* ---------- Family ---------- */
.family {
  background:
    linear-gradient(160deg, rgba(17, 35, 57, 0.92), rgba(93, 97, 79, 0.85)),
    linear-gradient(145deg, var(--navy), var(--olive));
  color: var(--cream);
  text-align: center;
}

.family__inner {
  max-width: 42rem;
  margin-inline: auto;
}

.family .section-title {
  color: var(--cream);
}

.family .section-lead {
  color: rgba(247, 243, 235, 0.72);
  margin-inline: auto;
}

.family .eyebrow {
  justify-content: center;
}

/* ---------- FAQ ---------- */
.faq__grid {
  display: grid;
  gap: var(--grid-gap);
}

@media (min-width: 900px) {
  .faq__grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: var(--grid-gap);
    align-items: start;
  }
}

.accordion__item {
  border-bottom: 1px solid var(--border);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  padding: var(--sp-3) 0;
  text-align: left;
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  font-weight: 500;
  line-height: var(--lh-card);
  color: var(--navy);
}

.accordion__icon {
  position: relative;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  transition: background 0.3s, transform 0.3s;
}

.accordion__icon::before,
.accordion__icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.accordion__icon::before {
  width: 12px;
  height: 1.5px;
}

.accordion__icon::after {
  width: 1.5px;
  height: 12px;
  transition: opacity 0.3s;
}

.accordion__item.is-open .accordion__icon {
  background: var(--navy);
  border-color: var(--navy);
}

.accordion__item.is-open .accordion__icon::before,
.accordion__item.is-open .accordion__icon::after {
  background: var(--gold);
}

.accordion__item.is-open .accordion__icon::after {
  opacity: 0;
}

.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}

.accordion__item.is-open .accordion__panel {
  grid-template-rows: 1fr;
}

.accordion__panel > p {
  overflow: hidden;
  padding-bottom: 0;
  color: var(--text-muted);
  font-size: var(--fs-sm);
  line-height: var(--lh-body);
  max-width: 36rem;
}

.accordion__item.is-open .accordion__panel > p {
  padding-bottom: var(--sp-3);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--navy-deep) 0%, var(--navy-soft) 55%, #2a3830 100%);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  color: var(--cream);
}

.cta-banner__inner {
  display: grid;
  gap: var(--sp-4);
  align-items: center;
}

@media (min-width: 860px) {
  .cta-banner__inner {
    grid-template-columns: 1.4fr auto;
    gap: var(--grid-gap);
  }
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

/* ---------- Contact ---------- */
.contact__grid {
  display: grid;
  gap: var(--grid-gap);
}

@media (min-width: 900px) {
  .contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--grid-gap);
    align-items: start;
  }
}

.contact__details {
  display: grid;
  gap: var(--sp-3);
  margin-top: var(--sp-1);
}

.contact__details li {
  display: grid;
  gap: 0.25rem;
}

.contact__details strong {
  font-size: var(--fs-2xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: var(--lh-small);
  color: var(--gold);
  font-weight: 500;
}

.contact__details a:hover {
  color: var(--bronze);
}

.contact__form {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--card-pad);
  box-shadow: var(--shadow-card);
}

.form-row {
  display: grid;
  gap: var(--sp-1);
  margin-bottom: var(--sp-3);
}

.form-row label {
  font-size: var(--fs-2xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: var(--lh-small);
  color: var(--olive);
}

.form-row .optional {
  text-transform: none;
  letter-spacing: 0;
  color: var(--sage);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: var(--sp-2) var(--sp-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(190, 147, 84, 0.18);
}

.form-row textarea {
  resize: vertical;
  min-height: 110px;
}

.form-note {
  margin-top: var(--sp-2);
  font-size: var(--fs-xs);
  line-height: var(--lh-small);
  color: var(--sage-muted);
  text-align: center;
}

.form-success {
  margin-top: var(--sp-2);
  padding: var(--sp-2) var(--sp-3);
  background: rgba(93, 97, 79, 0.12);
  border: 1px solid rgba(93, 97, 79, 0.25);
  border-radius: var(--radius-sm);
  color: var(--olive);
  text-align: center;
  font-size: var(--fs-sm);
  line-height: var(--lh-small);
}

.form-row input.is-invalid,
.form-row select.is-invalid,
.form-row textarea.is-invalid {
  border-color: #a65d4a;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-deep);
  color: rgba(247, 243, 235, 0.7);
  padding-top: clamp(3.5rem, 6vw, 5rem);
}

.footer__grid {
  display: grid;
  gap: var(--sp-5);
  padding-bottom: var(--sp-5);
}

@media (min-width: 700px) {
  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: var(--sp-4);
  }
}

.footer__logo {
  width: 180px;
  margin-bottom: var(--sp-3);
  filter: brightness(0) invert(1) sepia(0.15) saturate(0.35);
}

.footer__brand p {
  font-size: var(--fs-sm);
  max-width: 18rem;
  line-height: var(--lh-body);
}

.footer__col h3 {
  font-family: var(--font-serif);
  font-size: var(--fs-md);
  font-weight: 500;
  line-height: var(--lh-card);
  color: var(--cream);
  margin-bottom: var(--sp-2);
}

.footer__col ul {
  display: grid;
  gap: var(--sp-1);
}

.footer__col a {
  font-size: var(--fs-sm);
  line-height: var(--lh-small);
  color: rgba(247, 243, 235, 0.65);
}

.footer__col a:hover {
  color: var(--gold-bright);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: 1.35rem;
}

.footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
  line-height: var(--lh-small);
}

.footer__legal {
  display: flex;
  gap: var(--sp-3);
}

.footer__legal a:hover {
  color: var(--gold-bright);
}

/* ---------- Reveal helpers ---------- */
.reveal,
.reveal-split {
  opacity: 1;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: none;
}

.js-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Hero uses GSAP intro timeline — keep visible to CSS, GSAP owns opacity */
.js-ready .hero .reveal {
  opacity: 1;
  transform: none;
}

.line-mask {
  display: block;
  overflow: hidden;
  padding-bottom: 0.05em;
}

.line-mask .line {
  display: block;
  will-change: transform;
  line-height: inherit;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .js-ready .reveal {
    opacity: 1;
    transform: none;
  }

  .hero__scroll-line {
    animation: none;
  }
}

/* ---------- Small screens polish ---------- */
@media (max-width: 479px) {
  .hero {
    padding-top: calc(var(--header-h) + 2rem);
  }

  .hero__cta .btn {
    width: 100%;
  }

  .cta-banner__actions .btn {
    width: 100%;
  }

  .stay__media .img-placeholder:first-child,
  .stay__media .img-placeholder:last-child {
    margin: 0;
  }
}
