/* OrthoRevolution — regenerative medicine + hyperbaric oxygen
   Organic, freeing, hopeful. Pushes against the surgical/PT world.
   Palette pulled directly from the logo. */

:root {
  /* paper — bright, subtle warmth */
  --bone:    #ffffff;
  --paper:   #fafaf7;
  --paper-2: #f1efe8;
  --paper-cool: #f0f2f3; /* cool-tinted neutral, optional */

  /* ink — deep cool charcoal */
  --ink:     #1c2229;
  --ink-2:   #343a44;
  --muted:   #6b7280;

  /* BLUES — primary accent (from logo) */
  --blue-deep: #2f5b87;
  --blue:      #4d7ca5;
  --blue-mid:  #7a9dc5;
  --blue-soft: #b7c3da;
  --blue-sky:  #d6dfeb;

  /* GREENS — secondary (from logo) */
  --sage:        #95a384;
  --sage-soft:   #b3bea3;
  --sage-deep:   #6b7b58;
  --forest:      #536949;
  --forest-deep: #2e3a25;

  /* surfaces */
  --line:      rgba(28, 34, 41, 0.13);
  --line-soft: rgba(28, 34, 41, 0.06);

  /* semantic tokens — green is the brand accent; blue is reserved for the CTA */
  --accent:      var(--forest);
  --accent-deep: var(--forest-deep);
  --accent-2:    var(--sage);
  --highlight:   var(--sage);
  --cta:         var(--blue);
  --cta-deep:    var(--blue-deep);

  --maxw: 1320px;
  --radius: 18px;
  --radius-lg: 28px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Quicksand", "Manrope", ui-sans-serif, system-ui, -apple-system, sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  font-size: 16px;
  letter-spacing: -0.005em;
  overflow-x: clip;
}

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

/* type system */
.serif {
  font-family: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.018em;
}
.mono {
  font-family: "Quicksand", "Manrope", sans-serif;
}
em.accent, .serif em {
  font-style: italic;
  color: var(--accent);
}

/* layout */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 36px;
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Quicksand", "Manrope", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background: currentColor;
}

/* ─────────── Nav ─────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--paper) 90%, transparent);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 0.5px solid var(--line-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .15s;
}
.nav-links a:hover { color: var(--accent); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-phone {
  color: var(--accent);
  text-decoration: none;
  font-family: "Quicksand", "Manrope", sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.nav-phone:hover { text-decoration: underline; text-underline-offset: 4px; }

@media (max-width: 940px) {
  .nav-links { display: none; }
}
@media (max-width: 540px) {
  .nav-phone { display: none; }
}

/* ─────────── Mobile nav (hamburger + drawer) ─────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 0.5px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}
.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(20, 28, 18, 0.5);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity .25s ease;
}
.mobile-drawer-backdrop.open { opacity: 1; }

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 70;
  height: 100dvh;
  width: min(86vw, 360px);
  background: var(--paper);
  border-left: 0.5px solid var(--line);
  box-shadow: -24px 0 48px -24px rgba(28, 34, 41, 0.3);
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.3, .7, .4, 1);
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 88px 28px 32px;
}
.mobile-nav-links {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.mobile-nav-links a {
  display: block;
  padding: 16px 0;
  border-bottom: 0.5px solid var(--line-soft);
  color: var(--ink);
  text-decoration: none;
  font-family: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  font-size: 24px;
  letter-spacing: -0.01em;
}
.mobile-nav-links a:hover { color: var(--accent); }
.mobile-drawer-phone {
  color: var(--accent);
  text-decoration: none;
  font-family: "Quicksand", "Manrope", sans-serif;
  font-size: 15px;
  letter-spacing: 0.04em;
  padding: 8px 0 16px;
}
.mobile-drawer-cta { align-self: stretch; }

/* ─────────── Instagram / Facebook links ─────────── */
.social-ig,
.social-fb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  text-decoration: none;
  transition: color .15s, transform .15s;
}
.social-ig:hover,
.social-fb:hover { color: var(--accent-deep); transform: translateY(-1px); }
.mobile-drawer-ig,
.mobile-drawer-fb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
  text-decoration: none;
  font-family: "Quicksand", "Manrope", sans-serif;
  font-size: 15px;
  letter-spacing: 0.04em;
  padding: 4px 0 12px;
}
.mobile-drawer-ig:hover,
.mobile-drawer-fb:hover { color: var(--accent-deep); }
.footer-ig,
.footer-fb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-2);
  text-decoration: none;
  font-family: "Quicksand", "Manrope", sans-serif;
  font-size: 14px;
}
.footer-ig { margin-top: 20px; }
.footer-fb { margin-top: 6px; }
.footer-ig:hover,
.footer-fb:hover { color: var(--accent); }

@media (max-width: 940px) {
  .nav-toggle { display: flex; }
}
@media (min-width: 941px) {
  .mobile-drawer,
  .mobile-drawer-backdrop { display: none !important; }
}
body.drawer-open { overflow: hidden; }

/* logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}
.logo img {
  height: 48px;
  width: 48px;
  object-fit: contain;
}
.logo img.logo-lockup {
  height: 72px;
  width: auto;
}
/* Nav banner: full lockup on desktop, monogram only on narrow screens */
.logo img.logo-lockup-nav { height: 48px; width: auto; }
.logo img.logo-mark-only { height: 44px; width: auto; display: none; }
@media (max-width: 860px) {
  .logo img.logo-lockup-nav { height: 44px; }
}
@media (max-width: 600px) {
  .logo img.logo-lockup-nav { display: none; }
  .logo img.logo-mark-only { display: block; }
}
@media (max-width: 540px) {
  .logo img { height: 40px; width: 40px; }
  .logo img.logo-lockup { height: 56px; width: auto; }
}

/* ─────────── Buttons ─────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, background .2s, color .2s, box-shadow .25s, border-color .2s;
  white-space: nowrap;
  text-transform: none;
}
.btn-primary {
  background: var(--cta);
  color: var(--bone);
  box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 8px 20px -10px rgba(47, 91, 135, 0.35);
}
.btn-primary:hover {
  background: var(--cta-deep);
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 12px 24px -10px rgba(47, 91, 135, 0.45);
}
.btn-secondary {
  background: var(--bone);
  color: var(--accent);
  border: 1px solid var(--line);
}
.btn-secondary:hover {
  border-color: var(--accent);
  background: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-on-dark {
  background: var(--bone);
  color: var(--cta);
}
.btn-on-dark:hover {
  background: #fff;
  transform: translateY(-1px);
}
.btn .arrow {
  display: inline-block;
  transition: transform .25s ease;
  font-weight: 400;
}
.btn:hover .arrow { transform: translateX(4px); }
.btn-sm { height: 38px; padding: 0 16px; font-size: 13px; }
.btn-lg { height: 54px; padding: 0 28px; font-size: 15px; }

/* persistent floating Book Now */
.book-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 100;
  height: 56px;
  padding: 0 24px 0 26px;
  border-radius: 999px;
  background: var(--cta);
  color: var(--bone);
  font-family: "Quicksand", "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 18px 40px -12px rgba(40, 58, 37, 0.5),
              0 4px 14px -4px rgba(40, 58, 37, 0.3);
  transform: translateY(100px);
  opacity: 0;
  transition: transform .35s cubic-bezier(.3,.7,.4,1), opacity .35s, background .2s;
}
.book-fab.visible {
  transform: translateY(0);
  opacity: 1;
}
.book-fab:hover {
  background: var(--cta-deep);
}
.book-fab::after {
  content: "→";
  font-weight: 400;
  transition: transform .2s;
}
.book-fab:hover::after { transform: translateX(3px); }
.book-fab .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage-soft);
  box-shadow: 0 0 0 0 var(--sage-soft);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(185, 200, 173, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(185, 200, 173, 0); }
  100% { box-shadow: 0 0 0 0 rgba(185, 200, 173, 0); }
}
@media (max-width: 540px) {
  .book-fab { bottom: 20px; right: 20px; padding: 0 18px 0 20px; height: 50px; font-size: 13px; }
}

/* ─────────── Hero (full-bleed video) ─────────── */
.hero {
  position: relative;
  min-height: 760px;
  height: calc(100vh - 72px);
  max-height: 920px;
  overflow: hidden;
  color: var(--bone);
  background: linear-gradient(180deg, #2a3a25 0%, #3c5138 60%, #2a3a25 100%);
  isolation: isolate;
}
@media (max-width: 720px) {
  .hero { min-height: 640px; height: auto; padding: 40px 0; }
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  /* slight green tint */
  filter: saturate(0.9) brightness(0.85);
}
.hero-poster {
  /* shown until video loads / if it fails */
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(172, 199, 227, 0.25), transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(145, 168, 131, 0.35), transparent 60%),
    linear-gradient(180deg, #2a3a25 0%, #3c5138 100%);
  z-index: 0;
}
.hero-scrim {
  /* readability gradient over video */
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(20, 28, 18, 0.55) 0%,
      rgba(20, 28, 18, 0.25) 35%,
      rgba(20, 28, 18, 0.45) 75%,
      rgba(20, 28, 18, 0.75) 100%),
    linear-gradient(90deg,
      rgba(20, 28, 18, 0.55) 0%,
      rgba(20, 28, 18, 0.25) 40%,
      rgba(20, 28, 18, 0.05) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 140px;
  max-width: 60%;
}
@media (max-width: 1024px) {
  .hero-content {
    max-width: 880px;
    margin: 0 auto;
    align-items: center;
    text-align: center;
  }
  .hero-cta { justify-content: center; }
  .hero-meta { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
}
@media (max-width: 720px) {
  .hero-content { padding: 80px 0 100px; }
}
.hero .eyebrow {
  color: var(--sage-soft);
}
.hero .eyebrow::before {
  background: var(--sage-soft);
}
.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(48px, 7.5vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.024em;
  margin: 24px 0 0;
  text-wrap: balance;
  color: var(--bone);
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}
.hero h1 em {
  font-style: italic;
  color: var(--sage-soft);
  position: relative;
}
.hero-sub {
  margin-top: 28px;
  max-width: 600px;
  font-size: 19px;
  line-height: 1.55;
  color: rgba(246, 241, 228, 0.92);
  text-wrap: pretty;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}
.hero-sub em {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--sage-soft);
  font-size: 1.1em;
}
.hero-cta {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-meta {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(246, 241, 228, 0.72);
  font-size: 13px;
  flex-wrap: wrap;
}
.hero-meta .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--sage-soft);
  box-shadow: 0 0 0 4px rgba(185, 200, 173, 0.22);
}

/* hero bottom strip — promise + scroll cue */
.hero-strip {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent, rgba(20, 28, 18, 0.55));
  padding: 28px 0 24px;
}
.hero-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--bone);
}
.hero-strip-promise {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: "Quicksand", "Manrope", sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 241, 228, 0.85);
  flex-wrap: wrap;
}
.hero-strip-promise span { display: inline-flex; align-items: center; gap: 10px; }
.hero-strip-promise i {
  display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sage-soft);
  font-style: normal;
}
.hero-strip-promise b {
  font-weight: 500;
  color: var(--bone);
}
.hero-scroll-cue {
  font-family: "Quicksand", "Manrope", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246, 241, 228, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-scroll-cue::after {
  content: "↓";
  display: inline-block;
  animation: hero-bounce 2s ease-in-out infinite;
}
@keyframes hero-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ─────────── Manifesto / "What if you could..." ─────────── */
.manifesto {
  padding: 140px 0;
  background: var(--paper-2);
  position: relative;
  overflow: hidden;
  border-top: 0.5px solid var(--line-soft);
  border-bottom: 0.5px solid var(--line-soft);
}
.manifesto::before {
  /* organic sage circle */
  content: "";
  position: absolute;
  left: -180px;
  bottom: -240px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle at 60% 40%, rgba(145, 168, 131, 0.28), rgba(145, 168, 131, 0) 70%);
  pointer-events: none;
}
.manifesto-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
}
.manifesto h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  margin: 24px 0 0;
  text-wrap: balance;
  max-width: 18ch;
}
.manifesto h2 em {
  font-style: italic;
  color: var(--accent);
}
.manifesto-list {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (max-width: 720px) {
  .manifesto-list { grid-template-columns: 1fr; }
}
.manifesto-item {
  padding: 28px 0;
  border-top: 0.5px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.manifesto-item:nth-child(odd) { padding-right: 28px; }
.manifesto-item:nth-child(even) { padding-left: 28px; border-left: 0.5px solid var(--line); }
@media (max-width: 720px) {
  .manifesto-item { padding: 24px 0; }
  .manifesto-item:nth-child(even) { padding-left: 0; border-left: none; }
}
.manifesto-item .num {
  font-family: "Quicksand", "Manrope", sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-style: normal;
  flex-shrink: 0;
}
.manifesto-item em {
  font-style: italic;
  color: var(--accent);
}
.manifesto-bottom {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 0.5px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}
.manifesto-bottom p {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 540px;
  margin: 0;
  text-wrap: pretty;
}

/* ─────────── Section base ─────────── */
section.block {
  padding: 140px 0;
  position: relative;
}
@media (max-width: 720px) {
  section.block { padding: 88px 0; }
}
.block-head {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  margin-bottom: 72px;
  align-items: end;
}
@media (max-width: 900px) {
  .block-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
}
.block-head h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin: 14px 0 0;
  text-wrap: balance;
}
.block-head h2 em { font-style: italic; color: var(--accent); }
.block-head .lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 540px;
  text-wrap: pretty;
}

/* ─────────── Therapies (3 cards) ─────────── */
.therapies {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .therapies { grid-template-columns: 1fr; }
}
.therapy-card {
  background: var(--bone);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 460px;
  position: relative;
  overflow: hidden;
  border: 0.5px solid var(--line-soft);
  transition: transform .25s ease, box-shadow .35s;
}
.therapy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -24px rgba(28, 34, 41, 0.18);
}
.therapy-card .badge {
  align-self: flex-start;
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(149, 163, 132, 0.16);
  color: var(--sage-deep);
  font-family: "Quicksand", "Manrope", sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}
.therapy-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin: 6px 0 0;
  text-wrap: balance;
}
.therapy-card h3 em { font-style: italic; color: var(--accent); }
.therapy-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
  text-wrap: pretty;
}
.therapy-card .glyph {
  margin-top: auto;
  margin-bottom: -16px;
  margin-right: -16px;
  margin-left: auto;
  width: 140px;
  height: 140px;
  position: relative;
}
.therapy-card .glyph svg { width: 100%; height: 100%; }
@media (max-width: 900px) {
  .therapy-card .glyph {
    align-self: center;
    margin-left: 0;
    margin-right: 0;
  }
}
.therapy-card a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.therapy-card a:hover { color: var(--accent-deep); }
.therapy-card a .arrow { transition: transform .2s; }
.therapy-card a:hover .arrow { transform: translateX(3px); }

/* Theme: green background, white text (Ozone Therapy) */
.therapy-card.theme-green {
  background: var(--accent);
  color: var(--bone);
}
.therapy-card.theme-green h3 { color: var(--bone); }
.therapy-card.theme-green h3 em { color: var(--sage-soft); font-style: italic; }
.therapy-card.theme-green p { color: rgba(246, 241, 228, 0.82); }
.therapy-card.theme-green .badge {
  background: rgba(246, 241, 228, 0.14);
  color: var(--sage-soft);
}
.therapy-card.theme-green a { color: var(--sage-soft); }
.therapy-card.theme-green a:hover { color: var(--bone); }

/* Theme: blue background, white text (Peptide Therapy) */
.therapy-card.theme-blue {
  background: var(--blue-deep);
  color: var(--bone);
}
.therapy-card.theme-blue h3 { color: var(--bone); }
.therapy-card.theme-blue h3 em { color: var(--blue-soft); font-style: italic; }
.therapy-card.theme-blue p { color: rgba(246, 241, 228, 0.82); }
.therapy-card.theme-blue .badge {
  background: rgba(246, 241, 228, 0.14);
  color: var(--blue-soft);
}
.therapy-card.theme-blue a { color: var(--blue-soft); }
.therapy-card.theme-blue a:hover { color: var(--bone); }

/* Theme: white background, blue accent (Red Light Therapy) */
.therapy-card.theme-white-blue h3 em { color: var(--blue-deep); }
.therapy-card.theme-white-blue .badge {
  background: rgba(77, 124, 165, 0.14);
  color: var(--blue-deep);
}
.therapy-card.theme-white-blue a { color: var(--blue-deep); }
.therapy-card.theme-white-blue a:hover { color: var(--blue); }
.therapy-card.theme-white-blue .glyph { color: var(--blue); }

/* Theme: white background, green accent (Hyperbaric Chamber) — default style, class kept for clarity */
.therapy-card.theme-white-green .glyph { color: var(--accent); }

/* ─────────── Anti-positioning / Three Paths ─────────── */
.paths-block {
  background: var(--bone);
  border-top: 0.5px solid var(--line-soft);
  border-bottom: 0.5px solid var(--line-soft);
}
.paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 0.5px solid var(--line);
}
@media (max-width: 860px) {
  .paths { grid-template-columns: 1fr; }
}
.path {
  padding: 40px 32px;
  border-right: 0.5px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 360px;
  background: linear-gradient(180deg, #ededea 0%, #e3e2de 100%);
  filter: saturate(0.45);
  color: #6b6e72;
  position: relative;
}
.path::after {
  /* faint cross-hatch — "tired, well-worn" */
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg,
    rgba(60, 65, 72, 0.04) 0, rgba(60, 65, 72, 0.04) 1px,
    transparent 1px, transparent 8px);
  pointer-events: none;
}
.path > * { position: relative; z-index: 1; }
.path:last-child { border-right: none; }
@media (max-width: 860px) {
  .path { border-right: none; border-bottom: 0.5px solid var(--line); min-height: auto; }
  .path:last-child { border-bottom: none; }
}
.path .label {
  font-family: "Quicksand", "Manrope", sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8b8e93;
}
.path h4 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
  color: #4a4d52;
}
.path .verdict {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.2;
  color: #7a7d82;
  letter-spacing: -0.012em;
  text-wrap: balance;
}
.path p {
  font-size: 15px;
  line-height: 1.6;
  color: #6b6e72;
  margin: 0;
  text-wrap: pretty;
}

/* Third path — alive, warm, healing */
.path.ours {
  background:
    radial-gradient(ellipse 80% 90% at 50% 0%, rgba(149, 163, 132, 0.28), transparent 70%),
    radial-gradient(ellipse 70% 80% at 50% 100%, rgba(98, 152, 193, 0.14), transparent 70%),
    linear-gradient(180deg, #f4f6ee 0%, #ebf0e1 100%);
  filter: none;
  color: var(--ink);
  box-shadow:
    inset 0 0 60px -10px rgba(83, 105, 73, 0.18),
    0 24px 48px -28px rgba(46, 58, 37, 0.35);
  border-right: none;
  z-index: 1;
}
.path.ours::after { display: none; }
.path.ours::before {
  /* soft aurora glow at top edge */
  content: "";
  position: absolute;
  top: -1px; left: 8%; right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--sage), var(--accent), var(--sage), transparent);
  border-radius: 999px;
  opacity: 0.75;
}
.path.ours .label { color: var(--accent); }
.path.ours h4 { color: var(--accent-deep); }
.path.ours .verdict { color: var(--accent); }
.path.ours p { color: var(--ink-2); }

/* ─────────── Legal disclosure ─────────── */
.disclosure {
  padding: 36px 0 28px;
  background: var(--paper-2);
  border-top: 0.5px solid var(--line);
  font-family: "Quicksand", "Manrope", sans-serif;
}
.disclosure .container {
  max-width: 980px;
}
.disclosure h6 {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 12px;
  font-weight: 500;
}
.disclosure p {
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 10px;
}
.disclosure p:last-child { margin-bottom: 0; }

/* ─────────── We See You (audience) ─────────── */
.see-you {
  background: var(--forest);
  color: var(--bone);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.see-you::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 50% at 90% 20%, rgba(172, 199, 227, 0.18), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(145, 168, 131, 0.25), transparent 60%);
  pointer-events: none;
}
.see-you .container { position: relative; z-index: 1; }
.see-you .eyebrow { color: var(--sage-soft); }
.see-you h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin: 14px 0 0;
  max-width: 18ch;
  text-wrap: balance;
}
.see-you h2 em { font-style: italic; color: var(--sage-soft); }
.see-you-body {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  margin-top: 64px;
}
@media (max-width: 900px) {
  .see-you-body { grid-template-columns: 1fr; gap: 40px; }
}
.see-you-lede {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(246, 241, 228, 0.78);
  text-wrap: pretty;
}
.see-you-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media (max-width: 540px) {
  .see-you-list { grid-template-columns: 1fr; }
}
.see-you-list li {
  padding: 18px 0;
  border-top: 0.5px solid rgba(246, 241, 228, 0.18);
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.012em;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.see-you-list li:nth-child(odd) { padding-right: 20px; }
.see-you-list li:nth-child(even) { padding-left: 20px; border-left: 0.5px solid rgba(246, 241, 228, 0.18); }
@media (max-width: 540px) {
  .see-you-list li { padding: 18px 0; }
  .see-you-list li:nth-child(even) { padding-left: 0; border-left: none; }
}
.see-you-list li b {
  font-weight: 400;
  font-style: italic;
  color: var(--sage-soft);
}
.see-you-list li::before {
  content: "—";
  color: var(--sage-soft);
  margin-right: 2px;
}
.see-you-cta {
  margin-top: 56px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* ─────────── Journey (3 steps) ─────────── */
.journey {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 860px) {
  .journey { grid-template-columns: 1fr; }
}
.step {
  background: var(--bone);
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  border: 0.5px solid var(--line-soft);
  min-height: 360px;
}
.step .step-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 64px;
  font-style: italic;
  line-height: 0.9;
  color: var(--sage);
  letter-spacing: -0.04em;
}
.step h4 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: -0.016em;
  margin: 0;
  line-height: 1.05;
}
.step h4 em { font-style: italic; color: var(--accent); }
.step p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
  text-wrap: pretty;
}
.step .micro {
  margin-top: auto;
  padding-top: 16px;
  border-top: 0.5px solid var(--line-soft);
  font-family: "Quicksand", "Manrope", sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─────────── Pull quote / promise ─────────── */
.promise {
  padding: 140px 0;
  background: var(--paper-2);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.promise::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center top, rgba(98, 152, 193, 0.14), transparent 60%);
  pointer-events: none;
}
.promise .container { position: relative; z-index: 1; }
.promise blockquote {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 32px auto 0;
  max-width: 22ch;
  text-wrap: balance;
}
.promise blockquote em { font-style: italic; color: var(--accent); }
.promise-attr {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.promise-attr .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage) 0%, var(--accent) 100%);
  flex-shrink: 0;
}
.promise-attr .who {
  text-align: left;
  font-size: 14px;
  line-height: 1.4;
}
.promise-attr .who b { display: block; font-weight: 600; color: var(--ink); }
.promise-attr .who span { color: var(--muted); }

/* ─────────── Pathways (Patient / Member) ─────────── */
.pathways {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 900px) {
  .pathways { grid-template-columns: 1fr; }
}
.pathway {
  background: var(--bone);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 0.5px solid var(--line-soft);
  transition: transform .25s ease, box-shadow .35s;
}
.pathway:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -24px rgba(28, 34, 41, 0.18);
}
.pathway-image {
  aspect-ratio: 16 / 10;
  background: linear-gradient(180deg, var(--sage) 0%, var(--sage-deep) 100%);
  position: relative;
  overflow: hidden;
  color: var(--bone);
}
.pathway-image.alt {
  background: linear-gradient(180deg, var(--sage-deep) 0%, var(--forest-deep) 100%);
}
.pathway-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg,
    rgba(246, 241, 228, 0.05) 0, rgba(246, 241, 228, 0.05) 1px,
    transparent 1px, transparent 22px);
}
.pathway-image .photo-caption {
  position: absolute;
  bottom: 16px;
  left: 20px;
  font-family: "Quicksand", "Manrope", sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
}
.pathway-image .word {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 28px;
  line-height: 1;
}
.pathway-body {
  padding: 32px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.pathway-body .label {
  font-family: "Quicksand", "Manrope", sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.pathway-body h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: -0.018em;
  margin: 0;
  line-height: 1.05;
  text-wrap: balance;
}
.pathway-body h3 em { font-style: italic; color: var(--accent); }
.pathway-body p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
  text-wrap: pretty;
}
.pathway-body ul {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pathway-body li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-2);
}
.pathway-body li::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  margin-top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.pathway-body .cta {
  margin-top: 12px;
  align-self: flex-start;
}

/* ─────────── Stats ─────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 0.5px solid var(--line);
}
@media (max-width: 860px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
.stat {
  padding: 36px 24px;
  border-right: 0.5px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat:last-child { border-right: none; }
@media (max-width: 860px) {
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3), .stat:nth-child(4) { border-top: 0.5px solid var(--line); }
}
.stat .figure {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(56px, 7vw, 88px);
  line-height: 0.9;
  letter-spacing: -0.028em;
  color: var(--accent);
}
.stat .figure em { font-style: italic; color: var(--sage); }
.stat .label {
  font-size: 14px;
  color: var(--ink-2);
  max-width: 220px;
  text-wrap: pretty;
  line-height: 1.4;
}

/* ─────────── FAQ ─────────── */
.faq {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 0.5px solid var(--line);
}
.faq-item {
  border-bottom: 0.5px solid var(--line);
  padding: 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 32px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.014em;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: "Quicksand", "Manrope", sans-serif;
  font-size: 28px;
  color: var(--accent);
  transition: transform .25s;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  text-wrap: pretty;
}

/* ─────────── Video testimonials ─────────── */
.video-feature {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.video-feature .video-card {
  width: 58%;          /* scales with the 5-up row → ~1.45x portrait height, stays <=1.5x at every PC width */
  max-width: 740px;
  min-width: 280px;
}
/* Video 1 native frame is 1280x1084 (~1.18:1); the lower black band with
   captions is part of the video, not a letterbox. Match it exactly so
   nothing is cropped or padded. */
.video-embed.video-embed-wide {
  aspect-ratio: 1280 / 1084;
}
@media (max-width: 640px) {
  .video-feature .video-card { width: 100%; max-width: 520px; }
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
/* smaller laptops: 3-up so portrait videos don't get hair-thin */
@media (max-width: 1100px) {
  .video-grid { grid-template-columns: repeat(3, 1fr); }
}
/* mobile: stacked, single centered column.
   Center the COLUMN (justify-content) — never auto-margin the grid item,
   that cancels stretch and collapses the card to zero width. */
@media (max-width: 640px) {
  .video-grid {
    grid-template-columns: minmax(0, 360px);
    justify-content: center;
  }
}
.video-card {
  background: var(--bone);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 0.5px solid var(--line-soft);
  transition: transform .25s ease, box-shadow .35s;
}
.video-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -24px rgba(28, 34, 41, 0.18);
}
.video-embed {
  position: relative;
  aspect-ratio: 9 / 16;
  background: #0d130c;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
/* ─────────── Final CTA ─────────── */
.final-cta {
  padding: 160px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #2e3a25 0%, #3c5138 60%, #536949 100%);
  color: var(--bone);
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 80% at 20% 20%, rgba(145, 168, 131, 0.25), transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 80%, rgba(98, 152, 193, 0.2), transparent 60%);
  pointer-events: none;
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta .eyebrow { color: var(--sage-soft); }
.final-cta h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 20px auto 28px;
  max-width: 18ch;
  text-wrap: balance;
}
.final-cta h2 em { font-style: italic; color: var(--sage-soft); }
.final-cta p {
  font-size: 18px;
  color: rgba(246, 241, 228, 0.8);
  max-width: 540px;
  margin: 0 auto 36px;
  text-wrap: pretty;
}
.final-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.final-cta-meta {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  font-family: "Quicksand", "Manrope", sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-soft);
}
.final-cta-meta span { display: inline-flex; align-items: center; gap: 8px; }
.final-cta-meta i {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage-soft);
  font-style: normal;
}

/* ─────────── Free-session landing: claim grid + signup form ─────────── */
.claim-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 48px;
  max-width: 680px;
  margin-inline: auto;
  align-items: stretch;
}
.claim-card {
  background: var(--bone);
  border: 0.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 40px rgba(28, 34, 41, 0.06);
}
.claim-card-book {
  background: linear-gradient(160deg, #2e3a25 0%, #3c5138 60%, #536949 100%);
  color: var(--bone);
  border-color: transparent;
}
.claim-step {
  font-family: "Quicksand", "Manrope", sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cta);
}
.claim-card-book .claim-step { color: var(--sage-soft); }
.claim-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 12px 0 14px;
}
.claim-card-sub {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 28px;
  text-wrap: pretty;
}
.claim-card-book .claim-card-sub { color: rgba(246, 241, 228, 0.8); }

.signup-form { display: flex; flex-direction: column; gap: 16px; margin-top: auto; }
.signup-field { display: flex; flex-direction: column; gap: 6px; }
.signup-field label {
  font-family: "Quicksand", "Manrope", sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.signup-field input {
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 15px;
  transition: border-color .2s, box-shadow .2s;
}
.signup-field input:focus {
  outline: none;
  border-color: var(--cta);
  box-shadow: 0 0 0 3px rgba(77, 124, 165, 0.18);
}
.signup-submit { margin-top: 6px; justify-content: center; }
.signup-book { margin-top: auto; justify-content: center; }
.signup-error {
  font-size: 14px;
  color: #b3261e;
  margin: 10px 0 0;
  text-align: center;
}
.signup-fineprint {
  font-size: 13px;
  color: var(--muted);
  margin: 12px 0 0;
  text-align: center;
}
.claim-card-book .signup-fineprint { color: rgba(246, 241, 228, 0.65); }

@media (max-width: 860px) {
  .claim-card { padding: 32px 26px; }
}

/* ─────────── Footer ─────────── */
.footer {
  padding: 80px 0 36px;
  background: var(--paper-2);
  border-top: 0.5px solid var(--line-soft);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 64px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
.footer h5 {
  font-family: "Quicksand", "Manrope", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 14px;
}
.footer a:hover { color: var(--accent); }
.footer-tagline {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  line-height: 1.35;
  margin: 20px 0 0;
  max-width: 340px;
  color: var(--ink-2);
  text-wrap: pretty;
}
.footer-tagline em { font-style: italic; color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 32px;
  border-top: 0.5px solid var(--line);
  font-size: 12px;
  color: var(--muted);
  font-family: "Quicksand", "Manrope", sans-serif;
  letter-spacing: 0.04em;
}
.footer-bottom a { color: var(--muted); }

section { scroll-margin-top: 100px; }

/* ─────────── Membership tiers ─────────── */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 980px) {
  .tiers { grid-template-columns: 1fr; }
}
.tier {
  background: var(--bone);
  border-radius: var(--radius-lg);
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  border: 0.5px solid var(--line-soft);
  transition: transform .25s ease, box-shadow .35s;
}
.tier:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -24px rgba(28, 34, 41, 0.18);
}
.tier .tier-eyebrow {
  font-family: "Quicksand", "Manrope", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.tier h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin: 0;
  text-wrap: balance;
}
.tier h3 em { font-style: italic; color: var(--accent); }
.tier .tier-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 4px;
  padding-bottom: 20px;
  border-bottom: 0.5px solid var(--line-soft);
}
.tier .tier-price .figure {
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  line-height: 0.9;
  letter-spacing: -0.028em;
  color: var(--accent);
}
.tier .tier-price .per {
  font-family: "Quicksand", "Manrope", sans-serif;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.tier .tier-tagline {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.3;
  color: var(--ink-2);
  margin: 0;
}
.tier ul {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tier li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-2);
}
.tier li::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  margin-top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.tier li b { font-weight: 600; color: var(--ink); }
/* inline note ("(20 min each)") — muted on light tiers, legible on the dark featured tier */
.tier li .li-note { color: var(--muted); }
.tier .tier-cta {
  margin-top: auto;
  padding-top: 20px;
  align-self: stretch;
}
.tier .tier-cta .btn {
  width: 100%;
}
.tier .tier-fineprint {
  font-family: "Quicksand", "Manrope", sans-serif;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
  text-align: center;
  margin-top: 10px;
}

/* Featured tier — middle card stands out */
.tier.featured {
  background: var(--accent);
  color: var(--bone);
  border-color: transparent;
  box-shadow: 0 24px 48px -24px rgba(40, 58, 37, 0.4);
}
.tier.featured .tier-eyebrow { color: var(--sage-soft); }
.tier.featured h3 { color: var(--bone); }
.tier.featured h3 em { color: var(--sage-soft); }
.tier.featured .tier-price .figure { color: var(--bone); }
.tier.featured .tier-price .per { color: rgba(246, 241, 228, 0.7); }
.tier.featured .tier-price { border-bottom-color: rgba(246, 241, 228, 0.18); }
.tier.featured .tier-tagline { color: rgba(246, 241, 228, 0.85); }
.tier.featured li { color: rgba(246, 241, 228, 0.88); }
.tier.featured li b { color: var(--bone); }
.tier.featured li .li-note { color: rgba(246, 241, 228, 0.7); }
.tier.featured li::before { background: var(--sage-soft); }
.tier.featured .tier-fineprint { color: rgba(246, 241, 228, 0.65); }
.tier.featured .badge-popular {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--sage-soft);
  color: var(--forest-deep);
  padding: 4px 10px;
  border-radius: 999px;
  font-family: "Quicksand", "Manrope", sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Elite tier — blue accent for the corporate offering */
.tier.elite { border-color: rgba(77, 124, 165, 0.25); }
.tier.elite h3 em { color: var(--blue-deep); }
.tier.elite .tier-price .figure { color: var(--blue-deep); }
.tier.elite li::before { background: var(--blue); }

/* Membership hero — softer, paper-toned variant */
.hero.hero-membership {
  background: linear-gradient(180deg, #2e3a25 0%, #3c5138 50%, #536949 100%);
}

/* Comparison strip below tiers */
.tier-meta-strip {
  margin-top: 40px;
  padding: 28px 32px;
  border-radius: var(--radius);
  background: var(--paper-2);
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
  font-family: "Quicksand", "Manrope", sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
}
.tier-meta-strip span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.tier-meta-strip i {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  font-style: normal;
}

