@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@400;500;600&display=swap');

:root {
  --purple: #4B2E83;
  --purple-light: #6B44B8;
  --white: #FFFFFF;
  --dark: #0A0A0A;
  --dark-2: #111111;
  --dark-3: #1A1A1A;
  --mid: #2A2A2A;
  --text-muted: #888;
  --text-secondary: #BBB;
  --gold: #F0B429;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 64px;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 22px; letter-spacing: 0.04em; text-decoration: none; color: var(--white);
}
.nav-logo span { color: var(--purple-light); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-secondary); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
  background: var(--purple); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 10px 22px; border: none; cursor: pointer; transition: background 0.2s;
  text-decoration: none; display: inline-block;
}
.nav-cta:hover { background: var(--purple-light); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }
.mobile-menu {
  display: none; position: fixed; inset: 64px 0 0 0;
  background: var(--dark-2); z-index: 99;
  flex-direction: column; padding: 32px 40px; gap: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 24px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
}
.mobile-menu .mobile-cta {
  background: var(--purple); color: var(--white);
  padding: 16px 32px; text-align: center; margin-top: 8px;
}

/* ── PAGE HERO ── */
.page-hero {
  position: relative; padding: 100px 40px 80px;
  overflow: hidden; border-bottom: 1px solid rgba(255,255,255,0.06);
  min-height: 380px; display: flex; align-items: flex-end;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.98) 50%, rgba(10,10,10,0.6) 100%);
}
.page-hero-accent { position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--purple); z-index: 1; }
.page-hero-content { position: relative; z-index: 2; max-width: 640px; }
.eyebrow {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--purple-light); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--purple-light); flex-shrink: 0; }
.page-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: clamp(52px, 8vw, 88px); text-transform: uppercase;
  line-height: 0.92; letter-spacing: -0.01em; margin-bottom: 24px;
}
.page-title .outline { -webkit-text-stroke: 2px var(--white); color: transparent; }
.page-title .accent { color: var(--purple-light); }
.page-lead { font-size: clamp(15px, 2vw, 17px); color: var(--text-secondary); line-height: 1.7; max-width: 500px; }

/* ── SECTIONS ── */
.section { padding: 72px 40px; }
.section-alt { background: var(--dark-2); }
.section-label {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--purple-light); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before { content: ''; display: block; width: 22px; height: 2px; background: var(--purple-light); flex-shrink: 0; }
.section-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: clamp(36px, 5vw, 56px); text-transform: uppercase;
  line-height: 0.95; letter-spacing: -0.01em;
}
.section-title .outline { -webkit-text-stroke: 1.5px rgba(255,255,255,0.3); color: transparent; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--purple); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 15px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 16px 32px; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none; display: inline-block; text-align: center;
}
.btn-primary:hover { background: var(--purple-light); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--white);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 15px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 15px 32px; border: 1px solid rgba(255,255,255,0.25); cursor: pointer;
  transition: border-color 0.2s;
  text-decoration: none; display: inline-block; text-align: center;
}
.btn-ghost:hover { border-color: var(--white); }
.btn-white {
  background: var(--white); color: var(--purple);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 15px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 18px 36px; border: none; cursor: pointer;
  white-space: nowrap; transition: opacity 0.2s, transform 0.15s;
  text-decoration: none; display: inline-block; text-align: center;
}
.btn-white:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-gold {
  background: var(--gold); color: #1a1000;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 15px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 18px 36px; border: none; cursor: pointer;
  white-space: nowrap; transition: opacity 0.2s, transform 0.15s;
  text-decoration: none; display: inline-block; text-align: center;
}
.btn-gold:hover { opacity: 0.9; transform: translateY(-1px); }

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--purple); padding: 64px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.cta-strip-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: clamp(32px, 5vw, 52px); text-transform: uppercase; line-height: 0.95;
}
.cta-strip-sub { font-size: 15px; color: rgba(255,255,255,0.75); margin-top: 10px; max-width: 380px; }

/* ── TICKER ── */
.ticker { background: var(--purple); padding: 12px 0; overflow: hidden; white-space: nowrap; }
.ticker-inner { display: inline-flex; animation: ticker 22s linear infinite; }
.ticker-item {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); padding: 0 32px;
}
.ticker-item::after { content: '✦'; margin-left: 32px; color: rgba(255,255,255,0.4); }

/* ── FOOTER ── */
footer { background: var(--dark-2); border-top: 1px solid rgba(255,255,255,0.06); }
.footer-top {
  display: grid; grid-template-columns: 1.2fr 1fr 1.4fr;
  gap: 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-col {
  padding: 56px 40px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.footer-col:last-child { border-right: none; }
.footer-brand {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 28px; letter-spacing: 0.04em; margin-bottom: 12px;
  text-decoration: none; color: var(--white); display: block;
}
.footer-brand span { color: var(--purple-light); }
.footer-tagline { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 24px; max-width: 260px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.footer-contact-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.footer-contact-text { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }
.footer-contact-text a { color: var(--text-secondary); text-decoration: none; transition: color 0.2s; }
.footer-contact-text a:hover { color: var(--white); }
.footer-social-label {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 14px; margin-top: 24px;
}
.footer-social-links { display: flex; flex-wrap: wrap; gap: 8px; }
.social-pill {
  background: var(--dark-3); border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-secondary);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 14px; text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.social-pill:hover { border-color: var(--purple-light); color: var(--white); background: rgba(107,68,184,0.15); }
.footer-heading {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 18px;
}
.footer-nav-links { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.footer-nav-links a { font-size: 14px; color: var(--text-secondary); text-decoration: none; transition: color 0.2s; }
.footer-nav-links a:hover { color: var(--white); }
.footer-map { width: 100%; height: 220px; border: 0; display: block; filter: grayscale(80%) invert(5%); opacity: 0.85; }
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted);
}
.form-field input, .form-field textarea, .form-field select {
  background: var(--dark-3); border: 1px solid rgba(255,255,255,0.1);
  color: var(--white); font-family: 'Barlow', sans-serif; font-size: 14px;
  padding: 12px 14px; outline: none; transition: border-color 0.2s; width: 100%;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--purple-light); }
.form-field textarea { resize: vertical; min-height: 90px; }
.form-field select option { background: var(--dark-3); }
.btn-form {
  background: var(--purple); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 14px 24px; border: none; cursor: pointer;
  transition: background 0.2s; align-self: flex-start;
}
.btn-form:hover { background: var(--purple-light); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 40px; border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12px; color: var(--text-muted);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.fade-up { animation: fadeUp 0.8s ease both; }

/* ── PLACEHOLDER BG COLOURS ── */
.ph-purple { background: linear-gradient(135deg, #1a0e30 0%, #2d1a52 100%); }
.ph-teal   { background: linear-gradient(135deg, #081818 0%, #0d2e2e 100%); }
.ph-dark   { background: linear-gradient(135deg, #111 0%, #222 100%); }
.ph-coral  { background: linear-gradient(135deg, #1a0a08 0%, #2e1510 100%); }
.ph-green  { background: linear-gradient(135deg, #0a1a0a 0%, #1a2e1a 100%); }
.ph-navy   { background: linear-gradient(135deg, #0a0e1a 0%, #121a30 100%); }
.ph-initials {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 72px; color: rgba(255,255,255,0.07);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 40px 20px; }
  .footer-col:last-child { border-bottom: none; }
}
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .page-hero { padding: 64px 20px 56px; }
  .section { padding: 56px 20px; }
  .cta-strip { flex-direction: column; align-items: flex-start; padding: 48px 20px; gap: 24px; }
  .btn-white, .btn-gold { width: 100%; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 20px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .page-title { font-size: 48px; }
  .section-title { font-size: 34px; }
}


.modal-overlay{position:fixed;inset:0;background:rgba(0,0,0,.85);z-index:200;display:flex;align-items:center;justify-content:center;padding:20px;opacity:0;pointer-events:none;transition:opacity .3s}
.modal-overlay.open{opacity:1;pointer-events:all}
.modal-box{background:var(--dark-3);border:1px solid rgba(255,255,255,.1);border-top:3px solid var(--gold);max-width:640px;width:100%;max-height:90vh;overflow-y:auto;position:relative;padding:40px}
.modal-close{position:absolute;top:16px;right:16px;background:none;border:none;color:var(--text-muted);font-size:24px;cursor:pointer;line-height:1}
.modal-close:hover{color:#fff}
.modal-month{font-family:'Barlow Condensed',sans-serif;font-weight:700;font-size:11px;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);margin-bottom:8px}
.modal-name{font-family:'Barlow Condensed',sans-serif;font-weight:900;font-size:52px;text-transform:uppercase;line-height:.9;margin-bottom:20px}
.modal-photo{width:100%;aspect-ratio:16/9;object-fit:cover;object-position:top;margin-bottom:24px;display:block}
.modal-photo-placeholder{width:100%;aspect-ratio:16/9;display:flex;align-items:center;justify-content:center;font-family:'Barlow Condensed',sans-serif;font-weight:900;font-size:80px;color:rgba(255,255,255,.07);margin-bottom:24px}
.modal-bio{font-size:14px;color:var(--text-secondary);line-height:1.75;margin-bottom:24px;border-left:3px solid var(--purple);padding-left:16px}
.modal-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:2px}
.modal-stat{background:var(--dark-2);padding:14px 16px}
.modal-stat-label{font-family:'Barlow Condensed',sans-serif;font-weight:700;font-size:10px;letter-spacing:.18em;text-transform:uppercase;color:var(--text-muted);margin-bottom:5px}
.modal-stat-value{font-family:'Barlow Condensed',sans-serif;font-weight:900;font-size:13px;text-transform:uppercase;color:#fff;line-height:1.3}