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

:root {
  --bg-wine: #5C1A33;
  --text-on-wine: #FFFBF5;
  --bg-cream: #FFFBF5;
  --text-on-cream: #2A1520;
  --bg-copper: #C67B4E;
  --text-on-copper: #FFFBF5;
  --bg-sand: #F0E4D8;
  --text-on-sand: #3D2430;
  --bg-plum: #3D1224;
  --text-on-plum: #FFFBF5;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Work Sans', system-ui, sans-serif;
  --max-w: 1240px;
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-pill: 999px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); line-height: 1.7; font-size: 1.05rem; background: var(--bg-cream); color: var(--text-on-cream); }
img { max-width: 100%; height: auto; display: block; }
a { color: currentColor; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; font-weight: 600; }

.surface-wine { background: var(--bg-wine); color: var(--text-on-wine); }
.surface-cream { background: var(--bg-cream); color: var(--text-on-cream); }
.surface-copper { background: var(--bg-copper); color: var(--text-on-copper); }
.surface-sand { background: var(--bg-sand); color: var(--text-on-sand); }
.surface-plum { background: var(--bg-plum); color: var(--text-on-plum); }
.surface-wine a, .surface-cream a, .surface-sand a, .surface-plum a, .surface-copper a { color: currentColor; text-decoration: underline; text-underline-offset: 3px; }
.surface-wine *, .surface-cream *, .surface-sand *, .surface-plum *, .surface-copper * { color: inherit; }

/* Light text on dark surfaces — explicit overrides */
.surface-wine,
.surface-plum,
.surface-wine p,
.surface-plum p,
.surface-wine li,
.surface-plum li,
.surface-wine blockquote,
.surface-plum blockquote {
  color: var(--text-on-wine);
}
.surface-plum,
.surface-plum p,
.surface-plum blockquote,
.surface-plum .testimonial-cite {
  color: var(--text-on-plum);
}
.site-footer.surface-wine,
.site-footer.surface-wine .footer-main,
.site-footer.surface-wine .footer-grid,
.site-footer.surface-wine .footer-bottom,
.site-footer.surface-wine p,
.site-footer.surface-wine li,
.site-footer.surface-wine a {
  color: var(--text-on-wine);
}
.bento-tile.surface-wine,
.bento-tile.surface-wine h3,
.bento-tile.surface-wine p,
.bento-tile.surface-plum,
.bento-tile.surface-plum h3,
.bento-tile.surface-plum p {
  color: var(--text-on-wine);
}
.bento-tile.surface-plum h3,
.bento-tile.surface-plum p {
  color: var(--text-on-plum);
}
.income-band.surface-wine,
.income-band.surface-wine p {
  color: var(--text-on-wine);
}
.hero-stat-float,
.hero-stat-float .stat-label {
  color: var(--text-on-wine);
}
.contact-visual .overlay-card,
.contact-visual .overlay-card p {
  color: var(--text-on-wine);
}

.container { width: min(100% - 2.5rem, var(--max-w)); margin-inline: auto; }
.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3rem 0; }

/* Header — always cream, wine accents */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--bg-cream);
  color: var(--text-on-cream);
  border-bottom: 1px solid rgba(92, 26, 51, 0.12);
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.55rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  color: var(--bg-wine);
}
.logo span { color: var(--bg-copper); font-style: italic; }
.nav-list { display: flex; gap: 1.75rem; list-style: none; flex-wrap: wrap; }
.nav-list a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-on-cream);
  opacity: 0.85;
}
.nav-list a:hover, .nav-list a[aria-current="page"] { opacity: 1; color: var(--bg-wine); text-decoration: underline; }
.nav-toggle {
  display: none;
  position: relative;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: none;
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--bg-wine);
  cursor: pointer;
  z-index: 301;
  transition: background 0.2s ease;
}
.nav-toggle:hover { background: rgba(92, 26, 51, 0.08); }
.nav-toggle:focus-visible {
  outline: 2px solid var(--bg-wine);
  outline-offset: 2px;
}
.nav-toggle-bars {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.35rem;
  height: 2px;
  margin: -1px 0 0 -0.675rem;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s ease;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), top 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-toggle-bars::before { top: -7px; }
.nav-toggle-bars::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { top: 0; transform: rotate(-45deg); }

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(42, 21, 32, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.nav-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
body.nav-open { overflow: hidden; }
body.nav-open .site-header { z-index: 1000; }

/* Buttons — pill shape, copper primary */
.btn {
  display: inline-block;
  padding: 0.95rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-pill);
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary { background: var(--bg-copper); color: var(--text-on-copper); box-shadow: 0 4px 16px rgba(198, 123, 78, 0.35); }
.btn-secondary { background: transparent; color: inherit; border: 2px solid currentColor; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(198, 123, 78, 0.4); }
.btn-secondary:hover { box-shadow: none; }

/* Hero — Magazine split (NOT cinematic) */
.hero-magazine {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 88vh;
  align-items: stretch;
  position: relative;
  isolation: isolate;
}
.hero-magazine .hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem 4rem max(1.25rem, calc((100vw - var(--max-w)) / 2 + 1.25rem));
  background: var(--bg-cream);
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg-copper);
  margin-bottom: 1.25rem;
}
.hero-magazine h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  color: var(--bg-wine);
  margin-bottom: 1.25rem;
  max-width: 14ch;
}
.hero-lead {
  font-size: 1.15rem;
  max-width: 44ch;
  margin-bottom: 2rem;
  color: var(--text-on-cream);
  opacity: 0.9;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.trust-strip { font-size: 0.8rem; opacity: 0.7; letter-spacing: 0.02em; max-width: 50ch; }
.hero-visual-wrap {
  position: relative;
  z-index: 2;
  background: var(--bg-sand);
  overflow: visible;
}
.hero-visual-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
}
.hero-stat-float {
  position: absolute;
  bottom: 2.5rem;
  left: -2rem;
  z-index: 3;
  background: var(--bg-wine);
  color: var(--text-on-wine);
  padding: 1.75rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(61, 18, 36, 0.3);
  max-width: 220px;
}
.hero-stat-float .stat-num {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1;
  color: var(--bg-copper);
}
.hero-stat-float .stat-label { font-size: 0.85rem; margin-top: 0.35rem; opacity: 0.9; }

/* Income promise band */
.income-band {
  padding: 2.5rem 0;
  text-align: center;
  border-top: 3px solid var(--bg-copper);
  border-bottom: 3px solid var(--bg-copper);
}
.income-band p {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  max-width: 55ch;
  margin: 0 auto;
  font-style: italic;
}

/* Pathway rail — roman numerals */
.pathway-header { margin-bottom: 2.5rem; }
.pathway-header h2 { font-size: clamp(2rem, 3.5vw, 2.75rem); color: var(--bg-wine); margin-bottom: 0.75rem; }
.pathway-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.pathway-card {
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(92, 26, 51, 0.15);
  position: relative;
  overflow: hidden;
}
.pathway-card .path-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(198, 123, 78, 0.35);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.pathway-card h3 { font-size: 1.25rem; color: var(--bg-wine); margin-bottom: 0.5rem; }
.pathway-card p { font-size: 0.95rem; }
.pathway-card img {
  margin-top: 1.25rem;
  border-radius: var(--radius-sm);
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
}

/* Zigzag feature */
.zigzag { display: grid; gap: 4rem; }
.zigzag-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.zigzag-row.reverse { direction: rtl; }
.zigzag-row.reverse > * { direction: ltr; }
.zigzag-row img { border-radius: var(--radius-md); aspect-ratio: 4/3; object-fit: cover; box-shadow: 0 16px 48px rgba(61, 18, 36, 0.12); }
.zigzag-row h2 { font-size: clamp(1.75rem, 3vw, 2.35rem); color: var(--bg-wine); margin-bottom: 1rem; }

/* Course bento */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}
.bento-tile {
  padding: 1.75rem;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 200px;
}
.bento-tile.span-4 { grid-column: span 4; }
.bento-tile.span-6 { grid-column: span 6; }
.bento-tile.span-8 { grid-column: span 8; }
.bento-tile .bento-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  opacity: 0.75;
}
.bento-tile h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.bento-tile .bento-price { font-weight: 700; margin-top: 0.75rem; font-size: 0.95rem; }

/* Outcome circles */
.outcomes-row {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.outcome-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 3px solid var(--bg-copper);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}
.outcome-circle .oc-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--bg-copper);
  line-height: 1;
}
.outcome-circle .oc-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-top: 0.35rem; }

/* Testimonial */
.testimonial-wine {
  padding: 3rem;
  border-radius: var(--radius-md);
  border-left: 6px solid var(--bg-copper);
  max-width: 70ch;
  margin: 0 auto;
}
.testimonial-wine blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-style: italic;
  line-height: 1.45;
}
.testimonial-wine .testimonial-cite { margin-top: 1.25rem; font-style: normal; font-size: 0.9rem; opacity: 0.9; font-family: var(--font-body); color: var(--text-on-plum); }
.testimonial-wine blockquote { color: var(--text-on-plum); }

/* FAQ accordion — numbered wine style */
.faq-accordion { max-width: 100%; }
.faq-accordion details {
  border: 1px solid rgba(92, 26, 51, 0.2);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  padding: 0;
  overflow: hidden;
  background: var(--bg-cream);
}
.faq-accordion summary {
  padding: 1.15rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  color: var(--bg-wine);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.faq-accordion summary::-webkit-details-marker { display: none; }
.faq-accordion summary::before {
  content: attr(data-num);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--bg-wine);
  color: var(--text-on-wine);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.faq-accordion details[open] summary { border-bottom: 1px solid rgba(92, 26, 51, 0.12); }
.faq-accordion details p { padding: 1rem 1.5rem 1.25rem 4.5rem; font-size: 0.98rem; }

/* Legacy faq-lab support for faq.php until updated */
.faq-lab .faq-item { margin-bottom: 0.75rem; border-radius: var(--radius-md); overflow: hidden; border: 1px solid rgba(92, 26, 51, 0.15); }
.faq-lab .faq-q { width: 100%; text-align: left; padding: 1.15rem 1.5rem; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: var(--bg-sand); color: var(--text-on-sand); }
.faq-lab .faq-a { padding: 0 1.5rem 1.15rem; display: none; background: var(--bg-cream); color: var(--text-on-cream); }
.faq-lab .faq-item.is-open .faq-a { display: block; padding-top: 0.5rem; }
.faq-lab .faq-q::after { content: '+'; font-size: 1.25rem; color: var(--bg-copper); }
.faq-lab .faq-item.is-open .faq-q::after { content: '−'; }

/* Page layouts */
.page-hero { padding: 5rem 0 2.5rem; }
.page-hero h1 { font-size: clamp(2.25rem, 4vw, 3.25rem); color: var(--bg-wine); margin-bottom: 0.75rem; }
.page-hero .lead { font-size: 1.15rem; max-width: 62ch; }
.content-block { max-width: 75ch; }
.content-block h2 { margin: 2rem 0 1rem; font-size: 1.65rem; color: var(--bg-wine); }
.content-block p, .content-block li { margin-bottom: 1rem; }
.content-block ul { padding-left: 1.5rem; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }

/* Programs — vertical cards with left accent */
.program-stack { display: flex; flex-direction: column; gap: 2rem; }
.program-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2rem;
  padding: 2rem;
  border-radius: var(--radius-md);
  border-left: 5px solid var(--bg-copper);
  background: var(--bg-sand);
}
.program-card img { border-radius: var(--radius-sm); aspect-ratio: 3/2; object-fit: cover; width: 100%; min-height: 180px; background: var(--bg-wine); }
.program-card > div { min-width: 0; }
.program-card:not(:has(> img)) { grid-template-columns: 1fr; }
.program-card .prog-badge { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; color: var(--bg-copper); margin-bottom: 0.5rem; }
.program-card h2 { font-size: 1.5rem; color: var(--bg-wine); margin-bottom: 0.75rem; }

/* Services — icon tiles grid */
.service-tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.service-tile {
  padding: 2rem;
  border-radius: var(--radius-md);
  background: var(--bg-sand);
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 1.5rem;
  align-items: center;
}
.service-tile h3 { font-size: 1.25rem; color: var(--bg-wine); margin-bottom: 0.5rem; }
.service-tile img { border-radius: var(--radius-sm); aspect-ratio: 4/3; object-fit: cover; }

.disclaimer-box { padding: 1.5rem; border-left: 5px solid var(--bg-copper); margin: 2rem 0; font-size: 0.95rem; background: var(--bg-sand); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }

/* Contact split */
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 600px; }
.contact-visual {
  position: relative;
  min-height: 400px;
}
.contact-visual img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; }
.contact-visual .overlay-card {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  background: rgba(92, 26, 51, 0.92);
  color: var(--text-on-wine);
  padding: 1.75rem;
  border-radius: var(--radius-md);
}
.contact-form-wrap { padding: 3rem; background: var(--bg-sand); }

/* Forms */
.form-surface { padding: 2rem; border-radius: var(--radius-md); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.4rem; font-size: 0.88rem; letter-spacing: 0.03em; text-transform: uppercase; color: var(--bg-wine); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(92, 26, 51, 0.25);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  background: #fff;
  color: var(--text-on-cream);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }
.checkbox-group { display: flex; gap: 0.75rem; align-items: flex-start; }
.checkbox-group input { width: auto; margin-top: 0.35rem; }
.checkbox-group label { text-transform: none; font-weight: 400; letter-spacing: 0; font-size: 0.95rem; }
.form-alert { padding: 1rem 1.25rem; border-radius: var(--radius-sm); margin-bottom: 1.5rem; }
.form-alert.success { background: #e8f5e9; color: #1b5e20; border: 1px solid #a5d6a7; }
.form-alert.error { background: #fce4ec; color: #880e4f; border: 1px solid #f48fb1; }

/* Footer — wine multi-band */
.site-footer { padding: 0; font-size: 0.9rem; }
.footer-top-band {
  background: var(--bg-copper);
  color: var(--text-on-copper);
  padding: 1.25rem 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
}
.footer-main { padding: 3.5rem 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}
.footer-grid h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--bg-copper);
}
.site-footer.surface-wine .footer-grid h4 {
  color: var(--bg-copper);
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 0.45rem; }
.footer-grid a { text-decoration: none; opacity: 0.9; }
.footer-grid a:hover { text-decoration: underline; opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255, 251, 245, 0.15);
  padding-top: 1.5rem;
  font-size: 0.85rem;
  opacity: 0.85;
}
.footer-disclaimer { margin-top: 1rem; font-size: 0.8rem; line-height: 1.55; opacity: 0.75; }

/* CTA */
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 4rem 0;
}
.cta-split h2 { font-size: clamp(1.85rem, 3vw, 2.5rem); color: var(--bg-wine); margin-bottom: 1rem; }

/* Cookie banner */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; padding: 1.25rem; box-shadow: 0 -4px 24px rgba(61, 18, 36, 0.2); border-top: 3px solid var(--bg-copper); }
.cookie-banner.is-hidden { display: none; }
.cookie-inner { max-width: var(--max-w); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; }
.cookie-btns { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.cookie-custom { padding: 1rem; margin-top: 0.75rem; border-top: 1px solid rgba(92, 26, 51, 0.15); width: 100%; }
.cookie-custom label { display: flex; gap: 0.5rem; margin-bottom: 0.5rem; font-size: 0.9rem; }

/* 404 */
.error-page { min-height: 65vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 3rem 1rem; }
.error-page h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--bg-wine); margin-bottom: 1rem; }

/* Reveal */
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .nav-backdrop { transition: none; }
  .site-header nav,
  .nav-list li,
  .nav-toggle-bars,
  .nav-toggle-bars::before,
  .nav-toggle-bars::after { transition: none; }
  .site-header nav.is-open .nav-list li { transition-delay: 0s; }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-magazine { grid-template-columns: 1fr; min-height: auto; }
  .hero-magazine .hero-copy { padding: 3rem 1.25rem; }
  .hero-visual-wrap img { min-height: 360px; }
  .hero-stat-float { left: 1.25rem; bottom: 1.25rem; z-index: 3; }
  .pathway-rail { grid-template-columns: repeat(2, 1fr); }
  .bento-tile.span-4, .bento-tile.span-6, .bento-tile.span-8 { grid-column: span 6; }
  .zigzag-row, .cta-split, .contact-split, .two-col, .footer-grid { grid-template-columns: 1fr; }
  .zigzag-row.reverse { direction: ltr; }
  .program-card, .service-tile { grid-template-columns: 1fr; }
  .service-tiles { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; z-index: 1001; }
  .site-header .inner { flex-wrap: nowrap; }
  .site-header nav {
    position: fixed;
    inset: 0;
    z-index: 950;
    width: 100%;
    max-width: none;
    height: 100%;
    height: 100dvh;
    margin: 0;
    padding: 5.25rem 1.5rem 2rem;
    background: var(--bg-cream);
    border: none;
    box-shadow: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }
  .site-header nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 24rem;
    margin: 0 auto;
    padding: 0;
  }
  .nav-list li {
    border-bottom: 1px solid rgba(92, 26, 51, 0.12);
  }
  .nav-list li:first-child {
    border-top: 1px solid rgba(92, 26, 51, 0.12);
  }
  .nav-list a {
    display: block;
    padding: 1.1rem 0.25rem;
    font-size: 1.05rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    opacity: 1;
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--bg-wine);
    text-decoration: none;
    padding-left: 0.5rem;
    transition: padding-left 0.2s ease;
  }
  .nav-list a[aria-current="page"] {
    color: var(--bg-wine);
    font-weight: 700;
    border-left: 3px solid var(--bg-copper);
    padding-left: 0.75rem;
  }
  .pathway-rail { grid-template-columns: 1fr; }
  .bento-tile.span-4, .bento-tile.span-6, .bento-tile.span-8 { grid-column: span 12; }
  .outcomes-row { gap: 1.25rem; }
  .outcome-circle { width: 130px; height: 130px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-form-wrap { padding: 2rem 1.25rem; }
  .faq-accordion details p { padding-left: 1.5rem; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; }
}
