/* ============================================================
   EnergyVitality — Shared Stylesheet  v2
   Palette: #FAF8F5 bg / #4A3D34 text / #9A8570 accent (darker) / #E8E4DF dividers
   Type: Cormorant Garamond (display) + Inter (body) + Lora (testimonials, matches logo)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500&family=Lora:ital,wght@0,400;1,400&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  background-color: #FAF8F5;
  color: #4A3D34;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography scale ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.3rem, 4.8vw, 4.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2.1vw, 1.65rem); }
h4 { font-size: clamp(1rem, 1.6vw, 1.22rem); }

p { font-size: clamp(1rem, 1.2vw, 1.05rem); color: #4A3D34; max-width: 60ch; }

/* Lead / tagline: Cormorant Garamond italic — matches the rest of the display type */
.lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 400;
  font-style: italic;
  color: #9A8570;
  line-height: 1.5;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9A8570;
  display: block;
  margin-bottom: 1.4rem;
}

/* ── Layout containers ── */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 48px;
}

.container--narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 48px;
}
.container--narrow-lg {
  max-width: 860px;
}

/* ── Sections ── */
section { padding: 96px 0; }
section.section--tight { padding: 64px 0; }
section.section--large { padding: 128px 0; }

/* ── Signature element: animated rule ── */
.rule-animate {
  display: block;
  height: 1px;
  background: #9A8570;
  width: 0;
  transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  margin-bottom: 56px;
}
.rule-animate.visible { width: 80px; }

.rule-full {
  display: block;
  height: 1px;
  background: #E8E4DF;
  width: 100%;
  margin: 0;
}

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #FAF8F5;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
nav.scrolled { border-bottom-color: #E8E4DF; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 48px;
  max-width: 1140px;
  margin: 0 auto;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #4A3D34;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.nav-logo-img { height: 46px; width: auto; display: block; }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #726152;
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active { color: #4A3D34; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: #4A3D34;
  transition: all 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: #FAF8F5;
  border-bottom: 1px solid #E8E4DF;
  padding: 32px 48px 40px;
  z-index: 99;
}
.nav-drawer.open { display: block; }
.nav-drawer ul { list-style: none; display: flex; flex-direction: column; gap: 24px; }
.nav-drawer a {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4A3D34;
  text-decoration: none;
}

/* ── CTA / Buttons ── */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4A3D34;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid #4A3D34;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.cta:hover { color: #9A8570; border-color: #9A8570; }
.cta-arrow { font-size: 0.85rem; transition: transform 0.2s ease; }
.cta:hover .cta-arrow { transform: translateX(4px); }

.cta--light { color: #FAF8F5; border-color: #FAF8F5; }
.cta--light:hover { color: #9A8570; border-color: #9A8570; }

/* ── CTA, primary (one per page — the single most important action) ── */
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #4A3D34;
  color: #FAF8F5;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 17px 36px;
  border: 1px solid #4A3D34;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.cta-primary .cta-arrow { font-size: 0.85rem; transition: transform 0.2s ease; }
.cta-primary:hover { background: #9A8570; border-color: #9A8570; }
.cta-primary:hover .cta-arrow { transform: translateX(4px); }

/* ── Hero ── */
.hero {
  padding-top: 180px;
  padding-bottom: 96px;
}
.hero h1 { max-width: 16ch; margin-bottom: 32px; }
.hero .lead {
  max-width: 44ch;
  margin-bottom: 48px;
}

/* ── Grid layouts ── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

/* ── Pull quote ── */
.pull-quote {
  border-left: 1px solid #9A8570;
  padding: 8px 0 8px 32px;
  margin: 48px 0;
}
.pull-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 300;
  font-style: italic;
  color: #4A3D34;
  max-width: 54ch;
  line-height: 1.5;
}

/* ── Testimonials ── */
.testimonial {
  padding: 48px 0;
  border-top: 1px solid #E8E4DF;
}
.testimonial:last-child { border-bottom: 1px solid #E8E4DF; }
.testimonial p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 300;
  font-style: italic;
  color: #4A3D34;
  max-width: 66ch;
  margin-bottom: 20px;
  line-height: 1.65;
}
.testimonial-author {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9A8570;
}

/* ── Program steps ── */
.program-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-top: 1px solid #E8E4DF;
  align-items: start;
}
.program-step:last-child { border-bottom: 1px solid #E8E4DF; }
.step-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: #9A8570;
  padding-top: 5px;
}
.step-content h4 {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  margin-bottom: 4px;
}
.step-content .step-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9A8570;
  margin-bottom: 10px;
}
.step-content p { max-width: 52ch; }

/* ── Intake box ── */
.intake-box {
  background: #B39E96;
  border: 1px solid #B39E96;
  padding: 36px 48px;
  margin-bottom: 56px;
  position: relative;
}
.intake-box::before {
  content: 'Where it begins';
  position: absolute;
  top: -1px; left: 48px;
  transform: translateY(-50%);
  background: #FAF8F5;
  padding: 0 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9A8570;
}
.intake-box h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  margin-bottom: 12px;
  color: #4A3D34;
}
.intake-box p { max-width: 56ch; margin-bottom: 8px; color: #4A3D34; }
.intake-box .cta { margin-top: 16px; }

/* ── Options (stacked feature-boxes, same style as home page Programs/Events) ── */
.option-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.option-block h4 { margin-bottom: 8px; }
.option-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9A8570;
  margin-bottom: 6px;
}
.option-for {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: #9A8570;
  margin-bottom: 20px;
}
.option-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  color: #9A8570;
  margin-bottom: 18px;
}
.option-block p { max-width: 60ch; }

/* ── FAQ ── */
.faq-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  padding: 28px 32px;
  border: 1px solid #E8E4DF;
}
.faq-question {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  user-select: none;
}
.faq-question .faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: #9A8570;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq-icon::before { width: 1px; height: 12px; top: 4px; left: 9px; }
.faq-icon::after  { width: 12px; height: 1px; top: 9px; left: 4px; }
.faq-item.open .faq-icon::before { transform: rotate(90deg); opacity: 0; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer p { padding-top: 20px; max-width: 60ch; }

/* ── Location blocks ── */
.location-block {
  padding: 64px 0;
  border-top: 1px solid #E8E4DF;
}
.location-block:last-child { border-bottom: 1px solid #E8E4DF; }
.location-block h3 { margin-bottom: 16px; }

.location-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 24px;
}
.location-meta-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: #9A8570;
}
.location-meta-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9A8570;
}

/* ── Image block ── */
.img-block {
  width: 100%;
  aspect-ratio: 4/3;
  background: #ECE1D2;
  overflow: hidden;
  position: relative;
}
.img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9A8570;
}
.img-block--portrait { aspect-ratio: 4/5; }
.img-block--small { max-width: 280px; }

/* ── Hero grid (text + portrait image) ── */
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.hero-grid .hero-image { max-width: 420px; }
.hero-image .img-block img { object-position: center 90%; }

/* ── Feature box (boxed content, e.g. Programs / Business Events) ── */
.feature-box {
  border: 1px solid #B39E96;
  background: #B39E96;
  padding: 40px;
  transition: border-color 0.2s ease;
}
.feature-box:hover { border-color: #4A3D34; }
.feature-box h4 { color: #4A3D34; }
.feature-box p { color: #4A3D34; }
.feature-box .cta { color: #4A3D34; border-color: #4A3D34; }
.feature-box .cta:hover { color: #5A3825; border-color: #5A3825; }
.feature-box .option-label { color: #4A3D34; }
.feature-box .option-for { color: #4A3D34; }
.feature-box .option-meta { color: #4A3D34; }

/* ── Results list (plain, stacked — no boxes) ── */
.results-list {
  border-top: 1px solid #E8E4DF;
}
.result-row {
  padding: 14px 0;
  border-bottom: 1px solid #E8E4DF;
}
.result-row p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: #4A3D34;
  max-width: none;
}

/* ── Ripple quote (large centered editorial moment, no box) ── */
.ripple-block { text-align: center; }
.ripple-block .eyebrow { color: #726152; }
.ripple-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  color: #4A3D34;
  max-width: 46ch;
  margin: 20px auto 40px;
  line-height: 1.4;
}
.ripple-quote--small {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  max-width: 56ch;
  margin-top: 0;
}
.testimonial-quote {
  font-family: 'Lora', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: #4A3D34;
  max-width: 56ch;
  margin: 0 auto 20px;
  line-height: 1.65;
}
.ripple-block p:not(.ripple-quote):not(.testimonial-quote) {
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

/* ── Text box, alternate (Business Events) ── */
.text-box--alt {
  background: #B39E96;
  border: 1px solid #B39E96;
  padding: 56px 64px;
}
.text-box--alt .eyebrow { color: #4A3D34; }
.text-box--alt h2 { color: #4A3D34; }
.text-box--alt p { color: #4A3D34; }
.text-box--alt .location-meta-label { color: #4A3D34; }
.text-box--alt .location-meta-row span:last-child { color: #4A3D34; }
.text-box--alt .cta { color: #4A3D34; border-color: #4A3D34; }
.text-box--alt .cta:hover { color: #5A3825; border-color: #5A3825; }
.text-box--alt h3,
.text-box--alt h4 { color: #4A3D34; }
.text-box--alt .rule-animate { background: #4A3D34; }
.text-box--alt .credentials-group h4 { color: #4A3D34; }
.text-box--alt .credential-item { border-top-color: rgba(74, 61, 52, 0.2); }
.text-box--alt .credential-item:last-child { border-bottom-color: rgba(74, 61, 52, 0.2); }
.text-box--alt .credential-name { color: #4A3D34; }
.text-box--alt .credential-sub,
.text-box--alt .credential-year { color: #4A3D34; }
.text-box--alt .faq-item { border-color: rgba(74, 61, 52, 0.25); }
.text-box--alt .faq-question { color: #4A3D34; }
.text-box--alt .faq-icon::before,
.text-box--alt .faq-icon::after { background: #4A3D34; }
.text-box--alt .faq-answer p { color: #4A3D34; }

.text-box--alt--lg { padding: 72px 80px; }
@media (max-width: 860px) {
  .text-box--alt--lg { padding: 40px 36px; }
}
@media (max-width: 600px) {
  .text-box--alt--lg { padding: 32px 24px; }
}

/* ── Contact form ── */
.form-box {
  border: 1px solid #E8E4DF;
  background: #ECE1D2;
  padding: 56px;
}
.form-group { margin-bottom: 40px; }
label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9A8570;
  margin-bottom: 10px;
}
input, textarea, select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #E8E4DF;
  padding: 12px 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: #4A3D34;
  outline: none;
  transition: border-color 0.2s ease;
  appearance: none;
}
input:focus, textarea:focus { border-bottom-color: #9A8570; }
input::placeholder, textarea::placeholder { color: #9A8570; opacity: 0.6; }
textarea { resize: none; min-height: 100px; }

.checkbox-group { display: flex; flex-direction: column; gap: 18px; margin-top: 8px; }
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: #4A3D34;
  letter-spacing: 0;
  text-transform: none;
}
.checkbox-box {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border: 1.5px solid #9A8570;
  background: #FAF8F5;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.checkbox-box input[type="checkbox"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: pointer;
}
.checkbox-check { position: absolute; inset: 0; pointer-events: none; }
.checkbox-check::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid #FAF8F5;
  border-width: 0 2px 2px 0;
  transform: rotate(40deg);
  opacity: 0;
  transition: opacity 0.15s ease;
}
.checkbox-box input:checked + .checkbox-check::after { opacity: 1; }
.checkbox-box:has(input:checked) { background: #4A3D34; border-color: #4A3D34; }

.btn-submit {
  background: #4A3D34;
  color: #FAF8F5;
  border: none;
  padding: 18px 48px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
  display: inline-block;
}
.btn-submit:hover { background: #9A8570; }

/* ── Privacy modal ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(74, 61, 52, 0.5);
  z-index: 1000;
  padding: 40px 24px;
  overflow-y: auto;
}
.modal-overlay.open { display: block; }
.modal-box {
  position: relative;
  background: #FAF8F5;
  max-width: 640px;
  margin: 0 auto;
  padding: 56px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: #4A3D34;
  cursor: pointer;
  padding: 4px;
}
.modal-close:hover { color: #9A8570; }
@media (max-width: 600px) {
  .modal-overlay { padding: 0; }
  .modal-box { max-width: 100%; min-height: 100%; padding: 40px 24px; }
}

/* ── Footer ── */
footer {
  background: #FAF8F5;
  border-top: 1px solid #E8E4DF;
  padding: 64px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
}
/* Footer brand mark — flat wordmark, no background or glow */
.footer-logo-wrap {
  display: inline-block;
  margin-top: 12px;
}
.footer-logo-mark {
  height: 60px;
  width: auto;
  display: block;
}
.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9A8570;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: #4A3D34; }
.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: #9A8570;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #E8E4DF;
  text-align: center;
}

/* ── Credentials / Timeline ── */
.credentials-group { margin-bottom: 48px; }
.credentials-group h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9A8570;
  margin-bottom: 22px;
}
.credential-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 17px 0;
  border-top: 1px solid #E8E4DF;
  align-items: baseline;
}
.credential-item:last-child { border-bottom: 1px solid #E8E4DF; }
.credential-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #4A3D34;
}
.credential-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: #9A8570;
  letter-spacing: 0.04em;
}
.credential-year {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  color: #9A8570;
  white-space: nowrap;
  text-align: right;
}

/* ── About story layout ── */
.story-block { max-width: 62ch; }
.story-block p { margin-bottom: 24px; max-width: 62ch; }

/* ── Two-col intro ── */
.two-col-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* ── Utility ── */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mt-56 { margin-top: 56px; }
.mt-64 { margin-top: 64px; }
.mt-80 { margin-top: 80px; }
.mt-96 { margin-top: 96px; }
.text-muted { color: #9A8570; }
.text-accent { color: #9A8570; }

/* ── Page header band ── */
.page-header {
  padding-top: 180px;
  padding-bottom: 80px;
}
.page-header h1 { margin-bottom: 24px; }
.page-header .lead { max-width: 52ch; margin-top: 24px; }

/* ── Ripple / Text box section ── */
.ripple-section { padding: 96px 0; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .container, .container--narrow { padding: 0 32px; }
  .nav-inner { padding: 0 32px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  section { padding: 64px 0; }
  section.section--large { padding: 80px 0; }
  .hero { padding-top: 140px; padding-bottom: 64px; }
  .page-header { padding-top: 140px; padding-bottom: 64px; }
  .grid-2 { grid-template-columns: 1fr; gap: 48px; }
  .grid-3 { grid-template-columns: 1fr; gap: 40px; }
  .two-col-intro { grid-template-columns: 1fr; gap: 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-grid .hero-image { max-width: 320px; order: -1; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { justify-content: flex-start; }
  .text-box--alt { padding: 40px 36px; }
  .form-box { padding: 40px 36px; }
  .intake-box { padding: 28px 28px; }
}

@media (max-width: 600px) {
  .container, .container--narrow { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .nav-drawer { padding: 28px 24px 36px; }
  .program-step { grid-template-columns: 48px 1fr; gap: 20px; }
  .location-meta-row { grid-template-columns: 1fr; gap: 2px; }
  .credential-item { grid-template-columns: 1fr; gap: 4px; }
  .credential-year { text-align: left; }
  .text-box--alt { padding: 32px 24px; }
  .intake-box { padding: 22px 20px; }
  .intake-box::before { left: 20px; }
  .feature-box { padding: 32px 24px; }
  .form-box { padding: 32px 24px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .rule-animate { transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
