@font-face {
  font-family: 'AchersGrotesque';
  src: url('acherusgrotesque-regular.otf') format('opentype');
}
:root {
  --pink: #e0357d;
  --pink-dark: #cc0e74;
  --purple: #790c5a;
  --charcoal: #353a47;
  --cream: #f3f1f3;
  --gradient-h: linear-gradient(90deg, #790c5a 0%, #e0357d 100%);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; background: #fff; color: var(--charcoal); overflow-x: hidden; }

/* NAV */
nav, #navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(53,58,71,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0 40px; display: flex; align-items: center;
  justify-content: space-between; height: 72px; transition: box-shadow 0.3s;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 48px; width: 48px; object-fit: contain; border-radius: 4px; background: white; padding: 2px; }
.nav-logo-text .name { font-family: 'AchersGrotesque','Montserrat',sans-serif; font-size: 20px; font-weight: 700; color: white; letter-spacing: 2px; line-height: 1; display: block; }
.nav-logo-text .tagline, .nav-logo-text .tag { font-size: 10px; color: var(--pink); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 2px; display: block; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 13px; font-weight: 500; padding: 8px 14px; border-radius: 6px; transition: all 0.2s; }
.nav-links a:hover, .nav-links a.active { color: white; background: rgba(255,255,255,0.08); }
.nav-links .nav-cta, .nav-links .cta { background: var(--gradient-h); color: white !important; border-radius: 8px; font-weight: 600; }
.nav-links .nav-cta:hover, .nav-links .cta:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(224,53,125,0.4); background: var(--gradient-h) !important; }
.nav-hamburger, .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span, .hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; }

/* PAGE HERO */
.page-hero { background: var(--charcoal); padding: 140px 40px 80px; position: relative; overflow: hidden; }
.page-hero::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(224,53,125,0.15) 0%, transparent 60%), radial-gradient(ellipse 40% 60% at 10% 80%, rgba(121,12,90,0.15) 0%, transparent 60%); pointer-events:none; }
.page-hero-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero-title { font-family: 'AchersGrotesque','Montserrat',sans-serif; font-size: clamp(36px,5vw,64px); font-weight: 700; color: white; line-height: 1.1; letter-spacing: -0.5px; margin: 12px 0 20px; }
.page-hero-title span { background: var(--gradient-h); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-hero-desc { font-size: 17px; color: rgba(255,255,255,0.6); line-height: 1.8; max-width: 640px; }

/* TICKER */
.ticker-wrap { background: var(--purple); padding: 14px 0; overflow: hidden; position: relative; }
.ticker-wrap::before, .ticker-wrap::after { content:''; position:absolute; top:0; width:80px; height:100%; z-index:2; }
.ticker-wrap::before { left:0; background:linear-gradient(90deg,var(--purple),transparent); }
.ticker-wrap::after  { right:0; background:linear-gradient(-90deg,var(--purple),transparent); }
.ticker-track { display:flex; white-space:nowrap; animation:ticker 35s linear infinite; width:max-content; }
.ticker-track:hover { animation-play-state:paused; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.ticker-item { display:inline-flex; align-items:center; gap:10px; padding:0 28px; font-size:13px; font-weight:600; color:rgba(255,255,255,0.85); letter-spacing:0.5px; }
.ticker-dot { width:4px; height:4px; background:var(--pink); border-radius:50%; flex-shrink:0; }

/* SECTIONS */
.section-light  { background: #fff; padding: 90px 40px; }
.section-dark   { background: var(--charcoal); padding: 90px 40px; }
.section-cream  { background: var(--cream); padding: 90px 40px; }
.cta-section    { background: var(--gradient-h); padding: 90px 40px; }
.container { max-width: 1200px; margin: 0 auto; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.section-label { display: inline-block; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--pink); font-weight: 600; margin-bottom: 16px; }
.section-title { font-family: 'AchersGrotesque','Montserrat',sans-serif; font-size: clamp(28px,4vw,48px); font-weight: 700; line-height: 1.1; letter-spacing: -0.3px; margin-bottom: 20px; }
.section-desc { font-size: 16px; color: #666; line-height: 1.8; max-width: 560px; }

/* BUTTONS */
.btn-primary { display:inline-flex; align-items:center; gap:8px; background:var(--gradient-h); color:white; text-decoration:none; padding:15px 30px; border-radius:10px; font-weight:700; font-size:14px; transition:all 0.25s; border:none; cursor:pointer; font-family:'Open Sans',sans-serif; }
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 8px 28px rgba(224,53,125,0.42); }
.btn-outline { display:inline-flex; align-items:center; gap:8px; background:transparent; color:var(--pink); text-decoration:none; padding:13px 28px; border-radius:10px; font-weight:600; font-size:14px; border:2px solid rgba(224,53,125,0.35); transition:all 0.25s; }
.btn-outline:hover { background:rgba(224,53,125,0.06); border-color:var(--pink); transform:translateY(-2px); }
.btn-ghost { display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,0.07); color:white; text-decoration:none; padding:15px 30px; border-radius:10px; font-weight:600; font-size:14px; border:1px solid rgba(255,255,255,0.15); transition:all 0.25s; }
.btn-ghost:hover { background:rgba(255,255,255,0.12); transform:translateY(-2px); }
.btn-white { display:inline-flex; align-items:center; gap:8px; background:white; color:var(--pink-dark); text-decoration:none; padding:15px 32px; border-radius:10px; font-weight:700; font-size:14px; transition:all 0.25s; border:none; cursor:pointer; }
.btn-white:hover { transform:translateY(-2px); box-shadow:0 8px 28px rgba(0,0,0,0.18); }
.btn-secondary-light { display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,0.15); color:white; text-decoration:none; padding:15px 30px; border-radius:10px; font-weight:600; font-size:14px; border:1px solid rgba(255,255,255,0.3); transition:all 0.25s; }
.btn-secondary-light:hover { background:rgba(255,255,255,0.22); transform:translateY(-2px); }

/* PROGRAMMES GRID */
.programs-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.program-card { background:white; border-radius:16px; padding:28px; border:1px solid rgba(0,0,0,0.06); transition:all 0.3s; position:relative; overflow:hidden; }
.program-card::before { content:''; position:absolute; top:0;left:0;right:0;height:3px; background:var(--gradient-h); transform:scaleX(0); transition:transform 0.3s; }
.program-card:hover { transform:translateY(-5px); box-shadow:0 16px 50px rgba(0,0,0,0.09); }
.program-card:hover::before { transform:scaleX(1); }
.program-icon { font-size:30px; margin-bottom:14px; }
.program-card h3 { font-family:'Montserrat',sans-serif; font-size:16px; font-weight:700; margin-bottom:10px; color:var(--charcoal); }
.program-card p { font-size:13px; color:#777; line-height:1.7; }
.program-tag { display:inline-block; margin-top:14px; font-size:10px; font-weight:700; letter-spacing:1px; text-transform:uppercase; color:var(--pink); background:rgba(224,53,125,0.08); border-radius:6px; padding:3px 10px; }

/* FOUNDER / ABOUT CARDS */
.founder-feature { display:flex; flex-direction:column; gap:0; }
.founder-img-wrap { border-radius:20px 20px 0 0; overflow:hidden; }
.founder-img-wrap img { width:100%; height:340px; object-fit:cover; object-position:center top; display:block; }
.founder-info-card { background:var(--charcoal); border-radius:0 0 20px 20px; padding:22px 24px; }
.founder-name { font-family:'Montserrat',sans-serif; font-size:20px; font-weight:700; color:white; margin-bottom:3px; }
.founder-role { font-size:12px; color:var(--pink); font-weight:600; letter-spacing:0.3px; margin-bottom:10px; }
.founder-info-card p { font-size:13px; color:rgba(255,255,255,0.5); line-height:1.6; }

/* MEDIA PILLS (featured on) */
.media-section { background:var(--charcoal); padding:56px 40px; }
.media-section-inner { max-width:1100px; margin:0 auto; }
.media-hdr { font-size:11px; letter-spacing:3px; text-transform:uppercase; color:rgba(255,255,255,0.3); font-weight:600; text-align:center; margin-bottom:28px; }
.media-pills { display:flex; flex-wrap:wrap; gap:8px; justify-content:center; margin-bottom:32px; }
.mpill { padding:7px 16px; border-radius:100px; font-size:12px; font-weight:600; letter-spacing:0.3px; transition:all 0.2s; }
.mpill:hover { transform:translateY(-2px); filter:brightness(1.3); }
.mpill.tv    { background:rgba(224,53,125,0.12); border:1px solid rgba(224,53,125,0.28); color:rgba(255,255,255,0.8); }
.mpill.radio { background:rgba(121,12,90,0.2);   border:1px solid rgba(121,12,90,0.38);   color:rgba(255,255,255,0.8); }
.mpill.print { background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.12); color:rgba(255,255,255,0.65); }
.mpill.intl  { background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.2);  color:rgba(255,255,255,0.85); }

/* AWARD CARD */
.award-strip { display:flex; justify-content:center; }
.award-card { display:inline-flex; align-items:center; gap:20px; background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1); border-radius:16px; padding:20px 28px; flex-wrap:wrap; }
.pyp-logo { display:flex; align-items:center; gap:10px; }
.pyp-flag { font-size:28px; }
.pyp-text { display:flex; flex-direction:column; }
.pyp-brand { font-size:11px; color:rgba(255,255,255,0.45); letter-spacing:1px; text-transform:uppercase; }
.pyp-prog  { font-size:14px; font-weight:700; color:white; }
.award-divider { width:1px; height:40px; background:rgba(255,255,255,0.12); flex-shrink:0; }
.award-year { font-size:11px; color:var(--pink); font-weight:600; text-transform:uppercase; letter-spacing:1px; margin-bottom:3px; }
.award-name { font-size:15px; font-weight:700; color:white; margin-bottom:3px; }
.award-desc { font-size:12px; color:rgba(255,255,255,0.4); max-width:360px; line-height:1.5; }

/* CYCLE GRID */
.cycle-grid { display:grid; grid-template-columns:1fr auto 1fr auto 1fr; gap:0; align-items:center; max-width:960px; margin:0 auto; }
.cycle-card { background:white; border-radius:16px; padding:28px; border:1px solid rgba(0,0,0,0.06); text-align:center; }
.cycle-num { font-family:'Montserrat',sans-serif; font-size:11px; font-weight:700; color:var(--pink); letter-spacing:2px; margin-bottom:10px; }
.cycle-card h3 { font-family:'Montserrat',sans-serif; font-size:16px; font-weight:700; margin-bottom:8px; }
.cycle-card p { font-size:13px; color:#777; line-height:1.6; }
.cycle-arrow { font-size:28px; color:rgba(0,0,0,0.15); text-align:center; padding:0 16px; }

/* MV GRID (mission/vision) */
.mv-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.mv-card { background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.08); border-radius:16px; padding:32px; }
.mv-card-accent { background:rgba(224,53,125,0.08); border-color:rgba(224,53,125,0.2); }
.mv-icon { font-size:32px; margin-bottom:16px; }
.mv-card h3 { font-family:'Montserrat',sans-serif; font-size:17px; font-weight:700; color:white; margin-bottom:10px; }
.mv-card p { font-size:14px; color:rgba(255,255,255,0.55); line-height:1.7; }

/* FOOTER */
footer { background: #080405; padding: 60px 40px 28px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; padding-bottom:44px; border-bottom:1px solid rgba(255,255,255,0.06); }
.footer-brand img { height:52px; background:white; padding:4px; border-radius:6px; margin-bottom:14px; display:block; }
.footer-brand p { font-size:13px; color:rgba(255,255,255,0.38); line-height:1.7; margin-bottom:18px; max-width:250px; }
.footer-socials { display:flex; gap:8px; }
.footer-social { width:34px; height:34px; background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.08); border-radius:7px; display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,0.45); text-decoration:none; font-size:12px; font-weight:700; transition:all 0.2s; }
.footer-social:hover { background:var(--pink); border-color:var(--pink); color:white; }
.footer-col h4 { font-family:'Montserrat',sans-serif; font-size:11px; font-weight:700; color:white; letter-spacing:1.5px; margin-bottom:16px; text-transform:uppercase; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:9px; }
.footer-col ul li a { font-size:13px; color:rgba(255,255,255,0.38); text-decoration:none; transition:color 0.2s; }
.footer-col ul li a:hover { color:var(--pink); }
.contact-item { display:flex; gap:9px; align-items:center; font-size:13px; color:rgba(255,255,255,0.38); margin-bottom:9px; }
.contact-item a { color:rgba(255,255,255,0.38); text-decoration:none; transition:color 0.2s; }
.contact-item a:hover { color:var(--pink); }
.footer-bottom { padding-top:22px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; }
.footer-bottom p { font-size:12px; color:rgba(255,255,255,0.22); }
.footer-bottom a { font-size:12px; color:rgba(255,255,255,0.3); text-decoration:none; }
.footer-bottom a:hover { color:var(--pink); }

/* FADE UP */
.fade-up { opacity:0; transform:translateY(28px); transition:opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity:1; transform:translateY(0); }

/* RESPONSIVE */
@media(max-width:900px){
  nav, #navbar { padding:0 20px; }
  .nav-links { display:none; }
  .nav-links.open { display:flex; flex-direction:column; position:fixed; top:72px; left:0; right:0; background:var(--charcoal); padding:16px; gap:4px; border-bottom:1px solid rgba(255,255,255,0.08); z-index:999; }
  .nav-hamburger, .hamburger { display:flex; }
  .two-col, .mv-grid, .programs-grid { grid-template-columns:1fr !important; }
  .cycle-grid { grid-template-columns:1fr; }
  .cycle-arrow { display:none; }
  .footer-top { grid-template-columns:1fr 1fr; gap:28px; }
  .section-light,.section-dark,.section-cream,.cta-section { padding:60px 20px; }
  .media-section { padding:48px 20px; }
  .page-hero { padding:120px 20px 60px; }
}
@media(max-width:600px){
  .footer-top { grid-template-columns:1fr; }
  .award-card { flex-direction:column; text-align:center; }
  .award-divider { width:100%; height:1px; }
}

/* ── FORM STYLES ── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--charcoal); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: var(--charcoal);
  background: white;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: auto;
  -webkit-appearance: auto;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(224,53,125,0.1);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group select { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:600px){ .form-row { grid-template-columns: 1fr; } }

/* ── GLOBAL SECTION ── */
.section-light  { background: #fff; padding: 90px 40px; }
.section-dark   { background: var(--charcoal); padding: 90px 40px; }
.section-cream  { background: var(--cream); padding: 90px 40px; }
.cta-section    { background: var(--gradient-h); padding: 90px 40px; }
.container { max-width: 1200px; margin: 0 auto; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
@media(max-width:900px){
  .section-light,.section-dark,.section-cream,.cta-section { padding: 60px 20px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
}

/* ── COOKIE BANNER ──────────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: -120px;
  left: 0; right: 0;
  z-index: 9999;
  background: #1e1e2e;
  border-top: 2px solid var(--pink);
  padding: 0;
  transition: bottom 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 -4px 32px rgba(0,0,0,0.3);
}
#cookie-banner.cookie-visible { bottom: 0; }
#cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
#cookie-text {
  flex: 1;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  min-width: 240px;
}
#cookie-text strong { color: white; }
#cookie-text a { color: var(--pink); text-decoration: none; margin: 0 4px; }
#cookie-text a:hover { text-decoration: underline; }
#cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
#cookie-decline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.65);
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
#cookie-decline:hover { border-color: rgba(255,255,255,0.5); color: white; }
#cookie-accept {
  background: var(--pink);
  border: none;
  color: white;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}
#cookie-accept:hover { background: var(--purple); }
@media (max-width: 600px) {
  #cookie-inner { padding: 14px 18px; gap: 14px; }
  #cookie-actions { width: 100%; }
  #cookie-decline, #cookie-accept { flex: 1; text-align: center; }
}
