/* APG Academy: colours taken from the logo (navy, gold, cream). */
:root {
  --navy: #142436;
  --navy-2: #1d3450;
  --navy-deep: #0c1726;
  --slate: #344353;
  --gold: #b0935e;
  --gold-light: #d4b983;
  --gold-dark: #8f7442;
  --cream: #faf8f2;
  --cream-2: #f3efe4;
  --paper: #ffffff;
  --ink: #142436;
  --ink-soft: #52606e;
  --line: #e4ded0;
  --radius: 10px;
  --max: 1200px;
  --shadow: 0 10px 30px rgba(20, 36, 54, .08);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 130px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: 'Inter', system-ui, sans-serif; color: var(--ink);
  background: var(--paper); line-height: 1.6; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
h1, h2, h3 { font-family: 'Montserrat', 'Inter', sans-serif; line-height: 1.2; margin: 0 0 .5em; color: var(--navy); }
h1 { font-size: clamp(2rem, 4.6vw, 3.3rem); font-weight: 800; letter-spacing: -.01em; }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); font-weight: 700; }
h3 { font-size: 1.08rem; font-weight: 700; }
p { margin: 0 0 1em; }
a { color: var(--navy-2); }
svg { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--gold); color: #fff; padding: 8px 14px; z-index: 100; border-radius: 6px; }
.skip:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

.eyebrow { text-transform: uppercase; letter-spacing: .16em; font-size: .75rem; font-weight: 600; color: var(--gold-dark); margin-bottom: .7em; }
.lead { font-size: 1.1rem; color: var(--ink-soft); max-width: 44em; }
.prose { color: var(--ink-soft); }
.prose h2 { margin-top: 1.4em; }
.prose h2:first-child { margin-top: 0; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4em;
  font-weight: 600; font-size: .95rem; text-decoration: none; padding: .8em 1.5em;
  border-radius: 8px; border: 2px solid transparent; cursor: pointer; font-family: inherit;
  transition: background .2s, color .2s, border-color .2s;
}
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-dark); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); }
.btn-outline { border-color: rgba(255,255,255,.55); color: #fff; }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-outline-navy { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline-navy:hover { background: var(--navy); color: #fff; }
.btn-block { display: flex; width: 100%; }
.link-arrow { font-weight: 600; text-decoration: none; color: var(--navy); white-space: nowrap; }
.link-arrow:hover { color: var(--gold-dark); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--cream); box-shadow: 0 1px 0 var(--line); }
.header-top { display: flex; align-items: center; gap: 24px; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.brand img { width: 52px; height: 52px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.25rem; color: var(--navy); letter-spacing: .01em; }
.brand-text small { font-size: .74rem; color: var(--gold-dark); font-weight: 600; letter-spacing: .04em; }
.search { flex: 1; max-width: 460px; margin-left: auto; display: flex; background: #fff; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.search input { flex: 1; border: 0; padding: .65em 1.1em; font: inherit; font-size: .92rem; background: transparent; min-width: 0; color: var(--ink); }
.search input:focus { outline: none; }
.search:focus-within { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(176,147,94,.2); }
.search button { border: 0; background: transparent; padding: 0 16px; cursor: pointer; color: var(--navy); }
.search svg { width: 18px; height: 18px; }

.main-nav { background: var(--navy); }
.nav-list { list-style: none; margin: 0; padding: 0; display: flex; gap: 4px; }
.nav-list > li > a, .menu-btn {
  display: flex; align-items: center; gap: 4px; padding: 13px 16px; color: rgba(255,255,255,.88);
  text-decoration: none; font-weight: 500; font-size: .94rem; background: none; border: 0; font-family: inherit; cursor: pointer;
  border-bottom: 3px solid transparent;
}
.nav-list > li > a:hover, .menu-btn:hover, .has-menu:hover .menu-btn { color: #fff; }
.nav-list > li > a.active, .has-menu.active .menu-btn { color: #fff; border-bottom-color: var(--gold); }
.menu-btn svg { width: 16px; height: 16px; transition: transform .2s; }
.has-menu { position: relative; }
.submenu {
  list-style: none; margin: 0; padding: 8px; position: absolute; top: 100%; left: 0; min-width: 210px;
  background: #fff; border-radius: 0 0 var(--radius) var(--radius); box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .15s, transform .15s, visibility .15s;
}
.submenu a { display: block; padding: 10px 14px; border-radius: 6px; text-decoration: none; color: var(--navy); font-weight: 500; }
.submenu a:hover { background: var(--cream-2); color: var(--gold-dark); }
.has-menu:hover .submenu, .has-menu:focus-within .submenu, .has-menu.open .submenu { opacity: 1; visibility: visible; transform: none; }
.has-menu:hover .menu-btn svg, .has-menu.open .menu-btn svg { transform: rotate(180deg); }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; margin-left: auto; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; }

/* Hero (home) */
.hero { position: relative; background: radial-gradient(ellipse at 80% 20%, var(--navy-2), var(--navy) 55%, var(--navy-deep)); color: #fff; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .07;
  background-image: repeating-linear-gradient(0deg, transparent 0 38px, #fff 38px 39px), repeating-linear-gradient(90deg, transparent 0 38px, #fff 38px 39px);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; padding-top: clamp(56px, 8vw, 96px); padding-bottom: clamp(56px, 8vw, 90px); }
.hero h1 { color: #fff; }
.hero h1 span { color: var(--gold-light); }
.hero .eyebrow { color: var(--gold-light); }
.hero .lead { color: rgba(255,255,255,.8); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.8em; }
.hero-actions.center { justify-content: center; }
.hero-stats { list-style: none; padding: 0; margin: 2.4em 0 0; display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font-family: 'Montserrat', sans-serif; font-size: 1.7rem; font-weight: 800; color: var(--gold-light); line-height: 1.1; }
.hero-stats span { font-size: .85rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .1em; }
.hero-emblem { display: flex; justify-content: center; }
.hero-emblem img {
  width: min(400px, 100%); aspect-ratio: 1; padding: 7%; border-radius: 50%;
  background: var(--cream); box-shadow: 0 0 0 10px rgba(176,147,94,.35), 0 0 0 22px rgba(176,147,94,.12), 0 30px 60px rgba(0,0,0,.35);
}
.hero-pillars { position: relative; background: rgba(0,0,0,.22); border-top: 1px solid rgba(176,147,94,.35); }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); }
.pillars > div { padding: 20px 20px 20px 0; display: flex; flex-direction: column; }
.pillars > div + div { padding-left: 24px; border-left: 1px solid rgba(255,255,255,.12); }
.pillars strong { font-family: 'Montserrat', sans-serif; color: var(--gold-light); text-transform: uppercase; letter-spacing: .12em; font-size: .9rem; }
.pillars span { color: rgba(255,255,255,.75); font-size: .9rem; }

/* Page hero (inner pages) */
.page-hero { background: linear-gradient(120deg, var(--navy-deep), var(--navy) 60%, var(--navy-2)); color: #fff; padding: clamp(40px, 6vw, 70px) 0; border-bottom: 4px solid var(--gold); }
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.7rem); max-width: 26em; }
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero .lead { color: rgba(255,255,255,.8); margin-bottom: 0; }
.crumbs { font-size: .85rem; margin-bottom: 1.4em; color: rgba(255,255,255,.6); display: flex; flex-wrap: wrap; gap: 6px; }
.crumbs a { color: rgba(255,255,255,.8); text-decoration: none; }
.crumbs a:hover { color: var(--gold-light); }
.crumbs .sep { opacity: .5; }

/* Sections */
.section { padding: clamp(56px, 8vw, 90px) 0; }
.section-tight { padding-top: clamp(32px, 5vw, 56px); }
.section-alt { background: var(--cream); }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 28px; flex-wrap: wrap; }
.section-head h2 { margin: 0; }
.split { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; }

/* Category cards */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cat-card {
  display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius);
  text-decoration: none; color: inherit; background: #fff; transition: transform .2s, box-shadow .2s, border-color .2s;
}
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--gold); }
.cat-card p { color: var(--ink-soft); font-size: .95rem; flex: 1; }
.cat-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--navy); color: var(--gold-light); display: grid; place-items: center; margin-bottom: 16px; flex-shrink: 0; }
.cat-icon svg { width: 24px; height: 24px; stroke-width: 1.8; }
.cat-count { font-weight: 600; color: var(--gold-dark); font-size: .9rem; }

/* Course cards */
.course-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.course-card {
  display: flex; flex-direction: column; gap: 10px; padding: 22px; background: #fff; border-radius: var(--radius);
  border: 1px solid var(--line); border-top: 4px solid var(--navy); text-decoration: none; color: inherit;
  transition: transform .2s, box-shadow .2s, border-top-color .2s;
}
.course-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-top-color: var(--gold); }
.course-card h3 { margin: 0; flex: 1; font-size: 1.02rem; }
.meta { display: flex; align-items: center; gap: 6px; font-size: .87rem; color: var(--ink-soft); }
.meta svg { width: 16px; height: 16px; color: var(--gold-dark); }
.tag { align-self: flex-start; font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; padding: 3px 10px; border-radius: 999px; background: var(--cream-2); color: var(--gold-dark); }

/* Fast track preview */
.track-preview { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; counter-reset: s; }
.track-preview li { display: flex; align-items: center; gap: 16px; padding: 16px 18px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; font-weight: 500; }
.track-preview span { flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; background: var(--navy); color: var(--gold-light); display: grid; place-items: center; font-family: 'Montserrat', sans-serif; font-weight: 700; }

/* CTA band */
.cta-band { background: var(--navy); color: #fff; padding: 44px 0; border-top: 4px solid var(--gold); }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin-bottom: .2em; }
.cta-band p { margin: 0; color: rgba(255,255,255,.75); }

/* About */
.about-logo { margin: 0; display: flex; justify-content: center; }
.about-logo img { width: min(380px, 100%); border-radius: 16px; box-shadow: var(--shadow); background: var(--cream); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 24px; }
.value { background: #fff; padding: 28px; border-radius: var(--radius); border-left: 4px solid var(--gold); }
.value p { color: var(--ink-soft); margin: 0; }
.steps { list-style: none; padding: 0; margin: 24px 0 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.steps li { border-top: 3px solid var(--navy); padding-top: 18px; }
.step-num { display: block; font-family: 'Montserrat', sans-serif; font-weight: 800; color: var(--gold); margin-bottom: .4em; }
.steps p { color: var(--ink-soft); margin: 0; }

/* All courses */
.filter-bar { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 12px; }
.filter-search { flex: 1 1 280px; display: flex; align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: 8px; padding: 0 14px; background: #fff; }
.filter-search:focus-within { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(176,147,94,.2); }
.filter-search svg { width: 18px; height: 18px; color: var(--ink-soft); flex-shrink: 0; }
.filter-search input { border: 0; padding: 12px 0; font: inherit; flex: 1; min-width: 0; background: transparent; color: var(--ink); }
.filter-search input:focus { outline: none; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { border: 1px solid var(--line); background: #fff; padding: 8px 14px; border-radius: 999px; font: inherit; font-size: .88rem; font-weight: 500; cursor: pointer; color: var(--navy); }
.chip:hover { border-color: var(--gold); }
.chip.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.result-count { font-size: .9rem; color: var(--ink-soft); margin: 0 0 20px; }
.no-results { padding: 24px; background: var(--cream); border-radius: var(--radius); }
.course-group { margin-bottom: 40px; }
.group-head { display: flex; align-items: center; gap: 16px; padding-bottom: 14px; border-bottom: 2px solid var(--navy); margin-bottom: 4px; }
.group-head .cat-icon { margin: 0; }
.group-head h2 { margin: 0; font-size: 1.35rem; }
.group-head p { margin: 0; color: var(--ink-soft); font-size: .92rem; }
.group-head div { flex: 1; }
.group-count { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--gold-dark); background: var(--cream-2); padding: 4px 12px; border-radius: 999px; font-size: .9rem; }
.course-list { list-style: none; margin: 0; padding: 0; }
.course-row a { display: grid; grid-template-columns: 1fr auto 24px; gap: 16px; align-items: center; padding: 14px 8px; border-bottom: 1px solid var(--line); text-decoration: none; color: var(--navy); }
.course-row a:hover { background: var(--cream); }
.course-row a:hover .row-go { color: var(--gold-dark); transform: translateX(3px); }
.row-title { font-weight: 500; }
.row-days { font-size: .87rem; color: var(--ink-soft); white-space: nowrap; }
.row-go { color: var(--line); font-weight: 700; transition: transform .15s, color .15s; }
.stages { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 24px; }
.stage { background: #fff; border-radius: var(--radius); padding: 22px; border-top: 4px solid var(--gold); display: flex; flex-direction: column; }
.stage ul { list-style: none; padding: 0; margin: 0 0 12px; flex: 1; }
.stage li { padding: 6px 0; border-bottom: 1px dashed var(--line); font-size: .92rem; }
.stage a { text-decoration: none; }
.stage a:hover { color: var(--gold-dark); }
.stage-foot { margin: 0; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold-dark); font-weight: 600; }

/* Course detail */
.course-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.course-body h2 { font-size: 1.4rem; }
.checks, .dots { padding: 0; list-style: none; margin: 0 0 1.2em; }
.checks li, .dots li { position: relative; padding-left: 26px; margin-bottom: 8px; }
.checks li::before { content: ""; position: absolute; left: 2px; top: .45em; width: 12px; height: 7px; border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg); }
.dots li::before { content: ""; position: absolute; left: 6px; top: .62em; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.dots.cols { columns: 2; column-gap: 32px; }
.dots.cols li { break-inside: avoid; }
.agenda { display: grid; gap: 14px; }
.agenda-item { border: 1px solid var(--line); border-left: 4px solid var(--navy); border-radius: var(--radius); padding: 18px 20px 6px; background: #fff; }
.agenda-item h3 { font-size: 1rem; }
.agenda-note { font-size: .92rem; font-style: italic; }
.course-aside { position: sticky; top: 140px; }
.aside-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; display: grid; gap: 10px; }
.aside-card dl { margin: 0 0 8px; }
.aside-card dt { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold-dark); font-weight: 600; margin-top: 12px; }
.aside-card dt:first-child { margin-top: 0; }
.aside-card dd { margin: 2px 0 0; font-size: .93rem; color: var(--navy); }
.aside-note { font-size: .84rem; color: var(--ink-soft); margin: 4px 0 0; text-align: center; }

/* Events / coming soon */
.empty-state { max-width: 640px; margin: 0 auto; text-align: center; }
.empty-state p { color: var(--ink-soft); }
.empty-icon { width: 76px; height: 76px; margin: 0 auto 20px; border-radius: 50%; background: var(--cream-2); color: var(--gold-dark); display: grid; place-items: center; }
.empty-icon svg { width: 34px; height: 34px; stroke-width: 1.6; }
.coming-soon { text-align: center; padding: clamp(70px, 12vw, 130px) 0; background: radial-gradient(ellipse at 50% 0%, var(--navy-2), var(--navy) 60%, var(--navy-deep)); color: #fff; }
.coming-soon img { width: 140px; height: 140px; border-radius: 50%; background: var(--cream); padding: 12px; margin-bottom: 20px; box-shadow: 0 0 0 8px rgba(176,147,94,.3); }
.coming-soon h1 { color: #fff; font-size: clamp(2.4rem, 7vw, 4.2rem); }
.coming-soon .eyebrow { color: var(--gold-light); }
.coming-soon .lead { color: rgba(255,255,255,.8); margin: 0 auto; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: start; }
.contact-form { display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 6px; font-weight: 500; font-size: .92rem; color: var(--navy); }
.contact-form input, .contact-form select, .contact-form textarea {
  font: inherit; font-weight: 400; padding: 11px 14px; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--ink); width: 100%;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(176,147,94,.2); }
.contact-form button { justify-self: start; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hp { position: absolute; left: -9999px; }
.form-status { padding: 14px 16px; border-radius: 8px; font-weight: 500; }
.form-status.ok { background: #e6f2e8; color: #1f5c2e; }
.form-status.err { background: #fbeaea; color: #8a1f1f; }
.info-card { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 28px; border-top: 4px solid var(--gold); }
.info-card h2 { color: #fff; font-size: 1.3rem; }
.info-card p { color: rgba(255,255,255,.85); }
.info-card a { color: var(--gold-light); }
.info-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold-light) !important; font-weight: 600; margin-bottom: .2em; }

/* Footer */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.7); padding-top: 56px; font-size: .93rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 32px; }
.footer-logo { width: 120px; border-radius: 12px; background: var(--cream); }
.footer-tag { margin-top: 12px; color: var(--gold-light); font-size: .82rem; letter-spacing: .06em; }
.site-footer h3 { color: #fff; font-size: .95rem; margin-bottom: 14px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: rgba(255,255,255,.7); text-decoration: none; }
.site-footer a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding: 20px; font-size: .84rem; text-align: center; }

/* Responsive */
@media (max-width: 1000px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .stages, .steps { grid-template-columns: repeat(2, 1fr); }
  .course-layout { grid-template-columns: 1fr; }
  .course-aside { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  html { scroll-padding-top: 80px; }
  .header-top { height: 68px; }
  .search { display: none; }
  .nav-toggle { display: block; }
  .brand img { width: 44px; height: 44px; }
  .main-nav { display: none; }
  .main-nav.open { display: block; }
  .nav-list { flex-direction: column; gap: 0; padding: 8px 0 14px; }
  .nav-list > li > a, .menu-btn { width: 100%; border-bottom: 0; border-left: 3px solid transparent; }
  .nav-list > li > a.active, .has-menu.active .menu-btn { border-left-color: var(--gold); border-bottom: 0; }
  .submenu { position: static; opacity: 1; visibility: visible; transform: none; display: none; background: rgba(255,255,255,.06); box-shadow: none; border-radius: 0; padding: 0 0 6px 18px; }
  .has-menu.open .submenu { display: block; }
  .submenu a { color: rgba(255,255,255,.85); }
  .submenu a:hover { background: transparent; color: var(--gold-light); }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero-emblem { order: -1; }
  .hero-emblem img { width: 220px; }
  .pillars { grid-template-columns: 1fr; }
  .pillars > div, .pillars > div + div { padding: 14px 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.1); }
  .pillars > div:first-child { border-top: 0; }
  .value-grid { grid-template-columns: 1fr; }
  .dots.cols { columns: 1; }
}
@media (max-width: 560px) {
  .cat-grid, .stages, .steps, .field-row, .footer-grid { grid-template-columns: 1fr; }
  .brand-text small { display: none; }
  .course-row a { grid-template-columns: 1fr 20px; }
  .row-days { grid-column: 1; grid-row: 2; }
  .row-go { grid-row: 1 / span 2; grid-column: 2; }
  .hero-stats { gap: 24px; }
  .cta-inner .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
