﻿:root {
  --ink: #081827;
  --ink-2: #102a43;
  --blue: #2387c9;
  --blue-deep: #145f9f;
  --blue-soft: #dff2ff;
  --yellow: #ffd23f;
  --yellow-deep: #d79a00;
  --ice: #f3f8fb;
  --line: rgba(8, 24, 39, 0.14);
  --muted: #485b6f;
  --white: #ffffff;
  --max: 1180px;
  --radius: 8px;
  --shadow: 0 22px 58px rgba(8, 24, 39, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.58;
  background: var(--white);
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(255, 210, 63, 0.9);
  outline-offset: 3px;
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 24, 39, 0.92);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  font-weight: 1000;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--yellow);
  font-size: 0.68rem;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.site-nav a {
  border-radius: 999px;
  padding: 9px 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.site-nav .nav-register {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: inset 0 -2px 0 var(--yellow-deep);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 1000;
}

.button {
  border: 1px solid transparent;
  padding: 12px 19px;
}

.button-primary {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: inset 0 -2px 0 var(--yellow-deep), 0 8px 24px rgba(255, 210, 63, 0.18);
}

.button-secondary {
  background: var(--white);
  color: var(--ink);
}

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

.button-outline {
  border-color: var(--line);
  color: var(--ink);
  background: var(--white);
}

.text-link {
  color: var(--blue-deep);
}

.hero {
  position: relative;
  min-height: max(650px, calc(100svh - 128px));
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(8, 24, 39, 0.95) 0%, rgba(8, 24, 39, 0.86) 46%, rgba(8, 24, 39, 0.42) 100%),
    linear-gradient(180deg, rgba(8, 24, 39, 0.06), rgba(8, 24, 39, 0.95)),
    url("../assets/alps-sixes-open-hero.jpg");
  background-position: center center;
  background-size: cover;
}

.hero::after,
.alpine-band::after,
.final-cta::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 118px;
  opacity: 0.18;
  background: var(--white);
  clip-path: polygon(0 100%, 8% 52%, 19% 76%, 31% 32%, 44% 78%, 57% 43%, 69% 70%, 82% 35%, 93% 62%, 100% 45%, 100% 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: 44px;
  align-items: end;
  min-height: max(650px, calc(100svh - 128px));
  padding: 72px 0 82px;
}

.kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section .kicker,
.section .eyebrow {
  color: var(--blue-deep);
}

.hero .kicker,
.page-hero .kicker,
.alpine-band .kicker,
.final-cta .kicker,
.urgency-band .kicker,
.hero .eyebrow,
.page-hero .eyebrow,
.alpine-band .eyebrow,
.final-cta .eyebrow,
.urgency-band .eyebrow {
  color: var(--yellow);
}

.kicker::before,
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Segoe UI Black", "Arial Black", "Segoe UI", system-ui, sans-serif;
  letter-spacing: 0;
  line-height: 1.02;
  text-wrap: balance;
}

.hero h1 {
  max-width: 900px;
  margin-top: 18px;
  color: var(--white);
  font-size: clamp(3.8rem, 10vw, 9rem);
  line-height: 0.9;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.tagline {
  margin: 18px 0 0;
  color: var(--yellow);
  font-size: clamp(1.8rem, 4vw, 4rem);
  font-weight: 1000;
  line-height: 1;
}

.hero-copy {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

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

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.pill-row li,
.pill {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--yellow);
  background: rgba(255, 255, 255, 0.09);
  font-size: 0.86rem;
  font-weight: 900;
}

.hero-card {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(8, 24, 39, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-card img {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  object-fit: cover;
}

.hero-card-title {
  max-width: 24ch;
  margin: 18px 0 0;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 1000;
  line-height: 1.15;
}

.weekend-snapshot {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.weekend-snapshot li {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 12px 0;
}

.weekend-snapshot strong {
  color: var(--yellow);
}

.weekend-snapshot span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.section {
  padding: 82px 0;
}

.section-paper {
  background: var(--ice);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 390px);
  gap: 32px;
  align-items: end;
  margin-bottom: 36px;
}

.section-head h2,
.page-title {
  margin-top: 12px;
  max-width: 19ch;
  font-size: clamp(2.05rem, 4vw, 3.85rem);
  overflow-wrap: anywhere;
}

.section-head p,
.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--white);
}

.card h3 {
  font-size: 1.32rem;
}

.card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.registration-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.registration-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--white);
}

.registration-card h3 {
  font-size: 1.34rem;
}

.registration-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.registration-card .button {
  width: 100%;
  margin-top: auto;
}

.registration-grid-compact .registration-card {
  min-height: 238px;
}

.section-note {
  margin: 24px 0 0;
}

.pricing-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--white);
}

.price-card-featured {
  border-color: var(--yellow-deep);
  background: var(--yellow);
}

.price-card > span {
  display: block;
  color: var(--blue-deep);
  font-size: 0.82rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.price-card-featured > span {
  color: var(--ink);
}

.price-card strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
}

.price-card strong small {
  font-size: 1rem;
}

.price-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.price-card-featured p {
  color: var(--ink-2);
}

.event-facts-compact article {
  padding: 15px 17px;
}

.event-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.event-facts article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--white);
}

.event-facts strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.2;
}

.event-facts span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.urgency-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 24, 39, 0.96), rgba(20, 95, 159, 0.84)),
    url("../assets/alps-sixes-open-hero.jpg");
  background-position: center center;
  background-size: cover;
}

.urgency-band h2,
.urgency-band p {
  color: var(--white);
}

.urgency-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 480px);
  gap: 28px;
  align-items: center;
}

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

.capacity-list li {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 10px 13px;
  color: var(--yellow);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.community-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.community-chips li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  font-weight: 1000;
}

.instagram-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: linear-gradient(135deg, var(--white), var(--blue-soft));
}

.instagram-card h2,
.instagram-card h3 {
  margin-top: 10px;
}

.instagram-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.number {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--blue-deep);
  font-weight: 1000;
}

.photo-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  gap: 26px;
  align-items: stretch;
}

.photo-panel {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
}

.photo-panel img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.alpine-band,
.final-cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.alpine-band {
  background-image:
    linear-gradient(90deg, rgba(8, 24, 39, 0.93), rgba(20, 95, 159, 0.78)),
    url("../assets/alps-sixes-open-flyer-2025.png");
  background-position: center center;
  background-size: cover;
}

.band-inner,
.final-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 38px;
  align-items: center;
}

.alpine-band h2,
.alpine-band p,
.final-cta h2,
.final-cta p {
  color: var(--white);
}

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

.experience-list li {
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 850;
}

.experience-list li::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--yellow);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.timeline .card {
  position: relative;
  overflow: hidden;
}

.timeline .card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--yellow);
}

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

.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.faq summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 1000;
}

.faq p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.page-hero {
  padding: 88px 0 58px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 24, 39, 0.95), rgba(20, 95, 159, 0.82)),
    url("../assets/alps-sixes-open-hero.jpg");
  background-position: center center;
  background-size: cover;
}

.page-hero h1,
.page-hero p {
  color: var(--white);
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
}

.subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.subnav a {
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 900;
}

.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
}

.contact-card a {
  color: var(--yellow);
  font-weight: 1000;
}

.contact-card-light {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(8, 24, 39, 0.1);
}

.contact-card-light a {
  color: var(--blue-deep);
}

.contact-card-light p {
  margin: 18px 0 0;
  color: var(--muted);
}

.contact-direct,
.contact-social {
  display: block;
  width: fit-content;
  overflow-wrap: anywhere;
}

.contact-direct {
  margin-top: 18px;
  font-size: clamp(1.35rem, 4vw, 2.75rem);
  line-height: 1.12;
}

.contact-social {
  margin-top: 12px;
  font-size: 1.15rem;
}

.travel-card {
  display: flex;
  flex-direction: column;
}

.travel-card .text-link {
  justify-content: flex-start;
  margin-top: auto;
  padding-top: 18px;
}

.source-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.86rem;
}

.final-cta {
  background-image:
    linear-gradient(90deg, rgba(8, 24, 39, 0.95), rgba(8, 24, 39, 0.76)),
    url("../assets/lacrosse-field.jpg");
  background-position: center center;
  background-size: cover;
}

.site-footer {
  color: rgba(255, 255, 255, 0.74);
  background: var(--ink);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 26px;
  padding: 44px 0;
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
}

.site-footer ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
  color: rgba(255, 255, 255, 0.58);
}

.compact-footer .footer-inner {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 30px 0;
}

.compact-footer p {
  margin: 6px 0 0;
}

.compact-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  color: var(--white);
  font-weight: 850;
}

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

  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 18px;
    background: rgba(8, 24, 39, 0.98);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-radius: var(--radius);
    padding: 12px;
  }

  .hero-inner,
  .section-head,
  .photo-split,
  .band-inner,
  .final-inner,
  .urgency-inner,
  .instagram-card {
    grid-template-columns: 1fr;
  }

  .grid-4,
  .grid-3,
  .timeline,
  .registration-grid,
  .event-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .compact-footer .footer-inner {
    grid-template-columns: 1fr;
  }

  .compact-footer .footer-links {
    justify-content: flex-start;
  }

  .hero-card {
    display: none;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .brand {
    max-width: 230px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background-image:
      linear-gradient(180deg, rgba(8, 24, 39, 0.86), rgba(8, 24, 39, 0.96)),
      url("../assets/alps-sixes-open-hero.jpg");
  }

  .hero-inner {
    min-height: auto;
    padding: 48px 0 62px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.8rem, 13vw, 4.1rem);
  }

  .section-head h2,
  .page-title {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .hero-copy {
    max-width: 340px;
  }

  .hero-actions,
  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .pill-row li:last-child {
    grid-column: 1 / -1;
  }

  .pricing-strip,
  .grid-2,
  .grid-3,
  .grid-4,
  .timeline,
  .registration-grid,
  .event-facts {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 0;
  }

  .photo-panel img {
    min-height: 260px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}
