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

:root {
  --black: #090b0f;
  --black-soft: #121620;
  --black-lift: #181e2a;
  --white: #f3f1eb;
  --white-dim: #d6d6d6;
  --blue: #1a4fb8;
  --red: #be1f34;
  --line: #2e3547;
  --steel: #202738;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--white);
  font-family: 'Roboto Slab', serif;
  line-height: 1.5;
  background-color: var(--black);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(
      -17deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 2px,
      transparent 2px,
      transparent 12px
    );
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 82%, rgba(26, 79, 184, 0.12) 82% 85%, transparent 85%),
    linear-gradient(180deg, transparent 0 86%, rgba(190, 31, 52, 0.16) 86% 100%);
  mix-blend-mode: screen;
  opacity: 0.65;
  z-index: -1;
}

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

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

main {
  position: relative;
}

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.glow-orb {
  position: absolute;
  width: 220px;
  height: 220px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
  opacity: 0.22;
  z-index: 0;
}

.orb-blue {
  background: rgba(26, 79, 184, 0.9);
}

.orb-red {
  background: rgba(190, 31, 52, 0.88);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 2px solid var(--blue);
  background: rgba(8, 10, 14, 0.97);
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 80px;
  padding: 0.55rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border: 2px solid var(--white);
  box-shadow: 4px 4px 0 var(--red);
}

.brand-text {
  font-family: 'Black Ops One', cursive;
  font-size: 1.02rem;
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand-sub {
  display: block;
  margin-top: 0.24rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--white-dim);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.main-nav a {
  padding: 0.5rem 0.64rem;
  border: 1px solid transparent;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e8ebf1;
  transition: background 140ms ease, border-color 140ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.09);
}

.cta-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  border: 2px solid transparent;
  padding: 0.6rem 0.95rem;
  border-radius: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 120ms ease, filter 120ms ease, background 120ms ease;
}

.btn:hover {
  transform: translate(-1px, -1px);
  filter: saturate(1.08);
}

.btn-primary {
  color: var(--white);
  border-color: #f5f5f5;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 40%),
    linear-gradient(90deg, var(--red) 0 62%, #8e1325 62% 100%);
  box-shadow: 4px 4px 0 var(--blue);
}

.btn-secondary {
  color: var(--white);
  border-color: #8f98ab;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 36%),
    #141a27;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.5);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 2px solid var(--white);
  border-radius: 0;
  background: #111826;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
}

.hero,
.page-hero {
  position: relative;
  overflow: clip;
  padding: 2.1rem 0 1.35rem;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 30%),
    linear-gradient(180deg, #131826, #0d111a);
}

.hero::before,
.page-hero::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 100%;
  background: var(--red);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 1.2rem;
  align-items: start;
}

.kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.56rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--white);
  border-left: 6px solid var(--blue);
}

.hero h1,
.page-hero h1 {
  margin: 0.75rem 0 0;
  font-family: 'Black Ops One', cursive;
  font-size: clamp(2rem, 4.3vw, 3.55rem);
  letter-spacing: 0.025em;
  line-height: 1.04;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero p,
.page-hero p {
  margin-top: 0.92rem;
  color: #d5d7de;
  max-width: 68ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.64rem;
  margin-top: 1.25rem;
}

.info-chip {
  border: 2px solid var(--line);
  background: #0c1019;
  padding: 0.76rem;
}

.info-chip strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-chip span {
  color: #c7cfdf;
  font-size: 0.86rem;
}

.hero-panel {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0.85rem;
  border: 2px solid #f1f3f8;
  background:
    linear-gradient(170deg, rgba(190, 31, 52, 0.22), transparent 45%),
    #101622;
  padding: 0.95rem;
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.55);
}

.hero-media {
  min-height: 0;
  grid-template-rows: 1fr;
}

.hero-panel img {
  border: 2px solid var(--white-dim);
  background: #040507;
  padding: 0.3rem;
}

.hero-card-grid {
  display: grid;
  gap: 0.72rem;
}

.hero-card-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.72);
  background: #040507;
  padding: 0.22rem;
}

.hero-media .content-photo {
  aspect-ratio: 6 / 5;
}

.card .content-photo {
  margin-bottom: 0.72rem;
}

.portrait-photo {
  width: 100%;
  max-height: 560px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 12%;
  border: 2px solid rgba(255, 255, 255, 0.72);
  background: #040507;
  padding: 0.22rem;
  margin-bottom: 0.72rem;
}

.photo-kids {
  object-position: 50% 22%;
}

.photo-teens {
  object-position: 50% 24%;
}

.photo-placeholder,
.placeholder-img {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  border: 2px dashed rgba(255, 255, 255, 0.62);
  background: #1a2233;
  color: #e8ebf1;
  text-align: left;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.35;
  padding: 0.95rem;
}

.section {
  position: relative;
  padding: 2.65rem 0;
  border-top: 1px solid var(--line);
  background: #0a0d14;
}

.section:nth-of-type(even) {
  background:
    linear-gradient(90deg, transparent 0 70%, rgba(26, 79, 184, 0.08) 70%),
    #10141f;
}

.section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0.3;
}

.section h2 {
  margin: 0;
  font-family: 'Black Ops One', cursive;
  font-size: clamp(1.55rem, 2.7vw, 2.25rem);
  letter-spacing: 0.03em;
  line-height: 1.14;
  text-transform: uppercase;
}

.section-intro {
  margin-top: 0.72rem;
  color: #c3cad9;
  max-width: 66ch;
}

.panel {
  margin-top: 1.1rem;
  border: 2px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 24%),
    var(--black-soft);
  padding: 0.96rem;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.5);
}

.grid-3,
.grid-2,
.grid-4 {
  display: grid;
  gap: 0.95rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border: 2px solid var(--line);
  background: var(--black-lift);
  padding: 0.9rem;
  box-shadow: inset 0 4px 0 rgba(255, 255, 255, 0.06);
}

.card h3,
.card h4 {
  margin: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.44rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card p {
  margin-top: 0.55rem;
  color: #c2c8d8;
}

.feature-line {
  margin-top: 0.64rem;
  padding-left: 0.52rem;
  border-left: 3px solid var(--red);
  color: #eef0f6;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.97rem;
  letter-spacing: 0.03em;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
}

.table-wrap {
  overflow-x: auto;
}

.table-wrap .schedule-table {
  min-width: 980px;
}

.schedule-table th,
.schedule-table td {
  border: 1px solid #3a445a;
  padding: 0.68rem 0.65rem;
  text-align: left;
  font-size: 0.92rem;
}

.schedule-table th {
  background: #183f88;
  color: #f6f8fd;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.schedule-table tbody th {
  width: 240px;
  vertical-align: top;
  background: #151d2c;
  color: #eff2f8;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: none;
}

.table-sub {
  display: block;
  margin-top: 0.2rem;
  color: #c2cadb;
  font-family: 'Roboto Slab', serif;
  font-size: 0.8rem;
  letter-spacing: 0.01em;
  text-transform: none;
}

.schedule-table td.no-class {
  color: #a9b2c8;
  font-style: italic;
}

.schedule-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.04);
}

.callout {
  border: 2px solid #455170;
  background:
    linear-gradient(90deg, rgba(190, 31, 52, 0.2), transparent 46%),
    #171e2e;
  padding: 0.84rem;
}

.callout strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.callout span {
  color: #e3e7f2;
  font-size: 0.92rem;
}

details.faq {
  border: 2px solid var(--line);
  background: #151b29;
  padding: 0.62rem 0.74rem;
}

details.faq + details.faq {
  margin-top: 0.6rem;
}

details.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

details.faq summary::-webkit-details-marker {
  display: none;
}

details.faq p {
  margin: 0.58rem 0 0;
  color: #cad0df;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.82rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
}

.field label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #dce0ec;
}

.field input,
.field select,
.field textarea {
  border: 2px solid #3a455d;
  border-radius: 0;
  background: #090c12;
  color: var(--white);
  font-family: 'Roboto Slab', serif;
  font-size: 0.95rem;
  padding: 0.64rem 0.7rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: #afbdde;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.span-2 {
  grid-column: span 2;
}

.help-text {
  color: #b8c0d4;
  font-size: 0.84rem;
  margin-top: 0.68rem;
}

.map-wrap {
  min-height: 320px;
  border: 2px solid var(--line);
  filter: grayscale(0.2) contrast(1.05);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

.site-footer {
  border-top: 3px solid var(--red);
  background: #07090e;
  padding: 1.3rem 0 1.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 1rem;
  align-items: end;
}

.footer-brand {
  color: #c9d0df;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 0.74rem;
  flex-wrap: wrap;
}

.footer-links a {
  padding: 0.18rem 0.32rem;
  border: 1px solid transparent;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #edf0f6;
}

.footer-links a:hover {
  border-color: rgba(255, 255, 255, 0.55);
}

.page-hero .panel {
  margin-top: 1rem;
}

.sticky-mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.parallax {
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1060px) {
  .hero-grid,
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    display: none;
  }

  .brand-text {
    font-size: 0.94rem;
  }
}

@media (max-width: 900px) {
  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-wrap {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    z-index: 39;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    padding: 0.9rem 1rem 1.05rem;
    border-top: 2px solid #8f98aa;
    border-bottom: 2px solid var(--red);
    background: #0c0f16;
  }

  .nav-wrap.open {
    display: flex;
  }

  .main-nav {
    flex-wrap: wrap;
  }

  .cta-group {
    width: 100%;
  }

  .cta-group .btn {
    flex: 1;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid,
  .form-grid,
  .info-strip {
    grid-template-columns: 1fr;
  }

  .hero-media {
    display: none;
  }

  .span-2 {
    grid-column: auto;
  }

  .sticky-mobile-cta {
    position: fixed;
    z-index: 44;
    left: 0.68rem;
    right: 0.68rem;
    bottom: 0.65rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.58rem;
  }

  .sticky-mobile-cta .btn {
    padding: 0.78rem 0.7rem;
    font-size: 0.95rem;
  }

  body {
    padding-bottom: 4.9rem;
  }
}
