/* ── Tokens ── */
:root {
  --green:     #0d4f2e;
  --green-mid: #155e38;
  --green-lt:  #1a7344;
  --yellow:    #f5c800;
  --yellow-dk: #c9a000;
  --ink:       #111111;
  --ink-60:    rgba(17,17,17,.6);
  --off:       #f7f6f0;
  --white:     #ffffff;
  --r-sm:      6px;
  --r-md:      12px;
  --r-lg:      20px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--ink); background: var(--white); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ── Utilities ── */
.page-wrap { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.eyebrow { font-size: .72rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--green); margin-bottom: 12px; }
.eyebrow-light { color: var(--yellow); }

/* Fade */
.fade { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade.in { opacity: 1; transform: none; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,.08);
  transition: box-shadow .25s;
}
.nav.up { box-shadow: 0 4px 32px rgba(0,0,0,.10); }
.nav-wrap {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  height: 72px; display: flex; align-items: center; gap: 32px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 44px; height: 44px; border-radius: var(--r-sm);
  background: var(--green); color: var(--yellow);
  font-size: .8rem; font-weight: 900; letter-spacing: .04em;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.brand-name { display: block; font-size: .85rem; font-weight: 700; line-height: 1.1; }
.brand-loc  { display: block; font-size: .72rem; color: var(--ink-60); }
.nav-menu { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav-menu a { font-size: .82rem; font-weight: 600; color: var(--ink-60); transition: color .2s; }
.nav-menu a:hover { color: var(--green); }
.nav-cta {
  margin-left: 8px; padding: 9px 20px;
  background: var(--yellow); color: var(--ink);
  font-size: .82rem; font-weight: 700;
  border-radius: var(--r-sm); white-space: nowrap;
  transition: background .2s;
}
.nav-cta:hover { background: var(--yellow-dk); color: var(--green); text-decoration: none; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }

/* ── Drawer ── */
.drawer {
  position: fixed; top: 0; right: -320px; bottom: 0; width: 300px;
  background: var(--white); z-index: 1000;
  box-shadow: -8px 0 40px rgba(0,0,0,.12);
  transition: right .3s ease; padding: 24px;
  display: flex; flex-direction: column;
}
.drawer.open { right: 0; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.drawer-head .brand-mark { background: var(--green); color: var(--yellow); }
.drawer-head button { background: none; border: none; cursor: pointer; }
.drawer-nav { display: flex; flex-direction: column; gap: 0; flex: 1; }
.drawer-nav a { padding: 14px 0; font-size: 1rem; font-weight: 600; border-bottom: 1px solid rgba(0,0,0,.06); color: var(--ink); }
.drawer-nav a:hover { color: var(--green); }
.drawer-cta {
  display: block; text-align: center; padding: 14px;
  background: var(--green); color: var(--white);
  font-weight: 700; border-radius: var(--r-sm); margin-top: 28px;
}
.scrim {
  position: fixed; inset: 0; background: rgba(0,0,0,.4);
  z-index: 999; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.scrim.on { opacity: 1; pointer-events: all; }

/* ── Hero ── */
.hero {
  position: relative; overflow: hidden;
  background: var(--green);
  min-height: 100vh;
  padding-top: 72px;
  display: flex; flex-direction: column;
}

/* Giant ghost watermark */
.hero-ghost {
  position: absolute; right: -5vw; top: 50%; transform: translateY(-55%);
  font-size: clamp(16rem, 30vw, 28rem);
  font-weight: 900; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,.07);
  pointer-events: none; user-select: none;
  letter-spacing: -.04em;
}

/* Dot grid overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Main content */
.hero-content {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  max-width: 1200px; width: 100%; margin: 0 auto;
  padding: 80px 40px 60px;
  position: relative; z-index: 1;
  max-width: 760px; margin-left: clamp(40px, 8vw, 160px);
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin-bottom: 28px;
}
.hero-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--yellow); flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(245,200,0,.7); }
  70%  { box-shadow: 0 0 0 10px rgba(245,200,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,200,0,0); }
}

.hero-h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900; line-height: 1.02; letter-spacing: -.02em;
  color: var(--white); margin-bottom: 24px;
}
.hero-h1 em { color: var(--yellow); font-style: normal; }

.hero-lead {
  font-size: 1.05rem; line-height: 1.7;
  color: rgba(255,255,255,.7); max-width: 440px; margin-bottom: 40px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 44px; }

.btn-primary {
  padding: 14px 28px; background: var(--yellow); color: var(--ink);
  font-weight: 700; font-size: .9rem; border-radius: var(--r-sm);
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--yellow-dk); transform: translateY(-1px); color: var(--green); text-decoration: none; }
.btn-secondary {
  padding: 14px 28px; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25); color: var(--white);
  font-weight: 600; font-size: .9rem; border-radius: var(--r-sm);
  transition: background .2s;
}
.btn-secondary:hover { background: rgba(255,255,255,.18); color: var(--white); text-decoration: none; }

.hero-motto { display: flex; align-items: center; gap: 14px; }
.hero-motto-rule { width: 36px; height: 1px; background: rgba(255,255,255,.2); }
.hero-motto span { font-size: .78rem; color: rgba(255,255,255,.4); font-style: italic; }

/* Stats bar — pinned to bottom of hero */
.hero-stats-bar {
  position: relative; z-index: 1;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center;
  padding: 0 clamp(24px, 5vw, 80px);
}
.hsb {
  padding: 24px 36px 24px 0;
  display: flex; flex-direction: column; gap: 4px;
}
.hsb-n {
  font-size: 2rem; font-weight: 900; color: var(--white); line-height: 1;
}
.hsb-n sup { font-size: .65em; }
.hsb-yellow .hsb-n { color: var(--yellow); }
.hsb-l {
  font-size: .68rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.45);
}
.hsb-div { width: 1px; height: 40px; background: rgba(255,255,255,.15); margin-right: 36px; flex-shrink: 0; }
.hsb-badge {
  margin-left: auto; display: inline-flex; align-items: center; gap: 7px;
  background: var(--yellow); color: var(--ink);
  padding: 9px 18px; border-radius: 99px;
  font-size: .78rem; font-weight: 700; white-space: nowrap;
  flex-shrink: 0;
}

/* ── Marquee ── */
.marquee { background: var(--yellow); overflow: hidden; padding: 12px 0; }
.marquee-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: ticker 30s linear infinite;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-33.333%); } }
.marquee-track span { font-size: .8rem; font-weight: 700; color: var(--ink); padding: 0 20px; letter-spacing: .04em; text-transform: uppercase; }
.marquee-track .sep { padding: 0; color: var(--green); opacity: .5; }

/* ── About ── */
.about { padding: 120px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-img-box { aspect-ratio: 4/5; border-radius: var(--r-lg); overflow: hidden; background: var(--green); }
.about-img-inner { height: 100%; background: linear-gradient(135deg, var(--green) 0%, var(--green-lt) 100%); }
.about-year-tag {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--yellow); border-radius: var(--r-md); padding: 20px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
.ayt-num { font-size: 2.4rem; font-weight: 900; color: var(--ink); line-height: 1; }
.ayt-label { font-size: .72rem; font-weight: 700; color: rgba(0,0,0,.55); text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; }
.about-content h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 900; line-height: 1.1; margin-bottom: 24px; }
.about-content h2 span { color: var(--green); }
.about-content p { font-size: .95rem; line-height: 1.75; color: var(--ink-60); margin-bottom: 16px; }
.about-details { margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ad { display: flex; flex-direction: column; gap: 3px; }
.ad-key { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-60); }
.ad-val { font-size: .88rem; font-weight: 600; color: var(--ink); }
.ad-val a { color: var(--green); }

/* ── Programmes ── */
.programmes { padding: 120px 0; background: var(--green); }
.programmes-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: end; margin-bottom: 56px;
}
.programmes-title { font-size: clamp(2.4rem,4vw,3.5rem); font-weight: 900; color: var(--white); line-height: 1.05; }
.programmes-title span { color: var(--yellow); }
.programmes-sub { font-size: .95rem; line-height: 1.7; color: rgba(255,255,255,.65); align-self: end; }
.programmes-grid { display: grid; grid-template-columns: 2fr repeat(2,1fr); grid-template-rows: auto auto; gap: 2px; }
.prog {
  background: rgba(255,255,255,.06); padding: 36px 32px;
  transition: background .2s;
}
.prog:hover { background: rgba(255,255,255,.10); }
.prog-featured {
  grid-row: span 2; background: var(--yellow);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.prog-num { font-size: .72rem; font-weight: 800; letter-spacing: .12em; color: rgba(255,255,255,.35); text-transform: uppercase; margin-bottom: 20px; }
.prog-featured .prog-num { color: rgba(0,0,0,.3); }
.prog h3 { font-size: 1.6rem; font-weight: 800; color: var(--ink); margin-bottom: 14px; }
.prog h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.prog-featured h3 { margin-top: auto; }
.prog p { font-size: .88rem; line-height: 1.65; color: rgba(255,255,255,.65); }
.prog-featured p { color: rgba(0,0,0,.6); }

/* ── Life ── */
.life { padding: 0 0 120px; background: var(--off); }
.life-top { background: var(--ink); padding: 100px 0 60px; margin-bottom: 60px; }
.life-top .page-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.life-intro h2 { font-size: clamp(2rem,3.5vw,3rem); font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 16px; }
.life-intro p { font-size: .95rem; line-height: 1.7; color: rgba(255,255,255,.6); }
.life-sport-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md); padding: 32px;
}
.life-sport-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 12px;
}
.life-sport-title { font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.life-sport-card p { font-size: .88rem; line-height: 1.65; color: rgba(255,255,255,.6); margin-bottom: 20px; }
.sport-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.sport-chips span {
  padding: 5px 12px; border-radius: 99px;
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.75);
  font-size: .75rem; font-weight: 600;
}
.life-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.lcard { background: var(--white); padding: 36px 28px; }
.lcard-alt { background: var(--green); }
.lcard:first-child { border-radius: var(--r-md) 0 0 var(--r-md); }
.lcard:last-child  { border-radius: 0 var(--r-md) var(--r-md) 0; }
.lcard-icon { color: var(--green); margin-bottom: 16px; }
.lcard-alt .lcard-icon { color: var(--yellow); }
.lcard h4 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.lcard-alt h4 { color: var(--white); }
.lcard p { font-size: .85rem; line-height: 1.65; color: var(--ink-60); }
.lcard-alt p { color: rgba(255,255,255,.65); }

/* ── Achievements ── */
.ach { padding: 120px 0; background: var(--white); }
.ach-header { text-align: center; max-width: 480px; margin: 0 auto 72px; }
.ach-header h2 { font-size: clamp(2.2rem,4vw,3.4rem); font-weight: 900; line-height: 1.1; margin-top: 12px; }
.ach-header h2 span { color: var(--green); }
.ach-items { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; }
.ach-item {
  display: grid; grid-template-columns: auto 1fr; gap: 32px;
  padding: 48px 40px; background: var(--off); align-items: start;
}
.ach-item:nth-child(2) { background: var(--green); }
.ach-item:nth-child(3) { background: var(--green); }
.ach-item:nth-child(4) { background: var(--yellow); }
.ach-metric {
  font-size: 3.6rem; font-weight: 900; line-height: 1;
  color: var(--green); white-space: nowrap;
}
.ach-metric span { font-size: 2rem; font-weight: 800; }
.ach-item:nth-child(2) .ach-metric,
.ach-item:nth-child(3) .ach-metric { color: var(--yellow); }
.ach-item:nth-child(4) .ach-metric { color: var(--ink); }
.ach-tag { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green); margin-bottom: 8px; }
.ach-item:nth-child(2) .ach-tag,
.ach-item:nth-child(3) .ach-tag { color: rgba(255,255,255,.5); }
.ach-item:nth-child(4) .ach-tag { color: rgba(0,0,0,.4); }
.ach-body h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.ach-item:nth-child(2) h4,
.ach-item:nth-child(3) h4 { color: var(--white); }
.ach-body p { font-size: .85rem; line-height: 1.65; color: var(--ink-60); }
.ach-item:nth-child(2) p,
.ach-item:nth-child(3) p { color: rgba(255,255,255,.6); }
.ach-item:nth-child(4) p { color: rgba(0,0,0,.55); }

/* ── CTA ── */
.cta { background: var(--yellow); padding: 100px 0; }
.cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.cta-text h2 { font-size: clamp(2rem,3.5vw,3rem); font-weight: 900; line-height: 1.1; color: var(--ink); }
.cta-text p { font-size: .95rem; line-height: 1.7; color: rgba(0,0,0,.6); margin-top: 16px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; align-items: center; }
.btn-ghost {
  padding: 13px 24px; border: 2px solid var(--ink);
  color: var(--ink); font-weight: 700; font-size: .88rem;
  border-radius: var(--r-sm); transition: background .2s;
}
.btn-ghost:hover { background: rgba(0,0,0,.07); color: var(--green); text-decoration: none; }

/* ── Contact ── */
.contact { padding: 120px 0; background: var(--off); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-info h2 { font-size: clamp(1.8rem,3vw,2.8rem); font-weight: 900; line-height: 1.1; margin-bottom: 16px; }
.contact-info > p { font-size: .95rem; line-height: 1.7; color: var(--ink-60); margin-bottom: 36px; }
.cinfo-list { display: flex; flex-direction: column; gap: 20px; }
.cinfo { display: flex; align-items: flex-start; gap: 14px; font-size: .9rem; }
.cinfo-icon { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.cinfo a { color: var(--green); font-weight: 600; }

.contact-form {
  background: var(--white); border-radius: var(--r-lg);
  padding: 48px 40px; box-shadow: 0 4px 40px rgba(0,0,0,.07);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.fg label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-60); }
.fg input, .fg textarea {
  padding: 12px 16px; border: 1.5px solid rgba(0,0,0,.12);
  border-radius: var(--r-sm); font-family: inherit; font-size: .92rem;
  color: var(--ink); background: var(--white);
  transition: border-color .2s; resize: vertical;
}
.fg input:focus, .fg textarea:focus { outline: none; border-color: var(--green); }
.form-btn {
  width: 100%; padding: 14px;
  background: var(--green); color: var(--white);
  font-weight: 700; font-size: .95rem; border: none;
  border-radius: var(--r-sm); cursor: pointer; transition: background .2s;
}
.form-btn:hover { background: var(--green-mid); }
.form-success {
  margin-top: 16px; padding: 14px 20px;
  background: #e6f9ef; color: #1a7344; border-radius: var(--r-sm);
  font-size: .88rem; font-weight: 600; display: none;
}
.form-success.show { display: block; }

/* ── Footer ── */
.footer { background: var(--ink); padding: 80px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; margin-bottom: 56px; }
.footer-brand { display: flex; align-items: flex-start; gap: 14px; }
.footer-brand .brand-mark { background: var(--green); color: var(--yellow); flex-shrink: 0; }
.footer-name { font-size: .95rem; font-weight: 700; color: var(--white); }
.footer-motto { font-size: .78rem; color: rgba(255,255,255,.4); margin-top: 4px; font-style: italic; }
.footer-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.footer-hed { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer ul li { font-size: .85rem; color: rgba(255,255,255,.55); }
.footer ul a { color: rgba(255,255,255,.55); transition: color .2s; }
.footer ul a:hover { color: var(--yellow); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08);
  font-size: .8rem; color: rgba(255,255,255,.35);
}
.footer-bottom a { color: var(--yellow); }
.footer-bottom a:hover { text-decoration: underline; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .page-wrap { padding: 0 24px; }
  .nav-menu, .nav-cta { display: none; }
  .burger { display: flex; margin-left: auto; }
  .hero-wrap { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 60px 28px 48px; }
  .hero-panel-stats { grid-template-columns: repeat(3,1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-year-tag { bottom: -16px; right: 16px; }
  .about-details { grid-template-columns: 1fr; }
  .programmes-header { grid-template-columns: 1fr; gap: 20px; }
  .programmes-grid { grid-template-columns: 1fr; }
  .prog-featured { grid-row: span 1; }
  .life-top .page-wrap { grid-template-columns: 1fr; }
  .life-cards { grid-template-columns: repeat(2,1fr); }
  .lcard:first-child { border-radius: var(--r-md) 0 0 0; }
  .lcard:last-child  { border-radius: 0 0 var(--r-md) 0; }
  .ach-items { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .hero-h1 { font-size: 2.4rem; }
  .form-row { grid-template-columns: 1fr; }
  .life-cards { grid-template-columns: 1fr; }
  .lcard:first-child, .lcard:last-child { border-radius: 0; }
  .hps { padding: 20px 14px; }
  .hps-n { font-size: 1.4rem; }
  .ach-item { grid-template-columns: 1fr; gap: 12px; padding: 32px 24px; }
  .footer-cols { grid-template-columns: 1fr; }
}
