:root {
  --red: #d20910;
  --red-dark: #a80005;
  --ink: #171717;
  --ink-soft: #2b2b2b;
  --paper: #ffffff;
  --mist: #f3f3f3;
  --line: #dddddd;
  --muted: #656565;
  --shadow: 0 18px 50px rgba(16, 16, 16, 0.12);
  --radius: 22px;
  --header-height: 82px;
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #ff7074;
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  letter-spacing: -0.045em;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.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;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 82px;
  color: #fff;
  background: #141414;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  background: #141414;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.header-inner {
  width: var(--shell);
  min-height: 82px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  position: relative;
  z-index: 2;
  align-self: stretch;
  display: flex;
  align-items: flex-start;
  flex: 0 0 124px;
  overflow: hidden;
}

.brand img {
  width: 124px;
  height: 74px;
  object-fit: cover;
  object-position: 50% 4%;
}

.primary-nav {
  display: flex;
  flex-wrap: wrap;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  margin-left: auto;
}

.primary-nav a {
  position: relative;
  padding: 30px 0 25px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 18px;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
}

.header-contact {
  flex: 0 0 auto;
  padding: 11px 17px;
  color: #fff;
  background: var(--red);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #171717;
}

.hero-visual {
  position: absolute;
  z-index: -1;
  inset: 0 0 0 25%;
  background: url("assets/hero.webp") center / cover no-repeat;
  mask-image: linear-gradient(90deg, transparent, #000 35%);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 14, 17, .93) 0%, rgba(12, 14, 17, .86) 38%, rgba(12, 14, 17, .65) 60%, rgba(12, 14, 17, .12) 100%);
}

.hero .location,
.hero h1 span { color: #ff5259; }

.hero-facts li::before { background: #ff5259; }

.hero-inner {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 700px;
}

.hero-copy {
  width: min(760px, 72%);
  padding: 64px 32px 64px 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .22);
}

.location,
.kicker {
  margin-bottom: 16px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6.2vw, 5.6rem);
  font-weight: 950;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: #ff5259;
}

.hero h2 {
  max-width: 540px;
  margin-bottom: 24px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  letter-spacing: -0.03em;
}

.hero-facts {
  max-width: 615px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  position: relative;
  padding-left: 18px;
  font-size: 1rem;
  font-weight: 550;
  line-height: 1.6;
}

.hero-facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--red);
  transform: rotate(45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--red);
}

.button-primary:hover {
  background: var(--red-dark);
}

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

.button-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(23, 23, 23, 0.3);
}

.section {
  position: relative;
  padding: clamp(76px, 10vw, 128px) 0;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(48px, 8vw, 100px);
  align-items: start;
}

.season-section {
  color: #fff;
  background: var(--ink);
}

.season-section::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 42%;
  height: 8px;
  background: var(--red);
}

.section-lead h2 {
  margin-bottom: 24px;
}

.section-lead > p:not(.kicker) {
  max-width: 620px;
  font-size: 1.12rem;
}

.contact-details {
  margin-top: 32px;
  padding: 24px;
  border: 1px solid #555;
  border-left: 4px solid var(--red);
  border-radius: 12px;
}

.contact-details:target {
  outline: 2px solid #ff7074;
  outline-offset: 5px;
}

.contact-details h3 { margin-bottom: 20px; }
.contact-details p { margin-bottom: 16px; }
.contact-details p:last-child { margin-bottom: 0; }
.contact-details a { color: #fff; font-weight: 750; overflow-wrap: anywhere; }

.event-card {
  position: relative;
  padding: clamp(30px, 5vw, 52px);
  color: var(--ink);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 14px 14px 0 var(--red);
}

.event-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.event-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.event-list li {
  position: relative;
  padding: 20px 0 20px 30px;
  border-top: 1px solid var(--line);
}

.event-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 28px;
  width: 12px;
  height: 12px;
  background: var(--red);
  border-radius: 50%;
}

.home-grid-section {
  background: var(--mist);
}

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

.feature-card {
  grid-column: span 6;
  position: relative;
  min-width: 0;
  padding: clamp(30px, 5vw, 50px);
  overflow: hidden;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
}

.feature-card::before,
.registration-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 94px;
  height: 8px;
  background: var(--red);
}

.feature-card:first-child {
  grid-column: span 12;
}

.feature-card h2 {
  max-width: 700px;
  margin-bottom: 28px;
}

.feature-card p {
  max-width: 900px;
}

.feature-card a {
  color: var(--red-dark);
  overflow-wrap: anywhere;
}

.feature-card-dark {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.feature-card-dark a {
  color: #fff;
}

.link-stack {
  display: grid;
  gap: 12px;
}

.link-stack a {
  display: grid;
  gap: 3px;
  padding: 17px 19px;
  color: var(--ink);
  background: var(--mist);
  border-radius: 12px;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease;
}

.link-stack a:hover {
  transform: translateX(5px);
  background: #e8e8e8;
}

.link-stack span {
  color: var(--muted);
  font-size: 0.9rem;
}

.agenda-section {
  background: #fff;
}

.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.section-title-row h2 {
  margin-bottom: 0;
}

.text-link {
  color: var(--red-dark);
  font-weight: 850;
}

/* Club events: date rail and red markers inspired by the supplied agenda. */
.event-agenda { padding: 30px 36px 24px; color: #fff; background: var(--ink); border-radius: var(--radius); box-shadow: var(--shadow); }
.event-agenda-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid #454545; font-weight: 700; }
.event-season { color: #ddd; font-size: .875rem; letter-spacing: .06em; }
.event-list { list-style: none; margin: 0; padding: 0; }
.event-row { display: grid; grid-template-columns: 100px minmax(0, 1fr); gap: 26px; padding: 26px 0; border-bottom: 1px solid #454545; }
.event-row[hidden], .event-more[hidden], .event-empty[hidden] { display: none; }
.event-date { display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: .875rem; line-height: 1.5; color: #ddd; text-align: center; }
.event-date strong { font-size: 2.75rem; font-weight: 700; letter-spacing: -.04em; line-height: 1.15; color: #fff; }
.event-content { border-left: 5px solid var(--red); padding: 3px 0 3px 24px; align-self: center; min-width: 0; }
.event-content h3 { margin: 0 0 6px; font-size: 1.25rem; line-height: 1.4; letter-spacing: -.02em; overflow-wrap: anywhere; color: #fff; }
.event-meta { margin: 0; color: #ccc; font-size: 1rem; }
.event-pending { display: inline-block; margin-top: 8px; padding: 2px 10px; border: 1px solid #777; border-radius: 6px; color: #fff; font-size: .875rem; }
.event-note { margin: 20px 0 0; color: #bbb; font-size: .875rem; }
.event-more { display: block; margin: 24px auto 0; padding: 12px 22px; border: 1px solid #686868; border-radius: 100px; background: transparent; color: #fff; font: inherit; font-weight: 700; cursor: pointer; }
.event-more:hover { background: #333; border-color: #aaa; }
.event-more:focus-visible { outline: 3px solid #fff; outline-offset: 4px; }
@media (max-width: 600px) {
  .event-agenda { padding: 20px 16px; }
  .event-agenda-header { flex-wrap: wrap; gap: 4px 16px; }
  .event-row { grid-template-columns: 72px minmax(0, 1fr); gap: 12px; padding: 22px 0; }
  .event-content { padding-left: 14px; border-left-width: 4px; }
  .event-content h3 { font-size: 1.0625rem; }
  .event-date strong { font-size: 2.25rem; }
}

.club-section {
  color: #fff;
  background: var(--ink);
}

.section-heading {
  max-width: 800px;
  margin-bottom: clamp(36px, 6vw, 64px);
}

.section-heading h2 {
  margin-bottom: 16px;
}

.section-heading > p:not(.kicker) {
  color: inherit;
  font-size: 1.1rem;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 70px;
}

.person-card {
  min-height: 250px;
  padding: 30px;
  color: var(--ink);
  background: #fff;
  border-radius: var(--radius);
}

.person-card-primary {
  color: #fff;
  background: var(--red);
}

.person-card p {
  margin-bottom: 44px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.person-card h3 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  letter-spacing: -0.04em;
}

.person-card a {
  font-weight: 850;
}

.club-details {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}

.members-card {
  padding: 30px;
  color: var(--ink);
  background: #fff;
  border-left: 8px solid var(--red);
}

.members-card h3:not(:first-child) {
  margin-top: 36px;
}

.objectives h3 {
  margin-bottom: 28px;
  color: var(--red);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.objectives p {
  padding-bottom: 18px;
  color: #d8d8d8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.practical-intro {
  padding: 0;
  color: #fff;
  background: var(--red);
}

.practical-banner {
  min-height: 370px;
  display: grid;
  align-content: center;
  padding-block: 70px;
}

.practical-banner .kicker {
  color: #fff;
}

.practical-banner h2 {
  margin-bottom: 14px;
  font-size: clamp(3rem, 8vw, 7.6rem);
  text-transform: uppercase;
}

.practical-banner > p:not(.kicker) {
  max-width: 620px;
  font-size: 1.15rem;
}

.practical-banner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.practical-banner nav a {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.schedule-section {
  background: var(--mist);
}

.schedule-layout {
  align-items: center;
}

.schedule-layout .section-heading {
  margin-bottom: 0;
}

.schedule-poster {
  width: min(100%, 900px);
  margin: 48px auto 0;
}

.schedule-poster > a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

.schedule-poster img {
  width: 100%;
  height: auto;
}

.schedule-poster figcaption {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.875rem;
  text-align: center;
}

.notice-card {
  position: relative;
  padding: clamp(32px, 5vw, 54px);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.notice-card::before {
  content: "!";
  position: absolute;
  top: -28px;
  right: 28px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 950;
}

.notice-card p {
  margin-bottom: 28px;
  font-size: 1.1rem;
}

.access-section {
  background: #fff;
}

.access-heading {
  max-width: 760px;
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.venue-card {
  position: relative;
  min-height: 330px;
  padding: clamp(30px, 5vw, 50px);
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.venue-card:last-child {
  background: var(--red);
}

.venue-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.venue-card h3 {
  max-width: 420px;
  margin-bottom: 44px;
}

.venue-card p {
  margin-bottom: 4px;
}

.bus-line {
  margin: 26px 0;
  padding: 18px 22px;
  color: var(--ink);
  background: var(--mist);
  border-left: 6px solid var(--red);
  font-weight: 800;
}

.map-card {
  margin: 0;
  padding: 10px;
  overflow: hidden;
  background: var(--ink);
  border-radius: var(--radius);
}

.map-card img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  border-radius: 13px;
}

.registration-section {
  color: #fff;
  background: var(--ink);
}

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

.registration-card {
  position: relative;
  grid-column: span 6;
  min-width: 0;
  padding: clamp(30px, 5vw, 48px);
  color: var(--ink);
  background: #fff;
  border-radius: var(--radius);
}

.registration-card.method-card {
  grid-row: span 2;
}

.registration-card.payment-card {
  background: #efefef;
}

.registration-card h3 {
  max-width: calc(100% - 100px);
  margin-bottom: 30px;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
}

.registration-card a {
  color: var(--red-dark);
  font-weight: 750;
  overflow-wrap: anywhere;
}

.document-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.document-list li {
  position: relative;
  padding: 16px 0 16px 28px;
  border-top: 1px solid var(--line);
}

.document-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 24px;
  width: 10px;
  height: 10px;
  background: var(--red);
  transform: rotate(45deg);
}

.partners-section {
  background: var(--mist);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.partner-grid a {
  min-height: 180px;
  display: grid;
  place-items: center;
  padding: 22px;
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 16px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.partner-grid a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.partner-grid img {
  width: 100%;
  max-width: 180px;
  max-height: 100px;
  object-fit: contain;
}

.links-panel {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid #cecece;
}

.links-panel h2 {
  margin-bottom: 32px;
}

.federation-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.federation-links a {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 220px;
  padding: 28px;
  color: #fff;
  background: var(--ink);
  border-radius: 16px;
  text-decoration: none;
  transition: background-color 180ms ease;
}

.federation-links a:hover {
  background: var(--red);
}

.federation-links strong {
  margin-bottom: auto;
  font-size: 1.2rem;
  line-height: 1.25;
}

.federation-links span {
  color: #d5d5d5;
  font-size: 0.86rem;
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 62px 0 36px;
  color: #fff;
  background: #0d0d0d;
  border-top: 8px solid var(--red);
}

.footer-inner {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 38px 50px;
  align-items: center;
}

.footer-brand {
  display: block;
  width: 132px;
  height: 78px;
  overflow: hidden;
}

.footer-brand img {
  width: 132px;
  height: 78px;
  object-fit: cover;
  object-position: 50% 2%;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.social-links a {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease;
}

.social-links a:hover {
  color: #ff686d;
  border-color: var(--red);
}

.footer-inner > p {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 28px;
  color: #9b9b9b;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.84rem;
}

@media (max-width: 1100px) {
  :root { --header-height: 130px; }

  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0 20px;
  }

  .brand { width: 112px; }
  .brand img { width: 112px; height: 66px; }
  .header-contact { grid-column: 2; grid-row: 1; font-size: 0.875rem; }

  .primary-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 0;
    justify-content: space-between;
    gap: 14px;
    border-top: 1px solid #383838;
  }

  .primary-nav a { padding: 12px 0; font-size: 0.875rem; }
  .primary-nav a::after { bottom: 6px; }
  .partner-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 30px, 720px); }

  .hero-visual { inset: 0; mask-image: none; background-position: right center; background-size: cover; }
  .hero-visual::after {
    background: linear-gradient(105deg, rgba(12, 14, 17, .92), rgba(12, 14, 17, .76) 65%, rgba(12, 14, 17, .5));
  }
  .hero-inner { min-height: auto; }
  .hero-copy { width: 100%; padding: 40px 0; }
  .hero h1 { font-size: clamp(3rem, 9vw, 5.6rem); }
  .hero-facts { max-width: 700px; }

  .split-layout,
  .club-details {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card:first-child,
  .registration-card {
    grid-column: span 12;
  }

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

  .person-card:first-child {
    grid-column: 1 / -1;
  }

  .federation-links {
    grid-template-columns: 1fr;
  }

  .federation-links a {
    min-height: 170px;
  }
}

@media (max-width: 760px) {
  :root { --header-height: 172px; }

  .primary-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 8px;
    padding-bottom: 6px;
  }
  .primary-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 8px 2px;
    text-align: center;
    white-space: normal;
    line-height: 1.35;
  }

}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 24px);
    --radius: 17px;
  }

  body {
    font-size: 1rem;
  }

  .section {
    padding: 72px 0;
  }

  .hero-visual { background-position: 32% center; }
  .hero-copy { padding: 40px 8px 48px; }
  .location { max-width: 320px; font-size: 0.875rem; }
  .hero h1 { font-size: clamp(2.5rem, 12vw, 4.5rem); }
  .hero-facts { grid-template-columns: 1fr; gap: 16px; }

  .event-card {
    box-shadow: 8px 8px 0 var(--red);
  }

  .people-grid,
  .venue-grid,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .person-card:first-child {
    grid-column: auto;
  }

  .person-card {
    min-height: 220px;
  }

  .practical-banner {
    min-height: 330px;
  }

  .practical-banner h2 {
    font-size: clamp(2.9rem, 16vw, 5rem);
  }

  .venue-card {
    min-height: 310px;
  }

  .map-card {
    padding: 7px;
  }

  .map-card img {
    min-height: 430px;
    object-position: center;
  }

  .partner-grid a {
    min-height: 150px;
  }

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

  .social-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Tarifs — saison 2026–2027 */
.pricing-section { background: var(--mist); }
.pricing-heading { align-items: center; flex-wrap: wrap; }
.price-table-wrap { overflow-x: auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.price-table-wrap:focus-visible { outline: 3px solid var(--red); outline-offset: 4px; }
.price-table { width: 100%; border-collapse: collapse; text-align: left; }
.price-table caption { padding: 22px 28px; text-align: left; font-weight: 800; font-size: 1.15rem; }
.price-table thead { color: #fff; background: var(--ink); }
.price-table th, .price-table td { padding: 20px 28px; }
.price-table tbody tr + tr { border-top: 1px solid var(--line); }
.price-table tbody th { font-weight: 750; }
.price-table td { font-weight: 800; font-variant-numeric: tabular-nums; white-space: nowrap; }
.price-table td:nth-child(2) { color: var(--red-dark); font-size: 1.3rem; }
.price-table span, .pricing-extra span { display: block; margin-top: 5px; color: var(--muted); font-size: .875rem; font-weight: 400; }
.pricing-note { margin: 18px 0 32px; color: var(--muted); font-size: .875rem; }
.pricing-note a { color: var(--red-dark); }
.pricing-details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.pricing-extra { padding: 30px; border-radius: var(--radius); background: #fff; border-top: 6px solid var(--red); }
.pricing-extra h3 { margin-bottom: 24px; }
.pricing-extra dl { margin: 0; }
.pricing-extra dl > div { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px 16px; padding: 16px 0; border-top: 1px solid var(--line); }
.pricing-extra dd { margin: 0; font-weight: 800; }
.pricing-aid { padding: 28px 30px; margin-top: 20px; border-radius: var(--radius); color: #fff; background: var(--ink); }
.pricing-aid p { margin-bottom: 0; }
@media (max-width: 760px) {
  .pricing-details { grid-template-columns: 1fr; }
  .price-table th, .price-table td { padding: 16px 12px; }
  .price-table { min-width: 550px; }
  :root { --header-height: 216px; }
}

/* Invitation au partenariat */
.partner-invitation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .8fr);
  align-items: center;
  gap: 32px;
  margin-top: 32px;
  padding: clamp(28px, 5vw, 48px);
  color: #fff;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-left: 8px solid var(--red);
  border-radius: var(--radius);
}
.partner-invitation h3 { font-size: clamp(1.8rem, 3vw, 2.7rem); margin-bottom: 18px; }
.partner-invitation p:last-child { margin-bottom: 0; color: #ddd; }
.partner-invitation .kicker { color: #ff7074; }
.partner-invitation-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; min-width: 0; }
.partner-invitation-actions .button { text-align: center; max-width: 100%; }
.partner-invitation-actions > span { font-size: .875rem; color: #ccc; }
.partner-download { font-size: .875rem; font-weight: 700; }
@media (max-width: 760px) {
  .partner-invitation { grid-template-columns: 1fr; }
}
