/* =========================================================
   KateLax
   United Lacrosse colors now; Oaks Christian cardinal & gold
   appear in the Journey section for the years ahead.
   ========================================================= */
:root {
  /* United Lacrosse */
  --blue: #005A9C;
  --blue-deep: #00467A;
  --blue-soft: #E6F0F8;
  --red: #E40046;
  --red-deep: #C0003B;
  --red-soft: #FDE6ED;
  --white: #FEFEFE;

  /* Oaks Christian (future) */
  --cardinal: #85142D;
  --cardinal-deep: #6A0F23;
  --gold: #C9A76F;
  --gold-soft: #F6EFE3;

  /* neutrals */
  --paper: #F7F9FC;
  --ink: #0B2440;
  --ink-2: #4B5D73;
  --line: #E3E9F0;

  --radius: 22px;
  --radius-sm: 12px;
  --shadow: 0 18px 40px -18px rgba(11, 36, 64, .35);
  --max: 1160px;
  --gutter: clamp(16px, 4vw, 40px);
  --nav-h: 64px;

  --display: "Archivo", system-ui, sans-serif;
  --body: "DM Sans", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 900;
  font-stretch: 112%;
  line-height: .95;
  letter-spacing: -.01em;
  margin: 0;
  text-transform: uppercase;
}

/* ---------- WORDMARK ---------- */
.brand { text-decoration: none; display: inline-flex; align-items: center; }
.brand-word {
  font-family: var(--display); font-weight: 900; font-style: italic;
  font-stretch: 118%; font-size: 24px; letter-spacing: .01em; line-height: 1;
  color: var(--blue);
}
.brand-word span { color: var(--red); }

/* ---------- NAV ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gutter);
  background: rgba(254, 254, 254, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(11, 36, 64, .07);
}
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  text-decoration: none; font-weight: 600; font-size: 15px;
  padding: 8px 14px; border-radius: 999px; color: var(--ink-2);
  transition: background .2s, color .2s;
}
.nav-links a:hover { background: var(--blue-soft); color: var(--blue); }
.nav-links .nav-cta { background: var(--red); color: var(--white); }
.nav-links .nav-cta:hover { background: var(--red-deep); color: var(--white); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px; margin-right: -8px;
  border: 0; background: transparent; cursor: pointer;
  border-radius: 12px; position: relative;
}
.nav-toggle span {
  position: absolute; left: 11px; width: 22px; height: 3px; border-radius: 3px;
  background: var(--blue); transition: transform .25s, opacity .2s, top .25s;
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; background: var(--red); }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav.open .nav-toggle span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--display); font-weight: 800; font-style: italic;
  font-stretch: 110%; text-transform: uppercase; letter-spacing: .03em;
  font-size: 16px; padding: 15px 26px; border-radius: 999px;
  text-decoration: none; border: 0; cursor: pointer;
  transition: transform .15s, background .2s, box-shadow .2s;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-red { background: var(--red); color: var(--white); box-shadow: 0 10px 24px -10px rgba(228, 0, 70, .8); }
.btn-red:hover { background: var(--red-deep); }
.btn-ghost { background: rgba(255,255,255,.1); color: var(--white); box-shadow: inset 0 0 0 2px rgba(255,255,255,.85); }
.btn-ghost:hover { background: rgba(255,255,255,.22); }
.btn-block { width: 100%; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  min-height: min(100svh, 860px);
  padding-top: var(--nav-h);
  background: var(--blue);
  background-image:
    radial-gradient(circle at -6% 112%, rgba(255,255,255,.07) 0 30%, transparent 30.2%),
    radial-gradient(circle at 0% 0%, rgba(255,255,255,.05) 0 22%, transparent 22.2%);
  overflow: hidden;
}
.hero picture {
  position: relative; grid-column: 2; grid-row: 1;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: 38% 30%; }
.hero-content {
  position: relative; z-index: 2; grid-column: 1; grid-row: 1;
  align-self: center;
  padding: 60px 0 110px max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  color: var(--white);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 0 0 20px; padding: 7px 14px; border-radius: 999px;
  background: rgba(255,255,255,.14);
  font-weight: 600; font-size: 14px; letter-spacing: .02em;
}
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 3px var(--white); }
.hero-title { font-size: clamp(56px, 6.6vw, 104px); }
/* last name sits on a slanted red "tape" strip */
.hero-title span {
  position: relative; z-index: 0; display: inline-block;
  padding: .06em .16em .02em .08em; margin-top: .06em;
}
.hero-title span::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--red); transform: skewX(-12deg);
  border-radius: 6px;
}
.hero-sub {
  max-width: 440px; margin: 22px 0 28px;
  font-size: clamp(17px, 1.5vw, 20px); font-weight: 500;
  color: rgba(255,255,255,.92);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ribbon stripes along the photo edge */
.stripes {
  position: absolute; left: 36%; bottom: 70px; z-index: 3;
  display: flex; flex-direction: column; gap: 10px;
  transform: rotate(-14deg);
}
.stripes i { display: block; height: 16px; border-radius: 999px; }
.stripes i:nth-child(1) { width: 260px; background: var(--red); }
.stripes i:nth-child(2) { width: 200px; background: var(--white); margin-left: 40px; }
.stripes i:nth-child(3) { width: 150px; background: var(--red); margin-left: 80px; height: 8px; }

/* ---------- PLAYER FACTS ---------- */
.facts {
  position: relative; z-index: 3;
  max-width: var(--max); margin: -44px auto 0; padding: 0 var(--gutter);
}
.facts-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; position: relative;
}
.fact {
  padding: 22px 20px; display: flex; flex-direction: column; gap: 4px;
  border-left: 1px solid var(--line);
}
.fact:first-child { border-left: 0; }
.facts-grid::after { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: var(--red); }
.fact-label {
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--red);
}
.fact-value {
  font-family: var(--display); font-style: italic; font-weight: 900; font-stretch: 108%;
  font-size: clamp(18px, 2vw, 24px); line-height: 1.1; text-transform: uppercase; color: var(--blue);
}

/* ---------- SECTIONS ---------- */
.section { padding: clamp(72px, 10vw, 120px) var(--gutter); }
.section > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.section-tint { background: var(--blue-soft); }
.section-head { margin-bottom: 40px; }
.section-head h2 { font-size: clamp(44px, 7vw, 84px); color: var(--ink); }
.kicker {
  display: inline-block; margin: 0 0 12px;
  font-weight: 700; font-size: 13px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--blue);
  padding-left: 34px; position: relative;
}
.kicker::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 24px; height: 6px; border-radius: 999px;
  background: var(--red); transform: translateY(-50%) skewX(-20deg);
}
.kicker-light { color: var(--white); }
.lede { max-width: 560px; color: var(--ink-2); font-size: 18px; margin: 16px 0 0; }

/* ---------- MEDIA CARDS ---------- */
.media-grid {
  display: grid; grid-template-columns: 1.35fr 1fr; gap: 24px; align-items: start;
}
.card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
}
.frame { position: relative; background: var(--ink); }
.card-video .frame { aspect-ratio: 16 / 9; }
.card-photo .frame { aspect-ratio: 4 / 3; }
.frame video, .frame img { width: 100%; height: 100%; object-fit: cover; }
.card-photo .frame img { object-position: 42% 35%; transition: transform .5s; }
.card-photo:hover .frame img { transform: scale(1.04); }
.card-body { padding: 20px 22px 24px; }
.card-body h3 { font-size: clamp(22px, 2.4vw, 28px); margin: 10px 0 6px; color: var(--ink); }
.card-body p { margin: 0; color: var(--ink-2); font-size: 15px; }
.tag {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}
.tag-red { background: var(--red-soft); color: var(--red-deep); }
.tag-blue { background: var(--blue-soft); color: var(--blue); }

/* ---------- JOURNEY ----------
   Elementary = United blue/red.
   Middle school = a first hint of Oaks Christian (cardinal edge, gold ring).
   High school = full Oaks Christian Lions: cardinal card, gold type.
   The dashed road fades from United blue into cardinal.            */
.road {
  list-style: none; padding: 0; margin-top: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  position: relative;
}
.road::before {
  content: ""; position: absolute; left: 24px; right: 24px; top: 25px; z-index: 0;
  height: 4px; border-radius: 999px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue) 25%, var(--cardinal) 60%, var(--gold) 100%);
  -webkit-mask: repeating-linear-gradient(90deg, #000 0 14px, transparent 14px 24px);
          mask: repeating-linear-gradient(90deg, #000 0 14px, transparent 14px 24px);
  opacity: .55;
}
.stop {
  position: relative; z-index: 1; background: var(--white); border-radius: var(--radius);
  padding: 70px 22px 24px; box-shadow: 0 10px 30px -20px rgba(11,36,64,.45);
  overflow: hidden;
}
.stop::before {
  content: ""; position: absolute; top: 14px; left: 22px;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--white); border: 5px solid var(--blue);
}
.stop-badge {
  position: absolute; top: 18px; right: 18px; left: 64px; text-align: right;
  font-size: 11px; font-weight: 700; letter-spacing: .12em; line-height: 1.3;
  text-transform: uppercase; color: var(--ink-2);
}
.stop h3 { font-size: 28px; margin-bottom: 8px; color: var(--ink); }
.stop p { margin: 0; font-size: 15px; color: var(--ink-2); }

/* now: United */
.stop.is-now { box-shadow: 0 0 0 3px var(--blue), 0 16px 34px -20px rgba(0,90,156,.6); }
.stop.is-now::before { background: var(--red); border-color: var(--red); box-shadow: 0 0 0 6px rgba(228,0,70,.18); }
.stop.is-now .stop-badge { color: var(--red); }
.stop.is-now h3 { color: var(--blue); }

/* middle school: subtle Oaks Christian */
/* middle school: United and Oaks Christian side by side.
   Top bar splits blue | cardinal, dot splits the same way. */
.stop.oc-ms::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 6px;
  background: linear-gradient(90deg, var(--blue) 0 50%, var(--cardinal) 50% 100%);
}
.stop.oc-ms::before {
  border: 0; width: 26px; height: 26px;
  background: conic-gradient(var(--blue) 0 50%, var(--cardinal) 50% 100%);
  box-shadow: inset 0 0 0 4px var(--white), 0 0 0 2px var(--gold);
}
.stop.oc-ms .stop-badge { color: var(--ink-2); }
.stop.oc-ms h3 {
  background: linear-gradient(90deg, var(--blue), var(--cardinal));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding-right: .1em;
}

/* high school: full Oaks Christian Lions */
.stop.oc-hs {
  background: var(--cardinal);
  background-image: repeating-linear-gradient(-58deg, rgba(255,255,255,.035) 0 12px, transparent 12px 24px);
  box-shadow: 0 16px 34px -18px rgba(133,20,45,.7);
}
.stop.oc-hs::before { background: var(--gold); border-color: var(--white); }
.stop.oc-hs .stop-badge { color: var(--gold); }
.stop.oc-hs h3 { color: var(--gold); }
.stop.oc-hs p { color: rgba(255,255,255,.88); }

/* class of 2035 */
.stop.is-goal::before { border-color: var(--gold); border-style: dashed; }
.stop.is-goal h3 { color: var(--ink); }

/* ---------- STORIES ---------- */
.story-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }

/* ---------- CONTACT ---------- */
.contact {
  background: var(--blue);
  background-image:
    radial-gradient(circle at 8% 112%, rgba(255,255,255,.07) 0 24%, transparent 24.2%),
    radial-gradient(circle at 104% -8%, var(--red) 0 12%, transparent 12.2%);
  color: var(--white);
}
.contact-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.contact-copy h2 { font-size: clamp(44px, 6.5vw, 80px); margin-bottom: 18px; }
.contact-copy p { color: rgba(255,255,255,.9); max-width: 380px; margin: 0; }
.contact .kicker::before { background: var(--red); }
.form {
  background: var(--white); color: var(--ink);
  border-radius: var(--radius); padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.5);
  display: grid; gap: 16px;
}
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { display: grid; gap: 6px; font-size: 14px; font-weight: 600; }
.form input, .form textarea {
  font: inherit; font-size: 16px; color: var(--ink);
  width: 100%; padding: 13px 14px;
  border: 2px solid var(--line); border-radius: var(--radius-sm);
  background: var(--paper); transition: border-color .2s, background .2s;
}
.form textarea { resize: vertical; min-height: 120px; }
.form input:focus, .form textarea:focus { outline: none; border-color: var(--blue); background: var(--white); }
.hp { position: absolute; left: -9999px; }

/* ---------- FOOTER (continues the contact block) ---------- */
.footer {
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center;
  padding: 26px var(--gutter);
  background: var(--blue-deep);
  color: rgba(255,255,255,.78); font-size: 14px;
  border-top: 4px solid var(--red);
}
.footer .brand-word { color: var(--white); font-size: 20px; }
.footer .brand-word span { color: var(--white); opacity: .6; }
.footer a { color: var(--white); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.4); }
.footer a:hover { border-bottom-color: var(--white); }

/* ---------- THANKS PAGE ---------- */
.thanks {
  min-height: 100svh; display: grid; place-items: center; text-align: center;
  padding: 100px var(--gutter) 60px;
}
.thanks h1 { font-size: clamp(52px, 10vw, 110px); margin: 10px 0 18px; color: var(--blue); }
.thanks h1 span { color: var(--red); }
.thanks p { color: var(--ink-2); max-width: 440px; margin: 0 auto 28px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero picture { grid-column: 1; grid-row: 1; height: 58svh; min-height: 320px; max-height: 560px;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%); }
  .hero-content { grid-column: 1; grid-row: 2; padding: 20px var(--gutter) 84px; }
  .hero-title { font-size: clamp(56px, 16vw, 110px); }
  .stripes { display: none; }
}

@media (max-width: 960px) {
  .facts-grid { grid-template-columns: repeat(3, 1fr); }
  .fact:nth-child(4) { border-left: 0; }
  .fact:nth-child(n+4) { border-top: 1px solid var(--line); }
  .media-grid { grid-template-columns: 1fr; }
  .road { grid-template-columns: repeat(2, 1fr); }
  .road::before { display: none; }
  .contact-wrap { grid-template-columns: 1fr; }
}

/* hamburger menu */
@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    padding: 12px var(--gutter) 20px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 30px -20px rgba(11,36,64,.35);
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: opacity .2s, transform .2s, visibility .2s;
  }
  .nav.open .nav-links { transform: none; opacity: 1; visibility: visible; }
  .nav-links a { font-size: 18px; padding: 14px 16px; border-radius: 14px; color: var(--ink); }
  .nav-links .nav-cta { text-align: center; margin-top: 6px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .brand-word { font-size: 22px; }
  .hero-actions .btn { flex: 1 1 auto; }
  .facts { margin-top: -32px; }
  .facts-grid { grid-template-columns: 1fr 1fr; }
  .fact { padding: 16px; border-left: 0; border-top: 1px solid var(--line); }
  .fact:nth-child(-n+2) { border-top: 0; }
  .fact:nth-child(even) { border-left: 1px solid var(--line); }
  .fact:last-child { grid-column: 1 / -1; }
  .road { grid-template-columns: 1fr; }
  .row { grid-template-columns: 1fr; }
  .footer { flex-direction: column; justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
