:root {
  --navy-900: #0a1f3d;
  --navy-800: #0e2a52;
  --navy-700: #14356b;
  --navy-100: #e8edf6;
  --accent: #d62828;
  --accent-dark: #b31f1f;
  --bg: #f6f7fa;
  --bg-alt: #ffffff;
  --text: #1a1d24;
  --text-muted: #5b6270;
  --border: #e2e5ec;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;

  --container: 1160px;
  --radius: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  letter-spacing: 0.3px;
  margin: 0;
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 20, 38, 0.98);
  padding-top: env(safe-area-inset-top, 0px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.brand-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  color: #dbe3f2;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.main-nav a:hover { color: #fff; }

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--accent-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  display: block;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 110px 0 100px;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(214, 40, 40, 0.25), transparent 45%),
    linear-gradient(160deg, var(--navy-900), var(--navy-700));
  z-index: -1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-width: 0;
}

.hero-logo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin-bottom: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.35);
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
  max-width: 100%;
}

.hero h1 {
  font-size: clamp(2rem, 9vw, 4.5rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  overflow-wrap: break-word;
}

.hero-subtitle {
  max-width: 560px;
  margin: 20px auto 0;
  color: #cdd7ea;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-dark); }

.btn-outline {
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* ---------- SECTIONS ---------- */
.section {
  padding: 90px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.6rem, 6vw, 2.6rem);
  font-weight: 700;
  color: var(--navy-900);
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.section-lead {
  max-width: 640px;
  color: var(--text-muted);
  margin-top: 16px;
  font-size: 1.05rem;
}

/* ---------- DISCIPLINES ---------- */
.discipline-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
}

.discipline-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  cursor: default;
  background: var(--navy-900);
  box-shadow: 0 14px 32px rgba(10, 31, 61, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.discipline-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(10, 31, 61, 0.28);
}

.discipline-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.discipline-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(10,15,25,0.92) 0%, rgba(10,15,25,0.15) 55%, rgba(10,15,25,0.35) 100%);
}

.discipline-card:hover .discipline-photo {
  transform: scale(1.08);
  filter: saturate(1.15) contrast(1.1);
}

.discipline-overlay {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 22px 20px 20px;
  text-align: left;
}

.discipline-card h3 {
  font-size: 1.4rem;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.discipline-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.5;
}

/* ---------- EVENTS ---------- */
.events-grid {
  margin-top: 48px;
  display: grid;
  gap: 20px;
}

.event-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.event-date {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: 12px;
  background: var(--navy-900);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.event-day {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.event-month {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  color: var(--accent);
}

.event-info h3 {
  font-size: 1.15rem;
  color: var(--navy-900);
  text-transform: none;
  font-weight: 700;
  margin-bottom: 6px;
}

.event-location {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.event-card-placeholder {
  border-style: dashed;
}

/* ---------- NEWS ---------- */
.news-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.news-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.news-card h3 {
  font-size: 1.15rem;
  color: var(--navy-900);
  text-transform: none;
  margin-bottom: 10px;
}

.news-card p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.92rem;
}

.news-card-placeholder {
  border-style: dashed;
}

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.about-text p {
  color: var(--text-muted);
  margin-top: 16px;
}

.about-media {
  display: flex;
  justify-content: center;
}

.about-media img {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  box-shadow: 0 20px 50px rgba(10, 31, 61, 0.15);
}

/* ---------- CONTACT ---------- */
.contact-section {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-section .section-lead {
  color: #cdd7ea;
}

.contact-section .section-title { color: #fff; }

.contact-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.contact-note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.contact-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.contact-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, transparent 55%, rgba(10, 20, 38, 0.55));
  pointer-events: none;
}

.contact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--navy-900);
  color: #9fabc4;
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-brand img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-media { order: -1; }

  .contact-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-actions { justify-content: center; }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: calc(76px + env(safe-area-inset-top, 0px));
    left: 0;
    right: 0;
    background: var(--navy-900);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 30px;
    gap: 18px;
    transform: translateY(-120%);
    transition: transform 0.25s ease;
  }

  .main-nav.open {
    transform: translateY(0);
  }

  .nav-toggle { display: flex; }

  .event-card {
    flex-direction: column;
    text-align: center;
  }

  .hero {
    padding: 70px 0 60px;
  }

  .hero-logo {
    width: 96px;
    height: 96px;
    margin-bottom: 18px;
  }

  .discipline-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .discipline-card {
    aspect-ratio: 3 / 4;
  }

  .discipline-card h3 {
    font-size: 1.05rem;
  }

  .discipline-card p {
    font-size: 0.78rem;
  }

  .discipline-overlay {
    padding: 14px 12px 12px;
  }
}

@media (max-width: 420px) {
  .discipline-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .discipline-card {
    aspect-ratio: 1 / 1;
  }

  .discipline-card p {
    display: none;
  }
}
