/* Inlined from styles.css */
:root {
  --color-brand-50: #fdf2f8;
  --color-brand-100: #fce7f3;
  --color-brand-200: #fbcfe8;
  --color-brand-300: #f8a4d7;
  --color-brand-400: #f472b6;
  --color-brand-500: #ec4899;
  --color-brand-600: #db2777;
  --color-brand-700: #be185d;
  --color-brand-800: #9d174d;
  --color-brand-900: #831843;

  --color-accent-400: #f97316;
  --color-accent-500: #fb923c;
  --color-accent-600: #ea580c;

  --color-surface-primary: #fafaf9;
  --color-surface-secondary: #f5f3f0;
  --color-surface-card: #fff;
  --color-surface-glass: rgba(236, 72, 153, 0.04);

  --color-border-default: rgba(236, 72, 153, 0.15);
  --color-border-subtle: rgba(236, 72, 153, 0.08);
  --color-border-accent: rgba(236, 72, 153, 0.3);

  --color-text-primary: #1a1a1a;
  --color-text-secondary: #6b7280;
  --color-text-muted: #9ca3af;
  --color-text-disabled: #d1d5db;

  --color-interactive-default: #ec4899;
  --color-interactive-hover: #f472b6;
  --color-interactive-active: #db2777;

  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;

  --font-display: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --radius-full: 9999px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(236, 72, 153, 0.12);
  --shadow-lg: 0 16px 48px rgba(236, 72, 153, 0.15);
  --shadow-glow: 0 0 40px rgba(236, 72, 153, 0.2);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-primary);
  background-color: var(--color-surface-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-interactive-default);
  color: #fff;
  padding: var(--space-3) var(--space-6);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-weight: 600;
  z-index: 9999;
  transition: top 200ms;
}

.skip-link:focus {
  top: 0;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(var(--space-6), 5vw, var(--space-10));
}

/* Full-width horizontal padding; use with inner max-width for footer etc. */
.container-fluid {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0 clamp(var(--space-6), 5vw, var(--space-10));
}

.section {
  padding: clamp(80px, 10vw, 120px) 0;
}

.section--alt {
  background: var(--color-surface-secondary);
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent-500);
  margin-bottom: var(--space-4);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.369rem, 4vw, 3.157rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  margin-bottom: var(--space-4);
}

.section-header {
  margin-bottom: clamp(var(--space-10), 5vw, var(--space-16));
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 250ms var(--ease-out-expo);
  border: 2px solid transparent;
  min-height: 48px;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--color-interactive-default);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--color-interactive-default);
  color: #fff;
  border-color: var(--color-interactive-default);
  box-shadow: 0 4px 16px rgba(236, 72, 153, 0.25);
}

.btn--primary:hover {
  background: var(--color-interactive-hover);
  border-color: var(--color-interactive-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.35);
}

.btn--secondary {
  background: var(--color-brand-50);
  color: var(--color-interactive-default);
  border-color: var(--color-brand-200);
}

.btn--secondary:hover {
  background: var(--color-brand-100);
  border-color: var(--color-brand-300);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--color-interactive-default);
  border-color: var(--color-interactive-default);
}

.btn--outline:hover {
  background: var(--color-brand-50);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text-secondary);
  border-color: var(--color-border-default);
  font-size: 0.875rem;
  padding: 8px 16px;
  min-height: 40px;
}

.btn--ghost:hover {
  color: var(--color-text-primary);
  background: var(--color-surface-glass);
  border-color: var(--color-border-accent);
  transform: translateY(-1px);
}

.btn--wellness-primary {
  background: #5a7d6c;
  color: #fff;
  border-color: #5a7d6c;
  box-shadow: 0 4px 18px rgba(90, 125, 108, 0.28);
}

.btn--wellness-primary:hover {
  background: #4d6d5e;
  border-color: #4d6d5e;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(90, 125, 108, 0.35);
}

.btn--wellness-outline {
  background: rgba(255, 255, 255, 0.45);
  color: #3d4540;
  border-color: #d4dcd4;
}

.btn--wellness-outline:hover {
  background: #fff;
  border-color: #b8c4b8;
  color: #2a322e;
  transform: translateY(-2px);
}

.btn--lg {
  padding: 16px 32px;
  font-size: 1rem;
  min-height: 56px;
}

.btn--sm {
  padding: 8px 16px;
  font-size: 0.875rem;
  min-height: 40px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms var(--ease-out-expo), transform 600ms var(--ease-out-expo);
}

.reveal--right {
  transform: translateX(32px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal--right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 300ms, box-shadow 300ms, border-color 300ms;
  border-bottom: 1px solid transparent;
  background: #f9fdfb;
}

.nav.scrolled {
  border-color: var(--color-border-subtle);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-4) clamp(var(--space-6), 5vw, var(--space-10));
  min-height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.nav__logo-icon {
  display: flex;
  flex-shrink: 0;
}

.nav__logo-icon svg {
  display: block;
}

.nav__logo-wordmark {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.1;
}

.nav__logo-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  color: #1c2420;
}

.nav__logo-tagline {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  color: #b8942e;
}

.nav__logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--color-brand-500), var(--color-accent-500));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: #fff;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text-primary);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  margin-left: auto;
}

.nav__links {
  display: none;
  align-items: center;
  gap: clamp(4px, 1.5vw, 20px);
}

@media (min-width: 900px) {
  .nav__links {
    display: flex;
  }
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #4a5c52;
  padding: var(--space-2) var(--space-2);
  border-radius: var(--radius-full);
  transition: color 200ms;
  position: relative;
  white-space: nowrap;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #557c62;
  border-radius: 2px;
  transition: width 250ms var(--ease-out-expo);
}

.nav__link:hover {
  color: #557c62;
}

.nav__link:hover::after {
  width: 20px;
}

.nav__link.nav__link--active {
  color: #3d5248;
  font-weight: 600;
}

.nav__link.nav__link--active::after {
  width: 22px;
}

.nav__cta {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, oklch(55% .06 155), oklch(65% .07 200)); 
  box-shadow: 0 2px 12px rgba(90, 125, 108, 0.28);
  transition: background 200ms, border-color 200ms, transform 200ms var(--ease-out-expo),
    box-shadow 200ms;
  white-space: nowrap;
}

.nav__cta:hover {
  background: #4d6d5e;
  border-color: #4d6d5e;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(90, 125, 108, 0.35);
}

.nav__cta:focus-visible {
  outline: 2px solid #3d5248;
  outline-offset: 2px;
}

.nav__cta-icon {
  flex-shrink: 0;
}

@media (min-width: 900px) {
  .nav__cta {
    display: inline-flex;
  }
}

.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

@media (min-width: 900px) {
  .nav__hamburger {
    display: none;
  }
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: all 300ms var(--ease-spring);
  transform-origin: center;
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(250, 250, 249, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms var(--ease-smooth);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
  text-align: center;
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: clamp(1.777rem, 4vw, 2.369rem);
  font-weight: 700;
  color: var(--color-text-secondary);
  letter-spacing: -0.01em;
  transition: color 200ms;
  padding: var(--space-2);
}

.mobile-menu__link:hover {
  color: var(--color-text-primary);
}

.mobile-menu__link.mobile-menu__link--active {
  color: var(--color-text-primary);
}

.mobile-menu__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #5a7d6c;
  border: 2px solid #5a7d6c;
  box-shadow: 0 2px 12px rgba(90, 125, 108, 0.28);
  transition: background 200ms, border-color 200ms, transform 200ms var(--ease-out-expo),
    box-shadow 200ms;
}

.mobile-menu__cta:hover {
  background: #4d6d5e;
  border-color: #4d6d5e;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(90, 125, 108, 0.35);
}

.mobile-menu__cta:focus-visible {
  outline: 2px solid #3d5248;
  outline-offset: 2px;
}

.nav-scroll-target {
  height: 0;
  overflow: hidden;
  pointer-events: none;
  scroll-margin-top: 88px;
}

.hero {
 /*  min-height: 100svh; */
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__mesh {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 30%, rgba(236, 72, 153, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(249, 115, 22, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(219, 39, 119, 0.10) 0%, transparent 50%);
  animation: mesh-drift 20s ease-in-out infinite alternate;
}

@keyframes mesh-drift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-15px, 20px) scale(1.03);
  }
  100% {
    transform: translate(10px, -10px) scale(0.98);
  }
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(var(--space-10), 8vw, var(--space-20)) clamp(var(--space-6), 5vw, var(--space-10));
  width: 100%;
}

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

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-500);
  margin-bottom: var(--space-5);
  animation: fade-up 600ms 200ms var(--ease-out-expo) both;
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent-500);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.6);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(249, 115, 22, 0);
  }
}

.hero__name {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-5);
}

.hero__name-first {
  display: block;
  font-size: clamp(3.157rem, 6vw, 5.61rem);
  color: var(--color-text-primary);
  animation: fade-up 600ms 400ms var(--ease-out-expo) both;
}

.hero__name-last {
  display: block;
  font-size: clamp(3.157rem, 6vw, 5.61rem);
  background: linear-gradient(135deg, var(--color-brand-500) 0%, var(--color-accent-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fade-up 600ms 500ms var(--ease-out-expo) both;
}

.hero__position {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  animation: fade-up 500ms 650ms var(--ease-out-expo) both;
}

.hero__position-badge {
  background: linear-gradient(135deg, var(--color-brand-600), var(--color-brand-500));
  color: #fff;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.hero__position-divider {
  color: var(--color-text-muted);
}

.hero__position-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.hero__tagline {
  font-size: clamp(1.125rem, 2vw, 1.333rem);
  color: var(--color-text-secondary);
  line-height: 1.65;
  max-width: 52ch;
  margin-bottom: var(--space-8);
  animation: fade-up 500ms 750ms var(--ease-out-expo) both;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
  animation: fade-up 500ms 900ms var(--ease-out-expo) both;
}

.hero__social-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
  animation: fade-up 500ms 1050ms var(--ease-out-expo) both;
}

.hero__proof-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.hero__proof-item svg {
  color: var(--color-accent-500);
}

.hero__proof-divider {
  width: 1px;
  height: 16px;
  background: var(--color-border-default);
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  animation: fade-in 800ms 600ms var(--ease-out-expo) both;
}

@media (min-width: 900px) {
  .hero__visual {
    justify-content: flex-end;
  }
}

.hero__img-frame {
  position: relative;
  width: min(400px, 90vw);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.hero__img-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at center, rgba(236, 72, 153, 0.25) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
}

.hero__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-default);
  display: block;
}

.hero__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(250, 250, 249, 0.3) 0%, transparent 50%);
  border-radius: var(--radius-xl);
}

.hero__float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid var(--color-border-default);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-md);
  animation: float-card 4s ease-in-out infinite alternate;
}

.hero__float-card--digs {
  left: -20px;
  bottom: 80px;
  animation-delay: 0s;
}

.hero__float-card--aces {
  right: -10px;
  top: 80px;
  animation-delay: 1.5s;
}

@keyframes float-card {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-8px);
  }
}

.float-card__value {
  font-family: var(--font-display);
  font-size: clamp(1.777rem, 3vw, 2.369rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--color-brand-500), var(--color-accent-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.float-card__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

@keyframes scroll-line {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Hero — IV wellness (matches Balanced Body / holistic IV layout) */
.hero--wellness {
  overflow: hidden;
}

.hero--wellness .hero__bg {
  background: transparent;
}

.hero-w__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg, oklch(97% .02 200) 0%, oklch(96% .025 150) 50%, oklch(97% .03 90) 100%
  );
}

.hero-w__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  margin-bottom: var(--space-6);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3d5248;
  background: #fff;
  border: 1px solid #e0e6e2;
  border-radius: var(--radius-full);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  animation: fade-up 600ms 150ms var(--ease-out-expo) both;
}

.hero-w__eyebrow-icon {
  flex-shrink: 0;
  color: #5a7d6c;
}

.hero-w__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #1c2420;
  max-width: min(100%, 22rem);
  margin: 0 0 var(--space-6);
  animation: fade-up 600ms 280ms var(--ease-out-expo) both;
}

.hero-w__title-accent {
  font-style: normal;
  font-weight: 600;
  color: #5a7d6c;
}

.hero-w__lead {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.35vw, 1.125rem);
  line-height: 1.65;
  color: #4a5550;
  max-width: 48ch;
  margin: 0 0 var(--space-8);
  animation: fade-up 550ms 400ms var(--ease-out-expo) both;
}

.hero--wellness .hero-w__ctas {
  margin-bottom: var(--space-5);
  animation: fade-up 550ms 520ms var(--ease-out-expo) both;
}

.hero-w__footnote {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #8a9690;
  margin: 0;
  letter-spacing: 0.02em;
  animation: fade-up 500ms 640ms var(--ease-out-expo) both;
}

.hero-w__visual {
  justify-content: center;
  animation: fade-in 800ms 400ms var(--ease-out-expo) both;
}

@media (min-width: 900px) {
  .hero-w__visual {
    justify-content: flex-end;
  }
}

.hero-w__art-card {
  width: min(100%, 540px); 
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 50px rgba(45, 74, 58, 0.12), 0 4px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-w__art-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(52vh, 520px);
  object-fit: contain;
  border-radius: var(--radius-lg);
}

.hero-w__scroll-hint {
  color: #7a8a82;
}

.hero--wellness .hero__scroll-line {
  background: linear-gradient(to bottom, transparent, rgba(90, 125, 108, 0.35));
}

@media (prefers-reduced-motion: reduce) {
  .hero-w__eyebrow,
  .hero-w__title,
  .hero-w__lead,
  .hero--wellness .hero-w__ctas,
  .hero-w__footnote,
  .hero-w__visual {
    animation: none !important;
    opacity: 1 !important;
  }
}

/* What we offer — equal cards, squircle icon wells, hover lift + inverted icon */
.offer {
  background: #f8fdfc;
  padding: clamp(4rem, 10vw, 6.5rem) 0;
}

.offer__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  /* padding: 0 clamp(var(--space-6), 5vw, var(--space-10)); */
}

.offer__header {
  text-align: center;
  max-width: 32rem;
  margin: 0 auto clamp(2.75rem, 6vw, 3.75rem);
}

.offer__eyebrow {
  margin: 0 0 0.75rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b08d4b;
}

.offer__title {
  margin: 0 auto;
  max-width: 17em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.875rem, 3.8vw, 2.5rem);
  line-height: 1.22;
  letter-spacing: -0.025em;
  color: #111827;
}

.offer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

@media (min-width: 640px) {
  .offer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .offer__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1.25rem, 2vw, 1.75rem);
  }
}

.offer-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  height: 100%;
  padding: 1.5rem;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #eceef1;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
  transition:
    transform 240ms var(--ease-out-expo),
    box-shadow 240ms var(--ease-out-expo),
    border-color 240ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .offer-card:hover {
    transform: translateY(-10px);
    border-color: #e2e6ea;
    box-shadow:
      0 22px 48px rgba(15, 23, 42, 0.14),
      0 10px 22px rgba(15, 23, 42, 0.08);
  }

  .offer-card:hover .offer-card__icon--soft {
    background: #2d6b58;
    color: #fff;
    transform: translateY(-1px);
  }

  .offer-card:hover .offer-card__title {
    color: #0f172a;
  }

  .offer-card:hover .offer-card__icon svg {
    transform: scale(1.03);
  }
}

.offer-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  transition:
    transform 240ms var(--ease-out-expo),
    background 240ms ease,
    color 240ms ease,
    box-shadow 240ms ease;
}

.offer-card__icon svg {
  width: 24px;
  height: 24px;
  transition: transform 240ms var(--ease-out-expo);
}

.offer-card__icon--soft {
  background: #e3f4ef;
  color: #2d6b58;
}

.offer-card__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
  transition: color 240ms ease;
}

.offer-card__desc {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.6;
  color: #6b7280;
}

@media (prefers-reduced-motion: reduce) {
  .offer-card,
  .offer-card__icon,
  .offer-card__icon svg,
  .offer-card__title {
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) and (hover: hover) and (pointer: fine) {
  .offer-card:hover {
    transform: none;
  }

  .offer-card:hover .offer-card__icon--soft,
  .offer-card:hover .offer-card__icon svg {
    transform: none;
  }
}

/* Our promise — two columns + 2×2 stat cards */
.promise {
  background-color: 
  color-mix(in oklab, #f6f2e7 40%, transparent);
}

.promise__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 3.75rem);
  align-items: center;
}

@media (min-width: 900px) {
  .promise__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: clamp(2.25rem, 4vw, 4rem);
    align-items: center;
  }
}

.promise__content {
  max-width: 36rem;
}

.promise__eyebrow {
  margin: 0 0 0.75rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b08d4b;
}

.promise__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.85rem, 3.5vw, 2.45rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #24332c;
}

.promise__lead,
.promise__body {
  margin: 0 0 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563;
}

.promise__body:last-of-type {
  margin-bottom: 1.5rem;
}

.promise__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: #2d6b58;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 200ms ease, border-color 200ms ease;
}

.promise__link:hover {
  color: #245a4a;
  border-bottom-color: rgba(45, 107, 88, 0.45);
}

.promise__link-arrow {
  transition: transform 200ms var(--ease-out-expo);
}

.promise__link:hover .promise__link-arrow {
  transform: translateX(4px);
}

.promise__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  width: 100%;
}

.promise-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 110px;
  padding: 1.5rem 1.25rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eceef1;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition:
    transform 220ms var(--ease-out-expo),
    box-shadow 220ms ease,
    border-color 220ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .promise-stat:hover {
    transform: translateY(-4px);
    border-color: #dfe3e8;
    box-shadow:
      0 14px 32px rgba(15, 23, 42, 0.1),
      0 4px 10px rgba(15, 23, 42, 0.05);
  }
}

.promise-stat__value {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.85rem, 3.2vw, 2.35rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1c2822;
}

.promise-stat__label {
  margin: 0;
  max-width: 12rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7280;
  line-height: 1.45;
}

@media (prefers-reduced-motion: reduce) {
  .promise__link,
  .promise__link-arrow,
  .promise-stat {
    transition: none;
  }

  .promise__link:hover .promise__link-arrow {
    transform: none;
  }

  @media (hover: hover) and (pointer: fine) {
    .promise-stat:hover {
      transform: none;
    }
  }
}

.awards__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

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

@media (min-width: 960px) {
  .awards__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.award-card {
  position: relative;
  background: var(--color-surface-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  overflow: hidden;
  transition: transform 300ms var(--ease-spring), border-color 300ms, box-shadow 300ms;
  box-shadow: var(--shadow-sm);
}

.award-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-border-accent);
  box-shadow: var(--shadow-lg);
}

.award-card--featured {
  background: linear-gradient(135deg, var(--color-brand-50) 0%, var(--color-brand-100) 100%);
  border-color: var(--color-border-accent);
}

.award-card__number {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  font-family: var(--font-display);
  font-size: clamp(3.157rem, 5vw, 4.209rem);
  font-weight: 700;
  color: rgba(236, 72, 153, 0.08);
  line-height: 1;
  letter-spacing: -0.03em;
  user-select: none;
}

.award-card__badge {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--color-brand-600), var(--color-accent-500));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: #fff;
  box-shadow: 0 4px 16px rgba(236, 72, 153, 0.25);
}

.award-card__badge svg {
  width: 24px;
  height: 24px;
}

.award-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.333rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.25;
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
}

.award-card__org {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-brand-600);
  margin-bottom: var(--space-1);
}

.award-card__year {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

.award-card__featured-badge {
  display: inline-block;
  margin-top: var(--space-4);
  background: linear-gradient(135deg, var(--color-brand-500), var(--color-accent-500));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.videos__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

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

@media (min-width: 960px) {
  .videos__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.video-card--featured {
  grid-column: 1 / -1;
}

@media (min-width: 960px) {
  .video-card--featured {
    grid-column: 1 / 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
}

.video-card {
  background: var(--color-surface-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 300ms var(--ease-spring), border-color 300ms, box-shadow 300ms;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.video-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-border-accent);
  box-shadow: var(--shadow-md);
}

.video-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  cursor: pointer;
}

.video-card--featured .video-card__thumb {
  aspect-ratio: auto;
  min-height: 280px;
  height: 100%;
}

.video-card__thumb-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #faf4f7 0%, #f3ecf1 100%);
  transition: transform 400ms var(--ease-smooth);
}

.video-card__thumb-bg--has-thumb {
  background: #1c1917;
}

.video-card__thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-card__thumb-bg--2 {
  background: linear-gradient(135deg, #fef0f3 0%, #fde8ed 100%);
}

.video-card__thumb-bg--3 {
  background: linear-gradient(135deg, #fdf1f5 0%, #fce7f0 100%);
}

.video-card__thumb-bg--4 {
  background: linear-gradient(135deg, #faf2f6 0%, #f5e9f2 100%);
}

.video-card__thumb-bg--5 {
  background: linear-gradient(135deg, #fef3f0 0%, #fdeae5 100%);
}

.video-card__thumb-bg--6 {
  background: linear-gradient(135deg, #fef0f0 0%, #fde8e8 100%);
}

.video-card__thumb-bg--7 {
  background: linear-gradient(135deg, #fdf1f7 0%, #fce7f2 100%);
}

.video-card__thumb-bg--8 {
  background: linear-gradient(135deg, #faf3f8 0%, #f5ecf4 100%);
}

.video-card__thumb-bg--9 {
  background: linear-gradient(135deg, #fdf0f6 0%, #fce6f1 100%);
}

.video-card:hover .video-card__thumb-bg {
  transform: scale(1.05);
}

.video-card__thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.02) 0, rgba(0, 0, 0, 0.02) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.02) 0, rgba(0, 0, 0, 0.02) 1px, transparent 1px, transparent 40px);
}

.video-card__play-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-card__play-btn {
  width: 64px;
  height: 64px;
  background: rgba(236, 72, 153, 0.12);
  border: 2px solid var(--color-brand-300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-600);
  transition: background 200ms, transform 200ms var(--ease-spring), box-shadow 200ms, border-color 200ms;
  box-shadow: 0 4px 16px rgba(236, 72, 153, 0.15);
}

.video-card__play-btn svg {
  width: 24px;
  height: 24px;
  margin-left: 4px;
}

.video-card:hover .video-card__play-btn {
  background: var(--color-interactive-default);
  color: #fff;
  transform: scale(1.12);
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.3);
  border-color: var(--color-interactive-default);
}

.video-card__label {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  z-index: 3;
  background: linear-gradient(135deg, var(--color-brand-600), var(--color-accent-500));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.video-card__info {
  padding: var(--space-5) var(--space-6) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
}

.video-card--featured .video-card__info {
  justify-content: center;
  padding: var(--space-8);
}

.video-card__title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.video-card--featured .video-card__title {
  font-size: clamp(1.333rem, 2vw, 1.777rem);
  margin-bottom: var(--space-2);
}

.video-card__meta {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.videos__cta {
  margin-top: var(--space-12);
  text-align: center;
}

.academics__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

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

.school-card {
  background: var(--color-surface-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
}

.school-card__header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--color-border-subtle);
}

.school-card__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--color-brand-600), var(--color-accent-600));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.school-card__icon svg {
  width: 26px;
  height: 26px;
}

.school-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.333rem);
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.school-card__address {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.school-card__stats {
  display: flex;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}

.school-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.school-stat__val {
  font-family: var(--font-display);
  font-size: clamp(1.333rem, 2.5vw, 1.777rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-brand-500), var(--color-accent-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.school-stat__key {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.school-card__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.school-card__info-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.school-card__id {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.academics__contacts-title {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.333rem);
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-6);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  background: var(--color-surface-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  transition: border-color 200ms, transform 200ms var(--ease-spring);
  box-shadow: var(--shadow-sm);
}

.contact-item:hover {
  border-color: var(--color-border-accent);
  transform: translateX(4px);
}

.contact-item__avatar {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--color-brand-700), var(--color-brand-500));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
}

.contact-item__name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 2px;
}

.contact-item__role {
  font-size: 0.8rem;
  color: var(--color-brand-600);
  font-weight: 500;
  margin-bottom: 6px;
}

.contact-item__email,
.contact-item__phone {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  transition: color 200ms;
}

.contact-item__email:hover,
.contact-item__phone:hover {
  color: var(--color-interactive-default);
}

.references__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

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

@media (min-width: 960px) {
  .references__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ref-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  background: var(--color-surface-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: transform 300ms var(--ease-spring), border-color 300ms, box-shadow 300ms;
  box-shadow: var(--shadow-sm);
}

.ref-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-accent);
  box-shadow: var(--shadow-lg);
}

.ref-card__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--color-brand-50);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  color: var(--color-brand-600);
}

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

.ref-card__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 2px;
}

.ref-card__role {
  font-size: 0.875rem;
  color: var(--color-brand-600);
  font-weight: 500;
  margin-bottom: 2px;
}

.ref-card__school {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.ref-card__phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  font-weight: 500;
  transition: color 200ms;
}

.ref-card__phone:hover {
  color: var(--color-interactive-default);
}

.cta-banner {
  position: relative;
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: #f8f9f5;
}

.cta-banner__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1rem, 2.5vw, 1.35rem);
  width: 85%;
  margin: 0 auto;
  padding: clamp(2.25rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 2.75rem);
  border-radius: 28px;
  background: linear-gradient(105deg, #6b8e6b 0%, #639393 55%, #5f9ea0 100%);
  box-shadow: 0 16px 48px rgba(45, 80, 75, 0.18);
}

.cta-banner__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.cta-banner__badge-icon {
  flex-shrink: 0;
  opacity: 0.95;
}

.cta-banner__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 18ch;
}

.cta-banner__text {
  margin: 0;
  max-width: 38rem;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.4vw, 1.0625rem);
  font-weight: 400;
  line-height: 1.65;
  color: #fff;
  opacity: 0.96;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  justify-content: center;
  margin-top: 0.35rem;
}

.cta-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  transition:
    transform 200ms var(--ease-out-expo),
    background 200ms ease,
    color 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.cta-banner__btn--primary {
  background: #fff;
  color: #557c62;
  border-color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.cta-banner__btn--primary:hover {
  background: #f4faf8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.cta-banner__btn--primary:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.cta-banner__btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.85);
}

.cta-banner__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  transform: translateY(-2px);
}

.cta-banner__btn--ghost:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .cta-banner__btn {
    transition: none;
  }

  .cta-banner__btn--primary:hover,
  .cta-banner__btn--ghost:hover {
    transform: none;
  }
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

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

.contact__info-card {
  background: var(--color-surface-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
}

.contact__info-name {
  font-family: var(--font-display);
  font-size: clamp(1.333rem, 2.5vw, 1.777rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  margin-bottom: var(--space-1);
}

.contact__info-position {
  font-size: 0.9rem;
  color: var(--color-brand-600);
  font-weight: 500;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--color-border-subtle);
}

.contact__info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contact__info-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-3) 0;
  text-decoration: none;
  transition: color 200ms;
  border-bottom: 1px solid var(--color-border-subtle);
}

.contact__info-row:last-child {
  border-bottom: none;
}

.contact__info-row:hover .contact__info-value {
  color: var(--color-interactive-default);
}

.contact__info-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--color-brand-50);
  border-radius: var(--radius-sm);
  padding: var(--space-2);
  color: var(--color-brand-600);
}

.contact__info-icon svg {
  width: 100%;
  height: 100%;
}

.contact__info-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 2px;
}

.contact__info-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color 200ms;
  word-break: break-all;
}

.fieldlevel-card {
  background: var(--color-brand-50);
  border: 2px solid var(--color-brand-200);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.fieldlevel-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.fieldlevel-card__logo-icon {
  width: 28px;
  height: 28px;
  color: var(--color-accent-500);
}

.fieldlevel-card__logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-brand-700);
  letter-spacing: -0.01em;
}

.fieldlevel-card__desc {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
  flex: 1;
}

.contact__fieldlevel {
  display: flex;
}

.footer.footer--wellness {
  background: #f9f8f3;
  border-top: 1px solid #e8e6e0;
  padding: clamp(3rem, 6vw, 4.5rem) 0 max(clamp(0.8rem, 3vw, 0.5rem), env(safe-area-inset-bottom, 0px));
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

/* Same horizontal band as `.nav__inner` (1280px + matching side padding) */
.footer--wellness .footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: max(env(safe-area-inset-left, 0px), clamp(var(--space-6), 5vw, var(--space-10)))
    max(env(safe-area-inset-right, 0px), clamp(var(--space-6), 5vw, var(--space-10)));
  box-sizing: border-box;
}

.footer--wellness .footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 3rem);
  width: 100%;
  max-width: 100%;
}

/* Small tablets: brand full width, Explore + Connect side by side */
@media (min-width: 480px) and (max-width: 767.98px) {
  .footer--wellness .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(1rem, 4vw, 1.75rem);
    row-gap: clamp(1.5rem, 4vw, 2.25rem);
  }

  .footer--wellness .footer__col--brand {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (min-width: 768px) {
  .footer--wellness .footer__grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
  }
}

.footer--wellness .footer__col {
  min-width: 0;
}

.footer--wellness .footer__col--brand {
  max-width: 28rem;
}

@media (min-width: 768px) {
  .footer--wellness .footer__col--brand {
    max-width: min(28rem, 100%);
  }
}

.footer--wellness .footer__brand-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-bottom: 1.1rem;
}

.footer--wellness .footer__brand-mark {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
}

.footer--wellness .footer__logo-icon svg {
  display: block;
  width: 60px;
  height: 60px;
}

.footer--wellness .footer__logo-custom {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}

.footer--wellness .footer__brand-name {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  line-height: 1.2;
}

.footer--wellness .footer__brand-tag {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c5a07d;
}

.footer--wellness .footer__about {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 2.8vw, 0.9375rem);
  line-height: 1.65;
  color: #555555;
  max-width: 65ch;
}

.footer--wellness .footer__heading {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: -0.01em;
}

.footer--wellness .footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer--wellness .footer__nav-list a {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 400;
  color: #555555;
  text-decoration: none;
  transition: color 180ms ease;
}

@media (max-width: 767.98px) {
  .footer--wellness .footer__nav-list a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding-block: 0.2rem;
    margin-inline: -0.15rem;
    padding-inline: 0.15rem;
  }
}

.footer--wellness .footer__nav-list a:hover {
  color: #1a1a1a;
}

.footer--wellness .footer__connect-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer--wellness .footer__connect-link {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  max-width: 100%;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: #555555;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer--wellness .footer__connect-text {
  flex: 1;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.45;
  padding-top: 0.1em;
}

@media (max-width: 767.98px) {
  .footer--wellness .footer__connect-list > li {
    max-width: 100%;
  }

  .footer--wellness .footer__connect-link {
    align-items: center;
    min-height: 44px;
    width: 100%;
    box-sizing: border-box;
    padding-block: 0.35rem;
    margin-inline: -0.15rem;
    padding-inline: 0.15rem;
  }

  .footer--wellness .footer__connect-text {
    padding-top: 0;
  }
}

.footer--wellness .footer__connect-link:hover {
  color: #1a1a1a;
}

.footer--wellness .footer__connect-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #c5a07d;
  margin-top: 0.12em;
}

@media (max-width: 767.98px) {
  .footer--wellness .footer__connect-icon {
    margin-top: 0;
    align-self: center;
  }
}

.footer--wellness .footer__divider {
  display: block;
  width: 100%;
  height: 1px;
  margin: clamp(1.75rem, 3.5vw, 2.5rem) 0 1.25rem;
  padding: 0;
  border: none;
  background: #e0e0e0;
  box-sizing: border-box;
}

.footer--wellness .footer__bar {
  width: 100%;
  text-align: center;
}

.footer--wellness .footer__bar-text {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.6875rem, 2.5vw, 0.75rem);
  color: #566768;
  line-height: 1.55;
  max-width: 72ch;
  margin-inline: auto;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

/* Services (and similar) inner hero — mint → cream, centered type */
.page-hero.page-hero--wellness {
  text-align: center;
  padding: calc(72px + clamp(2.25rem, 5vw, 5.5rem)) 0 clamp(3rem, 8vw, 5rem);
  background: linear-gradient(135deg, oklch(97% .02 200) 0%, oklch(96% .025 150) 50%, oklch(97% .03 90) 100%);
}

.page-hero.page-hero--wellness .page-hero__eyebrow {
  margin: 0 0 1rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c9a882;
}

.page-hero.page-hero--wellness .page-hero__title {
  margin: 0 auto 1.15rem;
  max-width: 25ch;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1d2b33;
}

.page-hero.page-hero--wellness .page-hero__note {
  margin: 0 auto;
  max-width: 45rem;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: #5f6f68;
}

/* Contact hero — pill “Book your visit” badge + soft mint → peach gradient */
.page-hero.page-hero--wellness.page-hero--contact {
  background: linear-gradient(135deg, oklch(97% .02 200) 0%, oklch(96% .025 150) 50%, oklch(97% .03 90) 100%);
}

.page-hero--contact .page-hero__booking-pill {
  display: flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto 1.35rem;
  padding: 0.42rem 1rem 0.42rem 0.7rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(29, 43, 51, 0.1);
  box-shadow: 0 1px 3px rgba(29, 43, 51, 0.06);
  box-sizing: border-box;
}

.page-hero--contact .page-hero__booking-pill__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  color: #4a5c58;
}

.page-hero--contact .page-hero__booking-pill__icon svg {
  display: block;
}

.page-hero--contact .page-hero__booking-pill__text {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: color-mix(in oklab, #162d2f 70%, transparent);
  line-height: 1.2;
  padding-top: 0.06em;
}

.page-hero--contact .page-hero__title {
  max-width: min(22rem, 100%);
}

@media (min-width: 480px) {
  .page-hero--contact .page-hero__title {
    max-width: min(28rem, 100%);
  }
}

/* Contact page — appointment form + studio / hours (responsive 1 col → 2 col) */
.section-pns.section-pns--contact-appt {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3.5rem, 8vw, 5rem);
  background: #f8fdfc;
}

.section-pns--contact-appt .container-pns.contact-appt {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding-inline: max(env(safe-area-inset-left, 0px), clamp(1rem, 4vw, 1.5rem))
    max(env(safe-area-inset-right, 0px), clamp(1rem, 4vw, 1.5rem));
  box-sizing: border-box;
}

.contact-appt__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 3vw, 1.75rem);
  align-items: start;
}

@media (min-width: 1024px) {
  .contact-appt__grid {
    grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
    gap: 2rem;
  }
}

.contact-appt__card {
  border-radius: 1rem;
  box-sizing: border-box;
}

.contact-appt__card--form {
  padding: clamp(1.75rem, 4vw, 2.5rem);
  background: #ffffff;
  border: 1px solid #e8eceb;
  box-shadow: 0 10px 40px rgba(29, 43, 51, 0.06);
}

.contact-appt__form-title {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1d2b33;
  text-align: left;
}

.contact-appt__flash {
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: 0.65rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: left;
}

.contact-appt__flash--success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}

.contact-appt__flash--error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.contact-appt__flash-title {
  margin: 0 0 0.35rem;
  font-weight: 600;
}

.contact-appt__flash-list {
  margin: 0;
  padding-left: 1.15rem;
}

.contact-appt__fields {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.contact-appt__row {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 640px) {
  .contact-appt__row--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.contact-appt__label {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #3d4d4a;
  text-align: left;
}

.contact-appt__req {
  color: #c9a157;
  font-weight: 700;
}

.contact-appt__input,
.contact-appt__textarea {
  width: 100%;
  padding: 0.75rem 0.95rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.45;
  color: #1d2b33;
  background: #f8fdfc;
  border: 1px solid #dfdfdf;
  border-radius: 0.9rem;
  box-sizing: border-box;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.contact-appt__input::placeholder,
.contact-appt__textarea::placeholder {
  color: #94a3af;
}

.contact-appt__input:hover,
.contact-appt__textarea:hover {
  background: #eef1f0;
}

.contact-appt__input:focus,
.contact-appt__textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: #557c62;
  box-shadow: 0 0 0 3px rgba(45, 106, 98, 0.12);
}

.contact-appt__textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.contact-appt__input-wrap {
  position: relative;
}

.contact-appt__input--date { 
  min-height: 2.75rem;
}

.contact-appt__input-icon {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  color: #7d8f8a;
  pointer-events: none;
}

.contact-appt__submit {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.35rem;
  padding: 0.95rem 1.5rem;
  border: none;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #ffffff;
  cursor: pointer;
  background: linear-gradient(135deg, oklch(55% .06 155), oklch(65% .07 200));
  box-shadow: 0 6px 20px rgba(45, 106, 98, 0.28);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.contact-appt__submit:hover {
  filter: brightness(1.04);
  box-shadow: 0 8px 26px rgba(45, 106, 98, 0.35);
  scale: 1.02; 
}

.contact-appt__submit:active {
  transform: translateY(1px);
}

.contact-appt__submit-icon {
  flex-shrink: 0;
}

.contact-appt__fine-print {
  margin: 1rem 0 0;
  font-family: var(--font-body);
  font-size: 0.75rem;
  line-height: 1.55;
  color: #7d8f8a;
  text-align: center;
}

.contact-appt__aside {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.contact-appt__card--studio {
  padding: clamp(1.5rem, 3.5vw, 2rem);
  color: #ffffff;
  background: linear-gradient(135deg, oklch(55% .06 155), oklch(65% .07 200));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 32px rgba(26, 63, 60, 0.25);
}

.contact-appt__studio-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.8vw, 1.55rem);
  line-height: 1.2;
  color: #ffffff;
}

.contact-appt__studio-lede {
  margin: 0 0 1.25rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.contact-appt__studio-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-appt__studio-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.5;
}

.contact-appt__studio-icon {
  flex-shrink: 0;
  margin-top: 0.1rem;
  opacity: 0.95;
}

.contact-appt__studio-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-appt__studio-line {
  display: block;
}

.contact-appt__studio-link {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  transition: border-color 160ms ease, color 160ms ease;
}

.contact-appt__studio-link:hover {
  border-bottom-color: rgba(255, 255, 255, 0.75);
}

.contact-appt__card--hours {
  padding: clamp(1.35rem, 3vw, 1.75rem);
  background: #ffffff;
  border: 1px solid #e8eceb;
  box-shadow: 0 6px 24px rgba(29, 43, 51, 0.05);
}

.contact-appt__hours-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.25rem, 2.5vw, 1.4rem);
  line-height: 1.2;
  color: #1d2b33;
  text-align: left;
}

.contact-appt__hours-icon {
  display: flex;
  color: #c9a157;
}

.contact-appt__hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #475569;
  text-align: left;
}

.contact-appt__hours-list li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.35rem 1rem;
}

.contact-appt__hours-day {
  font-weight: 600;
  color: #3d4d4a;
}

.contact-appt__hours-time {
  color: #64748b;
}

.contact-appt__hours-time--closed {
  font-weight: 600;
  color: #64748b;
}

/* About page — story band (light panel, narrow prose, matches comp) */
.section-pns.section-pns--about-wellness {
  padding: clamp(3rem, 7vw, 4.5rem) 0;
  background: #f3f4f2;
  border-top: 1px solid rgba(29, 43, 51, 0.06);
}

.section-pns--about-wellness .container-pns {
  padding-inline: max(env(safe-area-inset-left, 0px), clamp(1rem, 4vw, 1.5rem))
    max(env(safe-area-inset-right, 0px), clamp(1rem, 4vw, 1.5rem));
  box-sizing: border-box;
}

.about-wellness-prose {
  max-width: 55rem;
  margin: 0 auto;
  text-align: left;
}

.about-wellness-prose p {
  margin: 0 0 1.35rem;
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 2.4vw, 1.0625rem);
  font-weight: 400;
  line-height: 1.72;
  letter-spacing: 0.01em;
  color: #3d4a45;
}

.about-wellness-prose p:last-child,
.about-wellness-prose .about-wellness-prose__last {
  margin-bottom: 0;
}

/* About — “What we stand for” (matches Tailwind: py-20 px-5 lg:px-8, max-w-6xl, grid sm:2 lg:4) */
.section-pns.section-pns--stand-for-wellness {
  padding-top: 5rem;
  padding-bottom: 5rem;
  padding-left: max(env(safe-area-inset-left, 0px), 1.25rem);
  padding-right: max(env(safe-area-inset-right, 0px), 1.25rem);
  background: rgba(236, 239, 232, 0.55);
  border-top: 1px solid rgba(29, 43, 51, 0.06);
  box-sizing: border-box;
}

@media (min-width: 1024px) {
  .section-pns.section-pns--stand-for-wellness {
    padding-left: max(env(safe-area-inset-left, 0px), 2rem);
    padding-right: max(env(safe-area-inset-right, 0px), 2rem);
  }
}

.stand-for-wellness__inner {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  box-sizing: border-box;
}

.stand-for-wellness__heading {
  margin: 0 auto 3.5rem;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.25rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1d2b33;
}

@media (min-width: 768px) {
  .stand-for-wellness__heading {
    font-size: 3rem;
  }
}

.stand-for-wellness__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 640px) {
  .stand-for-wellness__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .stand-for-wellness__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.stand-for-card {
  margin: 0;
  padding: 1.75rem;
  text-align: center;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  box-sizing: border-box;
  min-width: 0;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .stand-for-card:hover {
    transform: translateY(-6px);
    border-color: rgba(210, 166, 121, 0.55);
    box-shadow:
      0 18px 40px rgba(29, 43, 51, 0.09),
      0 6px 16px rgba(201, 160, 104, 0.18);
  }

  .stand-for-card:hover .stand-for-card__icon {
    transform: scale(1.06);
    box-shadow:
      0 8px 22px rgba(201, 160, 104, 0.48),
      0 1px 0 rgba(255, 255, 255, 0.45) inset;
    filter: saturate(1.08) brightness(1.03);
  }

  .stand-for-card:hover .stand-for-card__title {
    color: #152028;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stand-for-card {
    transition-duration: 0.01ms;
  }

  .stand-for-card__icon {
    transition-duration: 0.01ms;
  }

  .stand-for-card__title {
    transition-duration: 0.01ms;
  }

  .stand-for-card:hover {
    transform: none;
  }

  .stand-for-card:hover .stand-for-card__icon {
    transform: none;
  }
}

.stand-for-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  border-radius: 0.75rem;
  background: linear-gradient(145deg, #e8c99a 0%, #d2a679 42%, #b8894a 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(201, 160, 104, 0.38), 0 1px 0 rgba(255, 255, 255, 0.35) inset;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    filter 240ms ease;
}

.stand-for-card__icon-svg {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
}

.stand-for-card__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: #1d2b33;
  transition: color 200ms ease;
}

.stand-for-card__desc {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.625;
  color: #64748b;
}

/* FAQs page — accordion (rounded cards, first open, cream hover on row) */
.section-pns.section-pns--faq-wellness {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3.5rem, 8vw, 5rem);
  background: #f8fdfc;
}

.section-pns--faq-wellness .container-pns {
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
  padding-inline: max(env(safe-area-inset-left, 0px), clamp(1rem, 4vw, 1.5rem))
    max(env(safe-area-inset-right, 0px), clamp(1rem, 4vw, 1.5rem));
  box-sizing: border-box;
}

.faq-accordion-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-accordion {
  margin: 0;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(29, 43, 51, 0.04);
}

.faq-accordion__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.35rem;
  list-style: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 200ms ease;
}

.faq-accordion__summary::-webkit-details-marker {
  display: none;
}

.faq-accordion__summary::marker {
  content: '';
}

@media (hover: hover) and (pointer: fine) {
  .faq-accordion__summary:hover {
    background: #f5f0e6;
  }
}

.faq-accordion[open] .faq-accordion__summary {
  border-bottom: 1px solid #eceae4;
  background: #ffffff;
}

@media (hover: hover) and (pointer: fine) {
  .faq-accordion[open] .faq-accordion__summary:hover {
    background: #f5f0e6;
  }
}

.faq-accordion__question {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: #1d2b33;
}

.faq-accordion__chevron {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9a8b78;
  transition: transform 220ms ease, color 200ms ease;
}

.faq-accordion[open] .faq-accordion__chevron {
  transform: rotate(-180deg);
  color: #7d6c58;
}

.faq-accordion__panel {
  padding: 0 1.35rem 1.35rem;
}

.faq-accordion__answer {
  margin: 0;
  padding-top: 1.2rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #64748b;
  text-align: left;
}

.faq-accordion__answer p {
  margin: 0 0 0.75rem;
}

.faq-accordion__answer p:last-child {
  margin-bottom: 0;
}

.faq-accordion__empty {
  margin: 0;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: #64748b;
  padding: 2rem 1rem;
}

/* Policies page — stacked white cards on cool grey (matches comp) */
.section-pns.section-pns--policies-wellness {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3.5rem, 8vw, 5rem);
  background: #f8fdfc;
}

.section-pns--policies-wellness .policies-wellness__inner {
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto; 
  box-sizing: border-box;
}

.policies-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.policies-card {
  margin: 0;
  padding: clamp(1.5rem, 4vw, 1.5rem);
  background: #ffffff;
  border: 1px solid #d1d7dd;
  border-radius: 1.25rem;
  box-sizing: border-box;
}

.policies-card__title {
  margin: 0 0 1rem;
  font-family: Cormorant Garamond,Georgia,serif;
  font-weight: 600;
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #557c62;
}

.policies-card__description {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: #64748b;
  text-align: left;
}

.policies-card__description p {
  margin: 0 0 0.75rem;
}

.policies-card__description p:last-child {
  margin-bottom: 0;
}

.policies-grid__empty {
  margin: 0;
  padding: 2.5rem 1.25rem;
  text-align: center;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
  background: #ffffff;
  border: 1px dashed #d1d9e0;
  border-radius: 1.25rem;
}

/* Services — Drip Menu grid */
.drip-menu {
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3.5rem, 8vw, 6rem);
  background: #f8fdfc;
}

.drip-menu__header {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
  margin-bottom: clamp(2.25rem, 5vw, 3.5rem);
}

@media (min-width: 768px) {
  .drip-menu__header {
    grid-template-columns: 1fr minmax(0, 22rem);
    gap: 2rem 3rem;
  }

  .drip-menu__lede {
    justify-self: end;
    text-align: right;
  }
}

.drip-menu__eyebrow {
  margin: 0 0 0.65rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a882;
}

.drip-menu__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #1d2b33;
}

.drip-menu__lede {
  margin: 0;
  max-width: 28rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #5f6f68;
}

.drip-menu__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2.5vw, 1.75rem);
}

@media (min-width: 640px) {
  .drip-menu__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .drip-menu__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.drip-card {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.75rem, 3.5vw, 1.5rem);
  background: #fff;
  border: 1px solid #e6e9e6;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(29, 43, 51, 0.04);
  transform: translateY(0) scale(1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .drip-card:hover {
    z-index: 1;
    border-color: #dce3de;
    box-shadow:
      0 22px 44px -14px rgba(29, 43, 51, 0.14),
      0 10px 20px -10px rgba(29, 43, 51, 0.08);
    transform: translateY(-1px) scale(1.01);
  }
}

@media (prefers-reduced-motion: reduce) {
  .drip-card {
    transition-duration: 0.01ms;
  }

  @media (hover: hover) and (pointer: fine) {
    .drip-card:hover {
      z-index: 0;
      border-color: #e5e5e5;
      box-shadow: 0 1px 2px rgba(29, 43, 51, 0.04);
      transform: none;
    }
  }
}

.drip-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  flex-shrink: 0;
  border-radius: 35%;
  background: linear-gradient(135deg, oklch(78% .1 80), oklch(70% .09 60));
  color: #fff;
}

.drip-card__icon svg {
  display: block;
}

.drip-card__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.125rem, 1.35vw, 1.375rem);
  line-height: 1.25;
  color: #1d2b33;
}

.drip-card__desc {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.1vw, 0rem);
  line-height: 1.65;
  color: #5f6f68;
}

.drip-menu__cta {
  margin-top: clamp(2.25rem, 5vw, 3.25rem);
  text-align: center;
}

/* Services — Peptide therapy */
.peptide-therapy {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  background: #f9f9f7;
}

.peptide-therapy__header {
  margin: 0 0 clamp(2.5rem, 5vw, 3.5rem);
  max-width: 36rem;
  text-align: left;
}

.peptide-therapy__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  margin: 0 0 1rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a882;
}

.peptide-therapy__eyebrow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a882;
}

.peptide-therapy__eyebrow-icon svg {
  display: block;
}

.peptide-therapy__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 3.8vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1d2b33;
}

.peptide-therapy__sub {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  line-height: 1.65;
  color: #5f6f68;
}

.peptide-therapy__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .peptide-therapy__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.peptide-card {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem;
  background: #fff;
  border-radius: 1rem;
  border: 1px solid rgba(29, 43, 51, 0.08);
  box-shadow: 0 1px 3px rgba(29, 43, 51, 0.05);
  transform: translateY(0) scale(1);
  transform-origin: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .peptide-card:hover {
    z-index: 1;
    border-color: rgba(29, 43, 51, 0.12);
    box-shadow: 0 14px 36px rgba(29, 43, 51, 0.1);
    transform: translateY(-5px) scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  .peptide-card {
    transition-duration: 0.01ms;
  }

  @media (hover: hover) and (pointer: fine) {
    .peptide-card:hover {
      z-index: 0;
      transform: none;
      box-shadow: 0 1px 3px rgba(29, 43, 51, 0.05);
    }
  }
}

.peptide-card__icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: #cfebec;
  color: #3a5c57;
}

.peptide-card__pill {
  display: block;
}

.peptide-card__body {
  min-width: 0;
  flex: 1;
}

.peptide-card__title {
  margin: 0 0 0.375rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.3;
  color: #1d2b33;
}

.peptide-card__desc {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.625;
  color: #5f6f68;
}

/* Services — Quick boost injections */
.vitamin-injections {
  padding: clamp(4rem, 10vw, 5rem) 0;
  background: #f2f4f1;
}

.vitamin-injections__header {
  margin-bottom: clamp(2rem, 4vw, 2.5rem);
  text-align: left;
}

.vitamin-injections__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c9a882;
}

.vitamin-injections__eyebrow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #c9a882;
}

.vitamin-injections__eyebrow-icon svg {
  display: block;
}

.vitamin-injections__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.25rem, 4.5vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #1d2b33;
}

.vitamin-injections__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .vitamin-injections__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .vitamin-injections__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.inject-card {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem;
  background: #fff;
  border-radius: 1rem;
  border: 1px solid rgba(29, 43, 51, 0.08);
  box-shadow: 0 1px 3px rgba(29, 43, 51, 0.05);
  transform: translateY(0) scale(1);
  transform-origin: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .inject-card:hover {
    z-index: 1;
    border-color: rgba(29, 43, 51, 0.12);
    box-shadow: 0 14px 36px rgba(29, 43, 51, 0.1);
    transform: translateY(-5px) scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  .inject-card {
    transition-duration: 0.01ms;
  }

  @media (hover: hover) and (pointer: fine) {
    .inject-card:hover {
      z-index: 0;
      transform: none;
      box-shadow: 0 1px 3px rgba(29, 43, 51, 0.05);
    }
  }
}

.inject-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, oklch(55% .06 155), oklch(65% .07 200));
  color: #fff;
}

.inject-card__syringe {
  display: block;
}

.inject-card__title {
  margin: 0 0 0.375rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.3;
  color: #1d2b33;
}

.inject-card__desc {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.625;
  color: #5f6f68;
}

/* Header: optional admin logo in nav */
.nav__logo-img {
  height: 60px;
  width: auto;
  display: block;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

/* Legacy inner pages still use .container-pns */
.container-pns {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto; 
}