/*
Theme Name: SATC — Institute of Safety & Technical
Theme URI: https://satc-international.com/
Author: SATC International
Author URI: https://satc-international.com/
Description: Custom classic WordPress theme for SATC (Institute of Safety & Technical) — a redesign of satc-international.com. IMPORTANT: All visible content lives hardcoded inside the template files (front-page.php and the page-*.php files); the theme deliberately does NOT use the WordPress editor / the_content(). To change any text, edit the matching template file. See README.md for the full file/section map.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: satc
*/

/* ============================================================
   SATC — Institute of Safety & Technical
   Homepage redesign — design tokens + styles
   Palette derived from logo: blue #1075BA, steel grays, deep navy ink
   ============================================================ */

:root {
  /* brand */
  --brand: #1075ba;
  --brand-700: #0b5a93;
  --brand-800: #084871;
  --brand-300: #7db8e0;
  --brand-100: #e3f0f9;
  --brand-50: #f2f8fc;

  /* ink / neutrals (cool-tinted) */
  --ink: #14233a;
  --ink-2: #41546b;
  --ink-3: #6c7c91;
  --steel: #8a9299;

  --paper: #ffffff;
  --surface: #f4f7f9;
  --surface-2: #e9eef3;
  --line: #dde4eb;
  --line-2: #ccd6df;

  /* accent (overridable via tweaks) */
  --accent: var(--brand);
  --accent-700: var(--brand-700);
  --on-accent: #ffffff;

  /* type */
  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  /* layout */
  --maxw: 1200px;
  --gutter: 32px;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(20,35,58,.06), 0 2px 6px rgba(20,35,58,.05);
  --shadow-md: 0 4px 14px rgba(20,35,58,.08), 0 12px 30px rgba(20,35,58,.07);
  --shadow-lg: 0 18px 50px rgba(12,55,90,.16);

  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 800;
  text-wrap: balance;
}

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

/* kicker / eyebrow */
.kicker {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.kicker::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--accent);
  display: inline-block;
}
.kicker.center { justify-content: center; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15.5px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--accent); color: var(--on-accent); box-shadow: 0 6px 18px color-mix(in oklab, var(--accent) 32%, transparent); }
.btn-primary:hover { background: var(--accent-700); transform: translateY(-2px); box-shadow: 0 10px 26px color-mix(in oklab, var(--accent) 38%, transparent); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--brand-700); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 17px 30px; font-size: 16.5px; }

/* ===================== utility bar ===================== */
.topbar {
  background: var(--ink);
  color: #c6d2df;
  font-size: 13px;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; height: 42px; gap: 20px; }
.topbar a { color: #c6d2df; transition: color .15s; }
.topbar a:hover { color: #fff; }
.topbar-left { display: flex; align-items: center; gap: 22px; }
.topbar-left .sep { color: #3a4a5e; }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar-item svg { width: 14px; height: 14px; opacity: .85; }
.topbar-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: #fff; background: rgba(255,255,255,.08); padding: 5px 12px; border-radius: 999px;
}
.topbar-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: #3fd07e; box-shadow: 0 0 0 3px rgba(63,208,126,.2); }
@media (max-width: 720px) { .topbar-right { display: none; } .topbar-left { gap: 14px; } .topbar-left .desktop-only { display: none; } }

/* ===================== header / nav ===================== */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease), background .25s;
}
.header.scrolled { box-shadow: var(--shadow-sm); background: rgba(255,255,255,.96); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 82px; transition: height .25s var(--ease); gap: 24px; }
.header.scrolled .nav { height: 68px; }
.brand { display: flex; align-items: center; gap: 13px; flex-shrink: 0; }
.brand img { height: 52px; width: auto; transition: height .25s var(--ease); }
.header.scrolled .brand img { height: 44px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text b { font-family: var(--font-display); font-weight: 800; font-size: 21px; letter-spacing: .02em; color: var(--ink); }
.brand-text span { font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); font-family: var(--font-mono); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  position: relative; font-size: 15px; font-weight: 500; color: var(--ink-2);
  padding: 10px 14px; border-radius: 9px; transition: color .15s, background .15s;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-links a:hover { color: var(--ink); background: var(--surface); }
.nav-links a.active { color: var(--accent); }
.nav-links svg { width: 13px; height: 13px; opacity: .6; }

/* dropdown */
.has-menu { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 8px; min-width: 270px;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .2s var(--ease);
}
.has-menu:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex; flex-direction: column; gap: 2px; padding: 11px 13px; border-radius: 9px;
  font-weight: 500; color: var(--ink);
}
.dropdown a:hover { background: var(--brand-50); }
.dropdown a small { font-weight: 400; font-size: 12.5px; color: var(--ink-3); }

.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.hamburger { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: #fff; border-radius: 11px; align-items: center; justify-content: center; }
.hamburger svg { width: 22px; height: 22px; color: var(--ink); }

@media (max-width: 980px) {
  .nav-links, .nav-actions .btn { display: none; }
  .hamburger { display: inline-flex; }
}

/* mobile drawer */
.drawer-backdrop { position: fixed; inset: 0; background: rgba(20,35,58,.45); backdrop-filter: blur(2px); z-index: 90; opacity: 0; visibility: hidden; transition: .25s; }
.drawer-backdrop.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(86vw, 380px);
  background: #fff; z-index: 100; box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform .3s var(--ease);
  display: flex; flex-direction: column; padding: 22px;
}
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.drawer-head img { height: 46px; }
.drawer-close { width: 42px; height: 42px; border: 1px solid var(--line); background: #fff; border-radius: 11px; display: flex; align-items: center; justify-content: center; }
.drawer-close svg { width: 20px; height: 20px; }
.drawer-links { display: flex; flex-direction: column; gap: 2px; }
.drawer-links a { padding: 14px 12px; border-radius: 11px; font-weight: 600; font-size: 17px; color: var(--ink); border-bottom: 1px solid var(--line); }
.drawer-links a:hover { background: var(--surface); }
.drawer .btn { margin-top: 18px; }

/* ===================== hero ===================== */
.hero { position: relative; padding: 74px 0 88px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 90% at 88% -10%, var(--brand-50), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--surface) 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(40px, 5.4vw, 66px); margin: 20px 0 0; }
.hero h1 .hl { color: var(--accent); }
.hero-sub { font-size: 19px; color: var(--ink-2); margin: 22px 0 0; max-width: 32em; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.hero-trust { margin-top: 38px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero-trust .label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.cred-row { display: flex; gap: 10px; flex-wrap: wrap; }
.cred-chip {
  display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 8px 14px 8px 8px; font-size: 13px; font-weight: 600; color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}
.cred-chip i { width: 26px; height: 26px; border-radius: 50%; background: var(--brand-100); color: var(--brand-700); display: grid; place-items: center; font-style: normal; font-family: var(--font-mono); font-size: 11px; font-weight: 700; }

/* hero visual */
.hero-visual { position: relative; }
.hero-img {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/4.4; box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}
.placeholder {
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(135deg, var(--surface-2) 0 14px, var(--surface) 14px 28px);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; color: var(--ink-3);
}
.placeholder .tag { font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em; background: #fff; border: 1px solid var(--line); padding: 7px 13px; border-radius: 8px; color: var(--ink-2); }
.placeholder svg { width: 40px; height: 40px; opacity: .4; }

.float-card {
  position: absolute; left: -26px; bottom: 34px; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 16px 18px; display: flex; align-items: center; gap: 13px; border: 1px solid var(--line);
  max-width: 260px;
}
.float-card .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--accent); color: var(--on-accent); display: grid; place-items: center; flex-shrink: 0; }
.float-card .ic svg { width: 22px; height: 22px; }
.float-card b { display: block; font-family: var(--font-display); font-size: 16px; white-space: nowrap; }
.float-card small { color: var(--ink-3); font-size: 12.5px; }
.float-card.tr { top: 26px; right: -22px; left: auto; bottom: auto; }

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 460px; }
  .float-card { left: 0; }
  .float-card.tr { right: 0; }
}

/* centered hero variant */
body[data-hero="center"] .hero-grid { grid-template-columns: 1fr; text-align: center; max-width: 860px; margin-inline: auto; }
body[data-hero="center"] .kicker, body[data-hero="center"] .hero-trust { justify-content: center; }
body[data-hero="center"] .hero-sub { margin-inline: auto; }
body[data-hero="center"] .hero-cta { justify-content: center; }
body[data-hero="center"] .hero-visual { display: none; }

/* ===================== stats strip ===================== */
.stats { background: var(--ink); color: #fff; }
.stats .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-block: 46px; }
.stat { text-align: left; position: relative; padding-left: 22px; }
.stat::before { content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 3px; background: var(--accent); border-radius: 3px; }
.stat .num { font-family: var(--font-display); font-size: 44px; font-weight: 800; line-height: 1; letter-spacing: -.02em; }
.stat .num .u { color: var(--brand-300); }
.stat .lab { color: #aebccc; font-size: 14px; margin-top: 9px; }
@media (max-width: 760px) { .stats .container { grid-template-columns: 1fr 1fr; gap: 30px 20px; } }

/* ===================== section shell ===================== */
.section { padding: 96px 0; }
.section.alt { background: var(--surface); }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 3.6vw, 46px); margin-top: 16px; }
.section-head p { color: var(--ink-2); font-size: 18px; margin: 16px 0 0; }
.section-head.center .kicker { justify-content: center; }

/* ===================== course catalog ===================== */
.catalog-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-bottom: 36px; }
.filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter {
  font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--ink-2);
  background: #fff; border: 1px solid var(--line); padding: 9px 16px; border-radius: 999px; transition: all .16s var(--ease);
}
.filter:hover { border-color: var(--accent); color: var(--accent); }
.filter.active { background: var(--accent); color: var(--on-accent); border-color: var(--accent); box-shadow: 0 4px 12px color-mix(in oklab, var(--accent) 28%, transparent); }

.course-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 920px) { .course-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .course-grid { grid-template-columns: 1fr; } }

.course {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0; overflow: hidden; display: flex; flex-direction: column;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.course:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
body[data-cards="elevated"] .course { border-color: transparent; box-shadow: var(--shadow-sm); }
.course-thumb { aspect-ratio: 16/9; position: relative; }
.course-thumb .placeholder { background: repeating-linear-gradient(135deg, var(--surface-2) 0 12px, var(--surface) 12px 24px); }
.course-cat {
  position: absolute; top: 12px; left: 12px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .08em;
  text-transform: uppercase; background: rgba(20,35,58,.86); color: #fff; padding: 5px 11px; border-radius: 7px; backdrop-filter: blur(4px);
}
.course-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.course-body h3 { font-size: 21px; font-weight: 700; }
.course-body p { color: var(--ink-2); font-size: 15px; margin: 10px 0 0; flex: 1; }
.course-meta { display: flex; gap: 16px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 13px; color: var(--ink-3); }
.course-meta span { display: inline-flex; align-items: center; gap: 6px; }
.course-meta svg { width: 14px; height: 14px; }
.course-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; font-weight: 600; font-size: 14.5px; color: var(--accent); }
.course-link svg { width: 15px; height: 15px; transition: transform .18s var(--ease); }
.course:hover .course-link svg { transform: translateX(4px); }
.course.hide { display: none; }

/* ===================== accreditations ===================== */
.accred-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .accred-grid { grid-template-columns: 1fr; gap: 44px; } }
.logo-wall { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.logo-box {
  aspect-ratio: 3/2; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  display: grid; place-items: center; transition: all .2s var(--ease);
}
.logo-box:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.logo-box .ph { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); text-align: center; padding: 8px; line-height: 1.4; }
.logo-box .ph b { display: block; font-size: 17px; color: var(--ink); font-family: var(--font-display); letter-spacing: .04em; margin-bottom: 2px; }

.quote-card {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--accent);
  border-radius: var(--radius); padding: 26px 28px; box-shadow: var(--shadow-sm); margin-top: 30px;
}
.quote-card .q { font-size: 18px; line-height: 1.55; color: var(--ink); font-weight: 500; }
.quote-card .by { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.quote-card .av { width: 42px; height: 42px; border-radius: 50%; background: var(--surface-2); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: var(--ink-2); }
.quote-card .by b { font-size: 15px; }
.quote-card .by small { display: block; color: var(--ink-3); font-size: 13px; }

.checklist { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; list-style: none; }
.checklist .ck { width: 26px; height: 26px; border-radius: 8px; background: var(--brand-100); color: var(--brand-700); display: grid; place-items: center; flex-shrink: 0; margin-top: 2px; }
.checklist .ck svg { width: 15px; height: 15px; }
.checklist b { font-weight: 600; }
.checklist span { color: var(--ink-2); font-size: 15px; }
.checklist ul { margin: 0; padding: 0; }

/* ===================== final CTA ===================== */
.cta-band { position: relative; overflow: hidden; background: var(--brand-700); color: #fff; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(90% 140% at 85% 0%, var(--brand) 0%, transparent 60%); opacity: .8; }
.cta-band .container { position: relative; padding-block: 76px; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(28px, 3.6vw, 44px); max-width: 16ch; }
.cta-band p { color: #cfe2f2; margin: 14px 0 0; font-size: 18px; max-width: 40ch; }
.cta-band .actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===================== footer ===================== */
.footer { background: var(--ink); color: #aebccc; padding: 72px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand b { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: #fff; letter-spacing: .04em; }
.footer-brand .sub { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--brand-300); margin-top: 4px; }
.footer-brand p { margin: 18px 0 0; font-size: 14.5px; max-width: 34ch; line-height: 1.7; }
.footer h4 { color: #fff; font-size: 13px; font-family: var(--font-mono); letter-spacing: .12em; text-transform: uppercase; font-weight: 500; margin-bottom: 18px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer ul a { font-size: 14.5px; transition: color .15s; }
.footer ul a:hover { color: #fff; }
.footer-contact div { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; margin-bottom: 13px; }
.footer-contact svg { width: 16px; height: 16px; margin-top: 3px; color: var(--brand-300); flex-shrink: 0; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid #2a3a51; display: grid; place-items: center; transition: all .18s; }
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-2px); }
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom { border-top: 1px solid #243246; margin-top: 52px; padding-top: 26px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: #7c8ca0; }
.footer-bottom a:hover { color: #fff; }

/* ===================== reveal animation ===================== */
/* Transform-only reveal: content opacity is always 1 — it can never vanish. */
.reveal { transform: translateY(22px); opacity: 1; transition: transform .6s var(--ease); will-change: transform; }
.reveal.in { transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { transform: none; transition: none; } html { scroll-behavior: auto; } }

/* tweak mount */
#tweaks-root { position: fixed; z-index: 200; }


/* ============================================================
   INNER PAGE STYLES (added for the WordPress multi-page build)
   Used by all page-*.php templates. Reuses the design tokens
   and components defined above (.container, .btn, .kicker,
   .section, .section-head, .cta-band, etc.).
   ============================================================ */

/* ---------- page hero / banner ---------- */
.page-hero {
  position: relative;
  background:
    radial-gradient(120% 130% at 85% -25%, var(--brand-700), transparent 55%),
    linear-gradient(180deg, var(--ink) 0%, #0f1c30 100%);
  color: #fff;
  padding: 60px 0 58px;
  overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent 70%);
}
.breadcrumb {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--brand-300);
  display: flex; gap: 9px; align-items: center; flex-wrap: wrap;
}
.breadcrumb a { color: var(--brand-300); transition: color .15s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { color: #46586f; }
.breadcrumb .current { color: #8aa0b8; }
.page-hero .kicker { color: var(--brand-300); margin-top: 20px; }
.page-hero .kicker::before { background: var(--brand-300); }
.page-hero h1 { color: #fff; font-size: clamp(33px, 4.4vw, 52px); margin-top: 14px; }
.page-hero .lead { color: #cbd8e6; font-size: 19px; margin-top: 18px; max-width: 62ch; line-height: 1.65; }

/* ---------- generic content section ---------- */
.page-section { padding: 74px 0; }
.page-section.alt { background: var(--surface); }
.page-section.tight { padding: 56px 0; }

.content-grid { display: grid; grid-template-columns: 1.65fr .95fr; gap: 56px; align-items: start; }
@media (max-width: 920px) { .content-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- prose (readable text column) ---------- */
.prose { color: var(--ink-2); font-size: 17px; line-height: 1.75; }
.prose > * + * { margin-top: 18px; }
.prose h2 { color: var(--ink); font-size: clamp(25px, 2.9vw, 33px); margin-top: 44px; }
.prose h3 { color: var(--ink); font-size: 21px; margin-top: 32px; }
.prose > h2:first-child, .prose > h3:first-child { margin-top: 0; }
.prose p { margin: 0; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--accent); font-weight: 600; }
.prose a:hover { text-decoration: underline; }
.prose blockquote {
  margin: 4px 0; border-left: 4px solid var(--accent); background: var(--brand-50);
  padding: 18px 24px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 18px; color: var(--ink); font-style: italic; line-height: 1.55;
}

/* check-bulleted list (reusable) */
.prose ul.checks, ul.checks {
  list-style: none; margin: 4px 0; padding: 0; display: flex; flex-direction: column; gap: 13px;
}
.prose ul.checks li, ul.checks li {
  position: relative; padding-left: 34px; color: var(--ink-2); font-size: 16.5px; line-height: 1.6;
}
.prose ul.checks li::before, ul.checks li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 20px; height: 20px; border-radius: 6px;
  background: var(--brand-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b5a93' stroke-width='3.2'%3E%3Cpath d='m5 12 5 5L20 7'/%3E%3C/svg%3E") center / 13px no-repeat;
}
.prose ul.checks li strong, ul.checks li strong { color: var(--ink); }

/* numbered list with circular badges (modules, long course lists) */
ol.num-list { counter-reset: item; list-style: none; margin: 4px 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
ol.num-list li {
  counter-increment: item; position: relative; padding: 14px 18px 14px 56px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  color: var(--ink); font-size: 16px; font-weight: 500; line-height: 1.45;
}
ol.num-list li::before {
  content: counter(item); position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; border-radius: 8px; background: var(--brand-100); color: var(--brand-700);
  font-family: var(--font-display); font-weight: 800; font-size: 14px;
  display: grid; place-items: center;
}
ol.num-list.cols { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 16px; }
@media (max-width: 720px) { ol.num-list.cols { grid-template-columns: 1fr; } }

/* course "rows": title + duration badge (academic courses) */
.course-rows { display: flex; flex-direction: column; gap: 12px; }
.course-rows .row {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 22px; transition: border-color .18s var(--ease), box-shadow .18s var(--ease), transform .18s var(--ease);
}
.course-rows .row:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); transform: translateX(3px); }
.course-rows .row b { font-family: var(--font-display); font-size: 18px; color: var(--ink); font-weight: 700; }
.course-rows .dur {
  flex-shrink: 0; font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em;
  background: var(--brand-100); color: var(--brand-700); padding: 7px 13px; border-radius: 999px; white-space: nowrap;
}

/* ---------- sidebar card ---------- */
.side { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 20px; }
@media (max-width: 920px) { .side { position: static; } }
.side-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm);
}
.side-card.dark { background: var(--ink); border-color: transparent; color: #fff; }
.side-card h3 { font-size: 19px; margin-bottom: 16px; }
.side-card.dark h3 { color: #fff; }
.side-card .fact { display: flex; gap: 12px; align-items: flex-start; padding: 11px 0; border-bottom: 1px solid var(--line); }
.side-card .fact:last-of-type { border-bottom: 0; }
.side-card .fact .k { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); min-width: 78px; padding-top: 2px; }
.side-card .fact .v { font-weight: 600; color: var(--ink); font-size: 15px; }
.side-card.dark .fact { border-color: #243246; }
.side-card.dark .fact .k { color: #8aa0b8; }
.side-card.dark .fact .v { color: #fff; }
.side-card .btn { width: 100%; margin-top: 18px; }

/* ---------- feature tiles (landing-style pages) ---------- */
.tile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .tile-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .tile-grid { grid-template-columns: 1fr; } }
.tile {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.tile .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--brand-100); color: var(--brand-700); display: grid; place-items: center; margin-bottom: 16px; }
.tile .ic svg { width: 23px; height: 23px; }
.tile h3 { font-size: 19px; }
.tile p { color: var(--ink-2); font-size: 15px; margin-top: 9px; line-height: 1.6; }

/* two-up grid helper */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
@media (max-width: 820px) { .grid-2 { grid-template-columns: 1fr; } }

/* ---------- contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-row { display: flex; gap: 15px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; }
.contact-row .ic { width: 44px; height: 44px; flex-shrink: 0; border-radius: 11px; background: var(--brand-100); color: var(--brand-700); display: grid; place-items: center; }
.contact-row .ic svg { width: 21px; height: 21px; }
.contact-row .k { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
.contact-row .v { font-weight: 600; color: var(--ink); font-size: 16px; margin-top: 3px; }
.contact-row .v a:hover { color: var(--accent); }

.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.contact-form .field { margin-bottom: 18px; }
.contact-form label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.contact-form input, .contact-form textarea {
  width: 100%; font-family: var(--font-body); font-size: 15.5px; color: var(--ink);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 13px 15px; transition: border-color .15s, background .15s;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent); background: #fff; box-shadow: 0 0 0 3px var(--brand-100); }
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form .btn { width: 100%; }
.form-note { font-size: 13px; color: var(--ink-3); margin-top: 12px; text-align: center; }

/* embedded map */
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-embed iframe { display: block; width: 100%; height: 340px; border: 0; }

/* ---------- reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.review-card .stars { display: flex; gap: 3px; color: #f5a623; margin-bottom: 14px; }
.review-card .stars svg { width: 17px; height: 17px; }
.review-card .q { color: var(--ink); font-size: 16px; line-height: 1.6; flex: 1; }
.review-card .by { display: flex; align-items: center; gap: 13px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.review-card .av { width: 44px; height: 44px; border-radius: 50%; background: var(--brand-100); color: var(--brand-700); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 16px; flex-shrink: 0; }
.review-card .by b { font-size: 15px; color: var(--ink); display: block; }
.review-card .by small { color: var(--ink-3); font-size: 13px; }

/* ---------- policy note callout ---------- */
.note-card { display: flex; gap: 15px; align-items: flex-start; background: var(--brand-50); border: 1px solid var(--brand-100); border-radius: var(--radius); padding: 20px 22px; color: var(--ink-2); font-size: 15px; line-height: 1.6; }
.note-card .ic { color: var(--brand-700); flex-shrink: 0; margin-top: 1px; }
.note-card .ic svg { width: 22px; height: 22px; }
.note-card a { color: var(--accent); font-weight: 600; }

/* lead paragraph for in-body intros */
.lead-text { font-size: 20px; line-height: 1.6; color: var(--ink); font-weight: 500; }

/* simple definition / vision-mission cards */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 8px; }
@media (max-width: 760px) { .vm-grid { grid-template-columns: 1fr; } }
.vm-card { background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--accent); border-radius: var(--radius); padding: 28px; }
.vm-card h3 { font-size: 20px; margin-bottom: 12px; }
.vm-card p { color: var(--ink-2); font-size: 16px; line-height: 1.7; }
.vm-card .icon { width: 44px; height: 44px; border-radius: 12px; background: var(--brand-100); color: var(--brand-700); display: grid; place-items: center; margin-bottom: 16px; }
.vm-card .icon svg { width: 22px; height: 22px; }

/* utility */
.center-narrow { max-width: 760px; margin-inline: auto; text-align: center; }
