/* ===== Reset & base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, h5, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
input, select, textarea { font: inherit; color: inherit; }

/* ===== Tokens ===== */
:root {
  --emerald: #0F5132;
  --emerald-dark: #0a3a23;
  --emerald-soft: #1c6a45;
  --sand: #D4B895;
  --sand-soft: #E9D8BD;
  --cream: #FAF7F2;
  --surface: #F4F1EC;
  --text: #1B2421;
  --muted: #5b6663;
  --line: #e3ddd2;
  --white: #ffffff;

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --container: 1200px;
  --radius: 4px;
  --shadow-sm: 0 1px 2px rgba(20, 30, 25, 0.06);
  --shadow-md: 0 8px 24px rgba(20, 30, 25, 0.08);
  --shadow-lg: 0 20px 40px rgba(20, 30, 25, 0.12);

  --t-fast: 160ms ease;
  --t: 220ms ease;
}

html, body { background: var(--cream); color: var(--text); }
body { font-family: var(--sans); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }

h1, h2, h3, h4 { font-family: var(--serif); color: var(--emerald); font-weight: 700; line-height: 1.18; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.05rem; }
p { color: var(--text); }
.lead { font-size: 1.125rem; color: var(--muted); max-width: 64ch; }

/* ===== Utilities ===== */
.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(3rem, 6vw, 5.5rem) 0; }
.section--alt { background: var(--surface); }
.section--dark { background: var(--emerald); color: #f5efe4; }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark p { color: #d8e4dc; }
.eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.75rem; color: var(--sand); font-weight: 600; margin-bottom: 0.75rem; }
.section-head { max-width: 760px; margin-bottom: 2.5rem; }
.section-head p { color: var(--muted); margin-top: 0.75rem; }

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.4rem; border-radius: var(--radius);
  font-weight: 600; letter-spacing: 0.01em; font-size: 0.95rem;
  transition: background var(--t), color var(--t), transform var(--t-fast), border-color var(--t);
}
.btn:disabled, .btn[disabled] { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn-primary { background: var(--emerald); color: #fff; }
.btn-primary:hover { background: var(--emerald-dark); transform: translateY(-1px); }
.btn-primary:disabled:hover, .btn-primary[disabled]:hover { background: var(--emerald); transform: none; }
.btn-outline { border: 1.5px solid var(--emerald); color: var(--emerald); background: transparent; }
.btn-outline:hover { background: var(--emerald); color: #fff; }
.btn-ghost { color: var(--emerald); padding-inline: 0; }
.btn-ghost::after { content: "→"; transition: transform var(--t); }
.btn-ghost:hover::after { transform: translateX(4px); }
.btn-light { background: #fff; color: var(--emerald); }
.btn-light:hover { background: var(--sand-soft); }

.link-arrow { color: var(--emerald); font-weight: 600; display: inline-flex; align-items: center; gap: 0.4rem; }
.link-arrow::after { content: "›"; transition: transform var(--t); font-size: 1.1em; }
.link-arrow:hover::after { transform: translateX(3px); }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.95);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px; gap: 0.75rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.55rem; min-width: 0; flex-shrink: 1; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; flex-shrink: 0; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-name { font-family: var(--serif); color: var(--emerald); font-weight: 700; font-size: 1.15rem; letter-spacing: 0.02em; white-space: nowrap; }
.brand-name span { color: var(--sand); }
@media (max-width: 420px) {
  .brand-mark { width: 36px; height: 36px; }
  .brand-name { font-size: 1rem; }
  .site-header .container { gap: 0.5rem; min-height: 64px; }
  .mobile-menu { inset: 64px 0 0 0; }
}

.primary-nav { display: none; gap: 1.6rem; align-items: center; }
.primary-nav > a,
.primary-nav .nav-item > a {
  color: var(--text); font-weight: 500; font-size: 0.97rem;
  padding: 0.4rem 0; position: relative;
  display: inline-flex; align-items: center; gap: 0.3rem;
  cursor: pointer;
}
.primary-nav > a:hover, .primary-nav > a.active,
.primary-nav .nav-item > a:hover, .primary-nav .nav-item > a.active { color: var(--emerald); }
.primary-nav > a.active::after,
.primary-nav .nav-item > a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--sand);
}

/* Nav dropdown */
.nav-item { position: relative; }
.nav-item.has-dropdown > a::after {
  content: ""; display: inline-block; width: 8px; height: 8px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px); margin-left: 0.25rem;
  transition: transform var(--t); opacity: 0.6;
}
.nav-item.has-dropdown:hover > a::after,
.nav-item.has-dropdown:focus-within > a::after {
  transform: rotate(-135deg) translateY(2px); opacity: 1;
}
.dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 300px; background: #fff;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 0.6rem; z-index: 60;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--t), transform var(--t), visibility var(--t);
  border-top: 3px solid var(--sand);
}
.dropdown-menu::before {
  content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px;
}
.nav-item:hover > .dropdown-menu,
.nav-item:focus-within > .dropdown-menu,
.nav-item.open > .dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block; padding: 0.7rem 0.9rem;
  color: var(--text); font-size: 0.94rem; font-weight: 500;
  border-radius: 3px; line-height: 1.35;
  transition: background var(--t-fast), color var(--t-fast), padding-left var(--t-fast);
}
.dropdown-menu a small {
  display: block; color: var(--muted); font-size: 0.78rem;
  margin-top: 0.15rem; font-weight: 400; letter-spacing: 0.02em;
}
.dropdown-menu a:hover {
  background: var(--surface); color: var(--emerald); padding-left: 1.1rem;
}
.dropdown-menu a:hover small { color: var(--emerald-soft); }
.dropdown-menu .dd-eyebrow {
  display: block; padding: 0.4rem 0.9rem 0.5rem;
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--sand); font-weight: 700;
}
.dropdown-menu .dd-divider {
  height: 1px; background: var(--line); margin: 0.4rem 0.5rem;
}
.dropdown-menu a.dd-all {
  color: var(--emerald); font-weight: 700;
  display: flex; justify-content: space-between; align-items: center;
}
.dropdown-menu a.dd-all::after { content: "→"; transition: transform var(--t); }
.dropdown-menu a.dd-all:hover::after { transform: translateX(4px); }
.header-cta { display: none; }

.nav-toggle {
  width: 42px; height: 42px; border: 1px solid var(--line); border-radius: var(--radius);
  display: grid; place-items: center; color: var(--emerald);
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 18px; height: 2px; background: currentColor; position: relative;
}
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.mobile-menu {
  position: fixed; inset: 76px 0 0 0; background: var(--cream);
  padding: 1.25rem 1.5rem 2rem; transform: translateX(100%);
  transition: transform var(--t);
  z-index: 40; overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex; flex-direction: column;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu > a,
.mobile-menu .mm-toggle {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.05rem 0; font-size: 1.05rem; font-weight: 600;
  border-bottom: 1px solid var(--line); color: var(--text);
  width: 100%; background: none; text-align: left; cursor: pointer;
  font-family: var(--sans); letter-spacing: 0.01em;
  transition: color var(--t-fast);
}
.mobile-menu > a:hover, .mobile-menu .mm-toggle:hover { color: var(--emerald); }
.mobile-menu .mm-toggle .mm-caret {
  width: 10px; height: 10px; flex-shrink: 0;
  border-right: 2px solid var(--sand); border-bottom: 2px solid var(--sand);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform var(--t);
}
.mobile-menu .mm-group { border-bottom: 1px solid var(--line); }
.mobile-menu .mm-group .mm-toggle { border-bottom: 0; }
.mobile-menu .mm-group.open .mm-toggle { color: var(--emerald); }
.mobile-menu .mm-group.open .mm-toggle .mm-caret {
  transform: rotate(-135deg) translate(-2px, -2px);
  border-color: var(--emerald);
}
.mobile-menu .mm-sub {
  max-height: 0; overflow: hidden;
  transition: max-height 300ms ease;
}
.mobile-menu .mm-group.open .mm-sub { max-height: 700px; }
.mobile-menu .mm-sub a {
  display: block;
  padding: 0.85rem 0 0.85rem 1.1rem;
  font-size: 0.97rem; color: var(--muted); font-weight: 500;
  border-bottom: 1px dashed var(--line); position: relative;
}
.mobile-menu .mm-sub a::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 4px; height: 4px; border-radius: 50%; background: var(--sand);
  transform: translateY(-50%);
}
.mobile-menu .mm-sub a:hover { color: var(--emerald); }
.mobile-menu .mm-sub a:last-child { border-bottom: 0; }
.mobile-menu .mm-sub a.mm-all { color: var(--emerald); font-weight: 700; }
.mobile-menu .btn { margin-top: 1.5rem; width: 100%; justify-content: center; padding: 0.95rem 1.4rem; font-size: 1rem; }

@media (min-width: 1024px) {
  .primary-nav { display: inline-flex; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none; }
}

/* ===== Hero ===== */
.hero {
  position: relative; min-height: clamp(420px, 60vh, 640px);
  display: grid; align-items: end;
  background: #1a2421 center/cover no-repeat;
  color: #fff;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,30,25,0.15) 0%, rgba(15,30,25,0.55) 60%, rgba(15,30,25,0.85) 100%);
}
.hero .container { position: relative; padding: 4rem 1rem; max-width: 1200px; }
.hero h1 { color: #fff; max-width: 18ch; }
.hero p { color: #e5ddc8; margin-top: 1rem; max-width: 52ch; font-size: 1.1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.75rem; }

.page-hero {
  background: var(--emerald); color: #fff;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
}
.page-hero h1 { color: #fff; }
.page-hero p { color: #d4e3da; margin-top: 1rem; max-width: 60ch; }
.crumbs { color: #cbd9d1; font-size: 0.85rem; margin-bottom: 0.75rem; letter-spacing: 0.04em; }
.crumbs a { color: var(--sand); }

/* ===== Story (Our Story style) ===== */
.story-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
.story-intro p { color: var(--muted); max-width: 70ch; margin-top: 0.5rem; }
.story-cards { display: grid; gap: 1.25rem; margin-top: 2.5rem; grid-template-columns: 1fr; }
.story-card {
  position: relative; background: var(--surface);
  border-radius: var(--radius); overflow: hidden;
  min-height: 360px;
}
.story-card img {
  position: absolute; inset: 0; width: 100%; height: 65%; object-fit: cover;
}
.story-card .card-body {
  position: absolute; left: 0; right: 24%; bottom: 0;
  background: var(--sand-soft); padding: 1.25rem 1.25rem 1.1rem;
  border-top-right-radius: var(--radius);
}
.story-card h3 { margin-bottom: 0.4rem; }
.story-card p { color: #4a4a40; font-size: 0.95rem; margin-bottom: 0.75rem; }

@media (min-width: 768px) {
  .story-cards { grid-template-columns: repeat(3, 1fr); }
}

/* ===== Programmes cards (ISB style) ===== */
.prog-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 1rem; margin-bottom: 2rem; }
.prog-head .lead { margin-top: 0.5rem; }
.prog-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
.prog-card {
  background: var(--surface); border-radius: var(--radius);
  padding: 1.5rem 1.5rem 0; display: flex; flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
}
.prog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.prog-card h3 { margin-bottom: 0.6rem; }
.prog-card p { color: var(--muted); font-size: 0.95rem; }
.prog-card .link-arrow { margin: 1rem 0 1.25rem; }
.prog-card .card-image { margin: 0 -1.5rem; border-top: 3px solid var(--sand); overflow: hidden; aspect-ratio: 16/10; }
.prog-card .card-image img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 768px) { .prog-grid { grid-template-columns: repeat(3, 1fr); } }

/* ===== "What brings you here" ===== */
.intent {
  position: relative;
  background: #1a2421 center/cover no-repeat;
  color: #fff;
  min-height: 520px;
  display: flex; align-items: stretch;
}
.intent::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,81,50,0.92) 0%, rgba(15,81,50,0.4) 60%, transparent 100%); }
.intent .container { position: relative; padding: 3rem 1rem; }
.intent-card {
  background: var(--emerald); padding: 2rem; max-width: 460px;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
}
.intent-card h2 { color: #fff; }
.intent-card .field { margin-top: 1.5rem; display: grid; grid-template-columns: 100px 1fr; gap: 1rem; align-items: center; }
.intent-card label { color: #cbd9d1; font-family: var(--serif); font-size: 1.1rem; }

/* Custom dropdown (JS-driven) used inside the intent card */
.cdd { position: relative; width: 100%; }
.cdd-toggle {
  width: 100%; background: transparent; color: #fff; border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding: 0.7rem 2rem 0.7rem 0; font-size: 1.05rem; cursor: pointer;
  font-family: var(--serif); letter-spacing: 0.01em; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 0.5rem;
  transition: border-color var(--t);
}
.cdd-toggle:hover { border-bottom-color: var(--sand); }
.cdd-toggle:focus,
.cdd.open .cdd-toggle {
  outline: 0; border-bottom-color: var(--sand); border-bottom-width: 2px;
  padding-bottom: calc(0.7rem - 1px);
}
.cdd-toggle .cdd-caret {
  width: 14px; height: 14px; flex-shrink: 0;
  border-right: 2px solid var(--sand); border-bottom: 2px solid var(--sand);
  transform: rotate(45deg) translate(-3px, -3px);
  transition: transform var(--t);
}
.cdd.open .cdd-toggle .cdd-caret {
  transform: rotate(-135deg) translate(-3px, -3px);
}
.cdd-list {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); border-top: 3px solid var(--sand);
  padding: 0.4rem; z-index: 30;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  pointer-events: none;
  transition: opacity var(--t), transform var(--t), visibility var(--t);
  max-height: 280px; overflow-y: auto;
}
.cdd.open .cdd-list {
  opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
}
.cdd-option {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.7rem 0.85rem; border-radius: 3px;
  font-family: var(--sans); color: var(--text); font-size: 0.95rem;
  cursor: pointer; transition: background var(--t-fast), color var(--t-fast);
}
.cdd-option:hover, .cdd-option.is-active {
  background: var(--surface); color: var(--emerald);
}
.cdd-option.is-active { font-weight: 600; }
.cdd-option .cdd-ico {
  width: 28px; height: 28px; flex-shrink: 0;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--sand-soft); color: var(--emerald);
}
.cdd-option .cdd-ico svg { width: 16px; height: 16px; fill: currentColor; }
.cdd-option:hover .cdd-ico, .cdd-option.is-active .cdd-ico {
  background: var(--emerald); color: var(--sand);
}
.cdd-option .cdd-check {
  margin-left: auto; color: var(--emerald);
  opacity: 0; transition: opacity var(--t-fast);
}
.cdd-option.is-active .cdd-check { opacity: 1; }
.intent-related { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.18); }
.intent-related .eyebrow { color: var(--sand); margin: 0 0 0.75rem; }
.intent-related a { display: flex; justify-content: space-between; align-items: center; padding: 0.65rem 0; border-bottom: 1px solid rgba(255,255,255,0.12); color: #fff; font-weight: 600; }
.intent-related a::after { content: "›"; color: var(--sand); }
.intent-related a:last-child { border-bottom: 0; }

/* ===== Explore grid ===== */
.explore-head { display: flex; justify-content: space-between; align-items: end; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.explore-tools { display: flex; gap: 0.6rem; }
.explore-tools button { padding: 0.6rem 1rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; color: var(--emerald); font-weight: 600; font-size: 0.9rem; }
.explore-grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
.explore-card {
  position: relative; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 4/3; isolation: isolate; color: #fff;
}
.explore-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.explore-card:hover img { transform: scale(1.04); }
.explore-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(10,40,28,0.85) 100%); }
.explore-chip { position: absolute; top: 1rem; left: 1rem; background: var(--emerald); color: #fff; padding: 0.3rem 0.7rem; font-size: 0.75rem; border-radius: var(--radius); font-weight: 600; letter-spacing: 0.04em; z-index: 2; }
.explore-body { position: absolute; left: 1rem; right: 1rem; bottom: 1rem; z-index: 2; }
.explore-body h3 { color: #fff; font-size: 1.2rem; margin-bottom: 0.25rem; }
.explore-body span { font-size: 0.9rem; color: var(--sand); display: inline-flex; align-items: center; gap: 0.3rem; }
.explore-body span::after { content: "›"; }

@media (min-width: 768px) {
  .explore-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
  .explore-card:nth-child(3) { grid-row: span 2; }
}

/* ===== Levels cards (Beginner/Intermediate/Advanced) ===== */
.levels-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
.level-card { background: #fff; border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-sm); border-top: 3px solid var(--sand); transition: transform var(--t); }
.level-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.level-card h3 { margin-bottom: 0.6rem; }
.level-card ul { margin-top: 1rem; }
.level-card ul li { padding-left: 1.2rem; position: relative; color: var(--muted); margin-bottom: 0.4rem; }
.level-card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--emerald); font-weight: 700; }
@media (min-width: 768px) { .levels-grid { grid-template-columns: repeat(3, 1fr); } }

/* ===== Stats strip ===== */
.stats {
  display: grid; gap: 1.5rem; grid-template-columns: repeat(2, 1fr);
  text-align: center; padding: 2rem 0;
}
.stat-num { font-family: var(--serif); font-size: 2.4rem; color: var(--emerald); font-weight: 700; line-height: 1; }
.stat-lbl { color: var(--muted); font-size: 0.9rem; margin-top: 0.4rem; }
@media (min-width: 768px) { .stats { grid-template-columns: repeat(4, 1fr); } }

/* ===== Testimonials ===== */
.testi-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
.testi {
  background: #fff; border-radius: var(--radius); padding: 1.75rem;
  border-left: 3px solid var(--sand); box-shadow: var(--shadow-sm);
}
.testi p { font-size: 1.02rem; color: var(--text); }
.testi-author { display: flex; align-items: center; gap: 0.85rem; margin-top: 1.25rem; }
.testi-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testi-name { font-weight: 700; color: var(--emerald); }
.testi-role { font-size: 0.85rem; color: var(--muted); }
@media (min-width: 768px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }

/* ===== CTA strip ===== */
.cta-strip {
  background: var(--emerald); color: #fff; padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.cta-strip .container { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1.5rem; }
.cta-strip h2 { color: #fff; max-width: 26ch; }
.cta-strip .btn { background: var(--sand); color: var(--emerald-dark); }
.cta-strip .btn:hover { background: #fff; }

/* ===== Footer ===== */
.site-footer { background: #fff; color: var(--text); padding-top: 3rem; border-top: 1px solid var(--line); }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.footer-brand h3 { color: var(--emerald); margin-top: 0.75rem; }
.footer-address { margin-top: 1rem; display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.footer-address h4 { color: var(--emerald); font-size: 0.95rem; margin-bottom: 0.4rem; }
.footer-address p { color: var(--muted); font-size: 0.9rem; }

.footer-col h4 { color: var(--emerald); margin-bottom: 0.85rem; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col a { color: var(--text); font-size: 0.95rem; }
.footer-col a:hover { color: var(--emerald); }

.footer-accred { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-top: 0.5rem; }
.accred-badge {
  background: var(--surface); border: 1px solid var(--line);
  padding: 0.5rem 0.8rem; border-radius: var(--radius);
  font-size: 0.75rem; color: var(--muted); font-weight: 600; letter-spacing: 0.04em;
}
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%; background: var(--surface);
  display: grid; place-items: center; color: var(--emerald);
  transition: background var(--t), color var(--t), transform var(--t-fast);
}
.footer-social a:hover { background: var(--emerald); color: #fff; transform: translateY(-2px); }
.footer-social a svg { width: 18px; height: 18px; fill: currentColor; display: block; }

.footer-bottom {
  background: var(--emerald); color: #cfdcd4; margin-top: 3rem;
  padding: 1.25rem 0;
}
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.85rem; }
.footer-bottom a { color: #fff; }
.footer-bottom a:hover { color: var(--sand); }
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: 1.25rem; }

.footer-note { font-size: 0.78rem; color: var(--muted); padding: 1rem 0 1.25rem; text-align: center; border-top: 1px solid var(--line); }

@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

/* ===== Generic content (legal pages, blog post) ===== */
.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { margin-top: 2.5rem; margin-bottom: 0.75rem; }
.prose h3 { margin-top: 1.75rem; margin-bottom: 0.5rem; color: var(--emerald-soft); }
.prose p, .prose ul, .prose ol { margin-bottom: 1rem; }
.prose ul, .prose ol { padding-left: 1.4rem; }
.prose ul li, .prose ol li { list-style: disc; color: var(--text); margin-bottom: 0.4rem; }
.prose ol li { list-style: decimal; }
.prose a { color: var(--emerald); text-decoration: underline; text-decoration-color: var(--sand); }
.prose blockquote {
  border-left: 3px solid var(--sand); padding: 0.5rem 1rem;
  color: var(--muted); font-style: italic; margin: 1.25rem 0;
}

/* ===== Programs page list ===== */
.course-list { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
.course {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); display: grid; grid-template-columns: 1fr;
}
.course-img { aspect-ratio: 16/10; overflow: hidden; }
.course-img img { width: 100%; height: 100%; object-fit: cover; }
.course-body { padding: 1.5rem 1.75rem 1.75rem; }
.course-meta { display: flex; flex-wrap: wrap; gap: 1rem; color: var(--muted); font-size: 0.85rem; margin-bottom: 0.75rem; }
.course-meta span { display: inline-flex; align-items: center; gap: 0.35rem; }
.course h3 { margin-bottom: 0.5rem; }
.course p { color: var(--muted); margin-bottom: 1rem; }

@media (min-width: 768px) {
  .course { grid-template-columns: 1fr 1.4fr; }
}

/* ===== Faculty ===== */
.faculty-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
.fac { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.fac-img { aspect-ratio: 4/5; overflow: hidden; }
.fac-img img { width: 100%; height: 100%; object-fit: cover; }
.fac-body { padding: 1.25rem 1.4rem 1.5rem; }
.fac-name { font-family: var(--serif); color: var(--emerald); font-size: 1.2rem; font-weight: 700; }
.fac-role { color: var(--sand); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; margin: 0.25rem 0 0.8rem; text-transform: uppercase; }
.fac-bio { color: var(--muted); font-size: 0.95rem; }
@media (min-width: 640px) { .faculty-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .faculty-grid { grid-template-columns: repeat(3, 1fr); } }

/* ===== Blog ===== */
.blog-grid { display: grid; gap: 1.75rem; grid-template-columns: 1fr; }
.post { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); display: flex; flex-direction: column; }
.post-img { aspect-ratio: 16/10; overflow: hidden; }
.post-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.post:hover .post-img img { transform: scale(1.04); }
.post-body { padding: 1.25rem 1.5rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post-meta { color: var(--muted); font-size: 0.8rem; margin-bottom: 0.5rem; letter-spacing: 0.04em; }
.post-meta span { color: var(--emerald); font-weight: 600; }
.post h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.post p { color: var(--muted); margin-bottom: 1rem; font-size: 0.95rem; }
.post .link-arrow { margin-top: auto; }
@media (min-width: 720px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

/* ===== Single article ===== */
.article-hero {
  min-height: 360px; background: #1a2421 center/cover no-repeat;
  color: #fff; position: relative; display: grid; align-items: end;
}
.article-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.7)); }
.article-hero .container { position: relative; padding: 4rem 1rem 2.5rem; }
.article-hero h1 { color: #fff; max-width: 22ch; }
.article-hero .post-meta { color: #d4e3da; margin-bottom: 0.5rem; }
.article-hero .post-meta span { color: var(--sand); }

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin-inline: auto; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  margin-bottom: 0.75rem; overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}
.faq-item:hover { border-color: var(--sand); }
.faq-item[open] { border-color: var(--emerald); box-shadow: var(--shadow-sm); }
.faq-item > summary {
  list-style: none; cursor: pointer; padding: 1.1rem 1.3rem;
  font-weight: 600; color: var(--emerald);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: background var(--t-fast);
}
.faq-item > summary:hover { background: var(--cream); }
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after {
  content: ""; flex-shrink: 0;
  width: 10px; height: 10px;
  border-right: 2px solid var(--sand); border-bottom: 2px solid var(--sand);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform var(--t);
}
.faq-item[open] > summary::after {
  transform: rotate(-135deg) translate(-2px, -2px);
  border-color: var(--emerald);
}
.faq-item .faq-body { padding: 0 1.3rem 1.3rem; color: var(--muted); }

/* ===== Forms ===== */
.form-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 900px) { .form-grid { grid-template-columns: 1fr 1.4fr; } }

.contact-info h3 { color: var(--emerald); margin-bottom: 0.5rem; }
.contact-info p { color: var(--muted); }
.contact-info dl { margin-top: 1.25rem; display: grid; gap: 1rem; }
.contact-info dt { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sand); font-weight: 600; }
.contact-info dd { margin: 0.25rem 0 0; color: var(--text); }

form.card-form {
  background: #fff; padding: 1.75rem; border-radius: var(--radius);
  border: 1px solid var(--line);
}
.fld { display: grid; gap: 0.4rem; margin-bottom: 1.1rem; }
.fld label { font-size: 0.85rem; color: var(--text); font-weight: 600; }
.fld input, .fld select, .fld textarea {
  padding: 0.85rem 0.95rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; color: var(--text);
  transition: border-color var(--t), box-shadow var(--t), background-color var(--t);
  font-size: 0.97rem;
}
.fld input:hover, .fld select:hover, .fld textarea:hover { border-color: #b9b2a3; }
.fld input:focus, .fld select:focus, .fld textarea:focus {
  outline: none; border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(15, 81, 50, 0.12);
}
.fld textarea { min-height: 130px; resize: vertical; }
.fld select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  padding-right: 2.5rem; cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230F5132' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 16px;
}
.fld select:focus {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4B895' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='18 15 12 9 6 15'%3E%3C/polyline%3E%3C/svg%3E");
}
.fld select option { color: var(--text); background: #fff; padding: 0.5rem; }
.fld select option:disabled { color: var(--muted); }
.fld-row { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 600px) { .fld-row { grid-template-columns: 1fr 1fr; } }
.fld .err { color: #b3261e; font-size: 0.8rem; display: none; }
.fld[aria-invalid="true"] .err { display: block; }
.fld[aria-invalid="true"] input, .fld[aria-invalid="true"] select, .fld[aria-invalid="true"] textarea { border-color: #b3261e; }

.checkbox { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; color: var(--muted); margin-bottom: 1.1rem; }
.checkbox input { margin-top: 0.25rem; }

.honeypot { position: absolute; left: -9999px; }

.form-success {
  display: none; padding: 1rem 1.25rem; background: #e9f5ee; color: #0a3a23;
  border-radius: var(--radius); margin-top: 1rem; font-weight: 600;
}
.form-success.show { display: block; }

/* ===== Timeline ===== */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content: ""; position: absolute; left: 0.5rem; top: 0; bottom: 0; width: 2px; background: var(--sand); }
.tl-item { position: relative; padding-bottom: 1.5rem; }
.tl-item::before { content: ""; position: absolute; left: -1.6rem; top: 0.4rem; width: 12px; height: 12px; border-radius: 50%; background: var(--emerald); border: 2px solid var(--cream); }
.tl-year { font-family: var(--serif); color: var(--emerald); font-size: 1.2rem; font-weight: 700; }
.tl-text { color: var(--muted); margin-top: 0.2rem; }

/* ===== Mission/Vision/Values cards ===== */
.mv-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
.mv {
  background: #fff; padding: 1.75rem; border-radius: var(--radius); border-top: 3px solid var(--emerald);
  box-shadow: var(--shadow-sm);
}
.mv h3 { margin-bottom: 0.5rem; }
.mv p { color: var(--muted); }
@media (min-width: 768px) { .mv-grid { grid-template-columns: repeat(3, 1fr); } }

/* ===== Two-col image+text ===== */
.split { display: grid; gap: 2.5rem; align-items: center; grid-template-columns: 1fr; }
.split img { border-radius: var(--radius); width: 100%; object-fit: cover; aspect-ratio: 4/3; }
.split h2 { margin-bottom: 0.75rem; }
.split p { color: var(--muted); margin-bottom: 1rem; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split--rev > :first-child { order: 2; } }

/* ===== Tags / chips ===== */
.tag {
  display: inline-block; padding: 0.25rem 0.65rem; border-radius: 999px;
  background: var(--sand-soft); color: var(--emerald-dark);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.04em;
}

/* ===== Misc ===== */
.kicker { color: var(--sand); font-family: var(--serif); font-size: 1.2rem; }
.divider { height: 1px; background: var(--line); margin: 2rem 0; }

/* ===== Print-friendly small fixes ===== */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
