:root {
  --red: #c41435;
  --red-deep: #a90f2d;
  --navy: #082b45;
  --ink: #111317;
  --muted: #666b73;
  --line: #e6e7e9;
  --soft: #f6f7f8;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }

.site-header {
  height: 92px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(28px, calc((100vw - 1180px) / 2));
  background: rgba(255,255,255,.96);
  position: sticky;
  top: 0;
  z-index: 20;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 26px;
  text-decoration: none;
}
.brand-mark { width: 38px; height: 38px; color: var(--red); display: inline-flex; }
.brand-mark svg { width: 100%; height: 100%; }
.classroom-link {
  background: var(--ink);
  color: white;
  padding: 14px 21px;
  border-radius: 13px;
  text-decoration: none;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: 1.35fr .9fr;
  min-height: 590px;
  padding-top: 76px;
  padding-bottom: 76px;
  gap: 70px;
  align-items: stretch;
}
.hero-copy { display: flex; flex-direction: column; justify-content: center; }
.eyebrow {
  color: var(--red);
  font-weight: 800;
  letter-spacing: .2em;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.eyebrow span { width: 42px; height: 3px; background: currentColor; border-radius: 99px; }
.eyebrow.light { color: #ff7f95; margin-bottom: 22px; }
.hero h1 {
  font-size: clamp(50px, 6vw, 78px);
  line-height: .98;
  letter-spacing: -.055em;
  margin: 0;
  max-width: 820px;
  font-weight: 900;
}
.hero h1 strong { color: var(--red); }
.hero-lead {
  color: #676767;
  font-size: 20px;
  line-height: 1.55;
  max-width: 750px;
  margin: 28px 0 0;
}
.hero-note { margin: 18px 0 0; font-weight: 700; font-size: 16px; line-height: 1.5; max-width: 670px; }
.method-card {
  background: var(--navy);
  color: white;
  border-radius: 30px;
  padding: 50px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 470px;
}
.method-label { color: #ff8097; font-size: 12px; letter-spacing: .18em; font-weight: 800; margin-bottom: 8px; }
.method-item { display: grid; grid-template-columns: 34px 1fr; gap: 18px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.method-item:last-child { border-bottom: 0; padding-bottom: 0; }
.tick { width: 29px; height: 29px; border-radius: 50%; background: var(--red); display: grid; place-items: center; font-weight: 900; }
.method-item h2 { font-size: 18px; margin: 1px 0 7px; }
.method-item p { color: #c8d1d8; margin: 0; line-height: 1.5; font-size: 14px; }

.routes { padding: 90px 0 98px; border-top: 1px solid var(--line); }
.section-heading { margin-bottom: 36px; }
.section-heading h2 { margin: 0; font-size: clamp(40px, 5vw, 62px); letter-spacing: -.05em; line-height: 1; }
.route-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.route-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  text-decoration: none;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  background: white;
}
.route-card:hover { transform: translateY(-4px); box-shadow: 0 18px 45px rgba(0,0,0,.07); border-color: #d0d0d0; }
.route-featured { background: #fbfbfb; }
.route-number { color: var(--red); font-size: 12px; font-weight: 800; letter-spacing: .14em; }
.route-card h3 { font-size: 28px; line-height: 1.08; margin: 30px 0 14px; letter-spacing: -.035em; }
.route-card p { color: var(--muted); line-height: 1.55; margin: 0; font-size: 16px; }
.route-action { margin-top: auto; padding-top: 34px; font-weight: 800; }
.route-action b { color: var(--red); }

.organisation { padding-bottom: 100px; }
.organisation-box {
  background: var(--navy);
  color: white;
  border-radius: 28px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 50px;
}
.organisation-box h2 { margin: 0 0 15px; font-size: clamp(34px, 4vw, 52px); line-height: 1.02; letter-spacing: -.045em; max-width: 760px; }
.organisation-box p { margin: 0; color: #c9d2d9; max-width: 720px; font-size: 17px; line-height: 1.6; }
.advisor-button { background: var(--red); color: white; text-decoration: none; font-weight: 800; padding: 17px 24px; border-radius: 14px; white-space: nowrap; }
.advisor-button:hover { background: var(--red-deep); }

.site-footer { border-top: 1px solid var(--line); background: #fafafa; }
.footer-inner { min-height: 116px; display: flex; justify-content: space-between; align-items: center; gap: 28px; color: #64676d; font-size: 13px; }
.footer-inner a { font-weight: 700; color: var(--ink); }

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  max-width: 820px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.16);
  padding: 22px;
  display: none;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.cookie-banner.visible { display: grid; }
.cookie-copy strong { display: block; margin-bottom: 6px; font-size: 16px; }
.cookie-copy p { margin: 0 0 7px; color: var(--muted); line-height: 1.45; font-size: 13px; }
.cookie-copy a { font-size: 12px; font-weight: 700; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-button { border: 0; border-radius: 12px; padding: 12px 18px; font: inherit; font-weight: 800; cursor: pointer; }
.cookie-button.primary { background: var(--red); color: white; }
.cookie-button.secondary { background: var(--soft); color: var(--ink); }

@media (max-width: 900px) {
  .site-header { height: 76px; padding: 0 22px; }
  .brand { font-size: 21px; gap: 9px; }
  .brand-mark { width: 32px; height: 32px; }
  .classroom-link { padding: 11px 15px; font-size: 14px; }
  .shell { width: min(100% - 34px, 1180px); }
  .hero { grid-template-columns: 1fr; gap: 32px; min-height: auto; padding-top: 54px; padding-bottom: 58px; }
  .hero h1 { font-size: clamp(46px, 12vw, 68px); }
  .hero-lead { font-size: 18px; }
  .method-card { min-height: auto; padding: 38px 28px; border-radius: 24px; }
  .route-grid { grid-template-columns: 1fr; }
  .route-card { min-height: 235px; }
  .organisation-box { grid-template-columns: 1fr; align-items: start; gap: 30px; padding: 36px 28px; }
  .advisor-button { justify-self: start; }
  .footer-inner { flex-direction: column; justify-content: center; align-items: flex-start; padding: 30px 0; }
}

@media (max-width: 620px) {
  .site-header { padding: 0 16px; }
  .brand { font-size: 18px; }
  .brand-mark { width: 29px; height: 29px; }
  .classroom-link { padding: 10px 13px; }
  .shell { width: calc(100% - 28px); }
  .hero { padding-top: 42px; }
  .eyebrow { font-size: 10px; letter-spacing: .15em; margin-bottom: 22px; gap: 10px; }
  .eyebrow span { width: 30px; }
  .hero h1 { font-size: 45px; }
  .hero-lead { font-size: 17px; margin-top: 22px; }
  .hero-note { font-size: 14px; }
  .method-card { padding: 32px 22px; }
  .method-item { padding: 23px 0; gap: 12px; grid-template-columns: 31px 1fr; }
  .routes { padding: 66px 0 72px; }
  .section-heading h2 { font-size: 42px; }
  .route-card { padding: 25px; border-radius: 20px; }
  .route-card h3 { font-size: 25px; }
  .organisation { padding-bottom: 72px; }
  .organisation-box { border-radius: 22px; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 18px; grid-template-columns: 1fr; gap: 16px; }
  .cookie-actions { width: 100%; }
  .cookie-button { flex: 1; }
}
