/* ================================================================
   VALEO THERAPEUTICS — Design System
   Ivory / Stone / Navy / Gold / Oxblood
   Cormorant Garamond (display) + Source Sans 3 (practical)
   ================================================================ */

:root {
  --ivory: #F4F0E7;
  --stone: #E7E0D2;
  --navy: #101C2B;
  --gold: #B08E4C;
  --oxblood: #681F28;
  --navy-85: rgba(16, 28, 43, 0.85);
  --navy-70: rgba(16, 28, 43, 0.7);

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', 'Source Sans Pro', -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: auto; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--navy-85);
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Type ---------- */

h1, h2, h3, .cormorant {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0;
  font-weight: 600;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gold);
  margin: 0 0 16px;
}

.hero-h1 {
  font-size: clamp(44px, 7vw, 84px);
  letter-spacing: .02em;
  text-transform: uppercase;
  line-height: 1.05;
}

.section-h2 {
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.15;
}

.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--navy);
  line-height: 1.4;
}

p {
  margin: 0 0 1.2em;
  font-family: var(--font-display);
  font-weight: 400;
}
p:last-child { margin-bottom: 0; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .14em;
  padding: 16px 34px;
  border-radius: 2px;
  transition: opacity .2s ease, background .2s ease, color .2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--navy);
  color: var(--ivory);
  border: 1px solid var(--navy);
}
.btn-primary:hover { opacity: .85; }

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: var(--ivory); }

.btn-secondary.on-dark {
  color: var(--ivory);
  border-color: var(--ivory);
}
.btn-secondary.on-dark:hover { background: var(--ivory); color: var(--navy); }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border: 1px solid var(--gold);
}
.btn-gold:hover { background: #c7a45d; color: var(--navy); }
.btn-gold:visited { background: var(--navy); color: var(--ivory); border-color: var(--navy); }
.btn-gold:active { background: var(--navy); color: var(--ivory); border-color: var(--navy); }

.btn-appt {
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  padding: 10px 22px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 600;
}
.btn-appt:hover { background: var(--gold); color: var(--navy); }

.link-arrow {
  color: var(--gold);
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1px solid transparent;
}
.link-arrow:hover { border-bottom-color: var(--gold); }

/* ---------- Header ---------- */

header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ivory);
  border-bottom: 1px solid rgba(16,28,43,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wordmark img { height: 40px; width: 40px; }

.wordmark-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.wordmark-text .valeo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: .2em;
  color: var(--navy);
}

.wordmark-text .therapeutics {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: .05em;
  margin-top: 2px;
}

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

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}

nav.main-nav li { position: relative; }

nav.main-nav > ul > li > a {
  color: var(--navy);
  padding: 8px 0;
}
nav.main-nav > ul > li > a:hover { color: var(--gold); }

.has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: -20px;
  background: var(--ivory);
  border: 1px solid rgba(16,28,43,0.1);
  box-shadow: 0 12px 24px rgba(16,28,43,0.12);
  padding: 14px 0;
  min-width: 260px;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: block; }

.dropdown li a {
  display: block;
  padding: 10px 24px;
  font-size: 14px;
  color: var(--navy-85);
}
.dropdown li a:hover { color: var(--gold); background: var(--stone); }

.mobile-toggle { display: none; }

.mobile-appointments { display: none; }

@media (max-width: 900px) {
  .header-inner { padding: 12px 18px; }
  .wordmark { gap: 9px; }
  .wordmark img { height: 34px; width: 34px; }
  .wordmark-text .valeo { font-size: 20px; letter-spacing: .16em; }
  .wordmark-text .therapeutics { font-size: 12px; }
  nav.main-nav { gap: 10px; }
  nav.main-nav > .btn-appt { display: none; }
  .mobile-toggle {
    display: block;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: 1px solid rgba(16,28,43,.16);
    border-radius: 2px;
    font-size: 0;
    color: var(--navy);
    cursor: pointer;
    position: relative;
  }
  .mobile-toggle::before,
  .mobile-toggle::after,
  .mobile-toggle span {
    content: '';
    position: absolute;
    left: 11px;
    width: 20px;
    height: 2px;
    background: var(--navy);
    transition: transform .18s ease, opacity .18s ease, top .18s ease;
  }
  .mobile-toggle::before { top: 13px; }
  .mobile-toggle span { top: 20px; }
  .mobile-toggle::after { top: 27px; }
  .mobile-toggle[aria-expanded="true"]::before { top: 20px; transform: rotate(45deg); }
  .mobile-toggle[aria-expanded="true"] span { opacity: 0; }
  .mobile-toggle[aria-expanded="true"]::after { top: 20px; transform: rotate(-45deg); }

  nav.main-nav > ul {
    display: none;
    position: fixed;
    top: 69px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 69px);
    overflow-y: auto;
    flex-direction: column;
    gap: 0;
    background: var(--ivory);
    border-top: 1px solid rgba(16,28,43,.08);
    box-shadow: 0 18px 30px rgba(16,28,43,.14);
    padding: 14px 24px 26px;
    z-index: 250;
  }
  nav.main-nav.menu-open > ul { display: flex; }
  nav.main-nav > ul > li { border-bottom: 1px solid rgba(16,28,43,.08); }
  nav.main-nav > ul > li > a { display: block; padding: 15px 2px; font-size: 15px; }
  nav.main-nav .has-dropdown .dropdown,
  nav.main-nav .has-dropdown:hover .dropdown {
    display: block;
    position: static;
    min-width: 0;
    padding: 0 0 10px 14px;
    border: 0;
    box-shadow: none;
    background: transparent;
  }
  nav.main-nav .dropdown li a { padding: 9px 4px; font-size: 14px; }
  .mobile-appointments { display: block; }
  .mobile-appointments a { color: var(--gold) !important; font-weight: 700; }
  body.nav-open { overflow: hidden; }
}

/* ---------- Sections ---------- */

section { padding: 110px 0; }
section.tight { padding: 80px 0; }
section.stone-bg { background: var(--stone); }
section.navy-bg { background: var(--navy); color: rgba(244,240,231,0.9); }
section.navy-bg h1, section.navy-bg h2, section.navy-bg h3 { color: var(--ivory); }
section.navy-bg .eyebrow { color: var(--gold); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 44px;
  align-items: center;
  width: 100%;
}

.hero-copy .eyebrow { margin-bottom: 20px; }

.hero-subtitle-1 {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  font-size: 15px;
  margin: 26px 0 10px;
}

.hero-subtitle-2 {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--navy);
  font-size: 20px;
  margin: 0 0 36px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-image {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 16/11;
  min-height: 560px;
}

.hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Service doors ---------- */

.doors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.door img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 28px;
}

.door h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.door .door-subhead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 14px;
}

@media (max-width: 900px) {
  .doors-grid { grid-template-columns: 1fr; gap: 56px; }
}

/* ---------- Foundation band ---------- */

.foundation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.foundation-grid img {
  width: 100%;
  height: auto;
  border-radius: 2px;
  aspect-ratio: 3/4;
  object-fit: cover;
}

@media (max-width: 900px) {
  .foundation-grid { grid-template-columns: 1fr; gap: 40px; }
  .foundation-grid .foundation-img { order: -1; }
}

/* ---------- About strip ---------- */

.about-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.about-grid img {
  width: 100%;
  height: auto;
  border-radius: 2px;
  aspect-ratio: 3/4;
  object-fit: cover;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Inscription ---------- */

.inscription {
  text-align: center;
  padding: 90px 0;
}

.inscription p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--navy);
  max-width: 780px;
  margin: 0 auto;
}

/* ---------- Footer ---------- */

footer.site-footer {
  background: var(--navy);
  color: rgba(244,240,231,0.75);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(244,240,231,0.14);
}

.footer-grid .valeo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: .18em;
  color: var(--ivory);
  text-transform: uppercase;
}
.footer-grid .therapeutics {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 14px;
  display: block;
  margin: 2px 0 16px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--gold);
  margin: 0 0 18px;
  font-weight: 700;
}

.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; font-size: 15px; }
.footer-col a:hover { color: var(--gold); }

.footer-base {
  padding: 26px 0;
  font-size: 12px;
  color: rgba(244,240,231,0.5);
  text-align: center;
  line-height: 1.7;
}

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

/* ================================================================
   SUBPAGE COMPONENTS
   ================================================================ */

/* ---------- Subpage hero (no image, text-only) ---------- */

.subhero { padding: 70px 0 20px; }
.subhero .eyebrow { margin-bottom: 18px; }
.subhero h1 { font-size: clamp(38px, 6vw, 64px); line-height: 1.08; margin-bottom: 18px; }
.subhero .lede { font-family: var(--font-display); font-style: italic; font-size: clamp(19px, 2.4vw, 24px); color: var(--navy); max-width: 780px; margin: 0 0 30px; }
.subhero p.body-text { max-width: 720px; }
.subhero .hero-buttons { margin-top: 30px; }

/* ---------- Generic two-column image/text (reuses foundation/about proportions) ---------- */

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-grid.img-right { grid-template-columns: 1fr 1fr; }
.split-grid img { border-radius: 2px; width: 100%; height: auto; object-fit: cover; aspect-ratio: 4/3; }
.split-grid .eyebrow { margin-bottom: 16px; }
.split-grid h2 { margin-bottom: 20px; }
@media (max-width: 900px) {
  .split-grid { grid-template-columns: 1fr; gap: 36px; }
  .split-grid.img-right .split-img { order: -1; }
}

/* ---------- Centered text block ---------- */

.text-block { max-width: 800px; margin: 0 auto; }
.text-block.center { text-align: center; }

/* ---------- Pull quote box ---------- */

.quote-box { text-align: center; padding: 56px 0; }
.quote-box p { font-family: var(--font-display); font-style: italic; font-size: clamp(20px, 2.6vw, 27px); color: var(--navy); max-width: 760px; margin: 0 auto; line-height: 1.45; }
section.navy-bg .quote-box p { color: var(--ivory); }

/* ---------- Cards grid (2, 3, or 4 up) ---------- */

.cards-grid { display: grid; gap: 40px; }
.cards-grid.cols-2 { grid-template-columns: 1fr 1fr; }
.cards-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .cards-grid.cols-2, .cards-grid.cols-3, .cards-grid.cols-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--ivory);
  border: 1px solid rgba(16,28,43,0.1);
  border-radius: 2px;
  padding: 36px 32px;
}
section.stone-bg .card { background: var(--ivory); }
section.navy-bg .card { background: rgba(244,240,231,0.04); border-color: rgba(244,240,231,0.16); }
.card .eyebrow { margin-bottom: 12px; }
.card h3 { font-size: 22px; margin-bottom: 12px; }
.card p:last-child { margin-bottom: 0; }
.card img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; border-radius: 2px; margin-bottom: 22px; }

/* ---------- Numbered steps ---------- */

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
@media (max-width: 900px) { .steps-grid { grid-template-columns: 1fr; } }

.step-num {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 { font-size: 21px; margin-bottom: 10px; }

/* ---------- Ten Series ordered list (01-10) ---------- */

.series-list { display: flex; flex-direction: column; gap: 0; }
.series-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(16,28,43,0.1);
  align-items: start;
}
section.navy-bg .series-item { border-bottom-color: rgba(244,240,231,0.14); }
.series-item:first-child { padding-top: 0; }
.series-item:last-child { border-bottom: none; }
.series-num { font-family: var(--font-display); font-size: 40px; color: var(--gold); line-height: 1; }
.series-item h3 { font-size: 23px; margin-bottom: 10px; }

/* ---------- Icon / feature grid (Reach / Rotate / Bend / Move, etc.) ---------- */

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 650px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-item h4 { font-family: var(--font-display); font-size: 22px; color: var(--navy); margin-bottom: 8px; font-weight: 600; }
section.navy-bg .feature-item h4 { color: var(--ivory); }
.feature-item p { font-size: 15px; }

/* ---------- Triad grid (Chi / Prana / Vita) ---------- */

.triad-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: center; }
@media (max-width: 900px) { .triad-grid { grid-template-columns: 1fr; } }
.triad-item { padding: 32px 20px; border: 1px solid rgba(244,240,231,0.16); border-radius: 2px; }
.triad-item .triad-word { font-family: var(--font-display); font-size: 30px; color: var(--gold); margin-bottom: 8px; }
.triad-item .triad-sub { font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: rgba(244,240,231,0.7); }

/* ---------- Problem columns (three-column plain lists) ---------- */

.problem-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
@media (max-width: 900px) { .problem-columns { grid-template-columns: 1fr; gap: 32px; } }
.problem-columns h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); margin-bottom: 18px; font-family: var(--font-body); font-weight: 700; }
.problem-columns ul { list-style: none; margin: 0; padding: 0; }
.problem-columns li { padding: 10px 0; border-bottom: 1px solid rgba(16,28,43,0.08); font-size: 15px; }
.problem-columns li:last-child { border-bottom: none; }

/* ---------- Pricing cards ---------- */

.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-card { background: var(--ivory); border: 1px solid rgba(16,28,43,0.1); border-radius: 2px; padding: 40px; }
.pricing-card h3 { font-size: 26px; margin-bottom: 24px; }
.pricing-tier { padding: 22px 0; border-top: 1px solid rgba(16,28,43,0.1); }
.pricing-tier:first-of-type { border-top: none; }
.pricing-tier .tier-name { font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin-bottom: 6px; }
.pricing-tier .tier-price { font-family: var(--font-display); font-size: 22px; color: var(--navy); margin-bottom: 4px; }
.pricing-tier .tier-mode { font-size: 14px; color: var(--navy-70); margin-bottom: 14px; }
.pricing-tier .btn { margin-top: 10px; }

/* ---------- FAQ accordion ---------- */

.faq-group { margin-bottom: 48px; }
.faq-group:last-child { margin-bottom: 0; }
.faq-group-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; color: var(--gold); margin-bottom: 20px; }
.faq-item { border-bottom: 1px solid rgba(16,28,43,0.12); }
.faq-item:first-child { border-top: 1px solid rgba(16,28,43,0.12); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  padding: 22px 36px 22px 0;
  cursor: pointer;
  position: relative;
}
.faq-q::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 20px;
  font-size: 22px;
  color: var(--gold);
  transition: transform .2s ease;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  font-size: 16px;
  color: var(--navy-70);
}
.faq-a > div { padding: 0 0 26px; }
.faq-a p { margin-bottom: 1em; }
.faq-a ul { margin: 0 0 1em; padding-left: 20px; }
.faq-a li { margin-bottom: 6px; }
.faq-item.open .faq-a { max-height: 3000px; }

/* ---------- Small caption under image ---------- */

.img-caption { font-size: 13px; color: var(--navy-70); margin-top: 10px; font-style: italic; }
section.navy-bg .img-caption { color: rgba(244,240,231,0.6); }

/* ---------- Axiom / callout box ---------- */

.axiom-box {
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 28px;
  margin: 36px 0;
}
.axiom-box .axiom-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--gold); margin-bottom: 10px; }
.axiom-box p { font-family: var(--font-display); font-style: italic; font-size: 21px; color: var(--navy); }
section.navy-bg .axiom-box p { color: var(--ivory); }

/* ---------- Circular seal badge (Valeo torch mark) ---------- */

.seal-badge {
  background: var(--ivory);
  border: 1px solid var(--gold);
  border-radius: 2px;
  padding: 50px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.seal-badge .seal-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
}
.seal-badge .seal-circle img { width: 56px; height: 56px; }
.seal-badge .seal-circle .valeo { font-family: var(--font-display); font-weight: 600; font-size: 26px; letter-spacing: .18em; color: var(--navy); }
.seal-badge .seal-circle .therapeutics { font-family: var(--font-display); font-style: italic; font-size: 15px; color: var(--gold); }
.seal-badge .seal-circle .seal-rule { width: 60px; height: 1px; background: var(--gold); margin: 2px 0; }

/* ---------- Numbered path list (who chooses / why fascia matters etc.) ---------- */

.reason-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
@media (max-width: 900px) { .reason-grid { grid-template-columns: 1fr; } }
.reason-item h4 { font-family: var(--font-display); font-size: 20px; color: var(--navy); margin-bottom: 8px; font-weight: 600; }
section.navy-bg .reason-item h4 { color: var(--ivory); }
.reason-item p { font-size: 15px; }


/* ================================================================
   RECOVERED VITALISM / NATUROPATHY PAGE COMPONENTS
   ================================================================ */

.teaching-image {
  max-width: 980px;
  margin: 46px auto;
}
.teaching-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 2px;
}

.practice-role-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 64px;
  align-items: start;
}
.role-card {
  background: var(--ivory);
  border: 1px solid rgba(16,28,43,0.12);
  border-top: 3px solid var(--gold);
  padding: 36px 32px;
}
.role-card h3 {
  font-size: 28px;
  margin-bottom: 18px;
}

.vita-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 64px;
  align-items: center;
}
.vita-panel {
  border: 1px solid var(--gold);
  padding: 56px 36px;
  text-align: center;
}
.vita-word {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 88px);
  letter-spacing: .12em;
  color: var(--navy);
  line-height: 1;
}
.vita-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--gold);
  margin-top: 12px;
}
.vita-rule {
  width: 70px;
  height: 1px;
  background: var(--gold);
  margin: 28px auto;
}
.vita-panel p { font-size: 20px; }

.law-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin-top: 52px;
}
.law-item {
  border-top: 2px solid var(--gold);
  padding: 18px 10px 0;
  text-align: center;
}
.law-item span {
  display: block;
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 28px;
  margin-bottom: 12px;
}
.law-item p {
  font-size: 15px;
  line-height: 1.35;
}

.path-count-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  max-width: 820px;
  margin: 54px auto 0;
}
.path-count {
  text-align: center;
  border: 1px solid rgba(16,28,43,0.14);
  padding: 34px 22px;
  background: var(--ivory);
}
.path-number {
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--gold);
  line-height: 1;
}
.path-count p {
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-top: 14px;
}

@media (max-width: 900px) {
  .practice-role-grid,
  .vita-grid { grid-template-columns: 1fr; gap: 36px; }
  .law-grid { grid-template-columns: 1fr; gap: 0; }
  .law-item { text-align: left; display: grid; grid-template-columns: 54px 1fr; gap: 12px; align-items: start; padding: 16px 0; border-top: 1px solid rgba(16,28,43,0.12); }
  .law-item span { margin: 0; }
  .path-count-grid { grid-template-columns: 1fr; }
}


/* Canonical Vitalism law/pathway presentation */
.law-name-grid {
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:10px;
  margin:42px auto 0;
  max-width:1180px;
}
.law-name {
  min-height:150px;
  border:1px solid rgba(16,28,43,.16);
  border-top:3px solid var(--gold);
  background:var(--ivory);
  padding:22px 12px;
  text-align:center;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  gap:14px;
  font-family:var(--font-display);
  color:var(--navy);
}
.law-name span { color:var(--gold); font-size:18px; letter-spacing:.08em; }
.law-name strong { font-size:17px; line-height:1.25; font-weight:600; }
.pathway-count-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  max-width:820px;
  margin:42px auto 0;
}
.pathway-count {
  border:1px solid rgba(16,28,43,.14);
  background:var(--ivory);
  padding:34px 24px;
  text-align:center;
}
.pathway-number { font-family:var(--font-display); font-size:72px; line-height:.9; color:var(--gold); }
.pathway-label { margin-top:18px; text-transform:uppercase; letter-spacing:.08em; font-size:14px; color:var(--navy); }
.small-note { font-size:14px; opacity:.78; }
@media (max-width:1000px){ .law-name-grid{grid-template-columns:repeat(2,1fr)} }
@media (max-width:650px){ .law-name-grid,.pathway-count-grid{grid-template-columns:1fr} .law-name{min-height:auto} }


/* Stable mobile hero: image and copy read as one composition, not stacked images. */
@media (max-width: 900px) {
  .hero { padding: 0; min-height: 0; }
  .hero > .wrap { padding: 0; max-width: none; width: 100%; }
  .hero-grid { display: grid; grid-template-columns: 1fr; gap: 0; position: relative; min-height: 560px; }
  .hero-image { position: absolute; inset: 0; width: 100%; height: 100%; aspect-ratio: auto; order: initial; }
  .hero-image::after { content:''; position:absolute; inset:0; background:linear-gradient(180deg,rgba(244,240,231,.30),rgba(244,240,231,.60)); }
  .hero-image img { width:100%; height:100%; object-fit:cover; }
  .hero-copy { position:relative; z-index:2; align-self:end; margin: 92px 18px 28px; padding: 28px 24px 30px; background:rgba(244,240,231,.92); border:1px solid rgba(176,142,76,.45); box-shadow:0 12px 30px rgba(16,28,43,.12); }
  .hero-h1 { font-size: clamp(38px, 12vw, 58px); }
  .hero-subtitle-1 { font-size: 12px; }
  .hero-subtitle-2 { font-size: 18px; }
  .hero-buttons { gap: 10px; }
  .hero-buttons .btn { width: 100%; text-align:center; padding:14px 18px; }
  section { padding: 76px 0; }
  section.tight { padding: 64px 0; }
  .wrap { padding: 0 22px; }
}

@media (max-width: 480px) {
  .wordmark-text .therapeutics { display:none; }
  .hero-grid { min-height: 520px; }
  .hero-copy { margin-left:12px; margin-right:12px; padding:24px 20px; }
  .series-item { grid-template-columns: 58px 1fr; gap:18px; }
}

/* Accessibility: keyboard skip link */
.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--navy);
  color: var(--ivory);
  border: 1px solid var(--gold);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }


/* ================================================================
   HOMEPAGE RESTORED LAYOUT — r20260824-1343
   ================================================================ */
@media (min-width: 901px) {
  .hero > .wrap { max-width: 1320px; }
  .hero { min-height: 78vh; padding: 52px 0 64px; }
  .hero-image { min-height: 590px; }
}

.home-service { padding: 96px 0; }
.home-service-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  gap: 72px;
  align-items: center;
}
.home-service-grid.image-right { grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr); }
.home-service-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 5/4;
  object-fit: cover;
  border-radius: 2px;
}
.home-service-copy { max-width: 520px; }
.home-service-lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.4;
  color: var(--navy);
  margin: 20px 0 26px;
}

.home-foundation { padding: 72px 0; }
.home-foundation .foundation-grid {
  grid-template-columns: minmax(230px, .68fr) minmax(0, 1.32fr);
  gap: 68px;
}
.home-foundation .foundation-img { max-width: 360px; }
.home-foundation .foundation-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.home-about { padding: 90px 0; }
.home-about .about-grid { grid-template-columns: .68fr 1.32fr; }
.home-about .about-grid > div:first-child { max-width: 390px; }
.home-about .about-grid img {
  aspect-ratio: auto;
  object-fit: contain;
}

.home-inscription { padding: 52px 0 62px; }
.inscription-logo {
  width: 116px;
  height: auto;
  margin: 0 auto 22px;
}
.home-inscription p { margin-bottom: 0; }

footer.site-footer { margin: 0; }
footer.site-footer + * { margin-top: 0 !important; }
body { padding-bottom: 0; }

@media (max-width: 900px) {
  .home-service { padding: 70px 0; }
  .home-service-grid,
  .home-service-grid.image-right {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .home-service-grid.image-right .home-service-copy { order: 2; }
  .home-service-grid.image-right .home-service-image { order: 1; }
  .home-service-copy { max-width: none; }
  .home-foundation { padding: 62px 0; }
  .home-foundation .foundation-grid { grid-template-columns: 1fr; gap: 32px; }
  .home-foundation .foundation-img { max-width: 300px; margin: 0 auto; }
  .home-about .about-grid > div:first-child { max-width: 340px; margin: 0 auto; }
  .home-inscription { padding: 46px 0 54px; }
}

/* ==========================================================
   HOMEPAGE RESTORATION — r20260824-1358
   Preserve the earlier refined thin double-gold image framing
   without altering the image box model or proportions.
   ========================================================== */
main img:not(.inscription-logo):not([src*="official-logo"]):not([src*="ceremonial-monogram"]):not([src*="torch-emblem"]):not([src*="valeo-therapeutics-logo"]) {
  box-shadow:
    0 0 0 1px rgba(176,142,76,.78),
    0 0 0 3px var(--ivory),
    0 0 0 4px rgba(176,142,76,.58);
}

/* Home hero: text left, architectural image right, image dominant. */
.home-page .hero { min-height: 82vh; padding: 58px 0 72px; }
.home-page .hero-grid {
  grid-template-columns: minmax(0,.88fr) minmax(0,1.12fr);
  gap: 72px;
  align-items: center;
}
.home-page .hero-copy { order: 1; }
.home-page .hero-image {
  order: 2;
  aspect-ratio: 1.06 / 1;
  min-height: 560px;
  overflow: hidden;
}
.home-page .hero-image img { width:100%; height:100%; object-fit:cover; object-position:center; }

/* Alternating homepage practice sections. */
.home-page .home-service-grid {
  grid-template-columns: minmax(0,1.08fr) minmax(0,.92fr);
  gap: 76px;
  align-items: center;
}
.home-page .home-service-grid.image-left .home-service-image { order:1; }
.home-page .home-service-grid.image-left .home-service-copy { order:2; }
.home-page .home-service-grid.image-right .home-service-copy { order:1; }
.home-page .home-service-grid.image-right .home-service-image { order:2; }
.home-page .home-service-image img { width:100%; height:auto; display:block; }

/* Vitalism/Foundation: cropped Ionic column left, copy right, shorter band. */
.home-page .home-foundation { padding: 66px 0; }
.home-page .home-foundation .foundation-grid {
  grid-template-columns: minmax(260px,.72fr) minmax(0,1.28fr);
  gap: 70px;
  align-items:center;
}
.home-page .home-foundation .foundation-img { max-width: 390px; justify-self:start; }
.home-page .home-foundation .foundation-grid img {
  width:100%; height:auto; aspect-ratio:auto; object-fit:contain; display:block;
}

/* About: make the standing navy-shirt portrait substantial again. */
.home-page .home-about .about-grid {
  grid-template-columns: minmax(420px,.92fr) minmax(0,1.08fr);
  gap: 72px;
  align-items:center;
}
.home-page .home-about .home-about-image { max-width: 560px; }
.home-page .home-about .home-about-image img {
  width:100%; height:auto; aspect-ratio:4/3; object-fit:cover; object-position:left center; display:block;
}

@media (max-width: 900px) {
  .home-page .hero { min-height:0; padding:0; }
  .home-page .hero-grid { grid-template-columns:1fr; gap:0; min-height:560px; }
  .home-page .hero-copy { order:1; }
  .home-page .hero-image { order:2; min-height:560px; }
  .home-page .home-service-grid,
  .home-page .home-foundation .foundation-grid,
  .home-page .home-about .about-grid { grid-template-columns:1fr; gap:34px; }
  .home-page .home-service-grid.image-left .home-service-image,
  .home-page .home-service-grid.image-right .home-service-image { order:1; }
  .home-page .home-service-grid.image-left .home-service-copy,
  .home-page .home-service-grid.image-right .home-service-copy { order:2; }
  .home-page .home-foundation .foundation-img,
  .home-page .home-about .home-about-image { max-width:none; width:100%; }
}


/* ==========================================================
   HOMEPAGE REBALANCE — r20260824-1408
   Ensure full hero image visibility and correct about portrait.
   ========================================================== */
.home-page .hero-grid {
  grid-template-columns: minmax(0,.80fr) minmax(0,1.20fr);
  gap: 64px;
  align-items: center;
}
.home-page .hero-image {
  aspect-ratio: auto;
  min-height: 0;
  overflow: visible;
  display: flex;
  align-items: center;
}
.home-page .hero-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
  display: block;
}
.home-page .hero-copy {
  max-width: 520px;
}
.home-page .home-about .about-grid {
  grid-template-columns: minmax(380px,.82fr) minmax(0,1.18fr);
  gap: 68px;
  align-items: center;
}
.home-page .home-about .home-about-image {
  max-width: 430px;
}
.home-page .home-about .home-about-image img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center top;
  display: block;
}
@media (max-width: 1100px) {
  .home-page .hero-grid {
    grid-template-columns: minmax(0,.88fr) minmax(0,1.12fr);
    gap: 52px;
  }
}
@media (max-width: 900px) {
  .home-page .hero-image {
    min-height: 560px;
    overflow: hidden;
  }
  .home-page .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .home-page .home-about .home-about-image {
    max-width: 380px;
    margin: 0 auto;
  }
}

/* ==========================================================
   HOMEPAGE STRICT CLEANUP — r20260824-1418
   No content changes. Remove residual sizing/position conflicts.
   ========================================================== */
.home-page .hero-grid {
  grid-template-columns: minmax(0,.80fr) minmax(0,1.20fr);
  gap: 64px;
  align-items: center;
}
.home-page .hero-copy {
  max-width: 520px;
}
.home-page .hero-image {
  position: static;
  inset: auto;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  min-height: 0;
  overflow: visible;
  display: block;
}
.home-page .hero-image::after { content: none; }
.home-page .hero-image img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center center;
  display: block;
}
.home-page .home-about .about-grid {
  grid-template-columns: minmax(360px,.84fr) minmax(0,1.16fr);
  gap: 68px;
  align-items: center;
}
.home-page .home-about .home-about-image {
  width: 100%;
  max-width: 430px;
}
.home-page .home-about .home-about-image img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center top;
  display: block;
}
@media (max-width: 1100px) and (min-width: 901px) {
  .home-page .hero-grid {
    grid-template-columns: minmax(0,.88fr) minmax(0,1.12fr);
    gap: 48px;
  }
  .home-page .home-about .about-grid {
    grid-template-columns: minmax(320px,.82fr) minmax(0,1.18fr);
    gap: 54px;
  }
}
@media (max-width: 900px) {
  .home-page .hero {
    padding: 56px 0 64px;
  }
  .home-page .hero > .wrap {
    max-width: 1180px;
    width: 100%;
    padding: 0 22px;
  }
  .home-page .hero-grid {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: 0;
  }
  .home-page .hero-copy {
    position: static;
    z-index: auto;
    align-self: auto;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    max-width: none;
  }
  .home-page .hero-image {
    position: static;
    inset: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
    overflow: visible;
  }
  .home-page .hero-image::after { content: none; }
  .home-page .hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .home-page .home-about .home-about-image {
    max-width: 420px;
    margin: 0 auto;
  }
}



/* ==========================================================
   HOMEPAGE FINAL PROPORTION TUNING — r20260824-1426
   Hero separation + balanced practice image/text rows.
   ========================================================== */
@media (min-width: 901px) {
  .home-page .hero-grid {
    grid-template-columns: minmax(0,.90fr) minmax(0,1.10fr);
    gap: 82px;
    align-items: center;
  }
  .home-page .hero-copy {
    max-width: 470px;
    min-width: 0;
  }
  .home-page .hero-h1 {
    font-size: clamp(46px, 5.25vw, 70px);
    line-height: 1.01;
    letter-spacing: .015em;
  }
  .home-page .hero-image {
    min-width: 0;
    overflow: visible;
  }
  .home-page .hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .home-page .home-service-grid,
  .home-page .home-service-grid.image-right {
    grid-template-columns: minmax(0,1fr) minmax(0,1fr);
    gap: 72px;
    align-items: stretch;
  }
  .home-page .home-service-image {
    height: 100%;
    min-height: 430px;
  }
  .home-page .home-service-image img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .home-page .home-service-copy {
    max-width: none;
    align-self: center;
  }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .home-page .hero-grid {
    grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr);
    gap: 58px;
  }
  .home-page .hero-h1 {
    font-size: clamp(44px, 5.6vw, 62px);
  }
  .home-page .home-service-image,
  .home-page .home-service-image img {
    min-height: 390px;
  }
}


/* ==========================================================
   HOMEPAGE FINAL BALANCE — r20260824-1440
   Larger Naturopathy image + tighter Rolfing section.
   ========================================================== */
@media (min-width: 901px) {
  .home-page .home-service-naturopathy .home-service-grid {
    grid-template-columns: minmax(0,1.16fr) minmax(0,.84fr);
    gap: 68px;
  }
  .home-page .home-service-naturopathy .home-service-image,
  .home-page .home-service-naturopathy .home-service-image img {
    min-height: 470px;
  }
  .home-page .home-service-rolfing {
    padding-top: 58px;
    padding-bottom: 58px;
  }
  .home-page .home-service-rolfing .home-service-grid {
    gap: 68px;
  }
}
@media (max-width: 900px) {
  .home-page .home-service-rolfing {
    padding-top: 54px;
    padding-bottom: 54px;
  }
}


/* ==========================================================
   HOMEPAGE NATUROPATHY FINAL TUNE — r20260824-1450
   Larger image and tighter vertical section spacing only.
   ========================================================== */
@media (min-width: 901px) {
  .home-page .home-service-naturopathy {
    padding-top: 52px;
    padding-bottom: 52px;
  }
  .home-page .home-service-naturopathy .home-service-grid {
    grid-template-columns: minmax(0,1.28fr) minmax(0,.72fr);
    gap: 62px;
  }
  .home-page .home-service-naturopathy .home-service-image,
  .home-page .home-service-naturopathy .home-service-image img {
    min-height: 520px;
  }
}
@media (max-width: 900px) {
  .home-page .home-service-naturopathy {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
