/* Digital Dad Defence — Global Design System */

/* ── Hello Elementor neutralisers ────────────────────
   Hello Elementor's reset/theme/header-footer CSS loads
   after ours and sets conflicting rules. Override them here.
   ───────────────────────────────────────────────────── */
body {
  background: var(--cream) !important;
  font-family: var(--body) !important;
  color: var(--ink) !important;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--display) !important;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
/* Hello Elementor constrains site-header/footer to 1140px max-width — remove that */
.site-header:not(.dynamic-header),
.site-footer:not(.dynamic-footer) {
  max-width: 100% !important;
  padding-inline-start: 0 !important;
  padding-inline-end: 0 !important;
  margin-inline: 0 !important;
}
/* Hello Elementor resets header to position:relative — we need sticky */
.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 60 !important;
  background: var(--cream) !important;
  border-bottom: 1.5px solid var(--navy) !important;
  padding-block: 0 !important;
  width: 100% !important;
}
/* Hello Elementor reset makes img { height:auto; max-width:100% } —
   override for nav/footer logo sizing */
.nav-brand img {
  width: 40px !important;
  height: 40px !important;
  max-width: 40px !important;
  border-radius: 10px;
  border: 1.5px solid var(--navy);
  flex-shrink: 0;
}
.footer-brand-name img {
  width: 48px !important;
  height: 48px !important;
  max-width: 48px !important;
}
/* Hello Elementor header-footer.css adds display:flex to .site-header and
   flex-wrap:wrap which could break our nav-row layout */
.site-header .container { display: block; }
a { color: inherit; text-decoration: none !important; }
a:hover { color: inherit; }

/* ── Shared utilities ─────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

.eyebrow {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--shield-900);
  display: inline-flex; gap: 8px; align-items: center;
}
.eyebrow::before { content: ""; width: 24px; height: 1.5px; background: var(--shield-900); }

.chip {
  display: inline-flex; align-items: center;
  padding: 4px 10px; border: 1.5px solid var(--navy); border-radius: 999px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--cream-100); color: var(--navy);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 700; font-size: 16px;
  padding: 16px 24px; border-radius: 999px;
  border: 2px solid var(--navy); background: var(--navy); color: var(--cream);
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 4px 4px 0 var(--navy); text-decoration: none; white-space: nowrap;
}
.btn:hover  { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--navy); color: var(--cream); }
.btn:active { transform: translate(2px, 2px);  box-shadow: 0 0 0 var(--navy); }
.btn--orange { background: var(--orange); border-color: var(--navy); color: var(--navy); }
.btn--orange:hover { color: var(--navy); }
.btn--cream  { background: var(--cream); border-color: var(--navy); color: var(--navy); }
.btn--cream:hover  { color: var(--navy); }
.btn--ghost  { background: transparent; color: var(--navy); }

/* Cards */
.card {
  background: var(--cream-100); border: 1.5px solid var(--navy);
  border-radius: var(--r-lg); padding: 24px; box-shadow: 4px 4px 0 var(--navy);
}

/* ── Ticker ───────────────────────────────────────── */
.ticker {
  background: var(--navy); color: var(--cream);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 8px 0; overflow: hidden;
}
.ticker .scroll {
  display: flex; gap: 48px; white-space: nowrap;
  animation: ddd-scroll 38s linear infinite;
}
.ticker .dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); margin: 0 14px; vertical-align: middle;
}
@keyframes ddd-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Nav ──────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--cream); border-bottom: 1.5px solid var(--navy);
}
.nav-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; gap: 24px;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--display); font-weight: 800; font-size: 18px; color: var(--navy);
  text-decoration: none; flex-shrink: 0;
}
.nav-brand img { width: 40px; height: 40px; border-radius: 10px; border: 1.5px solid var(--navy); }
.nav-brand .parent-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--navy-700); font-weight: 500; display: block;
}
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  font-family: var(--display); font-weight: 600; font-size: 14px;
  padding: 8px 14px; border-radius: 999px; color: var(--navy);
  transition: background .15s, color .15s;
}
.nav-links a:hover, .nav-links a.active { background: var(--navy) !important; color: var(--cream) !important; }
.nav-cta { display: flex; gap: 8px; align-items: center; }

/* ── Hero ─────────────────────────────────────────── */
.hero {
  position: relative; padding: 80px 0 60px;
  border-bottom: 1.5px solid var(--navy);
  background:
    radial-gradient(circle at 88% 30%, #F39A3D22 0%, transparent 40%),
    radial-gradient(circle at 10% 80%, #89A77B22 0%, transparent 35%),
    var(--cream);
}
.hero .container { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(48px, 6.5vw, 92px); font-weight: 900; line-height: 0.95; }
.hero h1 .hl { position: relative; display: inline-block; }
.hero h1 .hl::after {
  content: ""; position: absolute; left: -4px; right: -4px; bottom: 6px;
  height: 14px; background: var(--orange); z-index: -1; border-radius: 4px;
}
.hero .sub { margin-top: 24px; font-size: 19px; max-width: 540px; color: var(--navy-700); }
.hero .ctas { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero .stats {
  margin-top: 40px; display: flex; gap: 32px;
  padding-top: 24px; border-top: 1.5px dashed var(--navy);
}
.hero .stat { display: flex; flex-direction: column; }
.hero .stat .n { font-family: var(--display); font-weight: 800; font-size: 32px; color: var(--navy); }
.hero .stat .l {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--navy-700); margin-top: 4px;
}

.hero-art { position: relative; aspect-ratio: 1; width: 100%; max-width: 560px; }
.hero-shield {
  position: absolute; inset: 0; background: var(--shield);
  border: 2.5px solid var(--navy);
  border-radius: 32px 32px 50% 50% / 32px 32px 30% 30%;
  box-shadow: 10px 10px 0 var(--navy);
}
.hero-shield::before {
  content: ""; position: absolute; inset: 14px;
  border: 1.5px dashed var(--cream);
  border-radius: 24px 24px 50% 50% / 24px 24px 28% 28%;
}
.family-art { position: absolute; inset: 8%; display: flex; align-items: flex-end; justify-content: center; }
.family-svg { width: 75%; height: auto; }
.dots { position: absolute; top: -20px; right: 20%; display: flex; flex-direction: column; gap: 6px; align-items: center; }
.dots div { border-radius: 50%; background: var(--mint); border: 1.5px solid var(--navy); }
.dots .d1 { width: 18px; height: 18px; }
.dots .d2 { width: 10px; height: 10px; }

.hero-art .float {
  position: absolute; background: var(--cream-100); border: 1.5px solid var(--navy);
  border-radius: 14px; padding: 10px 14px; display: flex; gap: 10px; align-items: center;
  box-shadow: 4px 4px 0 var(--navy); font-family: var(--display); font-weight: 600; font-size: 13px;
}
.hero-art .float .ic { width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.hero-art .f1 { top: 8%; left: -8%;   animation: bob 4s ease-in-out infinite; }
.hero-art .f2 { top: 32%; right: -12%; animation: bob 5s ease-in-out infinite 0.6s; }
.hero-art .f3 { bottom: 18%; left: -14%; animation: bob 4.5s ease-in-out infinite 1.2s; }
.hero-art .f4 { bottom: 4%; right: 6%;  animation: bob 5.2s ease-in-out infinite 0.3s; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ── Trust bar ────────────────────────────────────── */
.trust { padding: 50px 0; border-bottom: 1.5px solid var(--navy); background: var(--cream-100); }
.trust .container { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.trust .label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy-700); }
.trust .logos { display: flex; gap: 32px; flex-wrap: wrap; align-items: center; font-family: var(--display); font-weight: 700; color: var(--navy); font-size: 18px; }
.trust .logos span { display: inline-flex; align-items: center; gap: 8px; opacity: 0.7; }
.trust .logos .pill { padding: 4px 12px; border: 1.5px solid var(--navy); border-radius: 999px; font-size: 13px; }

/* ── Topic grid ───────────────────────────────────── */
.topics { padding: 100px 0; border-bottom: 1.5px solid var(--navy); }
.topic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.topic-card {
  background: var(--cream-100); border: 1.5px solid var(--navy); border-radius: var(--r-lg);
  padding: 24px; box-shadow: 4px 4px 0 var(--navy); display: flex; flex-direction: column;
  gap: 16px; min-height: 240px; transition: transform .2s ease, box-shadow .2s ease;
  text-decoration: none;
}
.topic-card:hover { transform: translate(-3px, -3px); box-shadow: 7px 7px 0 var(--navy); }
.topic-card .ic {
  width: 56px; height: 56px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center; border: 1.5px solid var(--navy);
}
.topic-card h4 { font-size: 22px; }
.topic-card p { font-size: 14px; color: var(--navy-700); }
.topic-card .more {
  font-family: var(--display); font-weight: 600; font-size: 13px; color: var(--shield-900);
  margin-top: auto; display: inline-flex; align-items: center; gap: 6px;
}

/* ── Movement ─────────────────────────────────────── */
.movement {
  padding: 120px 0; background: var(--navy); color: var(--cream);
  border-bottom: 1.5px solid var(--navy); position: relative; overflow: hidden;
}
.movement::before {
  content: ""; position: absolute; right: -10%; top: -30%; width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, #F39A3D33 0%, transparent 60%);
}
.movement .container { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.movement h2 { color: var(--cream) !important; font-size: clamp(38px, 5vw, 68px); line-height: 1.02; }
.movement h2 em { font-style: italic; color: var(--orange); font-weight: 800; }
.movement .eyebrow { color: var(--orange); }
.movement .eyebrow::before { background: var(--orange); }
.movement p { color: #cfd8e3; font-size: 17px; margin-top: 24px; }
.movement .list { margin-top: 28px; display: grid; gap: 10px; }
.movement .list .item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 18px; border: 1.5px solid #ffffff22; border-radius: var(--r-md); background: #ffffff08;
}
.movement .list .item .n { font-family: var(--display); font-weight: 700; color: var(--shield); font-size: 14px; min-width: 24px; }
.movement .list .item .t { color: var(--cream); font-size: 15px; }
.movement .quote {
  background: var(--cream); color: var(--navy);
  border: 2px solid var(--cream); border-radius: var(--r-lg);
  padding: 40px; position: relative; box-shadow: 10px 10px 0 var(--orange);
}
.movement .quote .mark {
  font-family: var(--display); font-weight: 900; font-size: 120px; line-height: 0.4;
  color: var(--shield); position: absolute; top: 30px; left: 24px;
}
.movement .quote blockquote {
  font-family: var(--display); font-weight: 700; font-size: 26px; line-height: 1.2;
  margin: 32px 0 24px; color: var(--navy);
}
.movement .quote .who { display: flex; gap: 12px; align-items: center; }
.movement .quote .av { width: 44px; height: 44px; border-radius: 50%; background: var(--shield); border: 1.5px solid var(--navy); }
.movement .quote .name { font-family: var(--display); font-weight: 700; color: var(--navy); font-size: 14px; }
.movement .quote .role { font-family: var(--mono); font-size: 11px; color: var(--navy-300); text-transform: uppercase; letter-spacing: 0.1em; }

/* ── Featured content ─────────────────────────────── */
.featured { padding: 100px 0; border-bottom: 1.5px solid var(--navy); }
.feat-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 20px; }
.feat-card {
  background: var(--cream-100); border: 1.5px solid var(--navy); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: 4px 4px 0 var(--navy); display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease; text-decoration: none;
}
.feat-card:hover { transform: translate(-3px, -3px); box-shadow: 7px 7px 0 var(--navy); }
.feat-card .thumb { aspect-ratio: 16/9; position: relative; border-bottom: 1.5px solid var(--navy); }
.feat-card.big .thumb { aspect-ratio: 16/10; }
.feat-card .body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.feat-card .body h4 { font-size: 18px; color: var(--navy); }
.feat-card.big .body h4 { font-size: 26px; }
.feat-card .body .meta {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy-700); display: flex; gap: 14px;
}
.feat-card .tag {
  position: absolute; top: 14px; left: 14px; padding: 4px 10px;
  background: var(--cream); border: 1.5px solid var(--navy); border-radius: 999px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
}
.feat-card .play {
  position: absolute; bottom: 14px; right: 14px; width: 48px; height: 48px;
  border-radius: 50%; background: var(--orange); border: 1.5px solid var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.feat-cta { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 24px; }

/* ── Founder ──────────────────────────────────────── */
.founder {
  padding: 120px 0; border-bottom: 1.5px solid var(--navy);
  background: var(--cream-100); position: relative; overflow: hidden;
}
.founder .container { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: center; }
.founder-portrait {
  position: relative; aspect-ratio: 4/5; max-width: 440px;
  background: linear-gradient(180deg, var(--shield) 0%, var(--shield-700) 100%);
  border: 2px solid var(--navy); border-radius: var(--r-xl);
  box-shadow: 10px 10px 0 var(--navy); overflow: hidden;
}
.founder-portrait .badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--cream); border: 1.5px solid var(--navy);
  padding: 12px 16px; border-radius: 14px;
  font-family: var(--display); font-weight: 700; color: var(--navy);
  box-shadow: 4px 4px 0 var(--navy);
}
.founder-portrait .badge small {
  display: block; font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy-700); font-weight: 500;
}
.founder-stats { margin-top: 32px; display: flex; gap: 24px; flex-wrap: wrap; }
.founder-stat { display: flex; flex-direction: column; }
.founder-stat .n { font-family: var(--display); font-weight: 800; font-size: 36px; color: var(--navy); }
.founder-stat .l { font-family: var(--mono); font-size: 11px; text-transform: uppercase; color: var(--navy-700); letter-spacing: 0.12em; }

/* ── Services ─────────────────────────────────────── */
.services { padding: 100px 0; border-bottom: 1.5px solid var(--navy); }
.service-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.service {
  background: var(--cream-100); border: 1.5px solid var(--navy); border-radius: var(--r-md);
  padding: 20px; display: flex; flex-direction: column; gap: 14px; min-height: 180px;
}
.service .soon {
  align-self: flex-start; padding: 3px 10px; border: 1.5px solid var(--navy); border-radius: 999px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--orange); color: var(--navy);
}
.service h4 { font-size: 18px; line-height: 1.15; }
.service p  { font-size: 13px; color: var(--navy-700); }

/* ── Email CTA ────────────────────────────────────── */
.email-cta {
  padding: 120px 0; border-bottom: 1.5px solid var(--navy);
  background: var(--orange); position: relative; overflow: hidden;
}
.email-cta::before {
  content: ""; position: absolute; left: -100px; bottom: -100px;
  width: 300px; height: 300px; border-radius: 50%; background: #0E223811;
}
.email-cta .container {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px;
  align-items: center; position: relative; z-index: 2;
}
.email-cta h2 { color: var(--navy); font-size: clamp(36px, 4.5vw, 60px); }
.email-cta .eyebrow { color: var(--navy); }
.email-cta .eyebrow::before { background: var(--navy); }
.email-cta .sub { color: var(--navy); font-size: 18px; max-width: 520px; margin-top: 20px; }
.email-cta .form {
  margin-top: 32px; display: flex; gap: 8px; max-width: 520px;
  background: var(--cream); border: 2px solid var(--navy); border-radius: 999px;
  padding: 6px; box-shadow: 4px 4px 0 var(--navy);
}
.email-cta .form input {
  border: none; background: transparent; flex: 1;
  padding: 14px 20px; font-family: var(--body); font-size: 15px; outline: none;
}
.email-cta .privacy {
  margin-top: 16px; font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy-700);
}
.email-cta .pdf {
  position: relative; aspect-ratio: 3/4; max-width: 340px; margin-left: auto;
  background: var(--cream); border: 2px solid var(--navy); border-radius: 14px;
  box-shadow: 10px 10px 0 var(--navy); padding: 24px;
  transform: rotate(3deg); display: flex; flex-direction: column; gap: 12px;
}
.email-cta .pdf .strip { height: 6px; background: var(--shield); border-radius: 3px; width: 60%; }
.email-cta .pdf .strip.s2 { width: 80%; }
.email-cta .pdf .strip.s3 { width: 40%; }
.email-cta .pdf .chips { display: flex; gap: 8px; margin-top: 14px; }
.email-cta .pdf .pdf-logo { width: 40px; height: 40px; border-radius: 8px; border: 1.5px solid var(--navy); }
.email-cta .pdf .pdf-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--navy-700);
}
.email-cta .pdf .pdf-title {
  font-family: var(--display); font-weight: 900; font-size: 24px;
  color: var(--navy); line-height: 1.05; margin-top: 14px;
}
.email-cta .pdf .pdf-strips { margin-top: auto; display: flex; flex-direction: column; gap: 8px; }

/* ── Footer ───────────────────────────────────────── */
.site-footer { padding: 80px 0 40px; background: var(--navy); color: var(--cream); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand-name {
  display: flex; gap: 12px; align-items: center;
  font-family: var(--display); font-weight: 800; font-size: 20px; color: var(--cream);
}
.footer-brand-name img { width: 48px; height: 48px; border-radius: 10px; border: 1.5px solid var(--cream); }
.footer-tag { margin-top: 20px; color: #cfd8e3; font-size: 14px; line-height: 1.6; max-width: 340px; }
.footer-socials { margin-top: 24px; display: flex; gap: 10px; }
.footer-socials a {
  width: 40px; height: 40px; border: 1.5px solid var(--cream); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 700; font-size: 14px; color: var(--cream);
  transition: background .15s, color .15s, border-color .15s;
}
.footer-socials a:hover { background: var(--orange); color: var(--navy); border-color: var(--orange); }
.site-footer h5 {
  font-family: var(--display); color: var(--cream) !important; font-size: 14px;
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-links a { color: #cfd8e3; font-size: 14px; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  margin-top: 60px; padding-top: 24px; border-top: 1px solid #ffffff22;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: #8a99b0;
}

/* ── Section headers (shared pattern) ─────────────── */
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px; flex-wrap: wrap; gap: 24px;
}

/* ── About page ───────────────────────────────────── */
.ab-hero {
  padding: 100px 0 80px; border-bottom: 1.5px solid var(--navy);
  position: relative; overflow: hidden;
}
.ab-hero::before {
  content: ""; position: absolute; right: -15%; top: -20%; width: 80%; aspect-ratio: 1;
  background: radial-gradient(circle, #89A77B22 0%, transparent 60%);
}
.ab-hero .container { position: relative; max-width: 920px; }
.ab-hero h1 { font-size: clamp(48px, 7vw, 110px); font-weight: 900; line-height: 0.95; margin-top: 20px; }
.ab-hero h1 em { font-style: normal; color: var(--shield-900); }
.ab-hero h1 .u { position: relative; display: inline-block; }
.ab-hero h1 .u::after {
  content: ""; position: absolute; left: -4px; right: -4px; bottom: 8px;
  height: 16px; background: var(--orange); z-index: -1; border-radius: 4px;
}
.ab-hero .sub { margin-top: 32px; font-size: 22px; max-width: 680px; color: var(--navy-700); line-height: 1.4; }

.mission { padding: 100px 0; border-bottom: 1.5px solid var(--navy); background: var(--cream-100); }
.mission .container { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.mission .card-big {
  background: var(--navy); color: var(--cream); padding: 40px;
  border-radius: var(--r-xl); box-shadow: 10px 10px 0 var(--shield);
  position: sticky; top: 120px;
}
.mission .card-big .eyebrow { color: var(--orange); }
.mission .card-big .eyebrow::before { background: var(--orange); }
.mission .card-big h3 { color: var(--cream) !important; margin-top: 14px; font-size: 32px; }
.mission .card-big p  { color: #cfd8e3; margin-top: 16px; font-size: 16px; }
.mission .card-big .chip { background: transparent; color: var(--cream); border-color: var(--cream); width: fit-content; }
.mission .pillars { display: grid; gap: 20px; }
.pillar {
  background: var(--cream); border: 1.5px solid var(--navy); border-radius: var(--r-lg);
  padding: 28px; box-shadow: 4px 4px 0 var(--navy);
  display: grid; grid-template-columns: 60px 1fr; gap: 20px; align-items: start;
}
.pillar .n { font-family: var(--display); font-weight: 900; font-size: 42px; color: var(--orange); line-height: 0.8; }
.pillar h4 { font-size: 22px; }
.pillar p  { margin-top: 8px; font-size: 15px; }

.timeline { padding: 100px 0; border-bottom: 1.5px solid var(--navy); }
.tl {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  margin-top: 48px; border-top: 2px solid var(--navy); padding-top: 24px;
}
.tl-item { padding: 0 20px; border-right: 1px dashed var(--line-strong); position: relative; }
.tl-item:last-child { border-right: none; }
.tl-item .yr { font-family: var(--display); font-weight: 900; font-size: 48px; color: var(--shield-900); line-height: 1; }
.tl-item h4 { margin-top: 12px; font-size: 18px; }
.tl-item p  { margin-top: 8px; font-size: 14px; }
.tl-item::before {
  content: ""; position: absolute; top: -30px; left: 0;
  width: 14px; height: 14px; background: var(--orange); border: 1.5px solid var(--navy); border-radius: 50%;
}

.story {
  padding: 120px 0; border-bottom: 1.5px solid var(--navy);
  background: var(--cream-100); position: relative;
}
.story .container { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.portrait {
  position: relative; aspect-ratio: 3/4; max-width: 440px;
  background: var(--shield); border: 2px solid var(--navy);
  border-radius: var(--r-xl); box-shadow: 10px 10px 0 var(--navy); overflow: hidden;
}
.portrait .tag {
  position: absolute; top: 20px; right: 20px;
  background: var(--cream); border: 1.5px solid var(--navy); padding: 8px 12px;
  border-radius: 8px; font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; box-shadow: 3px 3px 0 var(--navy);
}
.portrait .badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--cream); border: 1.5px solid var(--navy);
  padding: 12px 16px; border-radius: 14px;
  font-family: var(--display); font-weight: 700; box-shadow: 4px 4px 0 var(--navy);
}
.portrait .badge small {
  display: block; font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy-700); font-weight: 500;
}
.story-text p { font-size: 18px; line-height: 1.6; color: var(--navy-700); margin-top: 18px; }
.story-text p:first-of-type::first-letter {
  font-family: var(--display); font-weight: 900; font-size: 72px; line-height: 0.85;
  float: left; padding: 8px 12px 0 0; color: var(--orange);
}
.story-text .pull-quote {
  margin-top: 32px; padding: 24px; border-left: 4px solid var(--orange);
  background: var(--cream); border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: var(--display); font-weight: 700; font-size: 22px; color: var(--navy); line-height: 1.3;
}

.challenges {
  padding: 120px 0; background: var(--navy); color: var(--cream);
  border-bottom: 1.5px solid var(--navy); position: relative; overflow: hidden;
}
.challenges::before {
  content: ""; position: absolute; left: -10%; bottom: -20%; width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, #F39A3D22 0%, transparent 60%);
}
.challenges .container { position: relative; }
.challenges h2 { color: var(--cream) !important; max-width: 760px; }
.challenges h2 em { color: var(--orange); font-style: italic; }
.challenges .eyebrow { color: var(--orange); }
.challenges .eyebrow::before { background: var(--orange); }
.ch-grid { margin-top: 60px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ch-card {
  background: #16314f; border: 1.5px solid #3a5274;
  border-radius: var(--r-lg); padding: 28px; display: flex; flex-direction: column; gap: 14px;
}
.ch-card .stat { font-family: var(--display); font-weight: 900; font-size: 56px; color: var(--orange); line-height: 0.9; }
.ch-card h4 { color: var(--cream) !important; font-size: 18px; }
.ch-card p   { color: #cfd8e3; font-size: 14px; line-height: 1.5; }
.ch-card .src { margin-top: auto; font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(244, 235, 221, 0.6); }

.values { padding: 120px 0; border-bottom: 1.5px solid var(--navy); }
.val-grid { margin-top: 60px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.val { padding: 32px; border: 1.5px solid var(--navy); border-radius: var(--r-lg); background: var(--cream-100); box-shadow: 4px 4px 0 var(--navy); }
.val .ic { width: 64px; height: 64px; border-radius: 18px; border: 1.5px solid var(--navy); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.val h4 { font-size: 22px; }
.val p  { margin-top: 10px; }

.cta-band {
  padding: 120px 0; border-bottom: 1.5px solid var(--navy);
  background: var(--orange); text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 120%; aspect-ratio: 1; border: 1.5px dashed #0E223822; border-radius: 50%;
}
.cta-band::after {
  content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 80%; aspect-ratio: 1; border: 1.5px dashed #0E223822; border-radius: 50%;
}
.cta-band .container { position: relative; }
.cta-band .eyebrow { color: var(--navy); }
.cta-band .eyebrow::before { background: var(--navy); }
.cta-band h2 { font-size: clamp(40px, 6vw, 80px); color: var(--navy); max-width: 900px; margin: 0 auto; }
.cta-band .ctas { margin-top: 40px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Contact page ─────────────────────────────────── */
.contact-hero {
  padding: 80px 0; border-bottom: 1.5px solid var(--navy);
  background: var(--cream); position: relative; overflow: hidden;
}
.contact-hero::before {
  content: ""; position: absolute; right: -15%; top: -20%; width: 80%; aspect-ratio: 1;
  background: radial-gradient(circle, #3D8BFF22 0%, transparent 60%);
}
.contact-hero .container { position: relative; max-width: 780px; }
.contact-hero h1 { margin-top: 20px; font-size: clamp(42px, 6vw, 80px); }

.contact-body { padding: 80px 0; border-bottom: 1.5px solid var(--navy); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-channels { display: grid; gap: 16px; }
.contact-channel {
  background: var(--cream-100); border: 1.5px solid var(--navy); border-radius: var(--r-lg);
  padding: 24px; box-shadow: 4px 4px 0 var(--navy); display: flex; gap: 16px; align-items: flex-start;
}
.contact-channel .ic {
  width: 48px; height: 48px; border-radius: var(--r-md); flex-shrink: 0;
  border: 1.5px solid var(--navy); display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.contact-channel h4 { font-size: 16px; margin-bottom: 4px; }
.contact-channel p  { font-size: 14px; color: var(--navy-700); }
.contact-channel a  { font-family: var(--display); font-weight: 700; font-size: 15px; color: var(--shield-900); margin-top: 8px; display: inline-block; }

/* ── Coming soon ──────────────────────────────────── */
.coming-soon {
  min-height: 70vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 80px 0; border-bottom: 1.5px solid var(--navy);
}
.coming-soon .pill-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border: 1.5px solid var(--navy); border-radius: 999px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--orange); color: var(--navy); margin-bottom: 24px;
}
.coming-soon h1 { font-size: clamp(48px, 7vw, 96px); line-height: 0.95; }
.coming-soon .sub { margin-top: 24px; font-size: 20px; max-width: 560px; margin-left: auto; margin-right: auto; color: var(--navy-700); }
.coming-soon .actions { margin-top: 40px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Fluent Forms overrides ───────────────────────── */
.fluentform .ff-btn-submit {
  background: var(--navy) !important; color: var(--cream) !important;
  font-family: var(--display) !important; font-weight: 700 !important;
  border-radius: 999px !important; border: 2px solid var(--navy) !important;
  padding: 16px 24px !important; box-shadow: 4px 4px 0 var(--navy-300) !important;
  font-size: 16px !important;
}
.fluentform input[type="text"],
.fluentform input[type="email"],
.fluentform textarea,
.fluentform select {
  border: 1.5px solid var(--navy) !important;
  border-radius: var(--r-sm) !important;
  font-family: var(--body) !important;
  background: var(--cream-100) !important;
  padding: 14px 16px !important;
}
.fluentform input:focus,
.fluentform textarea:focus,
.fluentform select:focus {
  border-color: var(--blue) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(61, 139, 255, 0.15) !important;
}
.fluentform .ff-el-group { margin-bottom: 18px !important; }
.fluentform .ff-el-form-control { width: 100% !important; }

/* Email CTA — horizontal pill layout for Fluent Forms
   FF wraps everything in: .frm-fluent-form > fieldset > [hidden inputs] + .ff-el-group (email) + .ff-el-group.ff_submit_btn_wrapper
   The pill border lives on .frm-fluent-form; flex row lives on the fieldset. */
.email-cta .fluentform .frm-fluent-form {
  background: var(--cream); border: 2px solid var(--navy); border-radius: 999px;
  padding: 6px; box-shadow: 4px 4px 0 var(--navy); max-width: 520px;
}
.email-cta .fluentform .frm-fluent-form fieldset {
  display: flex; align-items: stretch; flex-wrap: nowrap; gap: 0;
  border: none; margin: 0; padding: 0;
}
.email-cta .fluentform .ff-el-group { margin-bottom: 0 !important; }
/* Email input group — takes remaining space */
.email-cta .fluentform .ff-el-group.ff-el-form-top { flex: 1 1 auto; min-width: 0; }
/* Submit button group — shrinks to fit content */
.email-cta .fluentform .ff-el-group.ff_submit_btn_wrapper { flex: 0 0 auto; }
.email-cta .fluentform label,
.email-cta .fluentform .ff-el-form-check-label { display: none !important; }
.email-cta .fluentform .ff-el-input--content { height: 100%; display: flex; align-items: center; }
.email-cta .fluentform input[type="email"],
.email-cta .fluentform input[type="text"] {
  border: none !important; background: transparent !important;
  border-radius: 0 !important; padding: 14px 20px !important;
  box-shadow: none !important; outline: none !important;
  width: 100% !important; height: 54px;
}
.email-cta .fluentform input:focus { box-shadow: none !important; border-color: transparent !important; }
.email-cta .fluentform .ff-btn-submit {
  border-radius: 999px !important; padding: 14px 24px !important;
  white-space: nowrap; box-shadow: none !important;
  min-width: 170px; cursor: pointer; height: 54px;
  display: inline-flex; align-items: center; justify-content: center;
}
/* Fluent Forms "Custom Button Style" (ff_btn_style) strips button text from the HTML.
   Inject it back via ::after so the pill form has a visible CTA label. */
.email-cta .fluentform .ff-btn-submit.ff_btn_style::after {
  content: "Get My Free Guide \2192";
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  color: var(--cream);
}
/* Contact form — same ff_btn_style empty-button fix */
.form-section .fluentform .ff-btn-submit.ff_btn_style::after {
  content: "Send Message \2192";
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  color: var(--cream);
}
/* Newsletter CTA on courses / resources pages */
.nl-cta .fluentform .ff-btn-submit.ff_btn_style::after {
  content: "Subscribe \2192";
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  color: var(--cream);
}
.email-cta .fluentform .ff-message-success {
  max-width: 520px; background: var(--navy); color: var(--cream) !important;
  border-radius: var(--r-md); padding: 16px 20px; margin-top: 12px;
  font-family: var(--display) !important; font-weight: 600 !important;
}
.email-cta .fluentform .ff-errors { max-width: 520px; }

/* ── Elementor content (the_content() overflow) ──── */
.elementor-section { border-bottom: 1.5px solid var(--navy); }
.elementor-section:last-of-type { border-bottom: none; }
/* Hide Elementor duplicate email CTA section (ddd_s08) — the PHP template
   .email-cta section above it already handles this; keeping both = double form. */
.elementor-element-ddd_s08 { display: none !important; }
/* Contact page — hide duplicate Elementor form section rendered by the_content() */
.elementor-element-ddd_ct_w06 { display: none !important; }

/* ── Hello Elementor reset ────────────────────────── */
body.elementor-page { background: var(--cream); }
.elementor-section { width: 100%; }
.wp-site-blocks { padding: 0; }

/* ── Accessibility ────────────────────────────────── */
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px); height: 1px; overflow: hidden;
  position: absolute; width: 1px; word-wrap: normal !important;
}

/* ── Hamburger button ─────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: var(--navy); border: none; border-radius: var(--r-xs);
  cursor: pointer; flex-shrink: 0; padding: 0;
}
.nav-hamburger span {
  display: block; width: 18px; height: 2px;
  background: var(--cream); border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
  transform-origin: center;
}
/* Animate to × when open */
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Full-screen overlay ──────────────────────────── */
.nav-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: var(--navy);
  display: flex; flex-direction: column;
  transform: translateY(-100%);
  transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.nav-overlay.is-open {
  transform: translateY(0);
  pointer-events: all;
}
body.nav-is-open { overflow: hidden; }

.nav-overlay__inner {
  display: flex; flex-direction: column;
  height: 100%; padding: 24px 32px 40px;
  overflow-y: auto;
}
.nav-overlay__close {
  align-self: flex-end;
  background: none; border: none; cursor: pointer;
  font-size: 36px; line-height: 1; color: var(--cream);
  padding: 0; margin-bottom: 32px;
  transition: color .15s;
}
.nav-overlay__close:hover { color: var(--orange); }

.nav-overlay__links {
  display: flex; flex-direction: column; gap: 0;
  flex: 1;
}
.nav-overlay__links a {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(28px, 8vw, 52px);
  color: var(--cream); line-height: 1.1;
  padding: 16px 0;
  border-bottom: 1px solid rgba(244, 235, 221, 0.12);
  transition: color .15s, padding-left .15s;
  text-decoration: none;
}
.nav-overlay__links a:hover,
.nav-overlay__links a.active { color: var(--orange); padding-left: 8px; }

.nav-overlay__cta {
  margin-top: 32px; align-self: flex-start;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1000px) {
  /* Nav */
  .nav-hamburger { display: flex; }
  .nav-links { display: none; }
  .nav-cta .btn--orange { font-size: 13px; padding: 8px 14px; }

  /* Layout: collapse 2-col grids to 1-col */
  .hero .container,
  .movement .container,
  .founder .container,
  .email-cta .container { grid-template-columns: 1fr; }
  .hero-art { max-width: 400px; margin: 0 auto; }
  .topic-grid { grid-template-columns: 1fr 1fr; }
  .feat-grid, .service-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  /* About page */
  .mission .container, .story .container { grid-template-columns: 1fr; }
  .tl { grid-template-columns: 1fr 1fr; }
  .ch-grid { grid-template-columns: 1fr 1fr; }
  .val-grid { grid-template-columns: 1fr 1fr; }
  .mission .card-big { position: relative; top: 0; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  /* Spacing */
  .container { padding: 0 20px; }

  /* Nav brand */
  .nav-brand { gap: 8px; }
  .nav-brand > span { font-size: 15px; }

  /* Hero */
  .hero h1 { font-size: clamp(36px, 10vw, 56px); }
  .hero .sub { font-size: 16px; }
  .hero-art { max-width: 280px; }
  .hero .ctas { flex-direction: column; align-items: flex-start; }
  .hero .stats { flex-wrap: wrap; gap: 20px; }

  /* Trust bar */
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Topics / featured / services */
  .topic-grid, .feat-grid, .service-grid { grid-template-columns: 1fr; }

  /* Movement */
  .movement blockquote { font-size: clamp(18px, 5vw, 24px); }

  /* Email CTA */
  .email-cta .form { flex-direction: column; border-radius: var(--r-lg); }
  .email-cta .form input { padding: 14px 20px; }
  .email-cta .pdf { display: none; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }

  /* About page */
  .ab-hero h1 { font-size: clamp(32px, 9vw, 48px); }
  .pillars-grid { grid-template-columns: 1fr; }
  .tl { grid-template-columns: 1fr; }
  .ch-grid { grid-template-columns: 1fr; }
  .val-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-channels { gap: 16px; }
}

@media (max-width: 400px) {
  .nav-brand .parent-label { display: none; }
  .btn { font-size: 14px; padding: 12px 18px; }
  .nav-overlay__links a { font-size: clamp(24px, 8vw, 36px); }
}

/* ============================================================
   === New Pages — Courses, Community, Contact, Resources ===
   ============================================================ */

/* ── Shared page-hero ─────────────────────────────────────── */
.page-hero {
  padding: 80px 0 80px;
  border-bottom: 1.5px solid var(--navy);
  background: var(--cream);
}
.page-hero .page-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: end;
}
.page-hero h1 em { font-style: italic; color: var(--shield-900); }
.page-hero h1 .u { position: relative; display: inline-block; }
.page-hero h1 .u::after {
  content: "";
  position: absolute; left: -4px; right: -4px; bottom: 8px;
  height: 14px; background: var(--orange); z-index: -1; border-radius: 4px;
}

/* ── Stat cards (courses hero) ────────────────────────────── */
.stat-cards-col { display: grid; gap: 16px; }
.stat-card {
  background: var(--cream-100); border: 1.5px solid var(--navy);
  border-radius: var(--r-lg); padding: 24px;
  box-shadow: 4px 4px 0 var(--navy);
  display: flex; gap: 18px; align-items: center;
}
.stat-n {
  font-family: var(--display); font-weight: 900; font-size: 56px;
  color: var(--orange); line-height: 0.85; flex-shrink: 0;
}
.stat-l {
  font-family: var(--display); font-weight: 600;
  color: var(--navy); font-size: 15px; line-height: 1.2;
}

/* ── Meta chips (shared hero chips row) ─────────────────── */
.meta-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.chip .dot {
  display: inline-block; width: 8px; height: 8px;
  border-radius: 50%; background: var(--shield); flex-shrink: 0;
}

/* ── Track tabs (courses) ────────────────────────────────── */
.tracks {
  padding: 24px 0;
  border-bottom: 1.5px solid var(--navy);
  background: var(--cream-100);
}
.tracks-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.tracks-label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--navy-300); margin-right: 8px;
}
.track-tab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: var(--cream); border: 1.5px solid var(--navy);
  font-family: var(--display); font-weight: 600; font-size: 13px;
  color: var(--navy); cursor: pointer;
  transition: background .15s, color .15s;
}
.track-tab.active { background: var(--navy); color: var(--cream); }
.track-tab .ct {
  font-family: var(--mono); font-size: 10px;
  padding: 1px 6px; border-radius: 999px; background: #0E223811;
}
.track-tab.active .ct { background: #ffffff22; color: var(--cream); }

/* ── Featured course section ─────────────────────────────── */
.feature { padding: 100px 0; border-bottom: 1.5px solid var(--navy); }
.feature-inner {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 60px; align-items: center;
}
.feature-art {
  position: relative; aspect-ratio: 4/5; max-width: 480px; margin-left: auto;
  background: var(--navy); border: 2px solid var(--navy);
  border-radius: var(--r-xl); box-shadow: 10px 10px 0 var(--orange); overflow: hidden;
}
.feature-art::before {
  content: ""; position: absolute; right: -30%; top: -30%;
  width: 80%; aspect-ratio: 1;
  background: radial-gradient(circle, #F39A3D33 0%, transparent 60%);
}
.feature-frame {
  position: absolute; inset: 24px; border: 1.5px dashed var(--cream);
  border-radius: 24px; display: flex; flex-direction: column;
  padding: 24px; gap: 14px;
}
.feature-lbl {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--orange);
}
.feature-frame h3 { color: var(--cream); font-size: 32px; line-height: 1.05; }
.feature-pill {
  align-self: flex-start; padding: 6px 12px;
  border: 1.5px solid var(--cream); border-radius: 999px;
  font-family: var(--mono); font-size: 10px; color: var(--cream);
  letter-spacing: 0.12em; text-transform: uppercase;
}
.feature-modules { margin-top: auto; display: grid; gap: 6px; }
.feature-m {
  display: flex; gap: 10px; align-items: center;
  color: #cfd8e3; font-size: 13px;
}
.feature-num {
  font-family: var(--mono); font-size: 11px;
  color: var(--orange); width: 24px; flex-shrink: 0;
}
.feature-pricing {
  margin-top: 32px; display: flex; gap: 24px; align-items: center;
  padding: 20px 24px; border: 1.5px solid var(--navy);
  border-radius: var(--r-lg); background: var(--cream-100); flex-wrap: wrap;
}
.feature-price {
  font-family: var(--display); font-weight: 900; font-size: 42px;
  color: var(--navy); line-height: 1;
}
.feature-strike {
  font-family: var(--display); font-weight: 700; font-size: 18px;
  color: var(--navy-300); text-decoration: line-through;
}
.feature-next {
  flex: 1; min-width: 160px; font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--shield-700);
}

/* ── Course catalog grid ─────────────────────────────────── */
.catalog { padding: 100px 0; border-bottom: 1.5px solid var(--navy); }
.catalog-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 40px; flex-wrap: wrap; gap: 24px;
}
.course-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.course-card {
  background: var(--cream-100); border: 1.5px solid var(--navy);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 4px 4px 0 var(--navy);
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
  text-decoration: none;
}
.course-card:hover { transform: translate(-3px, -3px); box-shadow: 7px 7px 0 var(--navy); }
.course-card .thumb {
  aspect-ratio: 16/10; position: relative;
  border-bottom: 1.5px solid var(--navy);
  padding: 20px; display: flex; flex-direction: column; justify-content: space-between;
}
.course-card .lvl {
  align-self: flex-start; padding: 4px 10px;
  border: 1.5px solid var(--navy); border-radius: 999px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; background: var(--cream); color: var(--navy);
}
.course-card .thumb h4 { color: var(--cream); font-size: 24px; line-height: 1.05; }
.course-card.t1 .thumb { background: linear-gradient(135deg, var(--shield) 0%, var(--shield-900) 100%); }
.course-card.t2 .thumb { background: linear-gradient(135deg, var(--orange) 0%, var(--orange-700) 100%); }
.course-card.t2 .thumb h4 { color: var(--navy); }
.course-card.t3 .thumb { background: linear-gradient(135deg, var(--blue) 0%, #1f5cb8 100%); }
.course-card.t4 .thumb { background: linear-gradient(135deg, var(--cream-200) 0%, var(--shield) 100%); }
.course-card.t4 .thumb h4 { color: var(--navy); }
.course-card.t5 .thumb { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%); }
.course-card.t6 .thumb { background: linear-gradient(135deg, var(--forest) 0%, var(--shield-900) 100%); }
.course-card .body {
  padding: 20px; flex: 1; display: flex;
  flex-direction: column; gap: 12px;
}
.course-card .body p { font-size: 14px; }
.course-meta {
  display: flex; gap: 14px; font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy-300); flex-wrap: wrap;
}
.course-foot {
  margin-top: auto; display: flex; justify-content: space-between;
  align-items: center; padding-top: 14px;
  border-top: 1px dashed var(--line-strong);
}
.course-price {
  font-family: var(--display); font-weight: 800;
  color: var(--navy); font-size: 18px;
}
.course-free { color: var(--shield-700); }
.course-more {
  font-family: var(--display); font-weight: 600;
  color: var(--shield-700); font-size: 13px;
}

/* ── How it works (4 steps) ──────────────────────────────── */
.how {
  padding: 100px 0; border-bottom: 1.5px solid var(--navy);
  background: var(--cream-100);
}
.steps {
  margin-top: 48px; display: grid;
  grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 2px solid var(--navy); padding-top: 32px;
}
.step {
  padding: 0 24px; border-right: 1px dashed var(--line-strong);
  position: relative;
}
.step:last-child { border-right: none; }
.step::before {
  content: ""; position: absolute; top: -38px; left: 0;
  width: 18px; height: 18px;
  background: var(--orange); border: 1.5px solid var(--navy); border-radius: 50%;
}
.step-n {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--orange-700);
}
.step h4 { font-size: 20px; margin-top: 8px; }
.step p  { margin-top: 8px; font-size: 14px; }

/* ── Schools / PTA panel ─────────────────────────────────── */
.schools { padding: 100px 0; border-bottom: 1.5px solid var(--navy); }
.schools-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.schools-panel {
  background: var(--navy); color: var(--cream);
  border-radius: var(--r-xl); padding: 48px;
  box-shadow: 10px 10px 0 var(--shield);
}
.schools-list {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: grid; gap: 10px;
}
.schools-list li {
  display: flex; gap: 12px; padding: 10px 14px;
  border: 1.5px solid #ffffff22; border-radius: var(--r-md);
  background: #ffffff08; font-size: 14px; color: var(--cream);
}
.schools-list li::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange); margin-top: 7px; flex-shrink: 0;
}
.schools-stats { display: grid; gap: 16px; }

/* ── FAQ accordion (native details/summary) ──────────────── */
.faq { padding: 100px 0; border-bottom: 1.5px solid var(--navy); background: var(--cream-100); }
.faq-list { margin-top: 40px; display: grid; gap: 12px; }
details.q {
  background: var(--cream); border: 1.5px solid var(--navy);
  border-radius: var(--r-lg); box-shadow: 4px 4px 0 var(--navy); overflow: hidden;
}
details.q summary {
  padding: 20px 24px; font-family: var(--display); font-weight: 700;
  font-size: 18px; color: var(--navy); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  list-style: none;
}
details.q summary::-webkit-details-marker { display: none; }
details.q summary::after {
  content: "+"; font-family: var(--display); font-weight: 800;
  font-size: 24px; color: var(--orange); flex-shrink: 0;
}
details.q[open] summary::after { content: "\2013"; }
details.q .a {
  padding: 0 24px 20px; color: var(--navy-700);
  font-size: 15px; line-height: 1.55;
}
details.q .a a { color: var(--shield-700); font-weight: 600; text-decoration: underline; }

/* ── Newsletter CTA band (orange) ────────────────────────── */
.nl-cta {
  padding: 120px 0; border-bottom: 1.5px solid var(--navy);
  background: var(--orange); position: relative; overflow: hidden;
}
.nl-cta::before {
  content: ""; position: absolute; right: -15%; top: -25%;
  width: 50%; aspect-ratio: 1; border: 1.5px dashed #0E223822; border-radius: 50%;
}
.nl-cta::after {
  content: ""; position: absolute; right: -25%; top: -35%;
  width: 80%; aspect-ratio: 1; border: 1.5px dashed #0E223822; border-radius: 50%;
}
.nl-cta .container { position: relative; }
.nl-cta h2 { color: var(--navy); }

/* Pill email form (used inside nl-cta when no Fluent Forms) */
.email-cta-pill {
  display: flex; gap: 8px; max-width: 520px;
  background: var(--cream); border: 2px solid var(--navy);
  border-radius: 999px; padding: 6px;
  box-shadow: 4px 4px 0 var(--navy);
}
.email-cta-pill input {
  border: none; background: transparent; flex: 1;
  padding: 14px 20px; font-family: var(--body); font-size: 15px;
  outline: none; color: var(--navy);
}
.email-cta-pill .btn { white-space: nowrap; }

/* ── Community: preview app mockup ──────────────────────── */
.preview-app {
  position: relative; aspect-ratio: 5/6; max-width: 520px; margin-left: auto;
  background: var(--cream-100); border: 2px solid var(--navy);
  border-radius: 24px; box-shadow: 10px 10px 0 var(--navy);
  padding: 14px; display: flex; flex-direction: column; gap: 12px;
  overflow: hidden;
}
.preview-topbar {
  display: flex; justify-content: space-between; align-items: center; padding: 4px 8px;
}
.preview-dots { display: flex; gap: 6px; }
.preview-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--cream-200); border: 1.5px solid var(--navy);
}
.preview-lbl {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--navy-300);
}
.preview-feed { display: flex; flex-direction: column; gap: 10px; overflow: hidden; }
.preview-post {
  background: var(--cream); border: 1.5px solid var(--navy);
  border-radius: 14px; padding: 14px;
  display: grid; grid-template-columns: 36px 1fr; gap: 12px;
}
.preview-av {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--shield); border: 1.5px solid var(--navy);
}
.preview-av.av2 { background: var(--orange); }
.preview-av.av3 { background: var(--blue); }
.preview-name {
  font-family: var(--display); font-weight: 700;
  font-size: 13px; color: var(--navy);
}
.preview-who {
  font-family: var(--mono); font-size: 9px;
  color: var(--navy-300); letter-spacing: 0.08em; text-transform: uppercase;
}
.preview-body { margin-top: 6px; font-size: 13px; color: var(--navy-700); line-height: 1.45; }
.preview-reactions { margin-top: 10px; display: flex; gap: 8px; }
.preview-reactions span {
  padding: 2px 8px; border: 1.5px solid var(--navy);
  border-radius: 999px; background: var(--cream-100);
  font-family: var(--mono); font-size: 10px; color: var(--navy);
}
.preview-composer {
  margin-top: auto; display: flex; gap: 8px; padding: 8px;
  background: var(--cream); border: 1.5px solid var(--navy); border-radius: 14px;
}
.preview-placeholder { flex: 1; font-size: 12px; color: var(--navy-300); padding: 8px; }
.preview-composer button {
  padding: 6px 12px; background: var(--orange);
  border: 1.5px solid var(--navy); border-radius: 8px;
  font-family: var(--display); font-weight: 700;
  font-size: 12px; color: var(--navy); cursor: pointer;
}

/* ── Badge banner ────────────────────────────────────────── */
.badge-banner {
  padding: 32px 0; border-bottom: 1.5px solid var(--navy);
  background: var(--cream-100);
}
.badge-row {
  display: flex; gap: 48px; flex-wrap: wrap;
  justify-content: space-between; align-items: center;
}
.badge-b { display: flex; gap: 14px; align-items: center; }
.badge-ic {
  width: 54px; height: 54px; border-radius: 14px;
  border: 1.5px solid var(--navy);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 3px 3px 0 var(--navy); flex-shrink: 0;
}
.badge-meta {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--navy-300);
}
.badge-v {
  font-family: var(--display); font-weight: 800;
  font-size: 22px; color: var(--navy);
}

/* ── Features grid (community "what you get") ────────────── */
.features { padding: 120px 0; border-bottom: 1.5px solid var(--navy); }
.feat-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 24px; margin-bottom: 48px;
}
.feat-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px;
}
.f-card {
  border: 1.5px solid var(--navy); border-radius: var(--r-lg);
  padding: 28px; box-shadow: 4px 4px 0 var(--navy);
  display: flex; flex-direction: column; gap: 14px; min-height: 240px;
}
.f-card.lg  { grid-column: span 4; }
.f-card.sm  { grid-column: span 2; }
.f-card.mid { grid-column: span 3; }
.f-card-ic {
  width: 54px; height: 54px; border-radius: 14px;
  border: 1.5px solid var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.f-card h4 { font-size: 22px; }
.f-card p  { font-size: 14px; }
.f-card.cream { background: var(--cream-100); }
.f-card.navy  { background: var(--navy); color: var(--cream); }
.f-card.navy h4, .f-card.navy p { color: var(--cream) !important; }
.f-card.navy p { color: #cfd8e3 !important; }
.f-card.orange { background: var(--orange); }
.f-card.green  { background: var(--shield); }

/* ── Spaces grid ─────────────────────────────────────────── */
.spaces {
  padding: 120px 0; border-bottom: 1.5px solid var(--navy);
  background: var(--cream-100);
}
.space-grid {
  margin-top: 48px; display: grid;
  grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.space {
  background: var(--cream); border: 1.5px solid var(--navy);
  border-radius: var(--r-lg); padding: 24px;
  box-shadow: 4px 4px 0 var(--navy);
  display: flex; flex-direction: column; gap: 14px;
}
.space-top {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 12px;
}
.space-ic {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--navy); flex-shrink: 0;
}
.space-live {
  padding: 4px 8px; border-radius: 999px;
  background: var(--shield); color: var(--cream);
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.space-live::before {
  content: ""; display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--cream);
  margin-right: 6px; vertical-align: middle;
  animation: ddd-pulse 1.6s ease-in-out infinite;
}
@keyframes ddd-pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
.space h4 { font-size: 18px; }
.space p  { font-size: 14px; }
.space-stats {
  display: flex; gap: 18px; font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--navy-300); padding-top: 14px;
  border-top: 1px dashed var(--line-strong);
}

/* ── Members quotes ──────────────────────────────────────── */
.members { padding: 120px 0; border-bottom: 1.5px solid var(--navy); }
.members-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 24px; margin-bottom: 48px;
}
.member-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.member {
  background: var(--cream-100); border: 1.5px solid var(--navy);
  border-radius: var(--r-lg); padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: 4px 4px 0 var(--navy);
}
.member-av {
  width: 64px; height: 64px; border-radius: 50%;
  border: 1.5px solid var(--navy);
}
.member-name {
  font-family: var(--display); font-weight: 800;
  color: var(--navy); font-size: 18px;
}
.member-loc {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy-300);
}
.member-quote { font-size: 14px; color: var(--navy-700); line-height: 1.5; }
.member-badges {
  margin-top: auto; display: flex; gap: 6px; flex-wrap: wrap;
}
.member-badges span {
  padding: 3px 9px; border: 1.5px solid var(--navy);
  border-radius: 999px; font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
}

/* ── Events list ─────────────────────────────────────────── */
.events {
  padding: 120px 0; border-bottom: 1.5px solid var(--navy);
  background: var(--navy); color: var(--cream);
  position: relative; overflow: hidden;
}
.events::before {
  content: ""; position: absolute; right: -10%; top: -30%;
  width: 50%; aspect-ratio: 1;
  background: radial-gradient(circle, #F39A3D22 0%, transparent 60%);
}
.events .container { position: relative; }
.events-row {
  display: flex; justify-content: space-between;
  align-items: flex-end; flex-wrap: wrap; gap: 24px; margin-bottom: 48px;
}
.event-list { display: grid; gap: 14px; }
.ev {
  display: grid; grid-template-columns: 90px 1fr 200px auto;
  gap: 24px; padding: 24px;
  border: 1.5px solid #ffffff22; border-radius: var(--r-lg);
  background: #ffffff08; align-items: center;
}
.ev-date { font-family: var(--display); font-weight: 900; color: var(--orange); line-height: 0.9; }
.ev-d  { font-size: 42px; }
.ev-m  {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--cream); margin-top: 4px;
}
.ev h4 { color: var(--cream); font-size: 20px; }
.ev-desc { color: #cfd8e3; font-size: 14px; margin-top: 4px; }
.ev-meta-col {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: #cfd8e3; display: grid; gap: 6px;
}
.ev-free { color: var(--shield); }
.ev-rsvp {
  padding: 10px 18px; border: 1.5px solid var(--cream);
  border-radius: 999px; font-family: var(--display); font-weight: 700;
  font-size: 13px; color: var(--cream); background: transparent;
  cursor: pointer; white-space: nowrap;
  transition: background .15s, color .15s, border-color .15s;
}
.ev-rsvp:hover { background: var(--orange); color: var(--navy); border-color: var(--orange); }

/* ── Membership tiers ────────────────────────────────────── */
.tiers { padding: 120px 0; border-bottom: 1.5px solid var(--navy); }
.tier-grid {
  margin-top: 48px; display: grid;
  grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.tier {
  background: var(--cream-100); border: 1.5px solid var(--navy);
  border-radius: var(--r-xl); padding: 32px;
  box-shadow: 4px 4px 0 var(--navy);
  display: flex; flex-direction: column; gap: 16px;
}
.tier.featured {
  background: var(--navy); color: var(--cream);
  transform: translateY(-12px); box-shadow: 8px 8px 0 var(--orange);
}
.tier-label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--shield-700);
  display: flex; gap: 10px; align-items: center;
}
.tier.featured .tier-label { color: var(--orange); }
.tier-pop { padding: 3px 10px; border-radius: 999px; background: var(--orange); color: var(--navy); font-weight: 700; }
.tier h3 { font-size: 28px; margin-top: 4px; }
.tier.featured h3 { color: var(--cream); }
.tier-price {
  font-family: var(--display); font-weight: 900;
  font-size: 48px; color: var(--navy); line-height: 1;
}
.tier.featured .tier-price { color: var(--cream); }
.tier-price small {
  font-family: var(--body); font-weight: 500; font-size: 14px;
  color: var(--navy-300); display: inline-block; margin-left: 4px;
}
.tier.featured .tier-price small { color: #cfd8e3; }
.tier-p { font-size: 14px; }
.tier.featured .tier-p { color: #cfd8e3; }
.tier-list { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 10px; }
.tier-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: var(--navy);
}
.tier.featured .tier-list li { color: var(--cream); }
.tier-list li::before {
  content: ""; width: 14px; height: 14px; background: var(--shield-700);
  border-radius: 50%; flex-shrink: 0; margin-top: 3px;
}
.tier.featured .tier-list li::before { background: var(--orange); }
.tier-cta { margin-top: auto; }

/* ── Code of conduct ─────────────────────────────────────── */
.conduct {
  padding: 120px 0; border-bottom: 1.5px solid var(--navy);
  background: var(--cream-100);
}
.conduct .container {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start;
}
.conduct-side { position: sticky; top: 120px; }
.conduct-rules { display: grid; gap: 14px; }
.rule {
  background: var(--cream); border: 1.5px solid var(--navy);
  border-radius: var(--r-lg); padding: 24px;
  display: grid; grid-template-columns: 60px 1fr;
  gap: 20px; box-shadow: 4px 4px 0 var(--navy);
}
.rule-n {
  font-family: var(--display); font-weight: 900;
  font-size: 36px; color: var(--orange); line-height: 1;
}
.rule h4 { font-size: 18px; }
.rule p  { margin-top: 6px; font-size: 14px; }

/* ── Join CTA band (orange, community) ───────────────────── */
.join-cta {
  padding: 140px 0; border-bottom: 1.5px solid var(--navy);
  background: var(--orange); position: relative; overflow: hidden; text-align: center;
}
.join-cta::before, .join-cta::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  border: 1.5px dashed #0E223822; border-radius: 50%;
}
.join-cta::before { width: 130%; aspect-ratio: 1; }
.join-cta::after  { width: 90%;  aspect-ratio: 1; }
.join-cta .container { position: relative; }
.join-cta h2 { font-size: clamp(40px, 5vw, 76px); color: var(--navy); max-width: 920px; margin: 0 auto; }
.join-cta p  { margin-top: 20px; color: var(--navy); font-size: 18px; max-width: 560px; margin-left: auto; margin-right: auto; }
.join-ctas { margin-top: 36px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Contact: channel cards ──────────────────────────────── */
.channels { padding: 80px 0; border-bottom: 1.5px solid var(--navy); }
.ch-grid-contact { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ch-card {
  background: var(--cream-100); border: 1.5px solid var(--navy);
  border-radius: var(--r-lg); padding: 28px;
  box-shadow: 4px 4px 0 var(--navy);
  display: flex; flex-direction: column; gap: 14px;
  text-decoration: none; color: inherit;
  transition: transform .15s ease, box-shadow .15s ease;
}
.ch-card:hover { transform: translate(-3px, -3px); box-shadow: 7px 7px 0 var(--navy); }
.ch-card-ic {
  width: 54px; height: 54px; border-radius: 14px;
  border: 1.5px solid var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.ch-card h4 { font-size: 20px; }
.ch-card-v {
  font-family: var(--display); font-weight: 700; color: var(--navy);
  font-size: 16px; text-decoration: underline;
  text-decoration-color: var(--orange); text-underline-offset: 4px;
}
.ch-card-when {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--navy-300);
  padding-top: 14px; border-top: 1px dashed var(--line-strong); margin-top: auto;
}

/* ── Contact form section ────────────────────────────────── */
.form-section {
  padding: 100px 0; border-bottom: 1.5px solid var(--navy);
  background: var(--cream-100); position: relative;
}
.form-section-inner {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start;
}
.form-side { position: sticky; top: 120px; }
.form-side h2 { margin-top: 14px; }
.form-quick { margin-top: 32px; display: grid; gap: 14px; }
.form-q {
  display: flex; gap: 14px; padding: 16px;
  background: var(--cream); border: 1.5px solid var(--navy);
  border-radius: var(--r-md); box-shadow: 3px 3px 0 var(--navy);
}
.form-em { font-family: var(--display); font-weight: 800; color: var(--orange); font-size: 20px; }
.form-qt { font-size: 14px; line-height: 1.4; }

/* Topic tabs */
.topic-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.topic-tab {
  padding: 10px 16px; border: 1.5px solid var(--navy); border-radius: 999px;
  background: var(--cream); font-family: var(--display); font-weight: 600;
  font-size: 13px; color: var(--navy); cursor: pointer;
  transition: background .15s, color .15s;
}
.topic-tab.active { background: var(--navy); color: var(--cream); }

/* Form card */
.form-card {
  background: var(--cream); border: 2px solid var(--navy);
  border-radius: var(--r-xl); padding: 36px;
  box-shadow: 8px 8px 0 var(--navy);
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 16px;
}
.form-row-full { grid-template-columns: 1fr; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--navy-300);
}
.form-field label.req::after { content: " *"; color: var(--orange); }
.form-field input,
.form-field select,
.form-field textarea {
  border: 1.5px solid var(--navy); border-radius: 12px;
  background: var(--cream-100); padding: 14px 16px;
  font-family: var(--body); font-size: 15px; color: var(--navy);
  outline: none; transition: box-shadow .15s ease;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { box-shadow: 4px 4px 0 var(--navy); }
.form-field textarea { resize: vertical; min-height: 140px; line-height: 1.5; }
.checkbox-row {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: var(--navy-700); line-height: 1.4;
  margin-bottom: 8px;
}
.checkbox-row input { accent-color: var(--orange); margin-top: 3px; flex-shrink: 0; }
.form-actions {
  margin-top: 24px; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; flex-wrap: wrap;
}
.form-note {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--navy-300);
}
.form-status {
  margin-top: 16px; padding: 14px 18px; border-radius: 14px;
  font-size: 14px; display: none;
}
.form-status[data-show="true"] { display: block; }
.form-status[data-tone="success"] {
  background: var(--shield); color: var(--cream); border: 1.5px solid var(--shield-900);
}
.form-status[data-tone="error"] {
  background: #ffe5e0; color: #7a1c0f; border: 1.5px solid #c43b2a;
}
.form-status[data-tone="loading"] {
  background: var(--cream-100); color: var(--navy); border: 1.5px solid var(--navy);
}

/* ── Office + Caribbean map ──────────────────────────────── */
.office { padding: 100px 0; border-bottom: 1.5px solid var(--navy); }
.office-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.office-map {
  position: relative; aspect-ratio: 4/3;
  border: 2px solid var(--navy); border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--shield) 0%, var(--shield-900) 100%);
  box-shadow: 10px 10px 0 var(--navy); overflow: hidden;
}
.office-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.office-pin {
  position: absolute; transform: translate(-50%, -100%);
  display: flex; flex-direction: column; align-items: center;
}
.pin-dot {
  width: 14px; height: 14px;
  background: var(--orange); border: 2px solid var(--cream);
  border-radius: 50%; margin-bottom: 4px;
  box-shadow: 0 0 0 4px #F39A3D44;
}
.pin-lbl {
  background: var(--cream); border: 1.5px solid var(--navy);
  padding: 3px 10px; border-radius: 999px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--navy);
  white-space: nowrap; box-shadow: 2px 2px 0 var(--navy);
}
.office-info { display: grid; gap: 18px; margin-top: 32px; }
.office-item {
  display: grid; grid-template-columns: 48px 1fr;
  gap: 14px; align-items: start; padding: 18px;
  background: var(--cream-100); border: 1.5px solid var(--navy);
  border-radius: var(--r-md);
}
.office-ic {
  width: 48px; height: 48px; border-radius: 12px;
  border: 1.5px solid var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.office-l {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy-300);
}
.office-v {
  font-family: var(--display); font-weight: 700;
  color: var(--navy); font-size: 16px; margin-top: 4px;
}

/* ── Press section ───────────────────────────────────────── */
.press {
  padding: 100px 0; border-bottom: 1.5px solid var(--navy);
  background: var(--navy); color: var(--cream);
  position: relative; overflow: hidden;
}
.press::before {
  content: ""; position: absolute; left: -10%; top: -30%;
  width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, #89A77B22 0%, transparent 60%);
}
.press-inner {
  position: relative; display: grid;
  grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
}
.press h2 { color: var(--cream); }
.press p  { color: #cfd8e3; margin-top: 16px; }
.press-cards { display: grid; gap: 14px; }
.press-card {
  padding: 20px; border: 1.5px solid #ffffff22;
  border-radius: var(--r-md); background: #ffffff08;
  display: flex; gap: 16px; align-items: center;
}
.press-card-ic {
  width: 54px; height: 54px; border: 1.5px solid var(--orange);
  border-radius: 14px; display: flex; align-items: center;
  justify-content: center; background: #ffffff08; flex-shrink: 0;
}
.press-card-l {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange);
}
.press-card-v {
  font-family: var(--display); font-weight: 800;
  color: var(--cream); font-size: 18px; margin-top: 4px;
}
.press-card-v a { color: var(--cream); border-bottom: 1.5px solid var(--orange); }

/* ── Resources page ──────────────────────────────────────── */
.resource-filters {
  padding: 24px 0; border-bottom: 1.5px solid var(--navy);
  background: var(--cream-100); overflow-x: auto;
}
.resource-filter-tabs {
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
}
.ddd-category-filter__btn {
  display: inline-flex; align-items: center;
  padding: 8px 14px; border-radius: 999px;
  background: var(--cream); border: 1.5px solid var(--navy);
  font-family: var(--display); font-weight: 600; font-size: 13px;
  color: var(--navy); cursor: pointer;
  transition: background .15s, color .15s;
}
.ddd-category-filter__btn.active { background: var(--navy); color: var(--cream); }
.resources-section { padding: 80px 0; border-bottom: 1.5px solid var(--navy); }
.resources-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.resource-card {
  background: var(--cream-100); border: 1.5px solid var(--navy);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 4px 4px 0 var(--navy);
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
  text-decoration: none; color: inherit;
}
.resource-card:hover { transform: translate(-3px, -3px); box-shadow: 7px 7px 0 var(--navy); }
.resource-thumb {
  aspect-ratio: 16/9; background-size: cover; background-position: center;
  border-bottom: 1.5px solid var(--navy);
}
.resource-thumb--placeholder {
  background: linear-gradient(135deg, var(--shield) 0%, var(--shield-900) 100%);
}
.resource-body {
  padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px;
}
.resource-tag {
  display: inline-block; align-self: flex-start;
  padding: 4px 10px; border: 1.5px solid var(--navy); border-radius: 999px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; background: var(--cream); color: var(--navy);
}
.resource-body h4 { font-size: 18px; color: var(--navy); }
.resource-body p  { font-size: 14px; color: var(--navy-700); }
.resource-foot {
  margin-top: auto; display: flex; justify-content: space-between;
  align-items: center; padding-top: 14px;
  border-top: 1px dashed var(--line-strong);
}
.resource-date {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--navy-300);
}
.resource-more {
  font-family: var(--display); font-weight: 600;
  color: var(--shield-700); font-size: 13px;
}

/* ── Responsive — new pages ──────────────────────────────── */
@media (max-width: 1000px) {
  /* Shared hero */
  .page-hero .page-hero-grid { grid-template-columns: 1fr; }

  /* Courses */
  .feature-inner, .schools-inner { grid-template-columns: 1fr; }
  .feature-art { max-width: 400px; margin: 0 auto; }
  .course-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }

  /* Community */
  .preview-app { max-width: 420px; margin: 0 auto; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .f-card.lg, .f-card.sm, .f-card.mid { grid-column: span 1; }
  .space-grid { grid-template-columns: 1fr 1fr; }
  .member-grid { grid-template-columns: 1fr 1fr; }
  .tier-grid { grid-template-columns: 1fr 1fr; }
  .tier.featured { transform: none; }
  .conduct .container { grid-template-columns: 1fr; }
  .conduct-side { position: relative; top: 0; }
  .ev { grid-template-columns: 1fr; gap: 14px; }

  /* Contact */
  .ch-grid-contact { grid-template-columns: 1fr 1fr; }
  .form-section-inner { grid-template-columns: 1fr; }
  .form-side { position: relative; top: 0; }
  .office-inner { grid-template-columns: 1fr; }
  .press-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* Resources */
  .resources-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  /* Courses */
  .course-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px dashed var(--line-strong); padding: 24px 0; }
  .step:last-child { border-bottom: none; }

  /* Community */
  .feat-grid { grid-template-columns: 1fr; }
  .space-grid { grid-template-columns: 1fr; }
  .member-grid { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: 1fr; }

  /* Contact */
  .ch-grid-contact { grid-template-columns: 1fr; }

  /* Resources */
  .resources-grid { grid-template-columns: 1fr; }

  /* Badge banner */
  .badge-row { gap: 24px; }
}
