/* ═══════════════════════════════════════════════════
   École de Massage de l'Est · Shared Design System
   ═══════════════════════════════════════════════════ */

/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sage:        #254B5A;
  --sage-light:  #7F9A83;
  --sage-dark:   #1A3A4A;
  --cream:       #D4E1E7;
  --warm-white:  #F0F5F7;
  --stone:       #BED0DA;
  --brown:       #778C58;
  --brown-dark:  #082434;
  --text:        #082434;
  --text-muted:  #4A6070;
  --nav-h:       72px;
}

html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: calc(var(--nav-h) + 1.5rem); }

/* Anchor scroll targets: leave room for the fixed nav */
[id] { scroll-margin-top: calc(var(--nav-h) + 1.5rem); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── Focus visibility (a11y) ── */
:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible,
.nav-cta:focus-visible {
  outline-offset: 4px;
}
body {
  font-family: 'Inter', sans-serif;
  background: var(--warm-white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  font-weight: 400;
}
.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1.25rem;
  color: var(--brown-dark);
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 52ch;
  line-height: 1.75;
}

/* ── Layout ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section--alt { background: var(--cream); }
.section--dark { background: var(--brown-dark); color: var(--cream); }
.section--sage { background: var(--sage-dark); color: var(--cream); }

/* ── Two-column grids that collapse on mobile ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.two-col--start { align-items: start; }
.two-col--ratio-14 { grid-template-columns: 1fr 1.4fr; }
.two-col--ratio-12 { grid-template-columns: 1fr 1.2fr; }
.two-col--gap-3 { gap: 3rem; }
@media (max-width: 768px) {
  .two-col, .two-col--ratio-14, .two-col--ratio-12 { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  padding: 0.8rem 1.8rem;
  border-radius: 100px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}
.btn-primary { background: var(--sage); color: #fff; }
.btn-primary:hover { background: var(--sage-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(78,112,88,0.35); }
.btn-outline { background: transparent; color: var(--warm-white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.8); transform: translateY(-2px); }
.btn-dark { background: var(--brown-dark); color: var(--cream); }
.btn-dark:hover { background: var(--text); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--sage-dark); border: 1.5px solid var(--sage); }
.btn-ghost:hover { background: var(--sage); color: #fff; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
}
nav.scrolled {
  background: rgba(253, 250, 246, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.07);
}
nav.solid {
  background: rgba(253, 250, 246, 0.97);
  box-shadow: 0 1px 0 rgba(0,0,0,0.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.85; }
.nav-logo-img {
  height: 42px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
  flex-shrink: 0;
}
nav.scrolled .nav-logo-img,
nav.solid .nav-logo-img { filter: none; }
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--warm-white);
  transition: color 0.3s;
  line-height: 1.2;
}
nav.scrolled .nav-logo-text,
nav.solid .nav-logo-text { color: var(--brown-dark); }
.nav-logo-text span {
  display: block;
  font-size: 0.6rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.82;
  margin-top: 2px;
}
/* Footer logo */
.footer-logo {
  height: 56px;
  width: auto;
  margin-bottom: 1rem;
  opacity: 0.6;
  display: block;
  filter: brightness(0) invert(1);
}
.nav-links { display: flex; gap: 2.2rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
  position: relative;
}
nav.scrolled .nav-links a,
nav.solid .nav-links a { color: var(--text-muted); }
.nav-links a:hover,
.nav-links a.active { color: var(--sage) !important; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--sage);
  border-radius: 2px;
}

/* ── Nav dropdown ── */
.nav-has-dropdown { position: relative; }
.nav-has-dropdown > a { display: inline-flex; align-items: center; gap: 0.3rem; }
.nav-chev {
  width: 0.65em;
  height: 0.65em;
  transition: transform 0.2s;
  opacity: 0.7;
}
.nav-has-dropdown:hover .nav-chev,
.nav-has-dropdown:focus-within .nav-chev { transform: rotate(180deg); }

.nav-submenu {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  list-style: none;
  background: var(--warm-white);
  border: 1px solid var(--stone);
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  padding: 0.5rem;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 101;
}
/* Invisible bridge so cursor can move down into the menu without it closing */
.nav-has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%; left: 0; right: 0;
  height: 18px;
}
.nav-has-dropdown:hover .nav-submenu,
.nav-has-dropdown:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-submenu li { display: block; }
.nav-submenu a {
  display: block;
  padding: 0.6rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-muted) !important;
  border-radius: 5px;
  transition: background 0.15s, color 0.15s;
}
.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  color: var(--brown-dark) !important;
  background: var(--cream);
}
.nav-submenu a.active {
  color: var(--sage-dark) !important;
  background: var(--cream);
}
.nav-submenu a.active::after { display: none; }
.nav-cta {
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  padding: 0.5rem 1.3rem;
  border-radius: 100px;
  background: var(--sage) !important;
  color: #fff !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--sage-dark) !important; transform: translateY(-1px) !important; }
.nav-cta.active::after { display: none; }
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--warm-white);
  border-radius: 2px;
  transition: background 0.3s;
}
nav.scrolled .hamburger span,
nav.solid .hamburger span { background: var(--brown-dark); }

/* ── Mobile menu ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--warm-white);
  z-index: 110;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1.75rem;
  padding: 5.5rem 1.5rem 3rem;     /* clear the close button, leave bottom breathing room */
  overflow-y: auto;                 /* scroll when content exceeds viewport */
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.mobile-menu.open { display: flex; }
body:has(.mobile-menu.open) .hamburger { display: none; }
body:has(.mobile-menu.open) { overflow: hidden; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--brown-dark);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--sage-dark); }
.mobile-menu a.mobile-sub {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-top: -0.75rem;
  padding-left: 1.5rem;
  position: relative;
}
.mobile-menu a.mobile-sub::before {
  content: '';
  position: absolute;
  left: 0.4rem; top: 50%;
  width: 0.7rem; height: 1px;
  background: var(--text-muted);
  opacity: 0.5;
}
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-muted);
  background: none;
  border: none;
  line-height: 1;
}

/* ── Trust bar ── */
.trust-bar { background: var(--sage-dark); padding: 1.1rem 0; }
.trust-items { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.79rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.trust-item svg { flex-shrink: 0; }

/* ── Cards ── */
.card {
  background: var(--warm-white);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--stone);
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.09); }
.card-img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.card-body { padding: 1.75rem; }
.card-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 0.6rem;
}
.card h3 { font-size: 1.35rem; margin-bottom: 0.6rem; color: var(--brown-dark); }
.card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sage-dark);
  transition: gap 0.2s;
}
.card-link:hover { gap: 0.65rem; }

/* ── Form ── */
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--stone);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--warm-white);
  transition: border-color 0.2s;
  outline: none;
}
@media (max-width: 768px) {
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; }
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--sage); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── Footer ── */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.78);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand h3 { font-size: 1.1rem; color: var(--warm-white); margin-bottom: 0.6rem; }
.footer-brand p { font-size: 0.82rem; line-height: 1.75; max-width: 28ch; }
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul li a { font-size: 0.84rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--sage-light); }
.footer-badges { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1.25rem; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-social a {
  display: grid; place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer-social a:hover {
  border-color: var(--sage-light);
  color: var(--sage-light);
  background: rgba(255,255,255,0.05);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: var(--sage-light);
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}
a.badge:hover,
a.badge:focus-visible {
  background: rgba(127, 154, 131, 0.18);
  border-color: rgba(127, 154, 131, 0.45);
  color: #fff;
}
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.76rem;
}

/* ── Page hero (inner pages) ── */
.page-hero {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 4rem;
  background: var(--brown-dark);
  color: var(--cream);
  text-align: center;
}
.page-hero .section-label { color: var(--sage-light); }
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.page-hero h1 em { font-style: italic; color: var(--sage-light); }
.page-hero p { font-size: 1rem; opacity: 0.75; max-width: 55ch; margin: 0 auto; line-height: 1.75; }

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--stone);
  margin-bottom: 3rem;
}
.breadcrumb a { color: var(--sage-dark); }
.breadcrumb a:hover { text-decoration: underline; }

/* ── Info box ── */
.info-box {
  padding: 1.75rem 2rem;
  border-radius: 6px;
  border-left: 3px solid var(--sage);
  background: var(--stone);
}
.info-box h4 { font-size: 1rem; font-family: 'Inter', sans-serif; font-weight: 600; color: var(--brown-dark); margin-bottom: 0.5rem; }
.info-box p, .info-box li { font-size: 0.87rem; color: var(--text-muted); line-height: 1.72; }
.info-box ul { padding-left: 1.2rem; margin-top: 0.5rem; display: flex; flex-direction: column; gap: 0.35rem; }

/* ── Quote block ── */
blockquote {
  border-left: 3px solid var(--sage);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--cream);
  border-radius: 0 6px 6px 0;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── Scroll animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
/* Large tablets & nav switch */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 4.5rem 0; }
  .two-col, .two-col--ratio-14, .two-col--ratio-12 { gap: 3rem; }
}
/* Small tablets / large phones landscape */
@media (max-width: 768px) {
  .container { padding: 0 1.5rem; }
  .section { padding: 4rem 0; }
  .page-hero { padding-top: calc(var(--nav-h) + 2.5rem); padding-bottom: 2.5rem; }
  .page-hero h1 { margin-bottom: 0.875rem; }
  .section-title { margin-bottom: 1rem; }
  .section-label { margin-bottom: 0.75rem; }
  .two-col, .two-col--ratio-14, .two-col--ratio-12 { gap: 2.25rem; }
}
/* Phones */
@media (max-width: 600px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 3.25rem 0; }
  .page-hero { padding-top: calc(var(--nav-h) + 2rem); padding-bottom: 2rem; }
  .page-hero p { font-size: 0.95rem; line-height: 1.65; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }
  .trust-items { gap: 1.25rem; }
  .two-col, .two-col--ratio-14, .two-col--ratio-12 { gap: 2rem; }
}
/* Small phones */
@media (max-width: 380px) {
  .container { padding: 0 1rem; }
  .section { padding: 2.5rem 0; }
  .page-hero { padding-top: calc(var(--nav-h) + 1.5rem); padding-bottom: 1.75rem; }
  .section-title { font-size: 1.6rem; }
  .page-hero h1 { font-size: 2rem; }
}

/* ── Legal pages content ── */
.legal-content {
  max-width: 820px;
}
.legal-content h2 {
  font-size: 1.5rem;
  color: var(--brown-dark);
  margin: 2.5rem 0 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--stone);
}
.legal-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.legal-content p,
.legal-content li {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.78;
}
.legal-content p { margin-bottom: 1rem; }
.legal-content ul,
.legal-content ol {
  margin: 0 0 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.legal-content a {
  color: var(--sage-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-content a:hover { color: var(--brown-dark); }
.legal-content strong { color: var(--brown-dark); font-weight: 600; }
.legal-updated {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--stone);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── Cookie banner (RGPD) ── */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  max-width: 560px;
  margin-left: auto;
  z-index: 150;
  background: var(--warm-white);
  border: 1px solid var(--stone);
  border-radius: 10px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
  padding: 1.25rem 1.25rem 1.1rem;
  display: none;
  animation: cookieIn 0.35s ease-out;
}
.cookie-banner.visible { display: block; }
@keyframes cookieIn {
  from { transform: translateY(16px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.cookie-banner h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 0.4rem;
}
.cookie-banner p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0.9rem;
}
.cookie-banner p a {
  color: var(--sage-dark);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.cookie-actions .btn {
  font-size: 0.75rem;
  padding: 0.55rem 1.15rem;
}
@media (prefers-reduced-motion: reduce) {
  .cookie-banner { animation: none; }
}

/* ── Cohort dates (Prochaines sessions) ── */
.sessions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.session-card {
  background: var(--warm-white);
  border: 1px solid var(--stone);
  border-radius: 8px;
  padding: 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.session-card:hover {
  transform: translateY(-3px);
  border-color: var(--sage-light);
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}
.session-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--sage-dark);
  margin-bottom: 0.4rem;
  line-height: 1.1;
}
.session-date strong {
  display: block;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
}
.session-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brown-dark);
  margin: 0.75rem 0 0.35rem;
}
.session-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.session-seats {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: rgba(123,158,135,0.12);
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
}
.session-seats.limited { color: #b4572a; background: rgba(180,87,42,0.1); }
@media (max-width: 900px) {
  .sessions-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .sessions-grid { grid-template-columns: 1fr; }
}

/* ── FAQ accordion ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--stone);
  border-radius: 8px;
  background: var(--warm-white);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--sage-light); }
.faq-item summary {
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--brown-dark);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  display: inline-block;
  width: 10px; height: 10px;
  border-right: 2px solid var(--sage-dark);
  border-bottom: 2px solid var(--sage-dark);
  transform: rotate(45deg);
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item .faq-body {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-item .faq-body a { color: var(--sage-dark); text-decoration: underline; }

/* ── Shared JS helpers ── */
/* (see _shared.js) */
