/* ============================================
   CERES MOVEMENT — STYLE SYSTEM
   French gallery brochure aesthetic
   ~160px frame, flat cream, strict type scale
   ============================================ */

:root {
  --cream:       #fdf7f0;
  --warm-white:  #faf6f1;
  --ink:         #3c3a36;
  --lapis:       #3d5a80;
  --sky:         #6b9ab8;
  --rust:        #a0522d;
  --beige:       #d6c1a9;
  --deep-ink:    #2a2825;
  --frame-px:    clamp(24px, 11vw, 172px);
  --max-content: 1100px;
  --transition:  0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Work Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================
   LAYOUT: FRAME + BLEED
   .inner = framed (stays inside margins)
   .full-bleed = escapes frame edge-to-edge
   ============================================ */

.inner {
  padding-left: var(--frame-px);
  padding-right: var(--frame-px);
}
.full-bleed {
  width: 100%;
}
.frame { padding-left: var(--frame-px); padding-right: var(--frame-px); }

/* ============================================
   TYPE SCALE — three levels only
   ============================================ */

.eyebrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 18px;
  display: block;
}

h1, h2, h3 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--lapis);
}
h1 { font-size: clamp(28px, 3.6vw, 52px); }
h2 { font-size: clamp(22px, 2.4vw, 34px); }
h3 { font-size: 18px; color: var(--ink); font-weight: 400; }

p { font-size: 16px; line-height: 1.75; color: var(--ink); }
.body-large { font-size: 18px; line-height: 1.8; }

.text-col      { max-width: 640px; }
.text-col-wide { max-width: 720px; }

.pull-quote {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
}
.pull-quote p { font-size: inherit; line-height: inherit; color: inherit; }

.arrow-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lapis);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.arrow-link:hover { gap: 10px; }

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--cream);
  padding: 14px 28px;
  transition: background var(--transition);
}
.btn-primary:hover { background: var(--lapis); }

.btn-secondary {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  color: var(--ink);
  padding: 14px 28px;
  border: 1px solid rgba(60,58,54,0.3);
  transition: border-color var(--transition);
}
.btn-secondary:hover { border-color: var(--ink); }

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ============================================
   SECTIONS
   ============================================ */

.section     { padding-top: 88px; padding-bottom: 88px; }
.section-sm  { padding-top: 56px; padding-bottom: 56px; }
.section-rule { border: none; border-top: 1px solid rgba(214,193,169,0.45); margin: 0; }
.warm-bg     { background: var(--warm-white); }
.warm-section { background: var(--warm-white); }

/* ============================================
   NAVIGATION
   ============================================ */

.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(214,193,169,0.4);
  transition: box-shadow var(--transition);
}
.site-nav.scrolled { box-shadow: 0 2px 20px rgba(60,58,54,0.05); }
.nav-inner {
  padding: 20px var(--frame-px);
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: block; text-decoration: none; flex-shrink: 0; }
.logo-svg { height: 40px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 12px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink); opacity: 0.65; transition: opacity var(--transition);
}
.nav-links a:hover { opacity: 1; }
.nav-learn { cursor: pointer; }

.nav-dropdown { position: relative; }
.dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--cream); border: 1px solid rgba(214,193,169,0.5);
  min-width: 220px; padding: 20px 0 8px; z-index: 200;
}
/* Bridge gap between nav item and dropdown so hover doesn't drop */
.nav-dropdown::after {
  content: ''; position: absolute; top: 100%; left: 0;
  width: 100%; height: 20px;
}
.nav-dropdown:hover .dropdown,
.nav-dropdown:focus-within .dropdown { display: block; }
.dropdown li a {
  display: block; padding: 10px 20px; font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; opacity: 0.65; white-space: nowrap;
  transition: opacity var(--transition), padding-left var(--transition);
}
.dropdown li a:hover { opacity: 1; padding-left: 24px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 1px; background: var(--ink);
  transition: transform var(--transition), opacity var(--transition);
}
.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 */
.mobile-nav-overlay {
  display: none; position: fixed; inset: 0;
  background: var(--cream); z-index: 99;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 40px;
}
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-overlay ul { display: flex; flex-direction: column; gap: 28px; text-align: center; }
.mobile-nav-overlay a { font-size: 18px; font-weight: 300; letter-spacing: 0.08em; color: var(--ink); }
.mobile-nav-close {
  position: absolute; top: 24px; right: var(--frame-px);
  background: none; border: none; font-size: 20px; cursor: pointer;
  color: var(--ink); opacity: 0.5; line-height: 1;
}

/* ============================================
   HERO — homepage full-bleed
   ============================================ */

.hero { height: 80vh; min-height: 480px; max-height: 860px; overflow: hidden; }
.hero img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; }

/* HERO STATEMENT */
.hero-statement-section { padding: 72px var(--frame-px) 64px; }
.hero-statement {
  font-size: clamp(28px, 3.6vw, 52px);
  font-weight: 300; line-height: 1.15; color: var(--lapis);
  letter-spacing: 0.01em; max-width: 800px; margin-bottom: 44px;
}

/* ============================================
   INTERIOR PAGE HERO
   ============================================ */

.page-hero {
  padding: 72px var(--frame-px) 64px;
  border-bottom: 1px solid rgba(214,193,169,0.35);
}
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero h1 { max-width: 760px; margin-bottom: 18px; }
.page-hero p { font-size: 18px; line-height: 1.75; max-width: 680px; color: rgba(60,58,54,0.8); }

/* Interior page hero image (classes page) */
.page-hero-image { overflow: hidden; height: 52vh; min-height: 280px; max-height: 520px; }
.page-hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; display: block; }

/* ============================================
   HOMEPAGE SECTIONS
   ============================================ */

/* Dual CTA */
.dual-cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: rgba(214,193,169,0.4); }
.dual-cta-card { background: var(--cream); overflow: hidden; }
.dual-cta-image { aspect-ratio: 4/3; overflow: hidden; }
.dual-cta-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.dual-cta-card:hover .dual-cta-image img { transform: scale(1.03); }
.dual-cta-content { padding: 28px 32px 32px; }
.dual-cta-content .eyebrow { margin-bottom: 10px; }
.dual-cta-content h2 { margin-bottom: 12px; }
.dual-cta-content p { font-size: 15px; color: rgba(60,58,54,0.75); margin-bottom: 20px; }

/* Quote bleed */
.quote-bleed {
  background: var(--warm-white);
  padding: 64px var(--frame-px);
}

/* Who this is for / split */
.split-section {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.split-text .eyebrow { margin-bottom: 16px; }
.split-text h2 { margin-bottom: 24px; }
.split-text p { color: rgba(60,58,54,0.8); margin-bottom: 16px; }
.split-text p:last-of-type { margin-bottom: 24px; }
.split-image { overflow: hidden; aspect-ratio: 4/5; }
.split-image img { width: 100%; height: 100%; object-fit: cover; }

/* Testimonials bleed */
.testimonials-bleed {
  background: var(--warm-white);
  padding: 72px var(--frame-px);
}
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-top: 48px; }
.testimonial p { font-size: 15px; line-height: 1.75; color: rgba(60,58,54,0.8); margin-bottom: 16px; }
.testimonial cite { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lapis); font-style: normal; }

/* Learn links */
.learn-links { border-top: 1px solid rgba(214,193,169,0.5); margin-top: 40px; }
.learn-link {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; border-bottom: 1px solid rgba(214,193,169,0.5);
  font-size: 15px; font-weight: 300; color: var(--ink);
  transition: color var(--transition), padding-left var(--transition);
}
.learn-link::after { content: '→'; color: var(--lapis); }
.learn-link:hover { color: var(--lapis); padding-left: 6px; }

/* ============================================
   FOOTER CTA — quiet framed
   ============================================ */

.footer-cta-quiet {
  padding: 80px var(--frame-px);
  display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center;
  border-top: 1px solid rgba(214,193,169,0.45);
}
.footer-cta-quiet .eyebrow { margin-bottom: 14px; }
.footer-cta-quiet h2 { margin-bottom: 14px; }
.footer-cta-quiet p { font-size: 15px; color: rgba(60,58,54,0.7); max-width: 500px; }
.footer-cta-buttons { display: flex; flex-direction: column; gap: 10px; min-width: 190px; }

/* ============================================
   SITE FOOTER — full-bleed ink bg
   ============================================ */

.site-footer { background: var(--ink); padding: 36px var(--frame-px) 32px; }
.footer-inner {
  max-width: var(--max-content); margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto; gap: 48px; align-items: start;
}
.footer-logo { display: block; }
.logo-svg-footer { height: 40px; width: auto; display: block; }
.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; align-items: flex-start; padding-top: 4px; }
.footer-nav a {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(253,247,240,0.5); transition: color var(--transition);
}
.footer-nav a:hover { color: var(--cream); }
.footer-social { display: flex; gap: 20px; padding-top: 4px; }
.footer-social a {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(253,247,240,0.5); transition: color var(--transition);
}
.footer-social a:hover { color: var(--cream); }
.footer-legal-row,
.footer-legal {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(253,247,240,0.1);
  padding-top: 24px;
  font-size: 12px; line-height: 1.65; color: rgba(253,247,240,0.3);
}
.footer-legal-row a,
.footer-legal a { color: rgba(253,247,240,0.45); text-decoration: underline; text-underline-offset: 2px; }

/* ============================================
   WORK 1:1 PAGE
   ============================================ */

.service-block { padding: 72px var(--frame-px); }
.service-block .eyebrow { margin-bottom: 16px; }
.service-block h2 { margin-bottom: 8px; }
.service-subtitle {
  font-size: 14px; font-style: italic; color: rgba(60,58,54,0.6);
  margin-bottom: 32px; font-family: 'Lora', Georgia, serif;
}
.service-body p { margin-bottom: 18px; max-width: 720px; }
.service-body h3 { margin-top: 36px; margin-bottom: 14px; }

.investment-block {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(214,193,169,0.5);
  max-width: 600px;
}
.investment-block .eyebrow { margin-bottom: 18px; }
.investment-line {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 11px 0; border-bottom: 1px solid rgba(214,193,169,0.3); font-size: 15px;
}
.investment-line:last-of-type { border-bottom: none; }
.investment-price { font-weight: 500; color: var(--lapis); }
.investment-note {
  font-size: 13px; line-height: 1.7; color: rgba(60,58,54,0.6);
  margin-top: 16px; font-style: italic; max-width: 520px;
}

.service-closing {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: 17px;
  color: rgba(60,58,54,0.65);
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(214,193,169,0.3);
}
.service-disclaimer {
  font-size: 12px; color: rgba(60,58,54,0.45); margin-top: 16px; line-height: 1.65;
}
.service-disclaimer a { color: rgba(60,58,54,0.55); text-decoration: underline; text-underline-offset: 2px; }

/* ============================================
   CLASSES & EVENTS PAGE
   ============================================ */

/* Jump navigation */
.jump-nav {
  position: sticky; top: 81px; z-index: 90;
  background: var(--cream);
  border-bottom: 1px solid rgba(214,193,169,0.4);
  padding: 0 var(--frame-px);
}
.jump-nav-inner {
  display: flex; overflow-x: auto; scrollbar-width: none;
  max-width: var(--max-content);
}
.jump-nav-inner::-webkit-scrollbar { display: none; }
.jump-link {
  font-size: 11px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(60,58,54,0.5); padding: 16px 20px; white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
  text-decoration: none; flex-shrink: 0; display: inline-block;
}
.jump-link:hover, .jump-link.active { color: var(--lapis); border-bottom-color: var(--lapis); }

/* Class sections */
.class-section { padding: 64px var(--frame-px); border-bottom: 1px solid rgba(214,193,169,0.3); }
.class-section:last-of-type { border-bottom: none; }
.class-section .eyebrow { margin-bottom: 10px; }
.class-section h2 { margin-bottom: 18px; }

/* Schedule */
.schedule-grid { display: flex; flex-direction: column; border-top: 1px solid rgba(214,193,169,0.35); margin-top: 20px; }
.schedule-item { display: grid; grid-template-columns: 100px 1fr; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(214,193,169,0.25); }
.day { font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(60,58,54,0.5); padding-top: 2px; }
.classes { font-size: 15px; line-height: 1.75; }

.venue-meta { font-size: 13px; color: rgba(60,58,54,0.55); margin-bottom: 4px; }
.venue-meta a { color: var(--lapis); }
.venue-meta a:hover { text-decoration: underline; }

/* Event cards */
.events-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: rgba(214,193,169,0.35); margin-top: 28px; }
.event-card { background: var(--cream); padding: 32px 36px; }
.event-card .eyebrow { margin-bottom: 12px; }
.event-card h3 { color: var(--lapis); margin-bottom: 8px; font-size: 18px; font-weight: 300; }
.event-meta { font-size: 13px; color: rgba(60,58,54,0.55); margin-bottom: 14px; }
.event-card p { font-size: 15px; color: rgba(60,58,54,0.75); margin-bottom: 18px; }

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-grid { display: grid; grid-template-columns: 1fr 340px; gap: 88px; align-items: start; }
.about-body { }
.about-body p { margin-bottom: 20px; color: rgba(60,58,54,0.85); }
.about-body p.body-large { color: var(--ink); }
.about-body h2 { margin-top: 52px; margin-bottom: 20px; }
.about-body h2:first-of-type { margin-top: 0; }

.about-image { position: static; }
.about-image img { width: 100%; height: auto; display: block; }

.credentials-note {
  font-size: 13px; line-height: 1.7; color: rgba(60,58,54,0.5);
  margin-top: 4px; margin-bottom: 36px; font-style: italic;
}

/* ============================================
   CONNECT PAGE
   ============================================ */

.connect-grid { display: grid; grid-template-columns: 1fr 460px; gap: 80px; align-items: start; }
.connect-left p { margin-bottom: 20px; color: rgba(60,58,54,0.8); }

.contact-item {
  padding: 18px 0; border-bottom: 1px solid rgba(214,193,169,0.3);
  display: grid; grid-template-columns: 88px 1fr; gap: 16px; align-items: baseline;
}
.contact-item:first-of-type { border-top: 1px solid rgba(214,193,169,0.3); }
.contact-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(60,58,54,0.4); }
.contact-value { font-size: 15px; }
.contact-value a { color: var(--lapis); }
.contact-value a:hover { text-decoration: underline; text-underline-offset: 2px; }

.pb-widget-wrapper { border: 1px solid rgba(214,193,169,0.4); overflow: hidden; margin-top: 32px; }

/* ============================================
   EDUCATIONAL PAGES
   ============================================ */

.edu-grid { display: grid; grid-template-columns: 1fr 260px; gap: 80px; align-items: start; }
.edu-body p { margin-bottom: 20px; }
.edu-body h2 { margin-top: 52px; margin-bottom: 18px; }
.edu-body h3 { margin-top: 32px; margin-bottom: 12px; }
.edu-sidebar {
  position: sticky; top: 120px; padding: 28px 32px;
  border: 1px solid rgba(214,193,169,0.5); background: var(--cream);
}
.edu-sidebar .eyebrow { margin-bottom: 14px; }
.edu-sidebar p { font-size: 14px; color: rgba(60,58,54,0.7); margin-bottom: 16px; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1100px) {
  :root { --frame-px: clamp(24px, 6vw, 80px); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image { position: static; }
  .edu-grid { grid-template-columns: 1fr; }
  .edu-sidebar { position: static; margin-top: 48px; }
  .connect-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 900px) {
  :root { --frame-px: 28px; }
  .split-section { grid-template-columns: 1fr; gap: 40px; }
  .dual-cta-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-cta-quiet { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .events-grid { grid-template-columns: 1fr; }
  .jump-nav { top: 69px; }
}

@media (max-width: 700px) {
  :root { --frame-px: 20px; }
  .hero { height: 56vw; min-height: 260px; max-height: 480px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero-statement { font-size: clamp(24px, 6vw, 36px); margin-bottom: 32px; }
  .hero-statement-section { padding-top: 48px; padding-bottom: 40px; }
  .section { padding-top: 56px; padding-bottom: 56px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-cta-quiet { padding-top: 56px; padding-bottom: 56px; }
  .service-block { padding-top: 48px; padding-bottom: 48px; }
  .class-section { padding-top: 48px; padding-bottom: 48px; }
  .schedule-item { grid-template-columns: 80px 1fr; }
  .testimonials-grid { margin-top: 32px; }
}

/* ============================================
   PAGE INTRO (educational + inner pages)
   ============================================ */

.page-intro {
  font-size: 18px;
  line-height: 1.75;
  max-width: 680px;
  color: rgba(60,58,54,0.75);
  font-style: italic;
  font-family: 'Lora', Georgia, serif;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-text { }
.about-text p { margin-bottom: 20px; color: rgba(60,58,54,0.85); }
.about-text p.body-large { color: var(--ink); }
.about-text h2 { margin-top: 52px; margin-bottom: 20px; }
.about-text .credentials-note {
  font-size: 13px;
  color: rgba(60,58,54,0.5);
  letter-spacing: 0.04em;
  margin-top: 32px;
}

.about-image-sticky {
  position: static;
  top: 100px;
}
.about-image-sticky img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   CLASSES PAGE
   ============================================ */

.schedule-section { padding-top: 64px; padding-bottom: 64px; border-bottom: 1px solid rgba(214,193,169,0.35); }
.schedule-section:last-of-type { border-bottom: none; }
.schedule-header { margin-bottom: 8px; }
.schedule-header h2 { margin-bottom: 10px; }
.schedule-header p { font-size: 15px; color: rgba(60,58,54,0.65); max-width: 560px; }

.class-rows { display: flex; flex-direction: column; gap: 0; }
.class-row {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 20px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(214,193,169,0.3);
}
.class-row:last-child { border-bottom: none; }
.class-name { font-size: 14px; font-weight: 400; color: var(--ink); }
.class-time { font-size: 13px; color: rgba(60,58,54,0.55); }
.class-book { font-size: 12px; white-space: nowrap; }

.morning-mat-block {
  background: var(--warm-white);
  padding: 80px 0;
}

.reformer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(214,193,169,0.35);
  margin-top: 28px;
}
.reformer-card {
  background: var(--cream);
  padding: 36px;
}
.reformer-card h3 { color: var(--lapis); margin-bottom: 8px; font-size: 18px; font-weight: 300; }
.reformer-card p { font-size: 15px; color: rgba(60,58,54,0.75); }

.community-block { max-width: 620px; }
.community-block h2 { margin-bottom: 18px; }
.community-block p { margin-bottom: 18px; font-size: 15px; color: rgba(60,58,54,0.75); }

/* ============================================
   FOOTER CTA SECTION (quiet framed)
   ============================================ */

.footer-cta-section {
  padding-top: 72px;
  padding-bottom: 80px;
}
.footer-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
  border-top: 1px solid rgba(214,193,169,0.5);
  padding-top: 56px;
}
.footer-cta-inner h2 { margin-bottom: 14px; }
.footer-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 200px;
}

@media (max-width: 900px) {
  .about-image-sticky { position: static; margin-top: 0; }
  .footer-cta-inner { grid-template-columns: 1fr; gap: 28px; }
  .reformer-grid { grid-template-columns: 1fr; }
  .class-row { grid-template-columns: 1fr; gap: 4px; }
}

/* ============================================
   CLASS CALLOUTS (educational pages)
   ============================================ */

.class-callouts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(214,193,169,0.35);
  margin: 20px 0 40px;
}
.class-callout {
  background: var(--cream);
  padding: 28px 32px 32px;
}
.class-callout .eyebrow { margin-bottom: 8px; }
.class-callout h3 {
  color: var(--lapis);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
}
.class-callout p {
  font-size: 14px;
  color: rgba(60,58,54,0.7);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* 3-col variant when 3 cards present */
.class-callouts:has(.class-callout:nth-child(3):last-child) {
  grid-template-columns: 1fr 1fr 1fr;
}

@media (max-width: 780px) {
  .class-callouts,
  .class-callouts:has(.class-callout:nth-child(3):last-child) {
    grid-template-columns: 1fr;
  }
}
