:root {
  --ink: #07131f;
  --ink-soft: #0d2334;
  --paper: #f3f6f8;
  --paper-strong: #e7edf2;
  --white: #fbfcfe;
  --muted: #6f7f8f;
  --line: rgba(7, 19, 31, 0.14);
  --line-light: rgba(251, 252, 254, 0.2);
  --accent: #e3263f;
  --acid: #2f80bf;
  --club-blue: #2f80bf;
  --club-red: #e3263f;
  --club-black: #07131f;
  --max: 1240px;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "DM Sans", Arial, sans-serif;
  --display: "Space Grotesk", "Arial Narrow", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); line-height: 1.5; overflow-x: hidden; }
body::selection { background: var(--acid); color: var(--ink); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.site-noise { position: fixed; inset: 0; z-index: 20; pointer-events: none; opacity: .035; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E"); }
.page-shell { width: min(var(--max), calc(100% - (var(--gutter) * 2))); margin-inline: auto; }

.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 30; display: flex; align-items: center; justify-content: space-between; padding: 1.3rem var(--gutter); color: var(--white); transition: background .35s ease, color .35s ease, padding .35s ease, box-shadow .35s ease; }
.site-header.is-scrolled { background: rgba(7, 19, 31, .91); backdrop-filter: blur(16px); padding-block: .85rem; box-shadow: 0 1px 0 rgba(255,255,255,.08); }
.brand { display: inline-flex; align-items: center; gap: .75rem; color: currentColor; }
.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  overflow: hidden;
  border: 1px solid rgba(251,252,254,.42);
  border-radius: 50%;
  color: var(--white);
  background: var(--club-black);
  isolation: isolate;
}
.brand-mark::after {
  position: absolute;
  right: -8px;
  bottom: -16px;
  width: 26px;
  height: 58px;
  background: var(--white);
  content: "";
  opacity: .92;
  transform: rotate(28deg);
}
.brand-mark b {
  position: relative;
  z-index: 2;
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -.08em;
}
.brand-mark-bar {
  position: absolute;
  top: -12px;
  bottom: -12px;
  z-index: 1;
  width: 8px;
  transform: rotate(28deg);
}
.brand-mark-bar--blue { right: 9px; background: var(--club-blue); }
.brand-mark-bar--red { right: 17px; background: var(--club-red); }
.brand-name { font-family: var(--display); font-weight: 700; font-size: .93rem; letter-spacing: .08em; line-height: 1; }
.brand-name small { display: block; margin-top: .42rem; color: rgba(255,255,255,.64); font-family: var(--sans); font-size: .46rem; letter-spacing: .16em; font-weight: 600; }
.site-header:not(.is-scrolled) .brand-name small { color: rgba(255,255,255,.72); }
.main-nav { display: flex; align-items: center; gap: clamp(1rem, 2.3vw, 2.3rem); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.main-nav > a { opacity: .76; transition: opacity .2s ease, color .2s ease; }
.main-nav > a:hover, .main-nav > a:focus-visible { opacity: 1; color: var(--acid); }
.main-nav .nav-cta { display: inline-flex; gap: .5rem; align-items: center; padding: .78rem 1rem; color: var(--white); background: var(--club-blue); opacity: 1; }
.main-nav .nav-cta:hover, .main-nav .nav-cta:focus-visible { color: var(--white); background: var(--club-red); }
.menu-toggle { display: none; border: 0; padding: .4rem; background: transparent; color: inherit; }
.menu-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px 0; background: currentColor; }

.hero { position: relative; min-height: max(760px, 100svh); display: flex; align-items: center; isolation: isolate; overflow: hidden; color: var(--white); background: var(--ink); }
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; filter: saturate(.72) contrast(1.05); transform: scale(1.03); }
.hero-overlay { z-index: -1; background: linear-gradient(90deg, rgba(3,10,16, .93) 0%, rgba(3,10,16, .68) 36%, rgba(3,10,16, .16) 100%), linear-gradient(0deg, rgba(3,10,16, .74), transparent 50%, rgba(3,10,16,.24)); }
.hero-canvas { position: absolute; inset: 0; z-index: -1; opacity: .82; mix-blend-mode: screen; pointer-events: none; }
.hero-content { position: relative; z-index: 1; padding-top: 5rem; }
.eyebrow { display: flex; align-items: center; gap: .62rem; margin: 0 0 1.3rem; color: var(--accent); font-family: var(--display); font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow--light { color: var(--acid); }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 5px color-mix(in srgb, currentColor 15%, transparent); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); line-height: .95; letter-spacing: -.055em; }
h1 { max-width: 760px; margin-bottom: 1.65rem; font-size: clamp(4.5rem, 10vw, 9rem); font-weight: 600; }
h1 em, h2 em { font-family: var(--serif); font-weight: 400; letter-spacing: -.07em; }
.hero-lead { max-width: 430px; margin-bottom: 2rem; color: rgba(251,252,254,.79); font-size: clamp(1rem, 1.6vw, 1.18rem); }
.hero-actions { display: flex; align-items: center; gap: 1.65rem; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: .8rem; border: 1px solid transparent; padding: .98rem 1.25rem; font-family: var(--display); font-size: .73rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.button:hover, .button:focus-visible { transform: translateY(-3px); }
.button--accent { color: var(--white); background: var(--accent); }
.button--accent:hover, .button--accent:focus-visible { background: var(--acid); }
.button--light { color: var(--ink); background: var(--white); }
.button--dark { color: var(--white); background: var(--ink); }
.text-link { display: inline-flex; gap: .65rem; align-items: center; width: fit-content; border-bottom: 1px solid currentColor; padding-bottom: .3rem; font-family: var(--display); font-size: .73rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: color .2s ease, gap .2s ease; }
.text-link:hover, .text-link:focus-visible { gap: .95rem; color: var(--accent); }
.text-link--light:hover, .text-link--light:focus-visible { color: var(--acid); }
.hero-footer { position: absolute; right: 0; bottom: 2rem; left: 0; display: flex; align-items: flex-end; justify-content: space-between; color: rgba(251,252,254,.65); font-family: var(--display); font-size: .63rem; letter-spacing: .1em; text-transform: uppercase; }
.hero-scroll { display: flex; align-items: center; gap: .7rem; }
.scroll-line { display: inline-block; width: 50px; height: 1px; background: var(--acid); }
.hero-stats { display: flex; gap: 1.4rem; }
.hero-stats span { display: flex; flex-direction: column; gap: .25rem; }
.hero-stats strong { color: var(--white); font-size: 1.35rem; font-weight: 500; letter-spacing: -.05em; }
.hero-code { color: var(--acid); }

.section { position: relative; padding: clamp(5.5rem, 10vw, 9.5rem) 0; }
.section--paper { background: var(--paper); }
.section--dark { color: var(--white); background: var(--ink-soft); }
.section--ink { color: var(--white); background: var(--ink); }
.section-heading { max-width: 720px; margin-bottom: 4.4rem; }
.section-heading--split { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .65fr); align-items: end; gap: 3rem; max-width: none; }
h2 { margin-bottom: 0; font-size: clamp(3rem, 6vw, 6.4rem); font-weight: 600; }
.section-note { max-width: 350px; margin: 0 0 .3rem auto; color: rgba(7,19,31,.6); font-size: .99rem; }
.section-note--light { color: rgba(251,252,254,.62); }
.intro-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .8fr); gap: 5rem; align-items: end; }
.intro-copy { padding-bottom: .5rem; }
.intro-copy p { max-width: 510px; color: rgba(7,19,31,.65); }
.intro-copy .lead-copy { color: var(--ink); font-size: clamp(1.12rem, 1.8vw, 1.45rem); line-height: 1.38; }
.intro-copy .text-link { margin-top: 1rem; }
.club-image-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .68fr); gap: clamp(1rem, 4vw, 4.5rem); margin-top: 6rem; }
.image-card { position: relative; margin: 0; overflow: hidden; background: var(--paper-strong); }
.image-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82); transition: transform .8s cubic-bezier(.2,.65,.2,1); }
.image-card:hover img { transform: scale(1.045); }
.image-card--large { min-height: 570px; }
.image-card--small { min-height: 300px; }
.image-card figcaption { position: absolute; right: 1.15rem; bottom: 1.1rem; left: 1.15rem; display: flex; justify-content: space-between; color: var(--white); font-family: var(--display); font-size: .67rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; text-shadow: 0 1px 10px rgba(0,0,0,.4); }
.image-card figcaption span { color: var(--acid); }
.club-image-side { display: grid; grid-template-rows: minmax(280px, 1fr) auto; gap: 1.1rem; }
.quote-card { min-height: 230px; display: flex; flex-direction: column; justify-content: space-between; padding: 1.65rem; color: var(--white); background: var(--ink); }
.quote-mark { display: block; color: var(--accent); font-family: var(--serif); font-size: 4.5rem; line-height: .5; }
.quote-card p { max-width: 370px; margin: 1rem 0; font-family: var(--display); font-size: 1.25rem; line-height: 1.05; letter-spacing: -.04em; }
.quote-meta { color: var(--acid); font-family: var(--display); font-size: .63rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

.path-explorer { border-top: 1px solid var(--line-light); }
.path-choices { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line-light); }
.path-choice { display: flex; align-items: center; gap: 1.1rem; border: 0; border-right: 1px solid var(--line-light); padding: 1.25rem 1.1rem; color: rgba(251,252,254,.55); text-align: left; background: transparent; transition: color .25s ease, background .25s ease; }
.path-choice:first-child { border-left: 1px solid var(--line-light); }
.path-choice:hover, .path-choice:focus-visible, .path-choice.is-active { color: var(--white); background: rgba(251,252,254,.06); }
.path-choice.is-active .path-choice-number { color: var(--acid); }
.path-choice-number { color: var(--accent); font-family: var(--display); font-size: .7rem; }
.path-choice strong, .path-choice small { display: block; }
.path-choice strong { font-family: var(--display); font-size: .96rem; letter-spacing: -.02em; }
.path-choice small { margin-top: .23rem; font-size: .74rem; }
.path-output { display: grid; grid-template-columns: minmax(270px, .8fr) minmax(0, 1.2fr); align-items: center; gap: clamp(2rem, 7vw, 8rem); min-height: 560px; padding: 4rem 2rem; }
.path-orbit { position: relative; width: min(100%, 420px); aspect-ratio: 1; justify-self: center; }
.orbit { position: absolute; inset: 8%; border: 1px solid rgba(47,128,191,.32); border-radius: 50%; transform: rotate(-18deg); }
.orbit--two { inset: 18%; border-color: rgba(227,38,63,.48); transform: rotate(38deg) scaleX(1.35); }
.orbit-node { position: absolute; display: grid; place-items: center; width: 56px; height: 56px; border: 1px solid rgba(251,252,254,.34); border-radius: 50%; color: var(--white); background: rgba(7,19,31,.7); font-family: var(--display); font-size: .6rem; font-weight: 700; letter-spacing: .08em; }
.orbit-node--swim { top: 10%; left: 20%; color: var(--acid); }
.orbit-node--bike { right: 4%; bottom: 29%; color: var(--accent); }
.orbit-node--run { bottom: 8%; left: 26%; }
.orbit-core { position: absolute; top: 50%; left: 50%; display: grid; place-items: center; width: 128px; height: 128px; border: 1px solid var(--acid); border-radius: 50%; color: var(--acid); font-family: var(--display); font-size: 1.45rem; font-weight: 700; line-height: .8; letter-spacing: -.07em; text-align: center; transform: translate(-50%, -50%); box-shadow: 0 0 0 16px rgba(47,128,191,.05), 0 0 70px rgba(47,128,191,.09); }
.orbit-core small { font-size: .58rem; letter-spacing: .1em; }
.path-card { max-width: 500px; }
.path-card-kicker { margin-bottom: 1.15rem; color: var(--acid); font-family: var(--display); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.path-card h3 { max-width: 440px; margin-bottom: 1.35rem; font-size: clamp(2rem, 4vw, 4rem); font-weight: 500; }
.path-card > p:not(.path-card-kicker) { max-width: 440px; color: rgba(251,252,254,.65); font-size: 1rem; }
.check-list { display: grid; gap: .6rem; margin: 1.65rem 0 2rem; padding: 0; list-style: none; color: rgba(251,252,254,.88); font-family: var(--display); font-size: .78rem; font-weight: 600; }
.check-list li::before { display: inline-block; width: 1.5rem; color: var(--acid); content: "↗"; }

.program .section-heading { margin-bottom: 3.2rem; }
.week-board { display: grid; grid-template-columns: minmax(100px, .42fr) minmax(0, 1.35fr) minmax(200px, .55fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.week-days { display: grid; align-content: start; border-right: 1px solid var(--line); }
.week-day { display: flex; align-items: center; justify-content: space-between; border: 0; border-bottom: 1px solid var(--line); padding: 1.05rem 1rem; color: var(--muted); background: transparent; font-family: var(--display); font-size: .75rem; text-align: left; }
.week-day:last-child { border-bottom: 0; }
.week-day:hover, .week-day:focus-visible, .week-day.is-active { color: var(--ink); background: var(--acid); }
.week-day small { font-size: .65rem; opacity: .7; }
.week-detail { min-height: 420px; padding: clamp(2rem, 5vw, 4.5rem); background: var(--white); }
.week-detail-meta { display: flex; justify-content: space-between; gap: 1rem; color: var(--accent); font-family: var(--display); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.week-detail-meta span:last-child { color: var(--muted); text-align: right; }
.week-detail h3 { margin: 5rem 0 1rem; font-size: clamp(2.35rem, 4vw, 4.8rem); font-weight: 500; }
.week-detail > p { max-width: 500px; color: rgba(7,19,31,.62); }
.session-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3.5rem; padding-top: 1.3rem; border-top: 1px solid var(--line); }
.session-info span { display: grid; gap: .35rem; }
.session-info b { font-family: var(--display); font-size: .81rem; font-weight: 600; }
.session-info small { color: var(--muted); font-size: .68rem; }
.week-aside { display: flex; flex-direction: column; justify-content: space-between; gap: 2rem; padding: 2rem 1.35rem; border-left: 1px solid var(--line); }
.week-aside p:not(.eyebrow) { color: rgba(7,19,31,.6); font-size: .85rem; }
.week-aside .text-link { font-size: .65rem; }
.data-note { margin: 1.1rem 0 0; color: var(--muted); font-size: .7rem; }

.season { overflow: hidden; }
.season-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 4.3rem; }
.season-index { display: flex; align-items: baseline; gap: .5rem; color: var(--acid); font-family: var(--display); font-size: 1.25rem; }
.season-index i { color: rgba(251,252,254,.3); font-size: .8rem; font-style: normal; }
.season-track { display: flex; gap: 1rem; width: max-content; padding-bottom: 1rem; cursor: grab; user-select: none; }
.season-track:active { cursor: grabbing; }
.season-track-wrap { overflow: hidden; }
.season-card { width: min(330px, 75vw); min-height: 420px; display: flex; flex-direction: column; justify-content: space-between; padding: 1.5rem; border: 1px solid rgba(251,252,254,.17); color: var(--white); background: rgba(251,252,254,.035); transition: background .3s ease, border-color .3s ease, transform .3s ease; }
.season-card:hover, .season-card--active { border-color: var(--acid); background: rgba(47,128,191,.09); transform: translateY(-8px); }
.season-card-top, .season-card-foot { display: flex; justify-content: space-between; color: var(--acid); font-family: var(--display); font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.season-card h3 { margin: auto 0 1.4rem; font-size: clamp(2.5rem, 4vw, 4.1rem); font-weight: 500; }
.season-card p { max-width: 270px; margin-bottom: 2.5rem; color: rgba(251,252,254,.62); font-size: .87rem; }
.season-card-foot { color: rgba(251,252,254,.48); }
.season-card-foot span:last-child { color: var(--accent); font-size: 1rem; }
.track-hint { display: flex; align-items: center; gap: .8rem; width: fit-content; margin-top: .7rem; color: rgba(251,252,254,.48); font-family: var(--display); font-size: .63rem; letter-spacing: .1em; text-transform: uppercase; }
.track-hint-line { width: 44px; height: 1px; background: var(--accent); }

.values { padding-bottom: 5rem; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.value-card { min-height: 260px; padding: 1.5rem 1.25rem; border-right: 1px solid var(--line); }
.value-card:first-child { border-left: 1px solid var(--line); }
.value-card > span { color: var(--accent); font-family: var(--display); font-size: .7rem; font-weight: 700; }
.value-card h3 { margin: 4.5rem 0 1rem; font-size: clamp(1.8rem, 3vw, 3.2rem); font-weight: 500; }
.value-card p { max-width: 220px; color: rgba(7,19,31,.62); font-size: .84rem; }
.stories { padding-top: 5rem; }
.stories-grid { display: grid; grid-template-columns: minmax(280px, .9fr) minmax(0, 1fr); gap: clamp(3rem, 9vw, 10rem); align-items: center; }
.stories-visual { position: relative; min-height: 610px; }
.story-photo { position: absolute; margin: 0; overflow: hidden; }
.story-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72); }
.story-photo--one { top: 0; right: 0; width: 72%; height: 72%; }
.story-photo--two { bottom: 0; left: 0; width: 68%; height: 48%; border: 10px solid var(--paper); }
.stories-stamp { position: absolute; top: 46%; left: 55%; display: grid; place-items: center; width: 100px; height: 100px; border: 1px solid var(--accent); border-radius: 50%; color: var(--accent); font-family: var(--display); font-size: .68rem; font-weight: 700; letter-spacing: .1em; line-height: 1.1; text-align: center; transform: rotate(-12deg); }
.stories-copy h2 { margin-bottom: 1.5rem; }
.stories-copy .lead-copy { max-width: 490px; color: rgba(7,19,31,.68); font-size: 1.15rem; line-height: 1.45; }
.stories-copy .text-link { margin-top: .8rem; }

.join { min-height: 680px; display: flex; align-items: center; overflow: hidden; color: var(--white); background: var(--ink); }
.join-background { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,10,16,.95), rgba(3,10,16,.68)), url("https://nissa-triathlon-team.org/wp-content/uploads/2020/09/nissat-triathlon-running-3.jpg") center/cover; filter: saturate(.75); }
.join::after { position: absolute; right: -10vw; bottom: -20vw; width: 55vw; height: 55vw; border: 1px solid rgba(47,128,191,.32); border-radius: 50%; content: ""; }
.join-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(250px, .65fr); gap: 5rem; align-items: end; }
.join h2 { max-width: 700px; }
.join-copy { max-width: 360px; padding-bottom: .5rem; }
.join-copy > p:first-child { color: rgba(251,252,254,.7); font-size: 1.02rem; }
.join-microcopy { margin: 1rem 0 0; color: rgba(251,252,254,.45); font-size: .75rem; }

.site-footer { color: var(--white); background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .65fr .65fr; gap: 3rem; padding-top: 4.5rem; padding-bottom: 4.5rem; }
.brand--footer { color: var(--white); }
.footer-statement { margin: 2.4rem 0 0; font-family: var(--display); font-size: clamp(2rem, 4vw, 4.1rem); line-height: .94; letter-spacing: -.06em; }
.footer-statement em { color: var(--acid); font-family: var(--serif); font-weight: 400; }
.footer-links, .footer-social { display: grid; align-content: start; gap: .65rem; padding-top: .4rem; font-family: var(--display); font-size: .75rem; }
.footer-links a, .footer-social a { color: rgba(251,252,254,.64); }
.footer-links a:hover, .footer-social a:hover { color: var(--acid); }
.footer-social > span { margin-bottom: .4rem; color: var(--accent); font-size: .64rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding-top: 1rem; padding-bottom: 1rem; border-top: 1px solid rgba(251,252,254,.13); color: rgba(251,252,254,.36); font-size: .65rem; }
.footer-bottom span:last-child { text-align: right; }

.join-modal { width: min(580px, calc(100% - 2rem)); border: 0; padding: 0; color: var(--ink); background: var(--paper); box-shadow: 0 25px 100px rgba(0,0,0,.35); }
.join-modal::backdrop { background: rgba(3,10,16,.7); backdrop-filter: blur(9px); }
.modal-inner { position: relative; padding: clamp(2rem, 5vw, 4rem); }
.modal-inner h2 { margin-bottom: 2rem; font-size: clamp(2.8rem, 6vw, 5rem); }
.modal-close { position: absolute; top: 1rem; right: 1.25rem; border: 0; color: var(--ink); background: transparent; font-size: 2rem; line-height: 1; }
.join-modal form { display: grid; gap: 1rem; }
.join-modal label { display: grid; gap: .45rem; color: var(--muted); font-family: var(--display); font-size: .67rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.join-modal input, .join-modal select, .join-modal textarea { width: 100%; border: 1px solid var(--line); border-radius: 0; padding: .85rem .9rem; color: var(--ink); background: rgba(255,255,255,.45); outline: 0; font-family: var(--sans); font-size: .9rem; font-weight: 400; letter-spacing: 0; text-transform: none; }
.join-modal input:focus, .join-modal select:focus, .join-modal textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(227,38,63,.18); }
.form-note, .form-success { margin: 0; color: var(--muted); font-size: .7rem; }
.form-success { color: #146c4a; }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }
:focus-visible { outline: 2px solid var(--acid); outline-offset: 4px; }

@media (max-width: 900px) {
  .main-nav { gap: 1rem; }
  .main-nav > a:not(.nav-cta) { display: none; }
  .menu-toggle { display: block; }
  .site-header.menu-open { background: var(--ink); }
  .site-header.menu-open .main-nav { position: absolute; top: 100%; right: 0; left: 0; display: grid; gap: 0; padding: .5rem var(--gutter) 1rem; background: var(--ink); }
  .site-header.menu-open .main-nav > a:not(.nav-cta) { display: block; padding: .85rem 0; border-bottom: 1px solid rgba(251,252,254,.12); }
  .site-header.menu-open .nav-cta { width: fit-content; margin-top: .9rem; }
  .intro-grid, .section-heading--split, .stories-grid, .join-inner { grid-template-columns: 1fr; gap: 2rem; }
  .section-note { margin-left: 0; }
  .club-image-grid { grid-template-columns: 1fr; }
  .image-card--large { min-height: 480px; }
  .club-image-side { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; }
  .quote-card { min-height: 300px; }
  .path-output { grid-template-columns: 1fr; padding-inline: 0; }
  .path-card { max-width: none; }
  .week-board { grid-template-columns: 1fr; }
  .week-days { grid-template-columns: repeat(5, 1fr); border-right: 0; border-bottom: 1px solid var(--line); }
  .week-day { display: grid; justify-content: center; gap: .25rem; border-right: 1px solid var(--line); border-bottom: 0; text-align: center; }
  .week-day:last-child { border-right: 0; }
  .week-aside { min-height: 220px; border-top: 1px solid var(--line); border-left: 0; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .value-card:nth-child(3) { border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
  .value-card:nth-child(4) { border-top: 1px solid var(--line); }
  .stories-visual { min-height: 520px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-social { justify-self: end; }
}

@media (max-width: 600px) {
  :root { --gutter: 1.1rem; }
  .hero { min-height: 760px; }
  .hero-content { padding-top: 4rem; }
  h1 { font-size: clamp(4rem, 19vw, 6rem); }
  .hero-footer { bottom: 1.2rem; }
  .hero-stats { display: none; }
  .hero-code { font-size: .58rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1.2rem; }
  h2 { font-size: clamp(2.8rem, 14vw, 4.5rem); }
  .section-heading { margin-bottom: 3rem; }
  .club-image-grid { margin-top: 4rem; }
  .image-card--large { min-height: 380px; }
  .image-card--small { min-height: 260px; }
  .club-image-side { grid-template-columns: 1fr; }
  .quote-card { min-height: 230px; }
  .path-choices { grid-template-columns: 1fr; }
  .path-choice, .path-choice:first-child { border-right: 0; border-left: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
  .path-choice:last-child { border-bottom: 0; }
  .path-output { min-height: auto; padding: 3rem 0 0; }
  .path-orbit { width: min(100%, 300px); margin-bottom: 2rem; }
  .path-card h3 { font-size: 2.55rem; }
  .week-days { grid-template-columns: repeat(5, 1fr); }
  .week-day { padding-inline: .45rem; font-size: .65rem; }
  .week-day small { font-size: .55rem; }
  .week-detail { min-height: 390px; padding: 1.5rem; }
  .week-detail h3 { margin-top: 4rem; font-size: 2.65rem; }
  .session-info { grid-template-columns: 1fr; gap: .9rem; margin-top: 2.5rem; }
  .session-info span { grid-template-columns: 1fr 1fr; align-items: baseline; }
  .session-info small { text-align: right; }
  .season-head { margin-bottom: 3rem; }
  .season-card { min-height: 350px; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card, .value-card:first-child, .value-card:nth-child(3) { min-height: 210px; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); border-top: 0; }
  .value-card:first-child { border-top: 1px solid var(--line); }
  .value-card h3 { margin-top: 2.5rem; }
  .stories-visual { min-height: 410px; }
  .stories-stamp { width: 78px; height: 78px; font-size: .55rem; }
  .join { min-height: 620px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-social { justify-self: start; }
  .footer-bottom { display: grid; }
  .footer-bottom span:last-child { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}


/* Marque TNT — palette publique 2026 : blanc, bleu, rouge et noir. */
.identity-line {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.identity-line__label {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--ink);
  font-family: var(--display);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.identity-line p {
  margin: 0;
  color: rgba(7,19,31,.66);
  font-family: var(--display);
  font-size: .82rem;
  letter-spacing: -.01em;
}
.identity-line a {
  display: inline-flex;
  gap: .5rem;
  align-items: center;
  color: var(--club-blue);
  font-family: var(--display);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.identity-line a:hover,
.identity-line a:focus-visible { color: var(--club-red); }
.identity-swatch {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.identity-swatch--black { background: var(--club-black); }
.identity-swatch--blue { background: var(--club-blue); }
.identity-swatch--red { background: var(--club-red); }

@media (max-width: 760px) {
  .identity-line {
    grid-template-columns: 1fr;
    gap: .7rem;
  }
  .identity-line a { width: fit-content; }
}
