:root {
  --forest: #1b3328;
  --forest-mid: #254a38;
  --forest-light: #2f5e48;
  --stone: #f0ebe1;
  --stone-dark: #ddd5c5;
  --slate: #3a4a42;
  --gold: #b8964e;
  --gold-light: #d4af72;
  --white: #faf8f4;
  --text: #1e2b24;
  --text-mid: #4a5e54;
  --text-light: #7a9080;
  --water-light: #5a8fa0;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; }

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  top: -48px; left: 0;
  background: var(--gold);
  color: var(--forest);
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 500;
  z-index: 1000;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(27,51,40,0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(240,235,225,0.06);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--stone);
  letter-spacing: 0.04em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav-logo span { color: var(--gold-light); }

.nav-logo-icon { height: 32px; width: auto; display: block; }

.nav-right { display: flex; align-items: center; gap: 4px; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240,235,225,0.65);
  background: none;
  border: none;
  padding: 8px 14px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
}

.nav-links a:hover { color: var(--gold-light); }

.nav-links a[aria-current="page"] {
  color: var(--gold-light);
  background: rgba(184,150,78,0.08);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--forest) !important;
  font-weight: 500 !important;
  padding: 9px 18px !important;
}

.nav-cta:hover { background: var(--gold-light) !important; }

.mode-tabs { display: flex; gap: 2px; margin-right: 20px; }

.mode-tab {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(240,235,225,0.5);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(240,235,225,0.1);
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}
.mode-tab:hover { color: rgba(240,235,225,0.85); }
.mode-tab.mode-tab-org.active { background: var(--gold); color: var(--forest); border-color: var(--gold); }
.mode-tab.mode-tab-parents.active { background: var(--water-light); color: #0d2229; border-color: var(--water-light); }

/* ── HAMBURGER + MOBILE MENU ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 32px; height: 32px;
  background: none; border: none; cursor: pointer; padding: 0;
}
.hamburger span { display: block; width: 100%; height: 2px; background: var(--stone); transition: transform 0.25s, opacity 0.25s, width 0.25s; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 100%; }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 100%; }

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: var(--forest);
  overflow-y: auto;
  padding: 8px 24px 40px;
  flex-direction: column;
  border-top: 1px solid rgba(240,235,225,0.08);
}
.mobile-menu.open { display: flex; }

.mobile-mode-tabs { display: flex; gap: 2px; margin: 20px 0 8px; }
.mobile-mode-tabs .mode-tab { flex: 1; text-align: center; padding: 14px 10px; }

.mobile-links { display: flex; flex-direction: column; }

.mobile-links a {
  text-align: left; background: none; border: none;
  border-bottom: 1px solid rgba(240,235,225,0.08);
  padding: 18px 4px; font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 400; letter-spacing: 0.03em; text-transform: uppercase;
  color: rgba(240,235,225,0.75); cursor: pointer;
  text-decoration: none; display: block;
}
.mobile-links a.mobile-cta { color: var(--gold-light); font-weight: 500; }
.mobile-links a[aria-current="page"] { color: var(--gold-light); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--forest);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%; height: 100%;
  background: var(--forest-mid);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-texture {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(184,150,78,0.06) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(184,150,78,0.04) 0%, transparent 40%);
  pointer-events: none;
}

.hero-content {
  grid-column: 1/2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 64px 80px 80px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px; display: flex; align-items: center; gap: 12px;
}

.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 500; line-height: 1.08; color: var(--stone); margin-bottom: 28px; letter-spacing: -0.01em;
}

.hero h1 em { font-style: italic; color: var(--gold-light); }

.hero-sub {
  font-size: 17px; font-weight: 300; color: rgba(240,235,225,0.7);
  max-width: 460px; line-height: 1.7; margin-bottom: 48px;
}

.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.btn-primary {
  background: var(--gold); color: var(--forest); padding: 16px 32px;
  font-size: 14px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none; display: inline-block;
}

.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-ghost {
  color: rgba(240,235,225,0.65); font-size: 14px; font-weight: 400; letter-spacing: 0.04em;
  background: none; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
  display: inline-flex; align-items: center; gap: 8px; transition: color 0.2s;
  text-decoration: none;
}

.btn-ghost:hover { color: var(--stone); }
.btn-ghost::after { content: '→'; transition: transform 0.2s; }
.btn-ghost:hover::after { transform: translateX(4px); }

.hero-crosslink { margin-top: 36px; }
.hero-crosslink .btn-ghost { font-size: 13px; color: rgba(240,235,225,0.45); }
.hero-crosslink .btn-ghost:hover { color: var(--water-light); }

.hero-right {
  grid-column: 2/3; display: flex; flex-direction: column; justify-content: center;
  padding: 120px 80px 80px 80px; position: relative; z-index: 2;
}

.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }

.stat-block { padding: 32px; background: rgba(255,255,255,0.03); border: 1px solid rgba(240,235,225,0.06); }
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 400; color: var(--gold-light); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 12px; font-weight: 400; color: rgba(240,235,225,0.5); letter-spacing: 0.06em; text-transform: uppercase; }

.hero-tagline { margin-top: 32px; padding: 24px 32px; border-left: 2px solid var(--gold); background: rgba(184,150,78,0.05); }
.hero-tagline p { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; font-style: italic; color: rgba(240,235,225,0.75); line-height: 1.45; }

/* ── CONTENT PAGES ── */
.page-inner { padding-top: 72px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

.section-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; display: flex; align-items: center; gap: 12px;
}

.section-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }

.section-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 4vw, 52px);
  font-weight: 500; line-height: 1.1; color: var(--forest); margin-bottom: 20px;
}

.section-title em { font-style: italic; color: var(--forest-light); }
.section-intro { font-size: 17px; font-weight: 300; color: var(--text-mid); max-width: 560px; line-height: 1.7; }

/* ── POSITIONING ── */
.positioning { padding: 80px 0; background: var(--stone); }
.positioning-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 64px; }
.positioning-statement { padding: 40px; background: var(--forest); }
.positioning-statement p { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400; line-height: 1.45; color: rgba(240,235,225,0.9); }
.positioning-statement p + p { margin-top: 20px; font-size: 17px; font-family: 'DM Sans', sans-serif; font-weight: 300; color: rgba(240,235,225,0.6); }

.not-list { list-style: none; display: flex; flex-direction: column; }
.not-list li { padding: 18px 0; border-bottom: 1px solid var(--stone-dark); display: flex; align-items: baseline; gap: 16px; font-size: 16px; color: var(--text-mid); }
.not-list li:last-child { border-bottom: none; }
.not-list .marker { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; min-width: 34px; }
.not-list .marker.not { color: #9a6060; }
.not-list .marker.is { color: var(--gold); }
.not-list strong { font-weight: 500; color: var(--text); }

/* ── OFFER / LEVEL CARDS ── */
.offer-page { background: var(--white); }
.offer-section { padding: 80px 0 40px; }
.offer-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
.offer-note { font-size: 14px; color: var(--text-light); max-width: 280px; text-align: right; line-height: 1.6; }

.levels { display: flex; flex-direction: column; gap: 2px; }
.level-card { display: grid; grid-template-columns: 200px 1fr auto; background: var(--stone); overflow: hidden; transition: transform 0.2s; }
.level-card:hover { transform: translateX(4px); }
.level-card.featured { background: var(--forest); }

.level-tag { padding: 40px 32px; display: flex; flex-direction: column; justify-content: center; background: var(--forest); }
.level-card.featured .level-tag { background: var(--forest-light); }

.level-number { font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 400; color: rgba(240,235,225,0.15); line-height: 1; margin-bottom: 4px; }
.level-name { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light); }

.level-body { padding: 36px 40px; }
.level-card.featured .level-body { background: var(--forest); }

.level-headline { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 500; color: var(--forest); margin-bottom: 10px; line-height: 1.2; }
.level-card.featured .level-headline { color: var(--stone); }

.level-desc { font-size: 15px; font-weight: 300; color: var(--text-mid); line-height: 1.65; margin-bottom: 20px; max-width: 520px; }
.level-card.featured .level-desc { color: rgba(240,235,225,0.65); }

.level-features { display: flex; flex-wrap: wrap; gap: 8px; }
.feature-tag { font-size: 12px; font-weight: 400; letter-spacing: 0.04em; padding: 5px 12px; background: rgba(27,51,40,0.08); color: var(--slate); }
.level-card.featured .feature-tag { background: rgba(255,255,255,0.08); color: rgba(240,235,225,0.7); }

.delivery-options { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 20px; }
.delivery-option { padding: 16px 20px; background: rgba(255,255,255,0.06); border: 1px solid rgba(240,235,225,0.08); }
.delivery-option-label { font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.delivery-option-title { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 500; color: var(--stone); margin-bottom: 4px; }
.delivery-option-desc { font-size: 12px; font-weight: 300; color: rgba(240,235,225,0.5); line-height: 1.5; }

.level-pricing { padding: 36px 40px; display: flex; flex-direction: column; justify-content: center; align-items: flex-end; min-width: 200px; border-left: 1px solid rgba(27,51,40,0.08); }
.level-card.featured .level-pricing { border-left: 1px solid rgba(240,235,225,0.1); }

.price-from { font-size: 11px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 4px; }
.level-card.featured .price-from { color: rgba(240,235,225,0.4); }

.price-amount { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 500; color: var(--forest); line-height: 1; margin-bottom: 4px; }
.level-card.featured .price-amount { color: var(--gold-light); }

.price-note { font-size: 12px; color: var(--text-light); text-align: right; }
.level-card.featured .price-note { color: rgba(240,235,225,0.4); }

.note-box { margin-top: 24px; padding: 20px 24px; background: var(--stone); font-size: 14px; color: var(--text-mid); line-height: 1.65; }
.note-box strong { color: var(--forest); }

/* ── CURRICULUM ACCORDION (replaces the old modal) ── */
.curriculum-details { margin-top: 20px; border-top: 1px solid rgba(27,51,40,0.1); padding-top: 16px; }
.curriculum-details summary {
  cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold);
  list-style: none; display: inline-flex; align-items: center; gap: 8px;
}
.curriculum-details summary::-webkit-details-marker { display: none; }
.curriculum-details summary::after { content: '+ view full curriculum'; }
.curriculum-details[open] summary::after { content: '− hide curriculum'; }
.curriculum-list { list-style: none; margin-top: 24px; }
.curriculum-list li { padding: 16px 0; border-bottom: 1px solid var(--stone-dark); display: flex; gap: 18px; }
.curriculum-list li:last-child { border-bottom: none; }
.curriculum-list .mod-num { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--gold); font-weight: 500; min-width: 32px; }
.curriculum-list .mod-title { font-weight: 500; color: var(--text); display: block; margin-bottom: 2px; }
.curriculum-list .mod-desc { font-size: 13px; color: var(--text-mid); font-weight: 300; }

/* ── HOW IT WORKS / EXPLAINER ── */
.how-section { padding: 80px 0; background: var(--stone); margin-top: 2px; }
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 64px; }
.how-steps { display: flex; flex-direction: column; }

.how-step { display: grid; grid-template-columns: 56px 1fr; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--stone-dark); }
.how-step:last-child { border-bottom: none; }

.step-num { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 400; color: var(--stone-dark); line-height: 1; padding-top: 4px; }
.step-content h4 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; color: var(--forest); margin-bottom: 8px; }
.step-content p { font-size: 14px; font-weight: 300; color: var(--text-mid); line-height: 1.65; }

.plain-copy p { font-size: 15px; font-weight: 300; color: var(--text-mid); line-height: 1.75; margin-bottom: 18px; }
.plain-copy p:last-child { margin-bottom: 0; }

.how-callout { padding: 48px; background: var(--forest); }
.how-callout h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 500; font-style: italic; color: var(--stone); line-height: 1.35; margin-bottom: 24px; }
.how-callout p { font-size: 15px; font-weight: 300; color: rgba(240,235,225,0.65); line-height: 1.7; margin-bottom: 16px; }

.measure-list { list-style: none; margin-top: 32px; display: flex; flex-direction: column; }
.measure-list li { padding: 12px 0; border-bottom: 1px solid rgba(240,235,225,0.08); font-size: 14px; color: rgba(240,235,225,0.6); display: flex; gap: 12px; align-items: baseline; }
.measure-list li:last-child { border-bottom: none; }
.measure-list .m-type { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); min-width: 40px; padding-top: 2px; }

/* ── AUDITS ── */
.audits-page { background: var(--white); }
.audits-section { padding: 80px 0; }
.audits-inner { background: var(--stone); padding: 64px; }
.audits-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2px; margin-top: 48px; }

.audit-card { padding: 40px; background: var(--white); }
.audit-card.bundle { background: var(--forest); }

.audit-icon { width: 40px; height: 40px; background: var(--forest); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.audit-card.bundle .audit-icon { background: var(--gold); }
.audit-icon svg { width: 20px; height: 20px; stroke: var(--stone); fill: none; stroke-width: 1.5; }
.audit-card.bundle .audit-icon svg { stroke: var(--forest); }

.audit-title { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 500; color: var(--forest); margin-bottom: 12px; line-height: 1.25; }
.audit-card.bundle .audit-title { color: var(--stone); }

.audit-desc { font-size: 14px; font-weight: 300; color: var(--text-mid); line-height: 1.65; margin-bottom: 24px; }
.audit-card.bundle .audit-desc { color: rgba(240,235,225,0.65); }

.audit-deliverable { font-size: 12px; font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-light); padding-top: 16px; border-top: 1px solid var(--stone-dark); margin-bottom: 16px; }
.audit-card.bundle .audit-deliverable { border-top: 1px solid rgba(240,235,225,0.1); color: rgba(240,235,225,0.4); }

.audit-price { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 500; color: var(--forest); line-height: 1; }
.audit-card.bundle .audit-price { color: var(--gold-light); }

.audit-scope-note { margin-top: 32px; padding: 16px 20px; background: rgba(27,51,40,0.05); font-size: 13px; color: var(--text-mid); line-height: 1.6; border-left: 2px solid var(--gold); }

/* ── SECTORS ── */
.sectors-page { background: var(--forest); min-height: 100vh; }
.sectors-section { padding: 80px 0; }
.sectors-section .section-title { color: var(--stone); }
.sectors-section .section-eyebrow::before { background: var(--gold); }
.sectors-section .section-intro { color: rgba(240,235,225,0.6); }

.sectors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 64px; }
.sector-card { padding: 40px; background: rgba(255,255,255,0.04); transition: background 0.2s; }
.sector-card:hover { background: rgba(255,255,255,0.07); }
.sector-number { font-family: 'Cormorant Garamond', serif; font-size: 13px; font-weight: 400; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 20px; }
.sector-title { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 500; color: var(--stone); margin-bottom: 12px; line-height: 1.25; }
.sector-desc { font-size: 14px; font-weight: 300; color: rgba(240,235,225,0.55); line-height: 1.65; }

/* ── CURRICULUM WEEKS GRID (B2C programme) ── */
.weeks-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 48px; }
.week-card { padding: 28px 24px; background: var(--stone); }
.week-num { font-family: 'Cormorant Garamond', serif; font-size: 13px; font-weight: 400; color: var(--forest-light); letter-spacing: 0.1em; margin-bottom: 12px; }
.week-title { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 500; color: var(--forest); margin-bottom: 8px; line-height: 1.25; }
.week-desc { font-size: 13px; font-weight: 300; color: var(--text-mid); line-height: 1.6; }

/* ── FAQ ACCORDION ── */
.faq-page { background: var(--white); }
.faq-section { padding: 80px 0; }
.faq-list { margin-top: 48px; display: flex; flex-direction: column; max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--stone-dark); padding: 26px 0; }
.faq-item summary { cursor: pointer; font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 500; color: var(--forest); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 24px; font-weight: 400; color: var(--gold); flex-shrink: 0; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { margin-top: 16px; font-size: 15px; font-weight: 300; color: var(--text-mid); line-height: 1.75; max-width: 720px; }

/* ── CTA BANNER ── */
.cta-banner { margin-top: 56px; display: flex; align-items: center; justify-content: space-between; padding: 40px 48px; background: var(--forest); flex-wrap: wrap; gap: 24px; }
.cta-banner-text h4 { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 500; color: var(--stone); margin-bottom: 4px; }
.cta-banner-text p { font-size: 14px; font-weight: 300; color: rgba(240,235,225,0.55); }

/* ── CONTACT ── */
.contact-page { background: var(--forest); min-height: 100vh; }
.contact-section { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-section .section-title { color: var(--stone); }
.contact-section .section-eyebrow::before { background: var(--gold); }
.contact-body { font-size: 17px; font-weight: 300; color: rgba(240,235,225,0.65); line-height: 1.7; margin-top: 24px; margin-bottom: 48px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; flex-direction: column; gap: 4px; }
.contact-item-label { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.contact-item a, .contact-item span { font-size: 18px; font-weight: 300; color: var(--stone); text-decoration: none; transition: color 0.2s; }
.contact-item a:hover { color: var(--gold-light); }

.contact-form-area { background: rgba(255,255,255,0.04); padding: 48px; border: 1px solid rgba(240,235,225,0.06); }
.contact-form-area h4 { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 500; color: var(--stone); margin-bottom: 8px; }
.contact-form-area p { font-size: 14px; font-weight: 300; color: rgba(240,235,225,0.5); margin-bottom: 32px; line-height: 1.6; }

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(240,235,225,0.5); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(240,235,225,0.1); color: var(--stone); padding: 12px 16px; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 300; transition: border-color 0.2s; outline: none; appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--forest); color: var(--stone); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group .field-note { font-size: 11px; color: rgba(240,235,225,0.35); margin-top: 6px; }
.form-submit { width: 100%; background: var(--gold); color: var(--forest); border: none; padding: 16px; font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; margin-top: 8px; }
.form-submit:hover { background: var(--gold-light); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-status { margin-top: 16px; font-size: 13px; line-height: 1.6; display: none; }
.form-status.visible { display: block; }
.form-status.success { color: var(--gold-light); }
.form-status.error { color: #e0a3a3; }
.honeypot-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ── FOOTER ── */
footer { background: #111f18; padding: 32px 48px; }
.footer-main { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; flex-wrap: wrap; gap: 12px; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 500; color: rgba(240,235,225,0.5); letter-spacing: 0.04em; display: inline-flex; align-items: center; gap: 8px; }
.footer-logo span { color: var(--gold); }
.footer-logo-icon { height: 20px; width: auto; display: block; opacity: 0.7; }
.footer-text { font-size: 13px; color: rgba(240,235,225,0.25); }
.footer-registration { font-size: 12px; color: rgba(240,235,225,0.22); padding-top: 12px; border-top: 1px solid rgba(240,235,225,0.06); line-height: 1.6; }
.footer-legal { display: flex; gap: 24px; padding-top: 16px; flex-wrap: wrap; }
.footer-legal a { font-family: 'DM Sans', sans-serif; font-size: 12px; color: rgba(240,235,225,0.3); cursor: pointer; padding: 0; letter-spacing: 0.04em; transition: color 0.2s; text-decoration: none; }
.footer-legal a:hover { color: rgba(240,235,225,0.6); }

/* ── LEGAL PAGES ── */
.legal-page { background: var(--white); }
.legal-section { padding: 80px 0 100px; }
.legal-header { background: var(--forest); padding: 64px 48px; margin-bottom: 0; }
.legal-header .container { padding: 0; max-width: 800px; }
.legal-eyebrow { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.legal-title { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 500; color: var(--stone); line-height: 1.1; }
.legal-date { font-size: 13px; color: rgba(240,235,225,0.4); margin-top: 8px; }
.legal-body { max-width: 800px; margin: 0 auto; padding: 0 48px; font-size: 14px; font-weight: 300; color: var(--text-mid); line-height: 1.8; }
.legal-body h2 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; color: var(--forest); margin: 40px 0 14px; padding-bottom: 10px; border-bottom: 1px solid var(--stone-dark); }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p { margin-bottom: 14px; }
.legal-body p:last-child { margin-bottom: 0; }
.legal-body ul { margin: 0 0 14px 0; padding-left: 20px; }
.legal-body ul li { margin-bottom: 8px; }
.legal-body strong { font-weight: 500; color: var(--text); }
.legal-table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: 13px; }
.legal-table th { background: var(--forest); color: var(--stone); font-weight: 500; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; padding: 10px 14px; text-align: left; }
.legal-table td { padding: 10px 14px; border-bottom: 1px solid var(--stone-dark); color: var(--text-mid); vertical-align: top; }
.legal-table tr:last-child td { border-bottom: none; }
.legal-table tr:nth-child(even) td { background: rgba(240,235,225,0.35); }
.legal-notice { background: rgba(184,150,78,0.08); border-left: 3px solid var(--gold); padding: 16px 20px; margin: 20px 0; font-size: 13px; color: var(--text-mid); line-height: 1.65; }
.todo-flag { background: #fdf1e0; border-left: 3px solid #c9852f; padding: 12px 16px; margin: 16px 0; font-size: 12px; color: #6b4a1a; }

/* ── RESPONSIVE ── */
@media (max-width: 1080px) {
  nav { padding: 0 24px; }
  .nav-links { gap: 2px; }
  .nav-links a { font-size: 11px; padding: 8px 10px; letter-spacing: 0.06em; }
  .mode-tab { font-size: 10px; padding: 8px 12px; }
  .mode-tabs { margin-right: 10px; }
}

@media (max-width: 860px) {
  .nav-right { display: none !important; }
  .hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; }
  .hero::before { display: none; }
  .hero-content { padding: 120px 32px 60px; }
  .hero-right { display: none; }
  .container { padding: 0 24px; }
  .positioning-grid, .how-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .offer-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .offer-note { text-align: left; }
  .level-card { grid-template-columns: 1fr; }
  .level-pricing { align-items: flex-start; border-left: none; border-top: 1px solid rgba(27,51,40,0.08); }
  .level-card.featured .level-pricing { border-top: 1px solid rgba(240,235,225,0.1); }
  .delivery-options { grid-template-columns: 1fr; }
  .audits-grid, .sectors-grid { grid-template-columns: 1fr; }
  .audits-inner { padding: 40px 24px; }
  .weeks-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
  footer { padding: 24px; }
  .footer-main { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal { justify-content: center; flex-wrap: wrap; gap: 16px; }
  .legal-header { padding: 40px 24px; }
  .legal-body { padding: 0 24px; }
}

@media (max-width: 600px) {
  .weeks-grid { grid-template-columns: 1fr; }
}
