@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy: #1B3A6B;
  --navy-dark: #12294D;
  --sky: #2E75C7;
  --red: #A32020;
  --red-light: #C4342F;
  --bg: #F7F9FC;
  --white: #FFFFFF;
  --ink: #1A1F2B;
  --ink-soft: #4B5563;
  --line: rgba(26, 31, 43, 0.12);

  --font-heading: 'Merriweather', serif;
  --font-body: 'Inter', sans-serif;

  --max-width: 1180px;
  --radius: 4px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-dark);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
h3 { font-size: 1.3rem; }

p { color: var(--ink-soft); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--red);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover { background: var(--navy-dark); transform: translateY(-1px); }

.btn-red {
  background: var(--red);
  color: var(--white);
}
.btn-red:hover { background: var(--red-light); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: var(--white); }

header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 249, 252, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-dark);
}

.brand img {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a.active { color: var(--navy); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: 78px; left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-links.open { max-height: 400px; }
  .nav-links li { border-top: 1px solid var(--line); }
  .nav-links a { display: block; padding: 16px 32px; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
}

.page-band {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--line);
}

.page-band p.lead {
  max-width: 640px;
  font-size: 1.1rem;
  margin-top: 12px;
}

section { padding: 88px 0; }
section.tight { padding: 56px 0; }
.section-alt { background: var(--white); }

.section-head { max-width: 620px; margin-bottom: 48px; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}

.card-grid { display: grid; gap: 24px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 860px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
}

footer.site-footer {
  background: var(--navy-dark);
  color: #E8EDF5;
  padding: 64px 0 28px;
}

footer.site-footer a:hover { color: var(--sky); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(232, 237, 245, 0.15);
}

.footer-grid h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}

.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; opacity: 0.85; font-size: 0.95rem; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 0.85rem;
  opacity: 0.65;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.slideshow {
  position: relative;
  aspect-ratio: 16 / 6.5;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 0 48px 36px;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18,41,77,0.85), rgba(18,41,77,0.1));
}

.slide.is-active { opacity: 1; }

.slide p {
  position: relative;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  max-width: 560px;
  z-index: 1;
}

.slide-dots {
  position: absolute;
  bottom: 20px; left: 48px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.slide-dot {
  width: 24px; height: 3px;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
}

.slide-dot.is-active { background: rgba(255,255,255,0.9); }

.slideshow {
  position: relative;
  aspect-ratio: 16 / 6.5;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 0 48px 36px;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18,41,77,0.85), rgba(18,41,77,0.1));
}

.slide.is-active { opacity: 1; }

.slide p {
  position: relative;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  max-width: 560px;
  z-index: 1;
}

.slide-dots {
  position: absolute;
  bottom: 20px; left: 48px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.slide-dot {
  width: 24px; height: 3px;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
}

.slide-dot.is-active { background: rgba(255,255,255,0.9); }

.stage-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 6px 0 40px;
}

.stage-divider .stage-line {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.stage-divider .stage-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--sky);
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-grid img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--line);
}

.level-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.level-badge {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 5px 12px;
  border-radius: 20px;
}

@media (max-width: 760px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

