:root {
  --navy: #0c2a43;
  --navy-2: #153e5a;
  --green: #0f5a4a;
  --green-2: #1e7361;
  --gold: #c99a3d;
  --gold-soft: #e9d7a8;
  --cream: #f6f2e8;
  --paper: #fffdf8;
  --ink: #16232d;
  --muted: #5f6b73;
  --line: #dfe5e2;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(12, 42, 67, 0.12);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
::selection { background: var(--gold-soft); color: var(--navy); }

.skip-link {
  position: fixed;
  left: 14px;
  top: 12px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  transform: translateY(-140%);
}
.skip-link:focus { transform: translateY(0); }

.announcement {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 8px 16px;
  font-size: .92rem;
}
.announcement a { font-weight: 800; text-underline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 253, 248, .95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(12, 42, 67, .08);
}
.nav-wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; width: 220px; }
.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: .94rem;
  color: var(--navy);
  padding: 11px 12px;
  border-radius: 10px;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { background: #eaf2ef; color: var(--green); }
.site-nav .nav-cta { background: var(--gold); color: var(--navy); }
.site-nav .nav-cta:hover { background: #d8ae58; color: var(--navy); }
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--navy);
  width: 46px;
  height: 46px;
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle:hover { background: #edf1ef; }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  margin: 5px auto;
  transition: .2s ease;
}

.container { width: min(var(--max), calc(100% - 32px)); margin-inline: auto; }
.section { padding: 88px 0; }
.section-sm { padding: 58px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-green { background: var(--green); color: var(--white); }
.section-cream { background: var(--cream); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--gold); }
.section-dark .eyebrow, .section-green .eyebrow { color: var(--gold-soft); }
h1, h2, h3, h4 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 16px;
}
.section-dark h2, .section-dark h3, .section-green h2, .section-green h3 { color: var(--white); }
h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -.025em; }
h3 { font-size: 1.45rem; }
p { margin: 0 0 18px; }
.lead { font-size: clamp(1.08rem, 2vw, 1.3rem); color: var(--muted); max-width: 720px; }
.section-dark .lead, .section-green .lead { color: rgba(255,255,255,.78); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 76px;
  background:
    radial-gradient(circle at 10% 10%, rgba(201,154,61,.16), transparent 28%),
    radial-gradient(circle at 92% 40%, rgba(15,90,74,.15), transparent 30%),
    linear-gradient(180deg, #fffdf8 0%, #f6f2e8 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -150px;
  height: 290px;
  background: var(--white);
  border-radius: 50% 50% 0 0;
  opacity: .58;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
.hero h1 span { color: var(--green); }
.hero-copy .lead { margin-top: 22px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 26px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 850;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--navy); box-shadow: 0 10px 22px rgba(201,154,61,.24); }
.btn-primary:hover { background: #d8ae58; }
.btn-secondary { border-color: rgba(12,42,67,.2); background: rgba(255,255,255,.62); color: var(--navy); }
.btn-secondary:hover { box-shadow: var(--shadow); background: var(--white); }
.btn-light { background: var(--white); color: var(--navy); }
.btn-outline-light { border-color: rgba(255,255,255,.44); color: var(--white); }
.hero-notes { display: flex; gap: 22px; flex-wrap: wrap; color: var(--navy); font-weight: 750; font-size: .9rem; }
.hero-notes span { display: inline-flex; align-items: center; gap: 8px; }
.hero-notes span::before { content: ""; width: 9px; height: 9px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 4px rgba(15,90,74,.12); }
.hero-art { position: relative; }
.hero-art img { filter: drop-shadow(0 24px 28px rgba(12,42,67,.12)); }
.hero-badge {
  position: absolute;
  left: -18px;
  bottom: 34px;
  background: var(--white);
  color: var(--navy);
  padding: 16px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  font-weight: 850;
  max-width: 210px;
}
.hero-badge small { display: block; color: var(--muted); font-weight: 650; margin-top: 3px; }

.stats {
  position: relative;
  z-index: 3;
  margin-top: -24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat { padding: 28px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; color: var(--navy); font-family: Georgia, serif; font-size: 1.4rem; }
.stat span { color: var(--muted); font-size: .92rem; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
  align-items: center;
}
.media-card {
  min-height: 470px;
  border-radius: 28px;
  padding: 38px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(12,42,67,.88), rgba(15,90,74,.84)),
    radial-gradient(circle at 20% 10%, #c99a3d, transparent 35%);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.media-card::before {
  content: "";
  position: absolute;
  top: 42px;
  right: 40px;
  width: 160px;
  height: 210px;
  border: 3px solid rgba(255,255,255,.35);
  border-bottom: 0;
  border-radius: 90px 90px 0 0;
}
.media-card::after {
  content: "";
  position: absolute;
  top: 125px;
  right: 92px;
  width: 55px;
  height: 120px;
  background: rgba(201,154,61,.9);
  border-radius: 28px 28px 4px 4px;
}
.media-card h3, .media-card p { position: relative; z-index: 2; color: var(--white); }
.media-card h3 { font-size: 2rem; }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 13px; }
.check-list li { position: relative; padding-left: 31px; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 16px;
  height: 10px;
  border-left: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(-45deg);
}
.section-dark .check-list li::before, .section-green .check-list li::before { border-color: var(--gold); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 38px; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 8px 20px rgba(12,42,67,.05);
}
.card:hover { box-shadow: var(--shadow); }
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #eaf2ef;
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 18px;
}
.card p { color: var(--muted); }
.card a { color: var(--green); font-weight: 850; text-decoration-thickness: 2px; text-underline-offset: 4px; }

.programme-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 34px;
}
.programme {
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.07);
  border-radius: 18px;
  padding: 25px;
}
.programme small { color: var(--gold-soft); text-transform: uppercase; font-weight: 850; letter-spacing: .1em; }
.programme h3 { margin-top: 8px; }
.programme p { color: rgba(255,255,255,.75); margin-bottom: 0; }

.timeline { position: relative; margin-top: 38px; display: grid; gap: 20px; }
.timeline::before { content: ""; position: absolute; left: 22px; top: 10px; bottom: 10px; width: 2px; background: var(--gold-soft); }
.timeline-item { position: relative; padding-left: 68px; }
.timeline-number {
  position: absolute; left: 0; top: 0;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  display: grid; place-items: center; font-weight: 900;
  box-shadow: 0 0 0 8px var(--paper);
}
.section-cream .timeline-number { box-shadow: 0 0 0 8px var(--cream); }
.timeline-item p { color: var(--muted); }

.feature-band {
  border-radius: 28px;
  background: var(--navy);
  color: var(--white);
  padding: 46px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: center;
}
.feature-band h2 { color: var(--white); }
.feature-band p { color: rgba(255,255,255,.75); }
.feature-band .actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

.page-hero {
  padding: 76px 0 68px;
  background:
    linear-gradient(135deg, rgba(12,42,67,.98), rgba(15,90,74,.93)),
    var(--navy);
  color: var(--white);
}
.page-hero h1 { color: var(--white); font-size: clamp(2.5rem, 5vw, 4.6rem); }
.page-hero .lead { color: rgba(255,255,255,.78); }
.breadcrumbs { font-size: .88rem; margin-bottom: 22px; color: rgba(255,255,255,.65); }
.breadcrumbs a { color: var(--gold-soft); }

.table-wrap { overflow-x: auto; border-radius: 16px; border: 1px solid var(--line); }
table { width: 100%; border-collapse: collapse; background: var(--white); }
th, td { padding: 16px 18px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
th { background: #eaf2ef; color: var(--navy); font-size: .88rem; text-transform: uppercase; letter-spacing: .05em; }
tr:last-child td { border-bottom: 0; }

.faq { display: grid; gap: 12px; margin-top: 30px; }
.faq-item { border: 1px solid var(--line); border-radius: 14px; background: var(--white); overflow: hidden; }
.faq-question {
  width: 100%; border: 0; background: transparent; color: var(--navy);
  text-align: left; padding: 20px 54px 20px 20px; font-weight: 850; cursor: pointer;
  position: relative;
}
.faq-question::after { content: "+"; position: absolute; right: 22px; top: 15px; font-size: 1.8rem; color: var(--green); }
.faq-question[aria-expanded="true"]::after { content: "−"; }
.faq-answer { padding: 0 20px 20px; color: var(--muted); }
.faq-answer[hidden] { display: none; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { font-weight: 800; color: var(--navy); }
input, select, textarea {
  width: 100%;
  border: 1px solid #cbd5d1;
  border-radius: 11px;
  padding: 13px 14px;
  background: var(--white);
  color: var(--ink);
}
textarea { min-height: 140px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(201,154,61,.25); border-color: var(--gold); }
.form-note { font-size: .88rem; color: var(--muted); }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 44px; }
.contact-card {
  background: var(--navy); color: var(--white);
  border-radius: 22px; padding: 34px; align-self: start;
}
.contact-card h2, .contact-card h3 { color: var(--white); }
.contact-card p, .contact-card a { color: rgba(255,255,255,.78); }
.contact-line { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.contact-line:last-child { border-bottom: 0; }

.notice {
  border-left: 5px solid var(--gold);
  background: #fff8e7;
  padding: 18px 20px;
  border-radius: 10px;
  color: #4f452e;
}
.notice strong { color: var(--navy); }

.site-footer { background: #081e30; color: var(--white); padding: 66px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 44px; }
.footer-logo { width: 220px; filter: brightness(0) invert(1); opacity: .94; margin-bottom: 18px; }
.site-footer p, .site-footer a { color: rgba(255,255,255,.68); }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--gold-soft); }
.site-footer h3 { color: var(--white); font-family: inherit; font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-bottom {
  margin-top: 46px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: .88rem;
}
.back-to-top {
  position: fixed; right: 20px; bottom: 20px; width: 46px; height: 46px; border-radius: 50%;
  border: 0; background: var(--gold); color: var(--navy); font-weight: 900; cursor: pointer;
  box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(10px); transition: .2s;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    left: 16px; right: 16px; top: 88px;
    display: none; flex-direction: column; align-items: stretch;
    background: var(--white); padding: 12px;
    border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 13px 14px; }
  .hero-grid, .split, .contact-layout { grid-template-columns: 1fr; }
  .hero-art { max-width: 680px; margin-inline: auto; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-band { grid-template-columns: 1fr; }
  .feature-band .actions { justify-content: flex-start; }
}

@media (max-width: 650px) {
  .container, .nav-wrap { width: min(100% - 24px, var(--max)); }
  .announcement { font-size: .82rem; }
  .brand { width: 190px; }
  .hero { padding-top: 58px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .hero-badge { left: 12px; bottom: 16px; }
  .stats, .cards, .programme-grid, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .section { padding: 66px 0; }
  .media-card { min-height: 390px; padding: 28px; }
  .feature-band { padding: 30px; }
  .field.full { grid-column: auto; }
  h1 { font-size: 2.65rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
