:root {
  --navy: #071524;
  --navy-soft: #10263b;
  --red: #dc2c39;
  --blue: #138bd1;
  --cream: #f5f0e7;
  --white: #ffffff;
  --ink: #0d1b27;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.splash-screen {
  animation: splash-screen-out 700ms 1.95s cubic-bezier(.65, 0, .35, 1) forwards;
  background:
    radial-gradient(circle at 50% 48%, rgba(19, 139, 209, .2), transparent 31%),
    linear-gradient(145deg, #050f19, var(--navy) 58%, #10263b);
  display: grid;
  inset: 0;
  place-items: center;
  pointer-events: none;
  position: fixed;
  z-index: 1000;
}
.splash-logo {
  animation: splash-logo-in 2.35s cubic-bezier(.2, .8, .2, 1) forwards;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, .42));
  grid-area: 1 / 1;
  opacity: 0;
  position: relative;
  width: clamp(240px, 32vw, 400px);
  z-index: 2;
}
.splash-ring {
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 50%;
  grid-area: 1 / 1;
  opacity: 0;
}
.splash-ring-outer {
  animation: splash-ring-out 1.75s .16s ease-out forwards;
  height: clamp(320px, 40vw, 500px);
  width: clamp(320px, 40vw, 500px);
}
.splash-ring-inner {
  animation: splash-ring-out 1.55s .34s ease-out forwards;
  border-color: rgba(220, 44, 57, .72);
  height: clamp(280px, 35vw, 440px);
  width: clamp(280px, 35vw, 440px);
}

@keyframes splash-logo-in {
  0% { opacity: 0; transform: scale(.64) rotate(-7deg); }
  18% { opacity: 1; }
  58% { opacity: 1; transform: scale(1) rotate(0); }
  78% { opacity: 1; transform: scale(1) rotate(0); }
  100% { opacity: 0; transform: scale(1.08) rotate(0); }
}
@keyframes splash-ring-out {
  0% { opacity: 0; transform: scale(.72); }
  28% { opacity: .72; }
  100% { opacity: 0; transform: scale(1.16); }
}
@keyframes splash-screen-out {
  0% { opacity: 1; visibility: visible; }
  99% { opacity: 0; visibility: visible; }
  100% { opacity: 0; visibility: hidden; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .splash-screen { display: none; }
  .hero-season-notice, .hero-season-notice::after { animation: none; }
}

.site-status {
  background: #fff;
  color: #263541;
  min-height: 60px;
  overflow: hidden;
  padding: 12px 0 20px;
  position: relative;
  z-index: 51;
}
.site-status-track {
  align-items: center;
  animation: site-status-marquee 24s linear infinite;
  display: flex;
  width: max-content;
  will-change: transform;
}
.site-status-group {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
}
.site-status-message {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
  padding: 0 clamp(42px, 5vw, 92px);
  white-space: nowrap;
}
.site-status-dot {
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(220, 44, 57, .1);
  flex: 0 0 auto;
  height: 7px;
  width: 7px;
}
.site-status-message {
  font-size: .84rem;
  font-weight: 850;
  letter-spacing: .11em;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}
@keyframes site-status-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .site-status-track { animation: none; justify-content: center; width: 100%; }
  .site-status-group:nth-child(2), .site-status-message:not(:first-child) { display: none; }
}

.site-header {
  align-items: center;
  background: rgba(7, 21, 36, 0.96);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 86px;
  padding: 0 5vw;
  position: relative;
  z-index: 10;
}
.brand { align-items: center; display: flex; gap: 13px; justify-self: start; }
.brand img { height: 58px; object-fit: contain; width: 58px; }
.brand span { display: grid; line-height: 1.05; }
.brand strong { font-size: 1rem; letter-spacing: 0.02em; text-transform: uppercase; }
.brand small { color: #a9bfd0; font-size: 0.73rem; margin-top: 5px; }
nav { display: flex; gap: clamp(22px, 3vw, 48px); }
nav a { color: #dbe6ed; font-size: 0.86rem; font-weight: 650; }
nav a:hover { color: var(--white); }
.header-cta {
  background: var(--red);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  justify-self: end;
  padding: 13px 22px;
}
.header-actions { align-items: center; display: flex; gap: 13px; justify-self: end; }
.header-facebook {
  align-items: center;
  background: #1877f2;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  flex: 0 0 auto;
  height: 42px;
  justify-content: center;
  transition: background .2s ease, transform .2s ease;
  width: 42px;
}
.header-facebook span { font-family: Arial, sans-serif; font-size: 1.45rem; font-weight: 900; line-height: 1; transform: translateY(2px); }
.header-facebook:hover { background: #0f65d7; transform: translateY(-2px); }
.header-whatsapp {
  border-radius: 50%;
  display: block;
  flex: 0 0 auto;
  height: 42px;
  overflow: hidden;
  transition: filter .2s ease, transform .2s ease;
  width: 42px;
}
.header-whatsapp img { display: block; height: 100%; object-fit: contain; width: 100%; }
.header-whatsapp:hover { filter: brightness(.94); transform: translateY(-2px); }

.hero {
  background: linear-gradient(120deg, rgba(7, 21, 36, 0.99) 0%, rgba(7, 21, 36, 0.96) 53%, rgba(16, 38, 59, 0.9) 100%);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  min-height: 660px;
  overflow: hidden;
  padding: 74px 5vw 84px;
  position: relative;
}
.hero::before {
  background: var(--red);
  content: "";
  height: 300px;
  opacity: 0.13;
  position: absolute;
  right: -90px;
  top: -100px;
  transform: rotate(18deg);
  width: 420px;
}
.hero-copy { align-self: center; max-width: 720px; padding-right: 6vw; position: relative; z-index: 2; }
.eyebrow {
  color: #e8b5b8;
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  margin: 0 0 24px;
  text-transform: uppercase;
}
h1 {
  font-size: clamp(3.4rem, 6.4vw, 7.2rem);
  letter-spacing: -0.065em;
  line-height: 0.87;
  margin: 0;
  max-width: 880px;
  text-transform: uppercase;
}
h1 span { color: #f05b64; display: block; }
.hero-title {
  font-size: clamp(3.15rem, 4.55vw, 5.35rem);
  line-height: 0.92;
  max-width: 100%;
}
.hero-title .hero-title-main {
  color: var(--white);
}
.hero-title .hero-title-accent {
  color: #f05b64;
  margin-top: 0.08em;
}
.hero-lead {
  color: #f05b64;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.7;
  margin: 30px 0 32px;
  max-width: 620px;
}
.hero-expertise {
  color: #fff;
  display: block;
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  font-weight: 600;
  line-height: 1.55;
  margin-top: 13px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.button {
  align-items: center;
  border-radius: 4px;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 800;
  gap: 22px;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
}
.button-primary { background: var(--red); color: var(--white); }
.button-secondary { border: 1px solid #5f7282; color: var(--white); }
.hero-benefits {
  color: #a9bdca;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.76rem;
  font-weight: 700;
  gap: 24px;
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  text-transform: uppercase;
}
.hero-benefits li::before { color: var(--red); content: "●"; font-size: 0.62rem; margin-right: 9px; }

.hero-visual { min-height: 510px; position: relative; }
.hero-image { margin: 0; overflow: hidden; position: absolute; }
.hero-image img { height: 100%; object-fit: cover; width: 100%; }
.hero-image-main { bottom: 0; height: 92%; left: 4%; width: 76%; }
.hero-image-small { border: 7px solid var(--navy); bottom: 2%; height: 34%; right: 0; width: 36%; }
.hero-season-notice {
  animation: hero-notice-reveal .78s 2.45s cubic-bezier(.2, .8, .2, 1) both;
  background: var(--navy);
  box-shadow: 0 22px 50px rgba(7, 21, 36, .28);
  color: var(--white);
  display: grid;
  gap: 8px;
  left: 0;
  max-width: 440px;
  overflow: hidden;
  padding: 22px 26px 24px 31px;
  position: absolute;
  top: 4%;
  width: 82%;
  z-index: 4;
}
.hero-season-notice::before {
  background: var(--red);
  content: "";
  inset: 0 auto 0 0;
  position: absolute;
  width: 7px;
}
.hero-season-notice::after {
  animation: hero-notice-sweep 3.4s 3.15s ease-in-out infinite;
  background: rgba(220, 44, 57, .18);
  content: "";
  height: 160px;
  position: absolute;
  right: -55px;
  top: -105px;
  transform: rotate(22deg);
  width: 230px;
}
.hero-season-notice strong {
  font-size: clamp(1.05rem, 1.8vw, 1.55rem);
  line-height: 1.08;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}
.hero-season-notice span {
  color: #f5b9bd;
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .14em;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}
@keyframes hero-notice-reveal {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-notice-sweep {
  0%, 100% { opacity: .45; transform: translateX(0) rotate(22deg); }
  50% { opacity: 1; transform: translateX(-36px) rotate(22deg); }
}
.hero-badge {
  background: var(--white);
  color: var(--navy);
  display: grid;
  left: 3%;
  padding: 18px 22px;
  position: absolute;
  top: 27%;
  transform: rotate(-2deg);
  z-index: 3;
}
.hero-badge strong { font-size: .83rem; text-transform: uppercase; }
.hero-badge span { color: #5e6d78; font-size: .68rem; margin-top: 3px; }

.quick-facts {
  background: var(--white);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: -34px auto 0;
  max-width: 1180px;
  position: relative;
  z-index: 5;
}
.quick-facts article {
  align-items: center;
  border-right: 1px solid #dde3e7;
  display: flex;
  gap: 20px;
  min-height: 112px;
  padding: 24px 30px;
}
.quick-facts article:last-child { border-right: 0; }
.fact-number { color: var(--red); font-size: 0.75rem; font-weight: 900; }
.quick-facts strong { font-size: 0.96rem; text-transform: uppercase; }
.quick-facts p { color: #67747e; font-size: 0.8rem; margin: 5px 0 0; }

.mobile-menu { display: none; }
.section-shell { margin-inline: auto; max-width: 1240px; padding-inline: 30px; }
.section-kicker {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin: 0 0 18px;
  text-transform: uppercase;
}
h2 {
  font-size: clamp(2.25rem, 4.7vw, 4.9rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin: 0;
}
.section-intro { color: #5e6d78; font-size: 1.02rem; line-height: 1.8; margin: 28px 0 0; }

.story {
  align-items: center;
  display: grid;
  gap: clamp(55px, 7vw, 100px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.88fr);
  padding-block: 150px 130px;
}
.story-images { min-height: 610px; position: relative; }
.story-images figure { margin: 0; overflow: hidden; position: absolute; }
.story-images img { height: 100%; object-fit: cover; width: 100%; }
.story-image-large { height: 80%; left: 0; top: 0; width: 78%; }
.story-image-small { border: 10px solid var(--cream); bottom: 0; height: 43%; right: 0; width: 47%; }
.story-mark {
  align-items: center;
  background: var(--red);
  color: var(--white);
  display: flex;
  font-size: 2.4rem;
  height: 96px;
  justify-content: center;
  left: -20px;
  position: absolute;
  top: -30px;
  width: 96px;
  z-index: 2;
}
.value-list { border-top: 1px solid #cfd5d9; margin-top: 40px; }
.value-list article { border-bottom: 1px solid #cfd5d9; display: grid; gap: 18px; grid-template-columns: 36px 1fr; padding: 22px 0; }
.value-list article > span { color: var(--red); font-size: 0.72rem; font-weight: 900; padding-top: 3px; }
.value-list strong { font-size: 0.95rem; text-transform: uppercase; }
.value-list p { color: #697680; font-size: 0.84rem; line-height: 1.5; margin: 5px 0 0; }

.training-section { padding-block: 60px 140px; }
.section-heading { align-items: end; display: grid; gap: 70px; grid-template-columns: 1.25fr 0.75fr; margin-bottom: 55px; }
.section-heading > p { color: #65727c; line-height: 1.7; margin: 0; }
.section-heading > .training-location-copy { color: var(--ink); font-weight: 850; }
.season-notice {
  align-items: center;
  background: var(--navy);
  box-shadow: 0 22px 50px rgba(7, 21, 36, .16);
  color: var(--white);
  display: grid;
  gap: 10px 34px;
  grid-template-columns: auto 1fr;
  margin: 0 28px -18px;
  min-height: 116px;
  overflow: hidden;
  padding: 26px 34px 30px;
  position: relative;
  z-index: 4;
}
.season-notice::before {
  background: var(--red);
  content: "";
  inset: 0 auto 0 0;
  position: absolute;
  width: 7px;
}
.season-notice::after {
  background: rgba(220, 44, 57, .16);
  content: "";
  height: 180px;
  position: absolute;
  right: -50px;
  top: -110px;
  transform: rotate(22deg);
  width: 260px;
}
.season-notice-label {
  color: #f5b9bd;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .16em;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}
.season-notice strong {
  font-size: clamp(1.45rem, 3vw, 2.65rem);
  letter-spacing: -.035em;
  line-height: 1.05;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}
.schedule-grid { display: grid; gap: 16px; grid-template-columns: repeat(3, 1fr); }
.season-notice + .schedule-grid { padding-top: 52px; }
.schedule-card { background: var(--white); min-height: 350px; padding: 36px; position: relative; }
.schedule-card-accent { background: var(--red); color: var(--white); }
.schedule-card .day { font-size: 1.6rem; font-weight: 900; margin: 0 0 45px; text-transform: uppercase; }
.schedule-card > div { border-top: 1px solid #d9dfe3; display: flex; justify-content: space-between; padding: 17px 0; }
.schedule-card-accent > div { border-color: rgba(255,255,255,.28); }
.schedule-card div span { font-size: 0.74rem; text-transform: uppercase; }
.schedule-card div strong { font-size: 0.93rem; }
.hall { bottom: 27px; color: var(--ink); font-size: 1.05rem; font-weight: 950; letter-spacing: 0.08em; margin: 0; position: absolute; text-transform: uppercase; }
.hall strong { color: inherit; font-weight: inherit; }
.schedule-card-accent .hall { color: var(--ink); }
.schedule-note { color: #7a8790; font-size: 0.84rem; line-height: 1.55; }
.membership-row { align-items: center; border-bottom: 1px solid #cbd2d6; display: flex; justify-content: space-between; padding: 28px 6px; }
.membership-row p { align-items: baseline; display: flex; gap: 20px; margin: 0; }
.membership-row p > span { font-size: 0.72rem; font-weight: 850; text-transform: uppercase; }
.membership-row strong { color: var(--red); font-size: 1.8rem; }
.membership-row small { color: #74808a; }
.text-link { font-size: 0.82rem; font-weight: 850; text-transform: uppercase; }
.text-link span { color: var(--red); margin-left: 12px; }

.news-section { background: var(--navy); color: var(--white); padding-block: 130px 145px; }
.section-heading-light > p { color: #aabcc9; }
.news-grid { display: grid; gap: 18px; grid-template-columns: 1.35fr 1fr 1fr; }
.news-card { background: var(--navy-soft); display: grid; grid-template-rows: 240px 1fr; min-height: 520px; }
.news-card-featured { grid-template-rows: 310px 1fr; }
.news-card img { height: 100%; object-fit: cover; width: 100%; }
.news-card > div { padding: 30px; }
.news-date { color: #8fa6b6; font-size: 0.7rem; font-weight: 800; letter-spacing: .09em; margin: 0 0 16px; text-transform: uppercase; }
.news-card h3 { font-size: 1.55rem; line-height: 1.12; margin: 0; }
.news-card > div > p:not(.news-date) { color: #b7c5cf; font-size: 0.85rem; line-height: 1.65; }
.news-tag { border: 1px solid #40596d; border-radius: 99px; color: #c7d4dd; display: inline-block; font-size: .64rem; margin-top: 8px; padding: 7px 11px; text-transform: uppercase; }

.gallery-section { padding-block: 140px; }
.gallery-grid { display: grid; gap: 12px; grid-auto-rows: 250px; grid-template-columns: repeat(4, 1fr); }
.gallery-grid figure { margin: 0; overflow: hidden; position: relative; }
.gallery-grid img { height: 100%; object-fit: cover; transition: transform .5s ease; width: 100%; }
.gallery-grid figure:hover img { transform: scale(1.035); }
.gallery-grid figcaption { background: var(--white); bottom: 12px; font-size: .68rem; font-weight: 850; left: 12px; letter-spacing: .1em; padding: 8px 11px; position: absolute; text-transform: uppercase; }
.gallery-wide { grid-column: span 2; }
.gallery-tall { grid-row: span 2; }

.trial-section { background: var(--navy-soft); color: var(--white); display: grid; grid-template-columns: 1.05fr .95fr; margin-bottom: 140px; max-width: 1180px; min-height: 520px; padding: 0; }
.trial-copy { align-self: center; padding: 65px; }
.trial-copy > p:not(.section-kicker) { color: #b6c6d1; line-height: 1.7; max-width: 570px; }
.trial-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.trial-section figure { margin: 0; overflow: hidden; }
.trial-section figure img { height: 100%; object-fit: cover; width: 100%; }

.faq-section { display: grid; gap: 90px; grid-template-columns: .75fr 1.25fr; padding-bottom: 140px; }
.faq-list { border-top: 1px solid #cbd2d6; }
.faq-list details { border-bottom: 1px solid #cbd2d6; padding: 0 4px; }
.faq-list summary { cursor: pointer; font-size: .95rem; font-weight: 800; list-style: none; padding: 25px 0; text-transform: uppercase; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--red); float: right; font-size: 1.3rem; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { color: #66737d; line-height: 1.7; margin: -6px 0 25px; max-width: 650px; }

footer { background: #050f19; color: var(--white); }
.footer-main { display: grid; gap: 55px; grid-template-columns: 1.6fr repeat(3, 1fr); padding-block: 70px 55px; }
.footer-brand { align-items: center; display: flex; gap: 18px; }
.footer-brand img { height: 70px; width: 70px; }
.footer-brand div { display: grid; }
.footer-brand strong { text-transform: uppercase; }
.footer-brand span, footer p, footer a { color: #9fb1bf; font-size: .8rem; line-height: 1.7; }
.footer-main > div:not(.footer-brand) { display: flex; flex-direction: column; }
.footer-label { color: var(--white) !important; font-size: .68rem !important; font-weight: 850; letter-spacing: .12em; margin: 0 0 12px; text-transform: uppercase; }
.footer-bottom { border-top: 1px solid #263644; color: #6f8493; display: flex; font-size: .7rem; justify-content: space-between; padding-block: 22px; }

@media (max-width: 960px) {
  .site-header { grid-template-columns: 1fr auto; }
  nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 56px; }
  .hero-copy { padding-right: 0; }
  .hero-visual { margin-top: 50px; }
  .quick-facts { margin: 0; max-width: none; }
  .story { grid-template-columns: 1fr; }
  .story-images { min-height: 580px; }
  .section-heading { align-items: start; gap: 25px; grid-template-columns: 1fr; }
  .schedule-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card-featured { grid-column: span 2; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .trial-section { margin-inline: 30px; }
  .faq-section { gap: 45px; grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-main > div:last-child { display: none; }
}

@media (max-width: 680px) {
  .site-status { min-height: 56px; padding: 10px 16px 16px; }
  .site-status p { font-size: .7rem; letter-spacing: .07em; }
  .site-header { column-gap: 8px; grid-template-columns: minmax(0, 1fr) auto auto; min-height: 76px; padding: 0 14px; }
  .brand { gap: 9px; min-width: 0; }
  .brand img { height: 46px; width: 46px; }
  .brand strong { font-size: .82rem; white-space: nowrap; }
  .brand small, .header-cta { display: none; }
  .header-actions { display: flex; gap: 7px; grid-column: 2; grid-row: 1; }
  .header-facebook, .header-whatsapp { height: 36px; width: 36px; }
  .header-facebook span { font-size: 1.2rem; }
  .mobile-menu { display: block; grid-column: 3; grid-row: 1; justify-self: end; position: relative; }
  .mobile-menu summary { cursor: pointer; display: grid; gap: 5px; list-style: none; padding: 12px; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary span { background: var(--white); display: block; height: 2px; width: 24px; }
  .mobile-menu > div { background: var(--navy-soft); display: grid; min-width: 220px; padding: 12px; position: absolute; right: 0; top: 52px; }
  .mobile-menu a { border-bottom: 1px solid #314658; font-size: .82rem; font-weight: 800; padding: 15px; text-transform: uppercase; }
  .hero { min-height: auto; padding: 46px 20px 54px; }
  h1 { font-size: clamp(3rem, 15vw, 4.4rem); }
  .hero-actions { display: grid; }
  .hero-benefits { gap: 12px; }
  .hero-visual { min-height: 390px; }
  .hero-image-main { left: 0; width: 88%; }
  .hero-image-small { width: 42%; }
  .quick-facts { grid-template-columns: 1fr; }
  .quick-facts article { border-bottom: 1px solid #dde3e7; border-right: 0; min-height: 92px; }
  .section-shell { padding-inline: 20px; }
  .story { gap: 55px; padding-block: 95px 80px; }
  .story-images { min-height: 410px; }
  .story-mark { height: 72px; left: -8px; top: -18px; width: 72px; }
  .training-section { padding-block: 30px 95px; }
  .section-heading { margin-bottom: 38px; }
  .season-notice {
    gap: 10px;
    grid-template-columns: 1fr;
    margin: 0 0 -12px;
    min-height: 0;
    padding: 25px 24px 28px 29px;
  }
  .season-notice strong { font-size: clamp(1.65rem, 8vw, 2.35rem); }
  .season-notice + .schedule-grid { padding-top: 42px; }
  .schedule-grid { grid-template-columns: 1fr; }
  .schedule-card { min-height: 310px; }
  .membership-row, .membership-row p { align-items: flex-start; flex-direction: column; gap: 10px; }
  .membership-row { gap: 25px; }
  .news-section { padding-block: 90px; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card-featured { grid-column: auto; }
  .news-card, .news-card-featured { grid-template-rows: 240px 1fr; min-height: 500px; }
  .gallery-section { padding-block: 95px; }
  .gallery-grid { grid-auto-rows: 210px; grid-template-columns: 1fr 1fr; }
  .gallery-wide { grid-column: span 2; }
  .trial-section { grid-template-columns: 1fr; margin: 0 20px 95px; }
  .trial-copy { padding: 50px 28px; }
  .trial-section figure { height: 340px; }
  .trial-actions { display: grid; }
  .faq-section { padding-bottom: 95px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main > div:last-child { display: flex; }
  .footer-bottom { gap: 16px; flex-direction: column; }
}

@media (max-width: 360px) {
  .brand span { display: none; }
  .site-header { padding-inline: 12px; }
}

/* Conversion, trust and interaction layer */
body { overflow-x: hidden; }
button, a, summary { -webkit-tap-highlight-color: transparent; }
a:focus-visible, summary:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }

.splash-logo, .brand img, .footer-brand img { border-radius: 50%; object-fit: cover; }
.site-header { backdrop-filter: blur(14px); position: sticky; top: 0; z-index: 50; }
nav a { font-size: .82rem; font-weight: 700; position: relative; }
nav a::after { background: var(--red); bottom: -10px; content: ""; height: 2px; left: 0; position: absolute; transform: scaleX(0); transform-origin: left; transition: transform .25s ease; width: 100%; }
nav a:hover::after { transform: scaleX(1); }
.header-cta, .button { transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.header-cta:hover, .button:hover { transform: translateY(-2px); }
.header-cta:hover, .button-primary:hover { background: #f03945; }
.button-secondary:hover { border-color: var(--white); }

.hero-proof { align-items: center; border-left: 2px solid var(--red); display: flex; gap: 14px; margin-top: 28px; padding-left: 16px; }
.hero-proof span { color: #9fb4c3; font-size: .72rem; line-height: 1.5; }
.hero-proof b { color: var(--white); font-size: .78rem; }
.hero-proof small { color: #c9d6df; font-size: .68rem; font-weight: 800; margin-left: 8px; }
.hero-image-main { bottom: 0; height: 82%; left: 0; width: 94%; }
.hero-image-main img { object-position: center; }
.hero-image-small { height: 38%; width: 34%; }

.trust-strip { align-items: center; border-bottom: 1px solid #ccd3d7; display: grid; gap: 35px; grid-template-columns: 1fr auto 1fr; padding-block: 46px; }
.trust-strip > p { font-size: .75rem; font-weight: 900; letter-spacing: .13em; margin: 0; text-transform: uppercase; }
.trust-strip > span { color: #687781; font-size: .78rem; line-height: 1.5; max-width: 230px; }
.trust-logos { align-items: center; display: flex; gap: 24px; }
.trust-logos figure { align-items: center; display: flex; gap: 8px; margin: 0; }
.trust-logos img { border-radius: 50%; height: 46px; object-fit: contain; width: 46px; }
.trust-logos figcaption { color: #596975; font-size: .68rem; font-weight: 800; max-width: 80px; text-transform: uppercase; }

.audience-section { padding-block: 135px 40px; }
.audience-grid { display: grid; gap: 14px; grid-template-columns: repeat(3, 1fr); }
.audience-card { color: var(--white); min-height: 480px; overflow: hidden; position: relative; }
.audience-card::after { background: linear-gradient(180deg, transparent 25%, rgba(5, 15, 25, .94) 100%); content: ""; inset: 0; position: absolute; }
.audience-card > img { height: 100%; object-fit: cover; position: absolute; transition: transform .55s ease; width: 100%; }
.audience-card:hover > img { transform: scale(1.045); }
.audience-card > span { background: var(--red); font-size: .68rem; font-weight: 900; left: 22px; padding: 9px 11px; position: absolute; top: 22px; z-index: 2; }
.audience-card > div { bottom: 0; left: 0; padding: 30px; position: absolute; right: 0; z-index: 2; }
.audience-card p { color: #f1aeb3; font-size: .68rem; font-weight: 850; letter-spacing: .12em; margin: 0 0 9px; text-transform: uppercase; }
.audience-card h3 { font-size: 2.2rem; letter-spacing: -.045em; margin: 0 0 12px; text-transform: uppercase; }
.audience-card strong { color: #c7d4dc; display: block; font-size: .82rem; line-height: 1.5; max-width: 270px; }

.trainer-section { background: var(--navy-soft); color: var(--white); display: grid; grid-template-columns: .9fr 1.1fr; margin: 0 auto 125px; max-width: 1240px; min-height: 650px; }
.trainer-media { min-height: 650px; overflow: hidden; position: relative; }
.trainer-media > img { height: 100%; object-fit: cover; width: 100%; }
.trainer-media::after { background: linear-gradient(180deg, transparent 60%, rgba(7, 21, 36, .4)); content: ""; inset: 0; position: absolute; }
.trainer-rank { align-items: center; background: var(--red); bottom: 0; display: flex; gap: 12px; padding: 24px 30px; position: absolute; right: 0; z-index: 2; }
.trainer-rank strong { font-size: 3.4rem; letter-spacing: -.08em; line-height: .8; }
.trainer-rank span { font-size: .68rem; font-weight: 850; letter-spacing: .1em; line-height: 1.4; text-transform: uppercase; }
.trainer-copy { align-self: center; padding: clamp(50px, 6vw, 85px); }
.trainer-copy h2 { font-size: clamp(2.1rem, 3vw, 3.1rem); line-height: 1.04; }
.trainer-copy > p:not(.section-kicker) { color: #b7c7d2; font-size: 1rem; line-height: 1.75; margin: 28px 0 0; max-width: 580px; }
.trainer-principle { color: var(--white); font-weight: 850; }
.trainer-credentials { display: grid; grid-template-columns: 1fr 1fr; list-style: none; margin: 35px 0 34px; padding: 0; }
.trainer-credentials li { border-top: 1px solid #3b5265; display: grid; padding: 17px 5px; }
.trainer-credentials strong { color: var(--white); font-size: .83rem; text-transform: uppercase; }
.trainer-credentials span { color: #8fa6b6; font-size: .75rem; margin-top: 3px; }
.text-link-light { color: var(--white); }
.trainer-copy > .text-link { font-size: clamp(1.05rem, 1.45vw, 1.25rem); letter-spacing: .015em; }

.news-card { transition: background .25s ease, transform .25s ease; }
.news-card:hover { background: #17334d; transform: translateY(-5px); }
.news-more { color: #bfcfd9; display: block; font-size: .68rem; font-weight: 850; margin-top: 24px; text-transform: uppercase; }
.trial-points { color: #dbe6ec; display: flex; flex-wrap: wrap; font-size: .72rem; gap: 18px; list-style: none; margin: 24px 0 0; padding: 0; }
.trial-points li::before { color: var(--red); content: "✓"; font-weight: 900; margin-right: 7px; }
.footer-bottom a { color: #6f8493; }
.footer-bottom a:hover { color: var(--white); }
.mobile-trial-cta { display: none; }

@media (max-width: 960px) {
  .trust-strip { gap: 24px; grid-template-columns: 1fr auto; }
  .trust-strip > span { display: none; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .audience-card:last-child { grid-column: span 2; min-height: 390px; }
  .trainer-section { grid-template-columns: 1fr; margin-inline: 30px; }
  .trainer-media { min-height: 580px; }
}

@media (max-width: 680px) {
  .trust-strip { align-items: start; grid-template-columns: 1fr; padding-block: 38px; }
  .trust-logos { justify-content: space-between; width: 100%; }
  .trust-logos figure { display: grid; justify-items: center; text-align: center; }
  .trust-logos img { height: 42px; width: 42px; }
  .audience-section { padding-block: 90px 20px; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card, .audience-card:last-child { grid-column: auto; min-height: 430px; }
  .trainer-section { margin: 0 20px 90px; }
  .trainer-media { min-height: 440px; }
  .trainer-copy { padding: 48px 28px; }
  .trainer-credentials { grid-template-columns: 1fr; }
  .mobile-trial-cta { background: var(--red); bottom: 12px; box-shadow: 0 10px 30px rgba(0,0,0,.28); color: var(--white); display: flex; font-size: .78rem; font-weight: 900; justify-content: space-between; left: 14px; padding: 16px 18px; position: fixed; right: 14px; text-transform: uppercase; z-index: 45; }
  footer { padding-bottom: 72px; }
}

/* Professional multi-page content system */
.page-hero {
  background: var(--navy);
  color: var(--white);
  display: grid;
  min-height: 460px;
  overflow: hidden;
  padding: 90px 5vw;
  position: relative;
}
.page-hero::before { background: var(--red); content: ""; height: 340px; opacity: .12; position: absolute; right: -100px; top: -180px; transform: rotate(24deg); width: 480px; }
.page-hero-with-image { grid-template-columns: 1.08fr .92fr; padding: 0; }
.page-hero-copy { align-self: center; max-width: 820px; padding: 90px 5vw; position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(3.3rem, 6vw, 6.7rem); max-width: 900px; }
.page-hero-copy > p:last-child { color: #b7c8d3; font-size: clamp(1rem, 1.3vw, 1.18rem); line-height: 1.75; margin: 30px 0 0; max-width: 680px; }
.page-hero figure { margin: 0; min-height: 560px; overflow: hidden; position: relative; }
.page-hero figure::after { background: linear-gradient(90deg, var(--navy), transparent 40%); content: ""; inset: 0; position: absolute; }
.page-hero figure img { height: 100%; object-fit: cover; width: 100%; }

.content-section { padding-block: 125px; }
.dark-content-section, .team-gallery-section, .download-section, .older-news-section { background: var(--navy); color: var(--white); padding-block: 125px; }
.map-link { border-bottom: 1px solid #bcc7ce; display: inline-block; font-size: .78rem; font-weight: 850; margin-top: 32px; padding-bottom: 7px; text-transform: uppercase; }
.discipline-grid { display: grid; gap: 12px; grid-template-columns: repeat(3, 1fr); }
.discipline-grid article { background: var(--navy-soft); min-height: 260px; padding: 34px; }
.discipline-grid span { color: var(--red); font-size: .7rem; font-weight: 900; }
.discipline-grid h3 { font-size: 1.45rem; margin: 52px 0 12px; text-transform: uppercase; }
.discipline-grid p { color: #9fb2c0; font-size: .84rem; line-height: 1.65; margin: 0; }
.price-grid { display: grid; gap: 14px; grid-template-columns: repeat(3, 1fr); }
.price-grid article { background: var(--white); border-top: 4px solid var(--navy); display: grid; min-height: 250px; padding: 35px; }
.price-grid article:first-child { border-color: var(--red); }
.price-grid p { font-size: .8rem; font-weight: 900; margin: 0; text-transform: uppercase; }
.price-grid strong { align-self: end; color: var(--red); font-size: 3rem; letter-spacing: -.06em; }
.price-grid span { color: #75828c; font-size: .75rem; }
.fee-note { align-items: center; border-bottom: 1px solid #cbd2d6; display: flex; justify-content: space-between; padding: 28px 5px; }
.fee-note strong { font-size: .9rem; text-transform: uppercase; }
.fee-note span { color: #687781; font-size: .82rem; }
.fee-source-note { border-bottom: 1px solid #cbd2d6; color: #63727c; font-size: .8rem; line-height: 1.7; padding: 20px 5px; }
.fee-source-note summary { color: var(--ink); cursor: pointer; font-weight: 850; text-transform: uppercase; }
.fee-source-note p { max-width: 850px; }
.starter-section { align-items: center; display: grid; gap: 70px; grid-template-columns: .9fr 1.1fr; padding-bottom: 130px; }
.starter-section figure { margin: 0; min-height: 520px; overflow: hidden; }
.starter-section figure img { height: 100%; object-fit: cover; width: 100%; }
.starter-section > div > p:not(.section-kicker) { color: #64717b; line-height: 1.75; }
.starter-section ul { display: grid; gap: 13px; list-style: none; margin: 28px 0 0; padding: 0; }
.starter-section li { border-top: 1px solid #cbd2d6; font-size: .78rem; font-weight: 850; padding-top: 13px; text-transform: uppercase; }
.starter-section li::before { color: var(--red); content: "✓"; margin-right: 10px; }

.trial-banner { align-items: center; background: var(--navy-soft); color: var(--white); display: grid; gap: 70px; grid-template-columns: 1.2fr .8fr; margin-block: 120px; padding: 65px; }
.trial-banner h2 { font-size: clamp(2rem, 4vw, 4.1rem); }
.trial-banner p:not(.section-kicker) { color: #adc0cc; line-height: 1.7; max-width: 680px; }
.trial-banner .trial-actions { justify-content: flex-end; }

.leadership-section { align-items: center; display: grid; gap: 50px; grid-template-columns: 1fr .8fr; padding-block: 120px; }
.leadership-rank { align-items: center; background: var(--red); color: var(--white); display: flex; gap: 10px; height: 150px; justify-content: center; width: 150px; }
.leadership-rank strong { font-size: 4rem; letter-spacing: -.09em; line-height: .8; }
.leadership-rank span { font-size: .67rem; font-weight: 900; line-height: 1.4; text-transform: uppercase; }
.leadership-section h2, .team-grid h3 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
  text-transform: uppercase;
}
.leadership-section h2 { margin: 0 0 17px; }
.leadership-section > div > p:not(.section-kicker) { color: #61707a; line-height: 1.75; max-width: 700px; }
.leadership-section > ul { display: grid; grid-template-columns: 1fr 1fr; list-style: none; margin: 0; padding: 0; }
.leadership-section > ul li { border-top: 1px solid #c9d0d4; display: flex; flex-wrap: wrap; gap: .32rem; padding: 16px 5px; }
.leadership-section > ul strong,
.leadership-section > ul span {
  color: #5d6b75;
  font-size: .9rem;
  font-weight: 800;
  margin: 0;
  text-transform: none;
}
.team-section { padding-bottom: 130px; }
.team-grid { display: grid; gap: 12px; grid-template-columns: repeat(3, 1fr); }
.team-grid article { background: var(--white); border-top: 3px solid var(--navy); min-height: 240px; padding: 30px; }
.team-grid article.in-memoriam { background: #e8e4dc; border-color: #7d8489; }
.team-grid article > span { color: var(--red); font-size: .68rem; font-weight: 900; }
.team-grid h3 { margin: 44px 0 17px; }
.team-grid ul { color: #5d6b75; display: grid; font-size: .9rem; font-weight: 800; gap: 7px; list-style: none; margin: 0; padding: 0; }
.team-photo-strip { display: grid; gap: 12px; grid-auto-flow: column; grid-auto-columns: minmax(250px, 1fr); overflow-x: auto; padding-bottom: 15px; scroll-snap-type: x mandatory; }
.team-photo-strip figure { height: 360px; margin: 0; overflow: hidden; scroll-snap-align: start; }
.team-photo-strip img { height: 100%; object-fit: cover; width: 100%; }

.news-archive, .gallery-archive, .competition-reports { padding-block: 120px; }
.archive-intro { margin-bottom: 60px; max-width: 900px; }
.archive-intro h2 { font-size: clamp(2.7rem, 5vw, 5.4rem); }
.archive-intro > p:last-of-type { color: #65747f; line-height: 1.7; max-width: 670px; }
.latest-articles { display: grid; gap: 25px; }
.archive-card { background: var(--white); display: grid; grid-template-columns: .95fr 1.05fr; min-height: 470px; }
.archive-card:nth-child(even) { grid-template-columns: 1.05fr .95fr; }
.archive-card:nth-child(even) .article-images { order: 2; }
.archive-card-featured { background: var(--navy-soft); color: var(--white); min-height: 600px; }
.archive-card-copy { align-self: center; padding: clamp(35px, 5vw, 70px); }
.archive-card h2 { font-size: clamp(1.8rem, 3vw, 3.25rem); }
.archive-number { color: var(--red) !important; font-size: .7rem !important; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.article-paragraph { color: #63727c; font-size: .9rem; line-height: 1.72; white-space: pre-line; }
.archive-card-featured .article-paragraph { color: #b9c8d2; }
.article-images { display: grid; gap: 4px; min-height: 320px; overflow: hidden; }
.article-images-1 { grid-template-columns: 1fr; }
.article-images-2 { grid-template-columns: 1fr 1fr; }
.article-images-3 { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; }
.article-images-3 img:first-child { grid-row: span 2; }
.article-images img { height: 100%; min-height: 180px; object-fit: cover; width: 100%; }
.article-links { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.article-links a { border: 1px solid #c4ccd1; font-size: .7rem; font-weight: 850; padding: 9px 12px; text-transform: uppercase; }
.archive-intro-light > p:last-of-type { color: #a4b7c4; }
.archive-list { border-top: 1px solid #31475a; }
.archive-list details { border-bottom: 1px solid #31475a; }
.archive-list summary { align-items: center; cursor: pointer; display: grid; gap: 25px; grid-template-columns: 42px 1fr 30px; list-style: none; padding: 25px 4px; }
.archive-list summary::-webkit-details-marker { display: none; }
.archive-list summary span { color: var(--red); font-size: .67rem; font-weight: 900; }
.archive-list summary strong { font-size: .9rem; text-transform: uppercase; }
.archive-list summary i { color: var(--red); font-size: 1.5rem; font-style: normal; }
.archive-list details[open] summary i { transform: rotate(45deg); }
.archive-detail { display: grid; gap: 40px; grid-template-columns: .9fr 1.1fr; padding: 10px 0 55px 65px; }
.archive-detail .article-paragraph { color: #aebfca; }

.gallery-archive-block { border-top: 1px solid #bdc7cd; }
.gallery-archive-block:last-child { border-bottom: 1px solid #bdc7cd; }
.gallery-archive-block > summary { cursor: pointer; display: flex; justify-content: space-between; list-style: none; padding: 38px 5px; }
.gallery-archive-block > summary::-webkit-details-marker { display: none; }
.gallery-archive-block summary span { color: var(--red); font-size: .68rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.gallery-archive-block summary h2 { font-size: clamp(2rem, 4vw, 4.1rem); margin-top: 10px; }
.gallery-archive-block summary p { color: #697781; font-size: .78rem; }
.gallery-archive-block summary i { align-self: center; color: var(--red); font-size: 2rem; font-style: normal; }
.gallery-archive-block[open] summary i { transform: rotate(45deg); }
.full-gallery-grid { columns: 4 220px; column-gap: 10px; padding-bottom: 55px; }
.full-gallery-grid a { break-inside: avoid; display: block; margin-bottom: 10px; overflow: hidden; position: relative; }
.full-gallery-grid img { width: 100%; }
.full-gallery-grid a > span { background: rgba(5,15,25,.86); bottom: 8px; color: var(--white); font-size: .63rem; font-weight: 850; left: 8px; opacity: 0; padding: 7px 9px; position: absolute; transition: opacity .2s ease; text-transform: uppercase; }
.full-gallery-grid a:hover > span { opacity: 1; }

.values-band { background: var(--white); }
.values-band > div { display: grid; grid-template-columns: repeat(3, 1fr); }
.values-band article { border-right: 1px solid #d7dde1; min-height: 210px; padding: 40px; }
.values-band article:last-child { border-right: 0; }
.values-band span { color: var(--red); font-size: .68rem; font-weight: 900; }
.values-band strong { display: block; margin-top: 35px; text-transform: uppercase; }
.values-band p { color: #697781; font-size: .8rem; line-height: 1.55; }
.history-section { display: grid; gap: 85px; grid-template-columns: 230px 1fr; padding-block: 130px; }
.history-section aside { border-top: 3px solid var(--red); display: flex; flex-direction: column; padding-top: 20px; }
.history-section aside strong { font-size: 1.2rem; }
.history-section aside span { color: #6b7882; font-size: .78rem; margin-top: 8px; }
.history-section article h2 { margin-bottom: 42px; }
.history-section article p { color: #5f6f79; font-size: .98rem; line-height: 1.85; }
.history-section article p:first-of-type { color: var(--ink); font-size: 1.15rem; }
.history-photo-grid { display: grid; gap: 10px; grid-template-columns: repeat(4, 1fr); padding-bottom: 120px; }
.history-photo-grid figure { height: 260px; margin: 0; overflow: hidden; }
.history-photo-grid img { height: 100%; object-fit: cover; width: 100%; }
.principle-section { background: var(--navy); color: var(--white); padding-block: 120px; }
.principle-section h2 { max-width: 1050px; }
.principle-section p:not(.section-kicker) { color: #b2c4cf; font-size: 1.05rem; line-height: 1.8; max-width: 830px; }
.principle-section span { color: #f2aab0; display: block; font-size: .74rem; font-weight: 850; margin-top: 28px; text-transform: uppercase; }
.partner-section { padding-block: 130px; }
.partner-logo-grid { align-items: center; display: grid; gap: 20px; grid-template-columns: repeat(6, 1fr); margin-bottom: 70px; }
.partner-logo-grid figure { background: var(--white); display: grid; height: 150px; margin: 0; padding: 20px; place-items: center; }
.partner-logo-grid img { max-height: 100%; object-fit: contain; }
.supporter-grid { border-top: 1px solid #c9d1d6; display: grid; grid-template-columns: repeat(3, 1fr); }
.supporter-grid article { border-bottom: 1px solid #c9d1d6; display: flex; gap: 25px; padding: 22px 4px; }
.supporter-grid span { color: var(--red); font-size: .68rem; font-weight: 900; }
.supporter-grid strong { font-size: .85rem; text-transform: uppercase; }

.video-section { padding-block: 125px; }
.video-grid { display: grid; gap: 14px; grid-template-columns: repeat(3, 1fr); }
.video-grid a { background: var(--navy); color: var(--white); min-height: 470px; overflow: hidden; }
.video-grid img { height: 245px; object-fit: cover; width: 100%; }
.video-grid a > div { padding: 28px; }
.video-grid span { color: #f1a8ad; font-size: .66rem; font-weight: 900; text-transform: uppercase; }
.video-grid h2 { font-size: 1.7rem; margin: 28px 0; }
.video-grid strong { font-size: .7rem; text-transform: uppercase; }
.download-grid { display: grid; gap: 14px; grid-template-columns: repeat(3, 1fr); }
.download-grid a { background: var(--navy-soft); min-height: 330px; padding: 34px; }
.download-grid span { color: var(--red); font-size: .66rem; font-weight: 900; text-transform: uppercase; }
.download-grid h3 { font-size: 1.6rem; margin: 55px 0 14px; text-transform: uppercase; }
.download-grid p { color: #9fb2c0; font-size: .83rem; line-height: 1.65; }
.download-grid strong { display: block; font-size: .7rem; margin-top: 30px; text-transform: uppercase; }
.code-of-conduct { display: grid; gap: 80px; grid-template-columns: .8fr 1.2fr; padding-block: 130px; }
.code-of-conduct article p { color: #61707a; line-height: 1.75; }
.code-of-conduct blockquote { border-left: 3px solid var(--red); font-size: 1.3rem; font-weight: 750; line-height: 1.55; margin: 32px 0; padding-left: 25px; }

.contact-section { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; padding-block: 120px; }
.contact-card { background: var(--navy-soft); color: var(--white); padding: 60px; }
.contact-card h2 { font-size: clamp(2.8rem, 5vw, 5rem); }
.contact-card > p:not(.section-kicker) { color: #adc0cc; line-height: 1.75; }
.contact-card .button { margin-top: 28px; }
.contact-details { background: var(--white); display: grid; grid-template-columns: 1fr 1fr; }
.contact-details article { display: flex; flex-direction: column; min-height: 210px; padding: 35px; }
.contact-details article:nth-child(1), .contact-details article:nth-child(2) { border-bottom: 1px solid #d6dde1; }
.contact-details article:nth-child(odd) { border-right: 1px solid #d6dde1; }
.contact-details span { color: var(--red); font-size: .68rem; font-weight: 900; margin-bottom: 28px; text-transform: uppercase; }
.contact-details a { font-size: 1.05rem; font-weight: 800; line-height: 1.55; }
.contact-details p, .contact-details small { color: #677681; font-size: .78rem; line-height: 1.65; }
.office-section { background: var(--navy); color: var(--white); padding-block: 95px; }
.office-section > div { display: grid; gap: 60px; grid-template-columns: .8fr 1fr .8fr; }
.office-section h2 { font-size: 3.3rem; }
.office-section dl { margin: 0; }
.office-section dl div { border-top: 1px solid #344b5d; display: flex; justify-content: space-between; padding: 14px 0; }
.office-section dt, .office-section dd { font-size: .8rem; }
.office-section dd { color: #b4c4cf; margin: 0; }
.office-section > div > p { color: #9fb3c0; font-size: .82rem; line-height: 1.75; }
.legal-section { display: grid; gap: 80px; grid-template-columns: .75fr 1.25fr; padding-block: 130px; }
.legal-heading { position: sticky; top: 130px; align-self: start; }
.legal-heading h2 { font-size: 2.5rem; }
.legal-heading > p:last-child { color: #687781; }
.legal-copy p { color: #5d6c76; font-size: .86rem; line-height: 1.75; white-space: pre-line; }
.legal-copy p:first-child { color: var(--ink); font-weight: 750; }

.competition-reports > article { border-top: 1px solid #bec8ce; display: grid; gap: 45px; grid-template-columns: .75fr 1fr 1fr; padding-block: 55px; }
.report-heading { display: grid; gap: 25px; grid-template-columns: 35px 1fr; }
.report-heading span { color: var(--red); font-size: .68rem; font-weight: 900; padding-top: 8px; }
.report-heading h2 { font-size: clamp(1.7rem, 2.6vw, 2.8rem); }
.competition-reports .article-images { min-height: 260px; }
.report-copy p { color: #5f6e78; font-size: .86rem; line-height: 1.72; white-space: pre-line; }

@media (max-width: 1100px) {
  .site-header nav { gap: 18px; }
  .site-header nav a { font-size: .75rem; }
  .leadership-section { grid-template-columns: 1fr .8fr; }
  .leadership-section > ul { grid-column: auto; }
  .archive-card { grid-template-columns: 1fr; }
  .archive-card:nth-child(even) { grid-template-columns: 1fr; }
  .archive-card:nth-child(even) .article-images { order: 0; }
}

@media (max-width: 960px) {
  .page-hero-with-image { grid-template-columns: 1fr; }
  .page-hero figure { min-height: 440px; }
  .page-hero figure::after { background: linear-gradient(180deg, var(--navy), transparent 35%); }
  .discipline-grid, .team-grid, .download-grid { grid-template-columns: 1fr 1fr; }
  .starter-section, .history-section, .code-of-conduct, .legal-section { grid-template-columns: 1fr; }
  .trial-banner { margin-inline: 30px; }
  .archive-detail { grid-template-columns: 1fr; padding-left: 0; }
  .partner-logo-grid { grid-template-columns: repeat(3, 1fr); }
  .video-grid { grid-template-columns: 1fr; }
  .video-grid a { display: grid; grid-template-columns: 1fr 1fr; min-height: 300px; }
  .video-grid img { height: 100%; }
  .office-section > div { grid-template-columns: 1fr 1fr; }
  .office-section > div > p { grid-column: span 2; }
  .legal-heading { position: static; }
  .competition-reports > article { grid-template-columns: 1fr 1fr; }
  .report-heading { grid-column: span 2; }
}

@media (max-width: 680px) {
  .page-hero-copy { padding: 65px 20px; }
  .page-hero h1 { font-size: clamp(3rem, 14vw, 4.6rem); }
  .page-hero figure { min-height: 330px; }
  .content-section, .news-archive, .gallery-archive, .competition-reports, .video-section, .partner-section { padding-block: 85px; }
  .discipline-grid, .price-grid, .team-grid, .download-grid { grid-template-columns: 1fr; }
  .fee-note { align-items: flex-start; flex-direction: column; gap: 8px; }
  .starter-section { gap: 40px; padding-bottom: 85px; }
  .starter-section figure { min-height: 360px; }
  .trial-banner { gap: 35px; grid-template-columns: 1fr; margin: 80px 20px; padding: 42px 25px; }
  .trial-banner .trial-actions { display: grid; justify-content: stretch; }
  .leadership-section { grid-template-columns: 1fr; padding-block: 85px; }
  .leadership-section > ul { grid-column: auto; grid-template-columns: 1fr; }
  .archive-card { min-height: auto; }
  .article-images { min-height: 260px; }
  .archive-card-copy { padding: 30px 24px; }
  .archive-list summary { gap: 12px; grid-template-columns: 30px 1fr 24px; }
  .archive-list summary strong { font-size: .78rem; line-height: 1.4; }
  .archive-detail { gap: 25px; }
  .full-gallery-grid { columns: 2 140px; }
  .values-band > div, .supporter-grid { grid-template-columns: 1fr; }
  .values-band article { border-bottom: 1px solid #d7dde1; border-right: 0; min-height: 170px; }
  .history-section { gap: 45px; padding-block: 85px; }
  .history-photo-grid { grid-template-columns: 1fr 1fr; padding-bottom: 85px; }
  .partner-logo-grid { grid-template-columns: 1fr 1fr; }
  .video-grid a { display: block; }
  .video-grid img { height: 230px; }
  .code-of-conduct { gap: 45px; padding-block: 85px; }
  .contact-section { grid-template-columns: 1fr; padding-block: 80px; }
  .contact-card { padding: 42px 26px; }
  .contact-details { grid-template-columns: 1fr; }
  .contact-details article { border-bottom: 1px solid #d6dde1 !important; border-right: 0 !important; min-height: 170px; }
  .office-section > div { grid-template-columns: 1fr; }
  .office-section > div > p { grid-column: auto; }
  .legal-section { gap: 45px; padding-block: 85px; }
  .competition-reports > article { grid-template-columns: 1fr; }
  .report-heading { grid-column: auto; }
}
