/* ============================================================
   THE BEAUTY UNIVERSITY OF JAMAICA - Design System v2
   University Edition: White · Deep Navy · Refined Gold · Teal
   Authoritative. Editorial. Globally credentialed.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;0,900;1,500;1,600;1,700&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,600&family=DM+Serif+Display:ital@0;1&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  /* ── Gold - refined, metallic, prestige ── */
  --gold:        #B8892A;
  --gold-deep:   #97700F;
  --gold-bright: #D4AA40;
  --gold-mid:    #C49830;
  --gold-soft:   rgba(184,137,42,0.10);
  --gold-grad:   linear-gradient(135deg, #DDB84A 0%, #B8892A 48%, #97700F 100%);

  /* ── Navy - institutional anchor ── */
  --navy:   #0A1F38;
  --navy-2: #071528;
  --navy-3: #051020;

  /* ── Text ── */
  --ink:      #0C1C2E;
  --ink-soft: #374B62;
  --muted:    #7A8899;

  /* ── Teal - secondary accent ── */
  --teal:      #15788F;
  --teal-deep: #0F5E70;
  --teal-soft: #E0EEF1;

  /* ── Crest jewel tones (seal-derived) ── */
  --royal:       #2562C8;
  --royal-deep:  #1A48A0;
  --royal-soft:  rgba(37,98,200,0.09);
  --cyan:        #2D9DCF;
  --cyan-deep:   #1A7DAE;
  --cyan-soft:   rgba(45,157,207,0.11);
  --lime:        #78A818;
  --lime-deep:   #5E8A10;
  --lime-bright: #90BE28;
  --lime-soft:   rgba(120,168,24,0.11);
  --sun:         #F0B800;
  --crest-grad:  linear-gradient(135deg, var(--royal-deep) 0%, var(--royal) 34%, var(--cyan) 66%, var(--lime-bright) 100%);

  /* ── Backgrounds ── */
  --cream:   #FFFFFF;          /* clean white - not spa cream */
  --cream-2: #F5F3EF;          /* subtle warm alt for sections */
  --white:   #FFFFFF;
  --blush-bg:#F0ECE6;          /* warm neutral - replaces pink */

  /* ── Structure ── */
  --line:    #DDD8D0;
  --line-2:  #E5E0D8;
  --success: #1E7A4A;
  --error:   #B53030;

  /* ── Typography ── */
  --display: 'Playfair Display', Georgia, serif;
  --ui:      'Inter', -apple-system, system-ui, sans-serif;
  --mono:    'IBM Plex Mono', monospace;

  /* ── Layout ── */
  --maxw:   1260px;
  --nav-h:  82px;
  --shadow: 0 20px 56px rgba(10,31,56,0.10);
  --shadow-lg: 0 34px 80px rgba(10,31,56,0.16);
  --r:      8px;          /* border-radius - architectural, not bubbly */
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ui);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Layout ── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
section { position: relative; }
.sec    { padding: 116px 0; }
.sec-sm { padding: 74px 0; }

/* Section backgrounds */
.bg-cream  { background: var(--cream);   color: var(--ink); }
.bg-white  { background: var(--white);   color: var(--ink); }
.bg-blush  { background: var(--blush-bg); color: var(--ink); }
.bg-alt    { background: var(--cream-2); color: var(--ink); }
.bg-navy   { background: var(--navy);    color: #E8EFF7; }
.bg-teal   { background: var(--teal);    color: #E4F3F7; }
/* legacy aliases */
.bg-black     { background: var(--navy);    color: #E8EFF7; }
.bg-soft      { background: var(--cream-2); color: var(--ink); }
.bg-charcoal  { background: var(--navy-2);  color: #E8EFF7; }
.bg-light     { background: var(--cream);   color: var(--ink); }

.bg-navy .h1, .bg-navy .h2, .bg-navy .h3,
.bg-teal .h1, .bg-teal .h2, .bg-teal .h3 { color: #fff; }

/* ── Typography ── */
h1, h2, h3 { font-family: var(--display); font-weight: 700; line-height: 1.08; color: var(--navy); }
.h1 { font-size: clamp(3rem, 7vw, 6rem); font-weight: 800; letter-spacing: -0.02em; color: var(--navy); }
.h2 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 700; letter-spacing: -0.015em; color: var(--navy); }
.h3 { font-size: clamp(1.3rem, 2.1vw, 1.6rem); font-weight: 700; color: var(--navy); }
em, .ital { font-style: italic; }
p { color: var(--ink-soft); }
.lede { font-size: clamp(1.08rem, 1.6vw, 1.32rem); color: var(--ink-soft); font-weight: 400; max-width: 60ch; }
.bg-navy p, .bg-teal p,
.bg-navy .lede, .bg-teal .lede { color: rgba(255,255,255,0.80); }

/* Section label + divider */
.label {
  font-family: var(--ui); font-weight: 600; font-size: 0.68rem;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: 12px;
}
.label::before {
  content: ''; width: 7px; height: 7px; background: var(--gold);
  transform: rotate(45deg); border-radius: 1px; flex-shrink: 0;
}
.bg-navy .label, .bg-teal .label { color: var(--gold-bright); }
.bg-navy .label::before, .bg-teal .label::before,
.hero-img .label::before, .hero-video .label::before { background: var(--gold-bright); }

.rule {
  position: relative; height: 2px; width: 52px;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep));
  margin: 20px 0 28px; border-radius: 2px;
}
.rule::after {
  content: ''; position: absolute; right: -4px; top: 50%;
  width: 8px; height: 8px; background: var(--gold);
  transform: translateY(-50%) rotate(45deg); border-radius: 1px;
}
.rule.center {
  width: 80px; margin-left: auto; margin-right: auto;
  background: linear-gradient(90deg, transparent, var(--gold) 22%, var(--gold-deep) 50%, var(--gold) 78%, transparent);
}
.rule.center::after {
  left: 50%; right: auto; transform: translate(-50%, -50%) rotate(45deg);
  background: var(--cream); border: 2px solid var(--gold); width: 9px; height: 9px;
}
.bg-navy .rule.center::after { background: var(--navy); }
.center { text-align: center; }
.center .rule { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  font-family: var(--ui); font-weight: 700; font-size: 0.74rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 17px 36px; border: 1.5px solid transparent; border-radius: var(--r);
  transition: all 0.22s ease; white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--gold-grad); color: #2A1D04;
  border-color: transparent;
  box-shadow: 0 1px 0 rgba(255,255,255,0.35) inset, 0 8px 26px rgba(150,112,15,0.28);
}
.btn-primary:hover {
  filter: brightness(1.05); transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.45) inset, 0 18px 40px rgba(150,112,15,0.38);
}
.btn-secondary { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: #fff; }
.btn-ghost {
  background: transparent; color: var(--navy);
  border-color: rgba(10,31,56,0.30);
}
.btn-ghost:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-sm { padding: 12px 24px; font-size: 0.68rem; }
/* on dark backgrounds */
.bg-navy .btn-ghost, .bg-teal .btn-ghost,
.hero-img .btn-ghost, .hero-video .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.48); }
.bg-navy .btn-ghost:hover, .bg-teal .btn-ghost:hover,
.hero-img .btn-ghost:hover, .hero-video .btn-ghost:hover { background: #fff; color: var(--navy); border-color: #fff; }
.bg-navy .btn-secondary, .bg-teal .btn-secondary { color: #fff; border-color: rgba(255,255,255,0.55); }
.bg-navy .btn-secondary:hover, .bg-teal .btn-secondary:hover { background: #fff; color: var(--navy); }

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,0.88); backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(10,31,56,0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 8px 32px rgba(10,31,56,0.08);
  border-bottom-color: rgba(184,137,42,0.18);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { width: 52px; height: 52px; object-fit: contain; }
.brand-txt { display: flex; flex-direction: column; line-height: 1.05; }
.brand-txt .b1 {
  font-family: var(--display); font-weight: 700; font-size: 1.06rem;
  color: var(--navy); letter-spacing: 0.01em; white-space: nowrap;
}
.brand-txt .b2 {
  font-family: var(--ui); font-size: 0.56rem; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--gold-deep); margin-top: 2px;
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 0.80rem; font-weight: 600; letter-spacing: 0.04em; color: var(--ink);
  position: relative; padding: 6px 0; transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -1px; height: 2px; width: 0;
  background: var(--gold); transition: width 0.25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-signin { font-size: 0.80rem; font-weight: 600; letter-spacing: 0.04em; color: var(--ink); transition: color 0.2s; }
.nav-signin:hover { color: var(--gold-deep); }
.home-video .nav:not(.scrolled) .nav-signin { color: rgba(255,255,255,0.9); }
.home-video .nav:not(.scrolled) .nav-signin:hover { color: var(--gold-bright); }

/* Dropdown */
.has-drop { position: relative; }
.drop {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px);
  background: var(--white); border: 1px solid var(--line); min-width: 258px; padding: 10px;
  opacity: 0; visibility: hidden; transition: all 0.2s ease;
  box-shadow: var(--shadow); border-radius: 10px;
}
.has-drop:hover .drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(5px); }
.drop a { display: block; padding: 12px 15px; font-size: 0.82rem; color: var(--ink); border-radius: 6px; }
.drop a::after { display: none; }
.drop a:hover { background: var(--gold-soft); color: var(--gold-deep); }

/* Mobile nav */
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.burger span { width: 26px; height: 2px; background: var(--navy); transition: 0.3s; }
.drawer {
  position: fixed; inset: 0; z-index: 1100; background: var(--cream);
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(.7,0,.3,1);
  display: flex; flex-direction: column; padding: 28px;
}
.drawer.open { transform: translateX(0); }
.drawer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.drawer-close { background: none; border: none; color: var(--navy); font-size: 2rem; cursor: pointer; line-height: 1; }
.drawer a { font-family: var(--display); font-size: 1.7rem; color: var(--navy); padding: 13px 0; border-bottom: 1px solid var(--line); }
.drawer a:hover { color: var(--gold-deep); }
.drawer .btn { margin-top: 26px; justify-content: center; }

/* ── Cards ── */
.card {
  background: var(--white); border: 1px solid var(--line); padding: 36px; border-radius: 10px;
  transition: all 0.3s ease; position: relative; overflow: hidden;
  box-shadow: 0 2px 12px rgba(10,31,56,0.04);
}
.card.topaccent::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold-grad);
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-5px); border-color: rgba(184,137,42,0.28); }
.card .h3 { margin-bottom: 14px; }
.card p { color: var(--ink-soft); font-size: 0.97rem; }
.card-link {
  color: var(--gold-deep); font-weight: 600; font-size: 0.84rem; letter-spacing: 0.03em;
  margin-top: 20px; display: inline-flex; gap: 8px; align-items: center; transition: gap 0.2s;
}
.card:hover .card-link { gap: 14px; }
/* dark-band cards */
.bg-navy .card, .bg-teal .card {
  background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12); box-shadow: none;
}
.bg-navy .card p, .bg-teal .card p { color: rgba(255,255,255,0.78); }
.bg-navy .card .h3, .bg-teal .card .h3 { color: #fff; }
.bg-navy .card:hover, .bg-teal .card:hover {
  background: rgba(255,255,255,0.09); border-color: var(--gold-bright);
}

/* Card with bg-navy/bg-teal class applied directly to the card element */
.card.bg-navy { background: var(--navy) !important; color: #E8EFF7; border-color: rgba(255,255,255,0.12); }
.card.bg-navy .h3 { color: #fff; }
.card.bg-navy p { color: rgba(255,255,255,0.78); }
.card.bg-navy:hover { background: #0d2848 !important; border-color: var(--gold-bright); }
.card.bg-teal { background: var(--teal) !important; color: #E4F3F7; border-color: rgba(255,255,255,0.12); }
.card.bg-teal .h3 { color: #fff; }
.card.bg-teal p { color: rgba(255,255,255,0.78); }

/* legacy */
.card-light { background: var(--white); border: 1px solid var(--line); color: var(--ink); }

/* Badge */
.badge {
  display: inline-block; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 6px 13px; border-radius: 100px; margin-bottom: 16px;
  color: var(--gold-deep); background: var(--gold-soft); border: 1px solid rgba(184,137,42,0.28);
}
.badge.teal { color: var(--teal-deep); background: var(--teal-soft); border-color: rgba(21,120,143,0.25); }
.badge.red  { color: #fff; background: var(--error); border-color: var(--error); }
.badge.soon { color: var(--navy); background: var(--sun); border-color: var(--sun); }
.bg-navy .badge, .bg-teal .badge { color: var(--navy); background: var(--gold-bright); border-color: var(--gold-bright); }

/* Icon pico */
.pico {
  width: 64px; height: 64px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 14px; margin-bottom: 24px; color: var(--gold-deep);
  background: var(--gold-soft); border: 1px solid rgba(184,137,42,0.26);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pico svg { width: 28px; height: 28px; }
.card:hover .pico { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(10,31,56,0.12); }
.pico.blue  { color: var(--royal-deep);  background: var(--royal-soft);  border-color: rgba(37,98,200,0.28); }
.pico.cyan  { color: var(--cyan-deep);   background: var(--cyan-soft);   border-color: rgba(45,157,207,0.30); }
.pico.lime  { color: var(--lime-deep);   background: var(--lime-soft);   border-color: rgba(120,168,24,0.32); }
.bg-navy .pico, .bg-teal .pico {
  color: var(--gold-bright); background: rgba(212,170,64,0.11); border-color: rgba(212,170,64,0.28);
}

/* ── Media ── */
.shot { overflow: hidden; border-radius: 10px; background: var(--cream-2); position: relative; }
.shot img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.shot.frame { box-shadow: var(--shadow); }
.ratio-16-9 { aspect-ratio: 16/9; }
.ratio-4-3  { aspect-ratio: 4/3; }
.ratio-1-1  { aspect-ratio: 1/1; }
.ratio-3-4  { aspect-ratio: 3/4; }
.ratio-4-5  { aspect-ratio: 4/5; }

/* placeholder */
.ph {
  position: relative; background: linear-gradient(135deg, #EDE8E0 0%, #F5F2EA 100%);
  overflow: hidden; display: flex; align-items: center; justify-content: center; border-radius: 10px;
}
.ph::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, rgba(184,137,42,0.07) 0 2px, transparent 2px 16px); }
.ph::after  { content: attr(data-label); position: relative; z-index: 1; font-family: var(--mono); font-size: 0.70rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(100,80,30,0.65); text-align: center; padding: 0 22px; }
.logobox { background: var(--white); border: 1px solid var(--line); }
.logobox::before { opacity: 0.3; }

/* ── Heroes ── */
.hero { position: relative; padding-top: calc(var(--nav-h) + 44px); overflow: hidden; }
.hero-split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; min-height: calc(92vh - var(--nav-h)); }
.hero-photo { position: relative; }
.hero-photo .shot { box-shadow: var(--shadow-lg); }
.hero-badge {
  position: absolute; bottom: 24px; left: -24px;
  background: var(--white); border-radius: 10px; padding: 17px 24px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 14px;
}
.hero-badge .num { font-family: var(--ui); font-weight: 700; font-size: 1.75rem; color: var(--gold-deep); line-height: 1; }
.hero-badge .lbl { font-size: 0.72rem; color: var(--ink-soft); line-height: 1.3; }
.hero-deco { position: absolute; border-radius: 50%; filter: blur(2px); opacity: 0.45; z-index: -1; }

/* Full-bleed image hero (interior pages) */
.hero-img { min-height: 58vh; display: flex; align-items: flex-end; padding-top: var(--nav-h); }
.hero-img .hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-img .hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,21,40,0.32) 0%, rgba(7,21,40,0.48) 50%, rgba(7,21,40,0.88) 100%);
}
.hero-img .wrap { position: relative; z-index: 2; padding-bottom: 62px; }
.hero-img .h1, .hero-img .label, .hero-img .lede { color: #fff; }
.hero-img .label { color: var(--gold-bright); }
.hero-img .lede { color: rgba(255,255,255,0.86); }

/* ── Trust / Stats bar ── */
.statbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0; }
.statbar .stat { padding: 16px 44px; text-align: center; position: relative; }
.statbar .stat:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  height: 38px; width: 1px; background: rgba(255,255,255,0.18);
}
.bg-cream .statbar .stat:not(:last-child)::after,
.bg-white .statbar .stat:not(:last-child)::after { background: var(--line); }
.stat .num { font-family: var(--ui); font-weight: 700; font-size: 1.85rem; color: var(--gold-deep); line-height: 1; }
.bg-navy .stat .num, .bg-teal .stat .num { color: var(--gold-bright); }
.stat .lbl { font-size: 0.72rem; letter-spacing: 0.10em; text-transform: uppercase; color: var(--ink-soft); margin-top: 8px; }
.bg-navy .stat .lbl, .bg-teal .stat .lbl { color: rgba(255,255,255,0.70); }

/* ── Grids ── */
.grid { display: grid; gap: 28px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(2, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

/* ── Reveal ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.72s ease, transform 0.72s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }

/* ── Programme media card ── */
.pcard { padding: 0; display: flex; flex-direction: column; background: var(--white); }
.pcard .media { overflow: hidden; aspect-ratio: 16/11; }
.pcard .media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.pcard:hover .media img { transform: scale(1.05); }
.pcard .body { padding: 30px; flex: 1; display: flex; flex-direction: column; }
.pcard .levels { font-size: 0.76rem; color: var(--teal-deep); letter-spacing: 0.04em; margin-top: 8px; font-weight: 600; }

/* ── Timeline ── */
.tstep { display: grid; grid-template-columns: 64px 1fr; gap: 28px; padding-bottom: 44px; position: relative; }
.tstep:not(:last-child) .tnum::after {
  content: ''; position: absolute; left: 31px; top: 58px; bottom: -8px; width: 2px; background: var(--line);
}
.tnum {
  width: 62px; height: 62px; border: 2px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 700; font-size: 1.4rem; color: var(--gold-deep);
  position: relative; background: var(--white);
}

/* ── Forms ── */
.field { margin-bottom: 22px; }
.field label { display: block; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); margin-bottom: 9px; }
.field .req { color: var(--gold-deep); }
.field input, .field select, .field textarea {
  width: 100%; background: var(--white); border: 1px solid var(--line); color: var(--ink);
  padding: 14px 17px; font-family: var(--ui); font-size: 0.96rem;
  transition: border-color 0.2s, box-shadow 0.2s; border-radius: 6px;
}
.field input::placeholder, .field textarea::placeholder { color: #B0A898; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft);
}
.field textarea { min-height: 120px; resize: vertical; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2397700F' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px;
}
.check { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: 0.92rem; color: var(--ink-soft); cursor: pointer; }
.check input { width: 18px; height: 18px; accent-color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.form-note { font-size: 0.84rem; color: var(--muted); }
.toast { padding: 18px 22px; border: 1px solid var(--success); background: rgba(30,122,74,0.08); color: var(--success); margin-bottom: 24px; font-size: 0.94rem; display: none; border-radius: 8px; }
.toast.show { display: block; }
fieldset { border: none; margin-bottom: 32px; }
fieldset legend { font-family: var(--display); font-weight: 700; font-size: 1.45rem; color: var(--navy); margin-bottom: 22px; padding-top: 26px; border-top: 1px solid var(--line); width: 100%; }

/* ── Notice ── */
.notice { border: 1px solid rgba(184,137,42,0.38); background: var(--gold-soft); padding: 28px 34px; border-radius: 10px; }
.notice .h3 { color: var(--gold-deep); font-family: var(--ui); font-weight: 700; font-size: 1rem; letter-spacing: 0.03em; margin-bottom: 12px; }
.notice ul { list-style: none; }
.notice li { padding-left: 24px; position: relative; margin-bottom: 9px; color: var(--ink-soft); font-size: 0.95rem; }
.notice li::before { content: '-'; position: absolute; left: 0; color: var(--gold-deep); }
.notice p { color: var(--ink-soft); }

/* ── Lists ── */
.tick { list-style: none; }
.tick li { padding-left: 30px; position: relative; margin-bottom: 13px; color: var(--ink-soft); }
.tick li::before { content: ''; position: absolute; left: 0; top: 9px; width: 9px; height: 9px; background: var(--gold); transform: rotate(45deg); }
.bg-navy .tick li, .bg-teal .tick li { color: rgba(255,255,255,0.84); }

/* ── Filters / toggle ── */
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.filters button {
  background: var(--white); border: 1px solid var(--line); color: var(--ink-soft); cursor: pointer;
  padding: 11px 24px; font-family: var(--ui); font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase; transition: all 0.2s; border-radius: 100px;
}
.filters button:hover { border-color: var(--gold); color: var(--gold-deep); }
.filters button.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.toggle { display: inline-flex; border: 1px solid var(--line); padding: 4px; background: var(--white); border-radius: 100px; }
.toggle button {
  background: transparent; border: none; color: var(--ink-soft); padding: 11px 28px;
  cursor: pointer; font-family: var(--ui); font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.04em; transition: all 0.2s; border-radius: 100px;
}
.toggle button.active { background: var(--gold); color: #1a1305; }

/* ── Pricing table ── */
.ptable { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); }
.ptable th { text-align: left; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; background: var(--navy); padding: 17px 20px; font-weight: 600; }
.ptable td { padding: 17px 20px; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: 0.95rem; }
.ptable td .num, .ptable td.num { font-weight: 700; color: var(--navy); }
.ptable tr:last-child td { border-bottom: none; }
.ptable tbody tr:hover td { background: var(--gold-soft); }

/* ── Logo strip ── */
.logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px; }
.logos .litem {
  background: var(--white); border: 1px solid var(--line); padding: 24px 34px; min-width: 152px;
  text-align: center; font-family: var(--display); font-weight: 700; color: var(--navy);
  letter-spacing: 0.02em; transition: all 0.26s; font-size: 1.06rem; border-radius: 8px;
}
.logos .litem:hover { color: var(--gold-deep); border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-3px); }

/* ── CTA Banner ── */
.cta-banner {
  background: radial-gradient(140% 160% at 50% -30%, #14365C 0%, var(--navy) 44%, var(--navy-2) 100%);
  color: #fff; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gold-grad); }
.cta-banner .h2 { color: #fff; }
.cta-banner .lede { color: rgba(255,255,255,0.78); }
.cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.cta-contact { margin-top: 30px; font-size: 0.88rem; color: var(--gold-bright); letter-spacing: 0.02em; }
.cta-contact span { margin: 0 14px; }

/* crest watermark */
.cta-banner .crest-mark {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 580px; max-width: 84%; opacity: 0.04; pointer-events: none; z-index: 0;
}
.cta-banner .wrap { position: relative; z-index: 1; }
.cta-banner .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.45); }
.cta-banner .btn-ghost:hover { background: #fff; color: var(--navy); border-color: #fff; }
.cta-contact { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px 34px; }
.cta-contact span { display: inline-flex; align-items: center; gap: 10px; margin: 0; }
.cta-contact svg { width: 16px; height: 16px; flex-shrink: 0; opacity: 0.90; }

/* ── Footer ── */
.footer { background: var(--navy-2); color: rgba(255,255,255,0.68); padding-top: 74px; position: relative; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--crest-grad); opacity: 0.80; }
.footer .cols { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 46px; padding-bottom: 58px; }
.footer h4 { font-family: var(--ui); font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 20px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 12px; }
.footer a { color: rgba(255,255,255,0.68); font-size: 0.88rem; transition: color 0.2s; }
.footer a:hover { color: #fff; }
.footer .ftag { color: rgba(255,255,255,0.56); font-size: 0.88rem; margin: 14px 0 22px; max-width: 32ch; line-height: 1.65; }
.footer .socials { display: flex; gap: 12px; }
.footer .socials a { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.68); border-radius: 50%; }
.footer .socials a:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
.footer .fbrand { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
.footer .fbrand img { width: 56px; height: 56px; object-fit: contain; }
.footer .fbrand span { font-family: var(--display); font-weight: 700; color: #fff; font-size: 1.06rem; }
.footbar { border-top: 1px solid rgba(255,255,255,0.10); padding: 26px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footbar, .footbar a { font-size: 0.78rem; color: rgba(255,255,255,0.44); }
.footbar a:hover { color: var(--gold-bright); }

/* ── Misc ── */
.eyebrow-c { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.wa { display: inline-flex; align-items: center; gap: 9px; background: #25D366; color: #fff; padding: 14px 24px; font-weight: 600; font-size: 0.84rem; letter-spacing: 0.03em; border-radius: 6px; }
.wa:hover { filter: brightness(1.06); }
.quote-mark { font-family: var(--display); font-size: 3.4rem; color: var(--gold); line-height: 0.6; height: 28px; }
.motto { font-family: var(--display); font-style: italic; font-size: clamp(1.55rem, 3.1vw, 2.4rem); color: var(--navy); line-height: 1.38; }
.bg-navy .motto, .bg-teal .motto { color: #fff; }
.tint-blue { color: var(--royal-deep); }
.tint-cyan { color: var(--cyan-deep); }
.tint-lime { color: var(--lime-deep); }

/* Photo collage */
.collage { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 16px; }
.collage .shot:first-child { grid-row: span 2; }

/* Scroll indicator */
.scroll-ind { display: inline-flex; flex-direction: column; align-items: center; gap: 8px; color: var(--muted); margin-top: 8px; }
.scroll-ind .chev { width: 18px; height: 18px; border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(45deg); animation: bob 1.8s infinite; }
@keyframes bob { 0%,100% { transform: translateY(0) rotate(45deg); } 50% { transform: translateY(7px) rotate(45deg); } }

/* ── Video Hero (home) ── */
.hero-video {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: flex-end; overflow: hidden; padding-top: var(--nav-h);
}
.hero-video .vid-bg { position: absolute; inset: 0; z-index: 0; background: var(--navy-3); }
.hero-video .vid-bg video,
.hero-video .vid-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-video .vid-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,21,40,0.50) 0%, rgba(7,21,40,0.12) 30%, rgba(7,21,40,0.36) 60%, rgba(7,21,40,0.92) 100%),
    linear-gradient(90deg, rgba(7,21,40,0.62) 0%, rgba(7,21,40,0.08) 55%, rgba(7,21,40,0) 100%);
}
.hero-video .wrap { position: relative; z-index: 2; width: 100%; padding-bottom: 90px; }
.hero-video .hero-copy { max-width: 820px; }
.hero-video .h1, .hero-video .lede { color: #fff; }
.hero-video .label { color: var(--gold-bright); }
.hero-video .lede { color: rgba(255,255,255,0.88); font-size: clamp(1.1rem, 1.7vw, 1.36rem); margin-top: 22px; }
.hero-video .cta-row { margin-top: 40px; justify-content: flex-start; }
.hero-video .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.55); }
.hero-video .btn-ghost:hover { background: #fff; color: var(--navy); border-color: #fff; }

/* Scroll cue */
.scroll-cue {
  position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.72); font-family: var(--ui); font-size: 0.60rem;
  letter-spacing: 0.38em; text-transform: uppercase;
}
.scroll-cue .line { width: 1px; height: 48px; background: rgba(255,255,255,0.44); position: relative; overflow: hidden; }
.scroll-cue .line::after {
  content: ''; position: absolute; top: -48px; left: 0; width: 100%; height: 48px;
  background: linear-gradient(180deg, transparent, var(--gold-bright));
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse { 0% { transform: translateY(0); } 100% { transform: translateY(96px); } }

/* Nav on dark video hero */
.home-video .nav:not(.scrolled) { background: transparent; border-bottom-color: transparent; backdrop-filter: none; }
.home-video .nav:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.90); }
.home-video .nav:not(.scrolled) .nav-links a:hover,
.home-video .nav:not(.scrolled) .nav-links a.active { color: var(--gold-bright); }
.home-video .nav:not(.scrolled) .brand-txt .b1 { color: #fff; }
.home-video .nav:not(.scrolled) .brand-txt .b2 { color: var(--gold-bright); }
.home-video .nav:not(.scrolled) .burger span { background: #fff; }

/* ── Auth / Sign-in ── */
.auth { min-height: 100vh; min-height: 100svh; display: grid; grid-template-columns: 1.05fr 0.95fr; background: var(--cream); }
.auth-visual { position: relative; overflow: hidden; background: var(--navy-2); }
.auth-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.auth-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,21,40,0.45) 0%, rgba(7,21,40,0.35) 40%, rgba(7,21,40,0.88) 100%); }
.auth-visual .v-inner { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: space-between; padding: 46px; }
.auth-visual .v-brand { display: flex; align-items: center; gap: 13px; }
.auth-visual .v-brand img { position: static; width: 52px; height: 52px; object-fit: contain; }
.auth-visual .v-brand span { font-family: var(--display); font-weight: 700; color: #fff; font-size: 1.05rem; line-height: 1.2; }
.auth-visual .v-quote { max-width: 30ch; }
.auth-visual .v-quote p { font-family: var(--display); font-style: italic; font-size: 1.75rem; line-height: 1.35; color: #fff; }
.auth-visual .v-quote .label { color: var(--gold-bright); margin-top: 16px; }
.auth-panel { display: flex; align-items: center; justify-content: center; padding: 58px 42px; }
.auth-card { width: 100%; max-width: 440px; }
.auth-card .back { font-size: 0.76rem; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 8px; margin-bottom: 42px; }
.auth-card .back:hover { color: var(--gold-deep); }
.auth-card h1 { font-size: clamp(2rem, 3.4vw, 2.7rem); margin-bottom: 8px; }
.auth-card .sub { color: var(--ink-soft); margin-bottom: 32px; }
.seg { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; background: var(--cream-2); border: 1px solid var(--line); border-radius: 10px; padding: 5px; margin-bottom: 32px; }
.seg button { font-family: var(--ui); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.02em; color: var(--ink-soft); background: transparent; border: none; cursor: pointer; padding: 13px 10px; border-radius: 7px; transition: all 0.2s ease; display: flex; align-items: center; justify-content: center; gap: 8px; }
.seg button svg { width: 17px; height: 17px; }
.seg button.active { background: var(--white); color: var(--navy); box-shadow: 0 3px 10px rgba(10,31,56,0.08); }
.seg button:not(.active):hover { color: var(--navy); }
.auth-card .row-between { display: flex; align-items: center; justify-content: space-between; margin: -4px 0 28px; }
.auth-card .row-between .check { margin-bottom: 0; font-size: 0.84rem; }
.auth-card .row-between a { font-size: 0.84rem; color: var(--gold-deep); font-weight: 600; }
.auth-card .row-between a:hover { text-decoration: underline; }
.field .hint { display: block; margin-top: 7px; font-size: 0.74rem; letter-spacing: 0; text-transform: none; font-weight: 400; color: var(--muted); }
.auth-foot { margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); font-size: 0.9rem; color: var(--ink-soft); text-align: center; }
.auth-foot a { color: var(--gold-deep); font-weight: 600; }
.auth-foot a:hover { text-decoration: underline; }

/* ── Tweaks panel ── */
#tweaks { position: fixed; bottom: 20px; right: 20px; z-index: 2000; width: 296px; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-lg); font-family: var(--ui); display: none; color: var(--ink); border-radius: 12px; }
#tweaks.open { display: block; }
#tweaks .tk-head { display: flex; justify-content: space-between; align-items: center; padding: 15px 17px; border-bottom: 1px solid var(--line); cursor: move; }
#tweaks .tk-head b { font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); }
#tweaks .tk-x { background: none; border: none; color: var(--muted); font-size: 1.3rem; cursor: pointer; line-height: 1; }
#tweaks .tk-body { padding: 17px; }
#tweaks .tk-sec { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin: 17px 0 10px; }
#tweaks .tk-sec:first-child { margin-top: 0; }
#tweaks .tk-row { margin-bottom: 14px; }
.tk-swatches { display: flex; gap: 8px; }
.tk-swatches button { width: 30px; height: 30px; border-radius: 50%; border: 2px solid transparent; cursor: pointer; }
.tk-swatches button.sel { border-color: var(--navy); box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--gold); }
.tk-opts { display: flex; gap: 6px; flex-wrap: wrap; }
.tk-opts button { flex: 1; min-width: 0; background: var(--white); border: 1px solid var(--line); color: var(--ink-soft); padding: 9px 6px; font-size: 0.72rem; cursor: pointer; font-family: var(--ui); transition: all 0.15s; border-radius: 5px; }
.tk-opts button.sel { background: var(--gold); border-color: var(--gold); color: #1a1305; font-weight: 600; }

/* ── Programme Details (accordion) ── */
details.prog-details { margin-top: 26px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); overflow: hidden; box-shadow: 0 2px 12px rgba(10,31,56,0.04); }
details.prog-details > summary { list-style: none; cursor: pointer; padding: 20px 28px; display: flex; align-items: center; justify-content: space-between; gap: 14px; font-family: var(--ui); font-weight: 700; font-size: 0.80rem; letter-spacing: 0.10em; text-transform: uppercase; color: #fff; background: var(--navy); border-radius: 0; transition: background 0.2s; }
details.prog-details > summary:hover { background: var(--navy-2); }
details.prog-details[open] > summary { background: var(--navy-2); }
details.prog-details > summary::-webkit-details-marker { display: none; }
details.prog-details > summary .chev { width: 11px; height: 11px; border-right: 2px solid var(--gold-bright); border-bottom: 2px solid var(--gold-bright); transform: rotate(45deg); transition: transform 0.25s; flex-shrink: 0; }
details.prog-details[open] > summary .chev { transform: rotate(-135deg); }
details.prog-details .pd-body { padding: 28px; }
details.prog-details .pd-body > p.intro { margin-bottom: 22px; }

/* Info table inside details */
.infotable { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.infotable th { text-align: left; font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; background: var(--navy); padding: 14px 16px; font-weight: 600; }
.infotable td { padding: 14px 16px; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: 0.90rem; vertical-align: top; }
.infotable td.cn { font-weight: 700; color: var(--navy); white-space: nowrap; }
.infotable tr:last-child td { border-bottom: none; }
.infotable tbody tr:hover td { background: var(--gold-soft); }

/* Flag chips */
.flagchip { display: inline-flex; align-items: center; gap: 9px; margin-top: 14px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-soft); background: var(--cream); border: 1px solid var(--line); padding: 6px 13px 6px 7px; border-radius: 100px; }
.flagchip svg { width: 26px; height: 18px; border-radius: 3px; box-shadow: 0 1px 3px rgba(10,31,56,0.16); display: block; }

/* Eligibility */
.elig { border-radius: 10px; padding: 16px 20px; margin-top: 7px; font-size: 0.9rem; display: none; border: 1px solid transparent; line-height: 1.6; }
.elig.show { display: block; }
.elig.ok { background: rgba(30,122,74,0.09); border-color: var(--success); color: var(--success); }
.elig.no { background: rgba(181,48,48,0.08); border-color: var(--error); color: var(--error); }
.elig b { font-weight: 700; }
.elig ul { margin: 8px 0 0; padding-left: 20px; }
.elig li { margin-bottom: 4px; }

/* Course multi-select */
.course-pick { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.course-pick .opt { display: flex; gap: 11px; align-items: flex-start; cursor: pointer; border: 1px solid var(--line); border-radius: 9px; padding: 14px 16px; background: var(--white); transition: all 0.18s; font-size: 0.9rem; color: var(--ink); }
.course-pick .opt:hover { border-color: var(--gold); }
.course-pick .opt.sel { border-color: var(--gold); background: var(--gold-soft); box-shadow: 0 0 0 2px var(--gold-soft); }
.course-pick .opt.disabled { opacity: 0.44; pointer-events: none; }
.course-pick .opt input { width: 17px; height: 17px; accent-color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.course-pick .opt .cp-name { font-weight: 600; }
.course-pick .opt .cp-tag { display: block; font-size: 0.70rem; color: var(--gold-deep); margin-top: 2px; font-weight: 600; }
.course-pick .opt .cp-tag.req { color: var(--error); }
.pick-count { font-size: 0.80rem; color: var(--muted); margin: 10px 0 0; }
.pick-count b { color: var(--gold-deep); }

/* Coming soon */
.coming-soon { position: relative; }
.coming-soon .grid { opacity: 0.55; filter: saturate(0.6); pointer-events: none; }
.cs-note { display: inline-flex; align-items: center; gap: 9px; margin-top: 18px; font-family: var(--ui); font-size: 0.84rem; font-weight: 600; color: var(--ink-soft); background: var(--white); border: 1px dashed var(--gold); padding: 10px 18px; border-radius: 100px; }
.cs-note::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--sun); box-shadow: 0 0 0 3px rgba(240,184,0,0.24); }

/* Course box */
.course-box { display: flex; flex-direction: column; gap: 6px; }
.course-box .meta { display: flex; flex-wrap: wrap; gap: 6px 14px; margin-top: 6px; font-size: 0.80rem; color: var(--ink-soft); }
.course-box .meta span { display: inline-flex; align-items: center; gap: 6px; }
.course-box .meta b { color: var(--gold-deep); font-weight: 600; }

/* Legal pages */
.legal { max-width: 820px; }
.legal h2 { font-size: clamp(1.4rem, 2.4vw, 1.95rem); margin: 42px 0 15px; }
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { font-size: 1.12rem; margin: 28px 0 11px; color: var(--navy); }
.legal p { margin-bottom: 15px; }
.legal ul { list-style: none; margin: 0 0 17px; }
.legal ul li { padding-left: 26px; position: relative; margin-bottom: 10px; color: var(--ink-soft); }
.legal ul li::before { content: ''; position: absolute; left: 0; top: 10px; width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); }
.legal .updated { font-size: 0.84rem; color: var(--muted); margin-bottom: 38px; }
.legal a { color: var(--gold-deep); font-weight: 600; }

/* ── Responsive ── */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .nav-signin { display: none; }
  .burger { display: flex; }
  .split, .hero-split { grid-template-columns: 1fr; gap: 38px; }
  .hero-split { min-height: 0; padding-bottom: 20px; }
  .hero-badge { left: 16px; }
  .g3 { grid-template-columns: repeat(2, 1fr); }
  .footer .cols { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 640px) {
  :root { --nav-h: 72px; }
  .hero-video .wrap { padding-bottom: 60px; }
  .hero-video .h1 { font-size: clamp(2.7rem, 12vw, 3.8rem); }
  .sec { padding: 68px 0; }
  .g2, .g3, .g4 { grid-template-columns: 1fr; }
  .statbar .stat { padding: 12px 22px; }
  .statbar .stat::after { display: none !important; }
  .footer .cols { grid-template-columns: 1fr; }
  .cta-contact span { display: block; margin: 6px 0; }
  .wrap { padding: 0 20px; }
  .collage { grid-template-columns: 1fr 1fr; }
  .course-pick { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .auth { grid-template-columns: 1fr; }
  .auth-visual { display: none; }
  .auth-panel { padding: 50px 26px; min-height: 100vh; }
}
