/* =============================================
   OAKSPIRE.PRO — Luxury Knowledge Journal Style
   ============================================= */

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

:root {
  --cream: #faf7f0;
  --cream-deep: #f3ede0;
  --ink: #1c1810;
  --ink-light: #3d3525;
  --gold: #b8973a;
  --gold-light: #d4ae5c;
  --gold-pale: #e8d5a3;
  --rule: #d4c8a8;
  --rule-light: #e8dfcb;
  --text: #2e2a1e;
  --text-muted: #7a6e58;
  --accent: #8b1a1a;
  --accent-light: #a52c2c;
  --white: #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'EB Garamond', Georgia, serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;

  --max-width: 1160px;
  --content-width: 760px;
  --side-pad: clamp(1.5rem, 5vw, 4rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 18px; scroll-behavior: smooth; }

body {
  background-color: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ---- UTILITY ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--side-pad);
}
.content-narrow {
  max-width: var(--content-width);
  margin: 0 auto;
}
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-accent { color: var(--accent); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* ---- DIVIDERS ---- */
.rule {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 2.5rem 0;
}
.rule-double {
  height: 6px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin: 2.5rem 0;
}
.ornament {
  text-align: center;
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 0.5rem;
  margin: 2rem 0;
  display: block;
}
.section-rule {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.section-rule::before,
.section-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
}
.section-rule span {
  font-family: var(--font-accent);
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.15rem;
  white-space: nowrap;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--ink);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }
h5 { font-size: 1.05rem; font-weight: 600; letter-spacing: 0.05rem; }

p { margin-bottom: 1.2rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  color: var(--ink-light);
  line-height: 1.6;
}

.kicker {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}

.byline {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  color: var(--text-muted);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--gold); }

strong { font-weight: 600; color: var(--ink); }
em { font-style: italic; }

ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}
li { margin-bottom: 0.4rem; }

blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--cream-deep);
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-light);
}

/* ---- HEADER / NAV ---- */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(28,24,8,0.06);
}
.header-top {
  border-bottom: 1px solid var(--rule-light);
  padding: 0.4rem var(--side-pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--font-accent);
  letter-spacing: 0.08rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.header-top a { color: var(--text-muted); }
.header-top a:hover { color: var(--gold); }

.header-main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem var(--side-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}
.logo-name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.05rem;
}
.logo-tag {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.15rem;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-main a {
  font-family: var(--font-accent);
  font-size: 0.88rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: var(--ink-light);
  padding: 0.4rem 0.8rem;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-main a:hover,
.nav-main a.active { color: var(--gold); }

.nav-cta {
  font-family: var(--font-accent);
  font-size: 0.82rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--gold-pale) !important;
  padding: 0.5rem 1.2rem !important;
  border: 1px solid var(--ink);
  transition: background 0.25s, color 0.25s !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--ink) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.3rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.3s;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 72vh;
  display: flex;
  align-items: center;
}
.hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45) sepia(0.2);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,24,8,0.72) 0%, rgba(28,24,8,0.35) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem var(--side-pad);
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}
.hero-content .kicker { color: var(--gold-light); }
.hero-content h1 { color: var(--white); max-width: 680px; }
.hero-content .lead { color: rgba(255,255,255,0.85); max-width: 560px; margin: 1.2rem 0 2rem; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border: 1px solid currentColor;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--ink);
  border-color: var(--gold-light);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--gold-pale);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-ink {
  background: var(--ink);
  color: var(--gold-pale);
  border-color: var(--ink);
}
.btn-ink:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-ghost {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-ghost:hover {
  background: var(--accent);
  color: var(--white);
}

/* ---- SECTIONS ---- */
section {
  padding: 5rem 0;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .kicker { margin-bottom: 0.8rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { max-width: 560px; margin: 0 auto; color: var(--text-muted); font-size: 1.05rem; }

.bg-cream-deep { background: var(--cream-deep); }
.bg-ink { background: var(--ink); }
.bg-ink h1,.bg-ink h2,.bg-ink h3,.bg-ink h4,.bg-ink h5 { color: var(--gold-pale); }
.bg-ink p,.bg-ink li { color: rgba(255,255,255,0.8); }
.bg-ink .text-muted { color: rgba(255,255,255,0.5); }
.bg-ink .rule,.bg-ink hr { border-color: rgba(255,255,255,0.12); }

/* ---- CARDS ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 2rem;
  transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(28,24,8,0.1);
  transform: translateY(-3px);
}
.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 1.5rem;
}
.card .kicker { margin-bottom: 0.5rem; }
.card h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.card p { font-size: 0.95rem; color: var(--text-muted); }
.card-price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--ink);
  font-weight: 700;
  margin: 1rem 0 0.3rem;
}
.card-price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }

/* ---- PRICING TABLE ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.pricing-card {
  border: 1px solid var(--rule);
  padding: 2.5rem;
  background: var(--white);
  position: relative;
  transition: box-shadow 0.25s;
}
.pricing-card:hover { box-shadow: 0 8px 32px rgba(28,24,8,0.1); }
.pricing-card.featured {
  border-color: var(--gold);
  border-width: 2px;
}
.pricing-badge {
  position: absolute;
  top: -1px;
  right: 2rem;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--ink);
  margin: 1rem 0 0.3rem;
  line-height: 1;
}
.pricing-price small {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  font-family: var(--font-body);
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
}
.pricing-features li {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--rule-light);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.pricing-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ---- TESTIMONIALS ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 2rem;
}
.testimonial-text {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-light);
  margin-bottom: 1.2rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--ink);
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05rem;
  color: var(--ink);
  display: block;
}
.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---- FORMS ---- */
.form-group {
  margin-bottom: 1.5rem;
}
label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.83rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
}
textarea { resize: vertical; min-height: 140px; }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a6e58' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--gold);
}
.checkbox-group label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--text);
  margin: 0;
}
.form-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

/* ---- TEAM / INSTRUCTORS ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
}
.team-card {
  text-align: center;
}
.team-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  filter: sepia(0.12) contrast(1.05);
  margin-bottom: 1.2rem;
}
.team-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.team-role {
  font-family: var(--font-accent);
  font-size: 0.83rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---- STATS ---- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-family: var(--font-accent);
  font-size: 0.83rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.4rem;
  display: block;
}

/* ---- FAQ ---- */
.faq-item {
  border-bottom: 1px solid var(--rule);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.2rem 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-question::after {
  content: '✦';
  color: var(--gold);
  font-size: 0.7rem;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 0 1.2rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ---- BREADCRUMB ---- */
.breadcrumb {
  padding: 1rem 0;
  font-family: var(--font-accent);
  font-size: 0.83rem;
  letter-spacing: 0.06rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 0.4rem; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--cream-deep);
  border-bottom: 1px solid var(--rule);
  padding: 3.5rem var(--side-pad);
  text-align: center;
}
.page-hero .kicker { margin-bottom: 0.8rem; }
.page-hero h1 { margin-bottom: 0.8rem; }
.page-hero .lead { max-width: 560px; margin: 0 auto; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-name { color: var(--gold-pale); font-size: 1.6rem; }
.footer-brand .logo-tag { color: var(--gold); }
.footer-brand p { margin-top: 1rem; color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.7; }
.footer-heading {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: block;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}
.footer-contact-icon { color: var(--gold); flex-shrink: 0; margin-top: 0.1rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-legal a:hover { color: var(--gold); }

/* ---- COOKIE BANNER ---- */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: 1.2rem var(--side-pad);
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  border-top: 2px solid var(--gold);
  font-size: 0.88rem;
  transform: translateY(0);
  transition: transform 0.4s;
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner a { color: var(--gold-light); }
.cookie-btns { display: flex; gap: 0.8rem; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border: 1px solid;
  cursor: pointer;
  transition: all 0.2s;
  background: none;
}
.cookie-btn-accept {
  border-color: var(--gold);
  color: var(--gold);
}
.cookie-btn-accept:hover { background: var(--gold); color: var(--ink); }
.cookie-btn-decline {
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.6);
}
.cookie-btn-decline:hover { border-color: white; color: white; }

/* ---- MOBILE NAV ---- */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--cream);
  border-top: 1px solid var(--rule);
  padding: 1rem var(--side-pad) 1.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-accent);
  font-size: 1rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: var(--ink-light);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--rule-light);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  .nav-main { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  html { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-cols { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero { min-height: 60vh; }
  .hero-content { padding: 3rem var(--side-pad); }
  section { padding: 3.5rem 0; }
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease both; }
.fade-up-2 { animation: fadeUp 0.7s 0.15s ease both; }
.fade-up-3 { animation: fadeUp 0.7s 0.3s ease both; }

/* ---- NOTICE BOX ---- */
.notice {
  background: var(--cream-deep);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}
.notice strong { color: var(--ink); }

/* ---- TABLE ---- */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}
th {
  background: var(--ink);
  color: var(--gold-pale);
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  padding: 0.75rem 1rem;
  text-align: left;
}
td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--rule-light);
}
tr:nth-child(even) td { background: var(--cream-deep); }

/* ---- MODULE LABEL ---- */
.module-label {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  letter-spacing: 0.14rem;
  text-transform: uppercase;
  background: var(--gold-pale);
  color: var(--ink);
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.5rem;
}

/* ---- TWO COL LAYOUT ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---- PROCESS STEPS ---- */
.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
}
.step-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  counter-increment: step;
}
.step-num {
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.step-body h4 { margin-bottom: 0.4rem; }
.step-body p { font-size: 0.97rem; color: var(--text-muted); margin: 0; }

/* ---- CURRICULUM ACCORDION ---- */
.curriculum-module {
  border: 1px solid var(--rule);
  margin-bottom: 0.8rem;
  background: var(--white);
}
.curriculum-toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--ink);
  text-align: left;
  gap: 1rem;
}
.curriculum-toggle::after {
  content: '+';
  color: var(--gold);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.curriculum-module.open .curriculum-toggle::after { content: '−'; }
.curriculum-content {
  display: none;
  padding: 0 1.5rem 1.2rem;
}
.curriculum-module.open .curriculum-content { display: block; }
.curriculum-content ul { font-size: 0.94rem; color: var(--text-muted); }

/* ---- HIGHLIGHT BOX ---- */
.highlight-box {
  background: var(--ink);
  color: var(--gold-pale);
  padding: 3rem;
  text-align: center;
  margin: 3rem 0;
}
.highlight-box h2,.highlight-box h3 { color: var(--gold-light); margin-bottom: 0.8rem; }
.highlight-box p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 2rem; }

/* ---- LEGAL PAGE ---- */
.legal-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--side-pad);
}
.legal-body h2 { font-size: 1.5rem; margin: 2.5rem 0 0.8rem; }
.legal-body h3 { font-size: 1.2rem; margin: 1.8rem 0 0.6rem; }
.legal-body p { font-size: 0.97rem; color: var(--text-muted); }
.legal-body ul { font-size: 0.97rem; color: var(--text-muted); }

/* ---- SUCCESS MSG ---- */
.success-msg {
  display: none;
  background: #f0f7ef;
  border: 1px solid #8bc34a;
  border-left: 3px solid #4caf50;
  padding: 1rem 1.5rem;
  margin-top: 1rem;
  color: #2d5a1b;
  font-size: 0.95rem;
}

/* ---- LEGAL PAGE (extended) ---- */
.legal-page { padding: 4rem 0 6rem; }
.legal-container { max-width: 820px; margin: 0 auto; padding: 0 var(--side-pad); }
.legal-meta { font-size: 0.88rem; color: var(--text-muted); border-bottom: 1px solid var(--rule); padding-bottom: 1rem; margin-bottom: 2rem; }
.legal-intro-box { background: #f5f0e8; border-left: 3px solid var(--gold); padding: 1.5rem 2rem; margin-bottom: 3rem; font-size: 0.97rem; color: var(--ink); line-height: 1.7; border-radius: 0 4px 4px 0; }
.legal-section { margin-bottom: 2.8rem; }
.legal-section h2 { font-family: var(--font-display); font-size: 1.45rem; color: var(--ink); margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--rule); }
.legal-section h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--ink); margin: 1.5rem 0 0.5rem; }
.legal-section p, .legal-section ul, .legal-section li { font-size: 0.97rem; color: var(--text-muted); line-height: 1.75; }
.legal-section ul { padding-left: 1.5rem; margin: 0.8rem 0; }
.legal-section ul li { margin-bottom: 0.4rem; }
.info-card { background: var(--cream); border: 1px solid var(--rule); border-top: 3px solid var(--gold); padding: 1.5rem 2rem; margin: 1.5rem 0; border-radius: 0 0 4px 4px; }
.info-card h3 { font-size: 1rem; font-family: var(--font-body); font-weight: 600; color: var(--ink); margin-bottom: 0.5rem; }
.info-card p { font-size: 0.95rem; }
.legal-list-block { display: grid; gap: 1rem; margin: 1.5rem 0; }
.legal-list-item { background: var(--cream); border: 1px solid var(--rule); padding: 1.2rem 1.5rem; border-radius: 4px; }
.legal-list-item h4 { font-family: var(--font-display); font-size: 1rem; color: var(--ink); margin-bottom: 0.4rem; }
.legal-list-item p { font-size: 0.93rem; margin: 0; }
.contact-legal-box { background: var(--ink); color: var(--cream); padding: 1.5rem 2rem; margin: 1rem 0; border-radius: 4px; }
.contact-legal-box p { color: rgba(250,247,240,0.85); font-size: 0.95rem; margin: 0; }
.contact-legal-box a { color: var(--gold-light); }
.legal-footer-note { border-top: 1px solid var(--rule); padding-top: 2rem; margin-top: 3rem; font-size: 0.85rem; color: var(--text-muted); font-style: italic; line-height: 1.6; }
