:root {
  --black: #050608;
  --navy: #071a2f;
  --navy-2: #0b2339;
  --steel: #4b5563;
  --ice: #6ec6ff;
  --silver: #c9d1d9;
  --white: #ffffff;
  --paper: #f4f8fb;
  --line: rgba(201, 209, 217, 0.28);
  --shadow: 0 22px 70px rgba(5, 6, 8, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 6, 8, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.brand span {
  display: block;
  font-weight: 950;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand small {
  display: block;
  color: var(--ice);
  font-size: 12px;
  font-weight: 800;
  margin-top: 4px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ice);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--white);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.button.primary {
  color: var(--black);
  background: var(--ice);
}

.button.dark {
  color: var(--white);
  background: var(--navy);
  border-color: rgba(255, 255, 255, 0.15);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.96) 0%, rgba(5, 6, 8, 0.74) 44%, rgba(5, 6, 8, 0.08) 100%),
    url("assets/vancouver-island-training.JPG") right center / cover no-repeat;
}

.hero-inner,
.section-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-copy {
  max-width: 760px;
  padding: 80px 0;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(46px, 8vw, 92px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 1000;
}

h2 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.96;
  text-transform: uppercase;
  font-weight: 1000;
}

h3 {
  font-size: 22px;
  line-height: 1.05;
  text-transform: uppercase;
  font-weight: 950;
}

.lead {
  max-width: 680px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-row span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(7, 26, 47, 0.72);
  font-size: 13px;
  font-weight: 850;
}

.banner {
  background: var(--ice);
  color: var(--black);
}

.banner .section-inner {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

.banner strong {
  display: block;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 0.95;
  text-transform: uppercase;
  font-weight: 1000;
}

.banner p {
  color: rgba(5, 6, 8, 0.76);
  font-weight: 750;
}

.section {
  padding: 92px 0;
}

.section.light {
  color: var(--black);
  background: var(--paper);
}

.section.navy {
  background: linear-gradient(180deg, var(--navy), #06111f);
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-head p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.55;
}

.light .section-head p,
.light .card p,
.light .copy p,
.light .list li,
.light .muted {
  color: rgba(5, 6, 8, 0.7);
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
}

.light .card {
  background: var(--white);
  border-color: rgba(7, 26, 47, 0.1);
  box-shadow: 0 16px 44px rgba(7, 26, 47, 0.1);
}

.card p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.price {
  margin: 18px 0;
  color: var(--ice);
  font-size: 42px;
  line-height: 1;
  font-weight: 1000;
}

.light .price {
  color: var(--navy);
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.copy p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.7;
}

.list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding-left: 22px;
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ice);
}

.media-panel {
  min-height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 26, 47, 0.1), rgba(5, 6, 8, 0.86)),
    url("assets/university-hockey.JPG") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.media-panel-coach {
  background:
    linear-gradient(180deg, rgba(7, 26, 47, 0.1), rgba(5, 6, 8, 0.72)),
    url("assets/coach-isaac-leik.JPG") center / cover no-repeat;
}

.media-panel-progression {
  background:
    linear-gradient(180deg, rgba(7, 26, 47, 0.1), rgba(5, 6, 8, 0.72)),
    url("assets/skill-progression.JPG") center / cover no-repeat;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.stat {
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.stat strong {
  display: block;
  color: var(--ice);
  font-size: 30px;
  line-height: 1;
  font-weight: 1000;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid rgba(5, 6, 8, 0.12);
}

.timeline-item strong {
  color: var(--navy);
  text-transform: uppercase;
}

.timeline-item p {
  color: rgba(5, 6, 8, 0.68);
  line-height: 1.5;
}

.form-shell,
.embed-placeholder {
  padding: 26px;
  border: 1px dashed rgba(110, 198, 255, 0.55);
  border-radius: 8px;
  background: rgba(7, 26, 47, 0.7);
}

.map-embed {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(110, 198, 255, 0.32);
  border-radius: 8px;
  background: rgba(7, 26, 47, 0.7);
  box-shadow: var(--shadow);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.hidden-field {
  display: none;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

[data-success],
[data-error] {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}

[data-error] {
  color: #ffd7d7;
}

textarea {
  min-height: 128px;
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 20px;
  border: 1px solid rgba(7, 26, 47, 0.12);
  border-radius: 8px;
  background: var(--white);
}

.faq summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 950;
  text-transform: uppercase;
}

.faq p {
  margin-top: 12px;
  color: rgba(5, 6, 8, 0.68);
  line-height: 1.55;
}

.page-hero {
  padding: 86px 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, .95), rgba(7, 26, 47, .58)),
    url("assets/central-hockey-development-logo.png") right 8% center / min(34vw, 360px) auto no-repeat;
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--black);
}

.footer-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    background: rgba(5, 6, 8, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  body.menu-open .nav-links {
    display: flex;
  }

  .nav-links a,
  .nav-links .button {
    min-height: 50px;
    justify-content: flex-start;
  }

  .split,
  .grid.two,
  .grid.three,
  .stat-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(5, 6, 8, 0.86), rgba(5, 6, 8, 0.78)),
      url("assets/central-hockey-development-logo.png") center / min(78vw, 420px) auto no-repeat;
  }

  .page-hero {
    background:
      linear-gradient(180deg, rgba(5, 6, 8, 0.9), rgba(7, 26, 47, 0.72)),
      url("assets/central-hockey-development-logo.png") center / min(72vw, 340px) auto no-repeat;
  }

  .hero-copy {
    padding: 70px 0;
  }

  .banner .section-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-grid,
  .timeline-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .nav {
    width: min(100% - 24px, 1160px);
  }

  .brand span {
    font-size: 14px;
  }

  .brand small {
    font-size: 10px;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 70px 0;
  }

  .hero-actions,
  .actions {
    width: 100%;
  }
}
