:root {
  --navy: #031a34;
  --navy-2: #062a4d;
  --ink: #071b37;
  --muted: #65758b;
  --line: #dbe3ed;
  --surface: #ffffff;
  --soft: #f3f7fb;
  --lime: #a7d817;
  --lime-dark: #7eac00;
  --teal: #0d7b8a;
  --coral: #e76558;
  --shadow: 0 24px 60px rgba(4, 25, 52, 0.16);
  --radius: 8px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--soft);
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 2.6vw, 42px);
  min-height: 88px;
  padding: 12px clamp(20px, 4vw, 54px);
  color: #fff;
  background: rgba(2, 14, 31, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  display: block;
  width: clamp(112px, 8.8vw, 138px);
  height: auto;
  max-height: 52px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  overflow: hidden;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  line-height: 1.1;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 1.8vw, 32px);
  min-width: 0;
  width: 100%;
  max-width: 100%;
  justify-self: center;
}

.main-nav > a,
.nav-item > a,
.nav-item > button {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.main-nav > a::after,
.nav-item > a::after,
.nav-item > button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--lime);
  transition: transform 0.2s ease;
}

.main-nav > a:hover,
.main-nav > a:focus-visible,
.nav-item > a:hover,
.nav-item > a:focus-visible,
.nav-item > button:hover,
.nav-item > button:focus-visible {
  color: var(--lime);
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after,
.main-nav > a.nav-current::after,
.nav-item:hover > a::after,
.nav-item:focus-within > a::after,
.nav-item:hover > button::after,
.nav-item:focus-within > button::after {
  transform: scaleX(1);
}

.main-nav > a.nav-current,
.nav-item > button.nav-current {
  color: var(--lime);
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: -22px;
  z-index: 30;
  display: grid;
  min-width: 292px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(219, 227, 237, 0.95);
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(3, 18, 39, 0.18);
  backdrop-filter: blur(16px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.submenu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 34px;
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(219, 227, 237, 0.95);
  border-left: 1px solid rgba(219, 227, 237, 0.95);
}

.submenu a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px 0 18px;
  color: #23324b;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.25;
  text-transform: none;
  white-space: nowrap;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.submenu a::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--lime);
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.submenu a:hover,
.submenu a:focus-visible {
  color: var(--navy);
  background: #eef6dc;
  transform: translateX(2px);
}

.submenu .submenu-highlight {
  color: #278369;
}

.submenu-separator {
  display: block;
  height: 1px;
  margin: 8px 8px;
  background: var(--line);
}

.submenu a:hover::before,
.submenu a:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.has-submenu:hover .submenu,
.has-submenu.is-open .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav .nav-highlight {
  min-height: 34px;
  padding: 0 12px;
  color: #071b37 !important;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 10px 24px rgba(126, 172, 0, 0.22);
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  text-shadow: none;
}

.main-nav .nav-highlight::after {
  display: none;
}

.main-nav .nav-highlight:hover,
.main-nav .nav-highlight:focus-visible {
  color: #071b37 !important;
  background: #b9e329;
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.site-header .button {
  min-height: 42px;
  padding-right: 14px;
  padding-left: 14px;
  font-size: 11px;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #94c900, #6f9900);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 14px 30px rgba(111, 153, 0, 0.24);
  text-shadow: 0 1px 1px rgba(0, 20, 18, 0.28);
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.025);
}

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

.compact {
  min-height: 38px;
  padding: 0 16px;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 630px;
  padding-top: 92px;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  transform: scale(1.02);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-position: center right;
  background-size: cover;
  transition: opacity 1.4s ease;
  will-change: opacity;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide-1 {
  background-image: url("assets/slide1.webp");
}

.hero-slide-2 {
  background-image: url("assets/slide2.webp");
}

.hero-slide-3 {
  background-image: url("assets/slide3.jpg");
}

.hero-slide-4 {
  background-image: url("assets/slide4.jpg");
}

.hero-slide-5 {
  background-image: url("assets/slide5.jpg");
}

.hero-slide-6 {
  background-image: url("assets/pickleball-action.png");
}

.hero-arrow {
  position: absolute;
  top: 53%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  background: rgba(2, 16, 34, 0.52);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(2, 16, 34, 0.78);
}

.hero-arrow-prev {
  left: clamp(14px, 2vw, 30px);
}

.hero-arrow-next {
  right: clamp(14px, 2vw, 30px);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 18, 39, 0.62) 0%, rgba(3, 18, 39, 0.36) 34%, rgba(3, 18, 39, 0.08) 68%, rgba(3, 18, 39, 0.02) 100%),
    linear-gradient(0deg, rgba(3, 18, 39, 0.12), rgba(3, 18, 39, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0 150px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 610px;
  margin: 0;
  font-size: clamp(52px, 7vw, 86px);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.signature {
  width: fit-content;
  margin: 16px 0 30px;
  color: var(--lime);
  font-family: "Segoe Print", "Bradley Hand", cursive;
  font-size: clamp(28px, 4vw, 43px);
  line-height: 1;
  transform: rotate(-3deg);
  border-bottom: 4px solid var(--lime);
}

.hero-copy {
  max-width: 390px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.55;
}

.stats-panel {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  justify-content: center;
  width: min(var(--max), calc(100% - 40px));
  margin: -70px auto 0;
  padding: 26px 24px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 92px;
  padding: 0 14px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  font-size: clamp(30px, 4vw, 38px);
  line-height: 1;
  font-weight: 950;
}

.stat span:not(.stat-icon),
.stat small {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.stat small {
  color: var(--muted);
  font-weight: 700;
  text-transform: none;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.intro-section {
  padding: 34px 0 56px;
}

.section-heading {
  margin-bottom: 22px;
}

.centered {
  text-align: center;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 span {
  color: var(--lime-dark);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  padding: 0 40px;
}

.choice-card,
.event-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 44px rgba(4, 25, 52, 0.1);
}

.card-image {
  height: 132px;
  background-size: cover;
  background-position: center;
}

.image-learn {
  background-image: url("assets/home-apprendre.webp");
  background-position: center 54%;
}

.image-team {
  background-image: url("assets/tournee/slide3.jpg");
  background-position: center 58%;
}

.image-club {
  background-image: url("assets/home-vie-club.webp");
  background-position: center 56%;
}

.floating-icon {
  position: absolute;
  top: -18px;
  left: -8px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #fff;
  background: var(--navy);
  border: 4px solid #fff;
  border-radius: 50%;
  font-size: 23px;
}

.card-body {
  padding: 20px 22px 22px;
}

.card-body h3,
.event-body h3,
.coach-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
  text-transform: uppercase;
}

.card-body p {
  min-height: 72px;
  margin: 10px 0 16px;
  color: #20324b;
  font-size: 15px;
  line-height: 1.45;
}

.card-body a {
  color: var(--lime-dark);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.events-section {
  padding: 36px max(20px, calc((100vw - var(--max)) / 2)) 32px;
  color: #fff;
  background: linear-gradient(135deg, #02162d, #06284c 58%, #031a34);
}

.section-bar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.section-bar h2 {
  color: #fff;
}

.section-bar span {
  display: block;
  width: 30px;
  height: 4px;
  margin-top: 8px;
  background: var(--lime);
}

.section-bar a {
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

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

.event-card {
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.event-visual {
  min-height: 112px;
  display: flex;
  align-items: center;
  padding: 14px;
  color: #fff;
  background-size: cover;
  background-position: center;
}

.event-visual span {
  max-width: 150px;
  font-size: 22px;
  line-height: 1.05;
  font-weight: 950;
  text-transform: uppercase;
}

.event-orange {
  background-image: linear-gradient(90deg, rgba(185, 72, 13, 0.86), rgba(185, 72, 13, 0.25)), url("https://images.unsplash.com/photo-1545809074-59472b3f5ecc?auto=format&fit=crop&w=600&q=80");
}

.event-blue {
  background-image: linear-gradient(90deg, rgba(0, 93, 145, 0.86), rgba(0, 93, 145, 0.22)), url("https://images.unsplash.com/photo-1531315630201-bb15abeb1653?auto=format&fit=crop&w=600&q=80");
}

.event-pink {
  background-image: linear-gradient(90deg, rgba(211, 82, 105, 0.86), rgba(211, 82, 105, 0.25)), url("https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?auto=format&fit=crop&w=600&q=80");
}

.event-green {
  background-image: linear-gradient(90deg, rgba(43, 111, 53, 0.88), rgba(43, 111, 53, 0.25)), url("https://images.unsplash.com/photo-1511795409834-ef04bbd61622?auto=format&fit=crop&w=600&q=80");
}

.event-cyan {
  background-image: linear-gradient(90deg, rgba(5, 100, 130, 0.86), rgba(5, 100, 130, 0.22)), url("https://images.unsplash.com/photo-1554068865-24cecd4e34b8?auto=format&fit=crop&w=600&q=80");
}

.event-body {
  min-height: 118px;
  padding: 16px 18px 18px;
  color: var(--ink);
  background: #fff;
}

.event-body time {
  display: block;
  margin-bottom: 10px;
  color: #172944;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.event-body h3 {
  font-size: 14px;
  text-transform: none;
}

.event-body p {
  min-height: 36px;
  margin: 4px 0 8px;
  color: #263a55;
  font-size: 13px;
  line-height: 1.35;
}

.event-body a {
  font-size: 24px;
  line-height: 1;
}

.event-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.event-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.event-dots .active {
  background: var(--lime);
}

.team-section {
  display: grid;
  grid-template-columns: minmax(260px, 300px) 1fr;
  gap: clamp(44px, 5vw, 72px);
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 34px;
  align-items: center;
}

.team-intro h2 {
  max-width: 300px;
}

.team-intro p {
  margin: 18px 0 22px;
  color: #20324b;
  font-size: 14px;
  line-height: 1.45;
}

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

.coach-card {
  min-width: 0;
}

.coach-card img {
  width: 100%;
  aspect-ratio: 1 / 1.04;
  object-fit: cover;
  filter: grayscale(1);
  border-radius: 6px;
  background: #dfe6ef;
}

.coach-card h3 {
  position: relative;
  margin-top: 10px;
  padding-bottom: 8px;
  font-size: 12px;
}

.coach-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 22px;
  height: 3px;
  background: var(--lime);
}

.partners-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 14px 0 36px;
  text-align: center;
}

.equipment-section {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px) auto;
  align-items: center;
  gap: 30px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 36px;
  padding: 26px 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(4, 25, 52, 0.08);
}

.pickleball-section {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 460px) auto;
  align-items: center;
  gap: 30px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 36px;
  padding: 26px 30px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(3, 26, 52, 0.92), rgba(8, 82, 91, 0.84)),
    url("https://images.unsplash.com/photo-1626224583764-f87db24ac4ea?auto=format&fit=crop&w=1300&q=80") center / cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(4, 25, 52, 0.16);
}

.pickleball-section h2,
.pickleball-section p {
  color: #fff;
}

.pickleball-section p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.45;
}

.dark {
  margin-bottom: 8px;
  color: var(--lime-dark);
}

.equipment-section p:not(.eyebrow) {
  margin: 0;
  color: #20324b;
  font-size: 15px;
  line-height: 1.45;
}

.partners {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 16px;
  margin: 28px 0 22px;
}

.partners span {
  color: var(--navy-2);
  font-size: clamp(15px, 1.6vw, 22px);
  line-height: 1;
  font-weight: 950;
}

.partners-featured a {
  display: grid;
  place-items: center;
  min-height: 108px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid rgba(15, 37, 66, 0.1);
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(4, 25, 52, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.partners-featured a:hover {
  transform: translateY(-3px);
  border-color: rgba(160, 208, 0, 0.35);
  box-shadow: 0 22px 42px rgba(4, 25, 52, 0.11);
}

.partners-featured img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
}

.join-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 24px max(20px, calc((100vw - var(--max)) / 2));
  color: #fff;
  background: linear-gradient(90deg, rgba(3, 20, 42, 0.94), rgba(6, 45, 82, 0.94)), url("https://images.unsplash.com/photo-1599474924187-334a4ae5bd3c?auto=format&fit=crop&w=1600&q=80") center / cover;
}

.join-band h2 {
  color: #fff;
}

.join-band p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.site-footer {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 48px;
  padding: 32px max(20px, calc((100vw - var(--max)) / 2)) 18px;
  color: #fff;
  background: #02162d;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.footer-links h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin: 6px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.copyright {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  text-align: right;
}

.pickle-page {
  padding-top: 88px;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 9%, rgba(167, 216, 23, 0.22), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(13, 123, 138, 0.18), transparent 34%),
    linear-gradient(180deg, #eef6fb 0%, #f8fbfd 38%, #eef5fb 100%);
}

.pickle-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  align-items: center;
  gap: clamp(30px, 6vw, 76px);
  min-height: 650px;
  padding: 82px max(20px, calc((100vw - var(--max)) / 2)) 62px;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(3, 26, 52, 0.96) 0%, rgba(4, 38, 74, 0.92) 52%, rgba(8, 82, 91, 0.72) 100%),
    url("assets/pickleball-materiel.png") center / cover;
  border-bottom: 8px solid var(--lime);
}

.pickle-hero-copy {
  max-width: 660px;
}

.pickle-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(54px, 8vw, 112px);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pickle-hero-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.55;
}

.pickle-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.pickle-hero-visual {
  position: relative;
  margin: 0;
  align-self: stretch;
  min-height: 430px;
}

.pickle-hero-visual::before {
  content: "";
  position: absolute;
  inset: auto -18px -18px 38px;
  z-index: 0;
  height: 76%;
  border-radius: 18px;
  background: rgba(167, 216, 23, 0.9);
  filter: blur(0.2px);
}

.pickle-hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  border: 10px solid rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
}

.pickle-hero-poster {
  align-self: center;
  min-height: 0;
  max-width: 390px;
  justify-self: end;
}

.pickle-hero-poster::before {
  inset: 22px -18px -18px 22px;
  height: auto;
}

.pickle-hero-poster img {
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: contain;
}

.pickle-hero-visual figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 10px 14px;
  color: #fff;
  background: rgba(3, 26, 52, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.pickle-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(var(--max), calc(100% - 40px));
  margin: -42px auto 0;
  position: relative;
  z-index: 2;
}

.pickle-quick-grid article {
  min-height: 150px;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(219, 227, 237, 0.86);
  border-radius: 12px;
  box-shadow: 0 22px 58px rgba(4, 25, 52, 0.13);
}

.pickle-quick-grid span,
.plan-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 12px;
  color: var(--navy);
  background: var(--lime);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.pickle-quick-grid strong {
  display: block;
  color: var(--navy);
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 950;
  line-height: 0.95;
  text-transform: uppercase;
}

.pickle-quick-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.pickle-quick-grid .is-night {
  color: #fff;
  background: linear-gradient(150deg, #031a34, #0b315f);
}

.pickle-quick-grid .is-night strong,
.pickle-quick-grid .is-night p {
  color: #fff;
}

.pickle-quick-grid .is-highlight {
  background: linear-gradient(150deg, #f8fff0, #ffffff);
  border-color: rgba(167, 216, 23, 0.5);
}

.pickle-visual-strip {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr 1.05fr;
  gap: 16px;
  width: min(var(--max), calc(100% - 40px));
  margin: 42px auto 0;
}

.pickle-visual-strip figure {
  position: relative;
  min-height: 240px;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(4, 25, 52, 0.13);
}

.pickle-visual-strip figure:nth-child(2) {
  margin-top: 34px;
}

.pickle-visual-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pickle-visual-strip figure:hover img {
  transform: scale(1.04);
}

.pickle-visual-strip figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(3, 26, 52, 0.76);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.pickle-intro,
.pickle-pricing,
.pickle-contact {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.pickle-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 40px;
  padding: 88px 0 34px;
}

.pickle-intro h2,
.pickle-pricing .section-heading h2,
.pickle-contact h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.95;
  text-transform: uppercase;
}

.pickle-benefits {
  display: grid;
  gap: 14px;
}

.pickle-benefits article {
  padding: 24px 26px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(219, 227, 237, 0.95);
  border-radius: 12px;
}

.pickle-benefits h3,
.pickle-plan h3 {
  margin: 0;
  color: var(--navy);
  font-size: 21px;
  font-weight: 950;
  text-transform: uppercase;
}

.pickle-benefits p,
.pickle-contact p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.pickle-tournament {
  margin: 42px 0 70px;
  padding: 0 max(20px, calc((100vw - var(--max)) / 2));
}

.pickle-tournament-card {
  padding: clamp(34px, 5vw, 56px);
  color: #fff;
  background:
    linear-gradient(105deg, rgba(3, 26, 52, 0.95), rgba(3, 26, 52, 0.56)),
    url("assets/pickleball-action.png") center / cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.pickle-tournament-card h2 {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 0.95;
  text-transform: uppercase;
}

.pickle-tournament-card p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
  line-height: 1.55;
}

.pickle-pricing {
  padding: 0 0 72px;
}

.pickle-pricing .section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

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

.pickle-plan {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 20px 52px rgba(4, 25, 52, 0.09);
}

.pickle-plan.is-featured {
  color: #fff;
  background: linear-gradient(155deg, #031a34 0%, #063765 100%);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 68px rgba(3, 26, 52, 0.25);
}

.pickle-plan.is-featured h3,
.pickle-plan.is-featured .plan-price,
.pickle-plan.is-featured li {
  color: #fff;
}

.plan-price {
  margin: 18px 0 18px;
  color: var(--navy);
  font-size: clamp(44px, 4.8vw, 62px);
  font-weight: 950;
  line-height: 0.9;
}

.plan-price small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 850;
  text-transform: uppercase;
}

.pickle-plan.is-featured .plan-price small {
  color: rgba(255, 255, 255, 0.72);
}

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

.pickle-plan li {
  position: relative;
  padding-left: 18px;
  color: #40536c;
  line-height: 1.45;
}

.pickle-plan li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
}

.pickle-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin-bottom: 58px;
  padding: 34px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(3, 26, 52, 0.96), rgba(11, 72, 93, 0.92)),
    url("assets/pickleball-club.png") center / cover,
    radial-gradient(circle at 92% 18%, rgba(167, 216, 23, 0.25), transparent 34%);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.pickle-contact h2,
.pickle-contact p {
  color: #fff;
}

.teams-page {
  padding-top: 88px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(167, 216, 23, 0.2), transparent 32%),
    radial-gradient(circle at 90% 8%, rgba(13, 123, 138, 0.18), transparent 34%),
    linear-gradient(180deg, #eef5fb 0%, #fbfcfe 42%, #eef5fb 100%);
}

.teams-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  align-items: center;
  gap: clamp(24px, 4vw, 46px);
  min-height: 430px;
  padding: 92px max(20px, calc((100vw - var(--max)) / 2)) 48px;
  color: #fff;
  background:
    linear-gradient(105deg, rgba(3, 26, 52, 0.96) 0%, rgba(3, 26, 52, 0.82) 44%, rgba(3, 26, 52, 0.28) 100%),
    url("assets/charte-jeunes-competition-20260625.png") center / cover;
  border-bottom: 8px solid var(--lime);
}

.teams-hero-copy {
  max-width: 760px;
}

.teams-hero h1 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5.6vw, 76px);
  line-height: 0.94;
  text-transform: uppercase;
}

.teams-hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.5;
}

.teams-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.teams-hero-panel {
  padding: 22px;
  color: #fff;
  background: rgba(3, 26, 52, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.teams-hero-panel span {
  display: inline-flex;
  padding: 7px 12px;
  color: var(--navy);
  background: var(--lime);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.teams-hero-panel strong {
  display: block;
  margin: 14px 0 4px;
  color: #fff;
  font-size: clamp(54px, 6vw, 74px);
  font-weight: 950;
  line-height: 0.8;
}

.teams-hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.45;
}

.teams-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: min(var(--max), calc(100% - 40px));
  margin: -22px auto 0;
}

.teams-stats article {
  padding: 16px 18px;
  background: #fff;
  border: 1px solid rgba(219, 227, 237, 0.9);
  border-radius: 10px;
  box-shadow: 0 16px 38px rgba(4, 25, 52, 0.09);
}

.teams-stats span {
  display: block;
  color: var(--navy);
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 950;
  line-height: 0.92;
}

.teams-stats p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.teams-toolbar,
.teams-groups,
.teams-cta {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.teams-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: end;
  gap: 28px;
  padding: 44px 0 18px;
}

.teams-toolbar h2 {
  max-width: 540px;
  color: var(--navy);
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1;
}

.team-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.team-filters button {
  min-height: 34px;
  padding: 0 13px;
  color: #25405f;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(219, 227, 237, 0.96);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.team-filters button:hover,
.team-filters button:focus-visible,
.team-filters button.is-active {
  color: var(--navy);
  background: var(--lime);
  box-shadow: 0 12px 28px rgba(126, 172, 0, 0.2);
  transform: translateY(-1px);
}

.teams-loading {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted);
}

.teams-group {
  margin-bottom: 24px;
}

.teams-group-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 14px;
  padding: 0 2px 10px;
  border-bottom: 1px solid rgba(7, 27, 55, 0.12);
}

.teams-group-head p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--lime-dark);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.teams-group-head h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
  text-transform: uppercase;
}

.teams-group-head span {
  padding: 7px 11px;
  color: #fff;
  background: var(--navy);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.teams-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding-top: 10px;
}

.team-competition-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  padding: 14px;
  background: #fff;
  border: 1px solid rgba(219, 227, 237, 0.96);
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(4, 25, 52, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.team-competition-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--lime), var(--teal));
}

.team-tone-women::before {
  background: linear-gradient(90deg, #ff5fa2, #a7d817);
}

.team-tone-men::before {
  background: linear-gradient(90deg, #1a77d2, #a7d817);
}

.team-tone-plus::before {
  background: linear-gradient(90deg, #d2ad4f, #0d7b8a);
}

.team-tone-youth::before {
  background: linear-gradient(90deg, #ff8a22, #a7d817);
}

.team-competition-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(4, 25, 52, 0.11);
}

.team-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.team-category-badge {
  padding: 5px 8px;
  color: var(--navy);
  background: #eef6dc;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.team-card-number {
  color: rgba(7, 27, 55, 0.16);
  font-size: 24px;
  font-weight: 950;
  line-height: 0.8;
}

.team-competition-card h3 {
  min-height: 0;
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.08;
  text-transform: uppercase;
}

.team-card-details {
  display: grid;
  gap: 0;
}

.team-card-details p {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 0;
  padding: 7px 0;
  border-top: 1px solid rgba(219, 227, 237, 0.9);
}

.team-card-details span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.team-card-details strong {
  color: var(--navy);
  font-size: 12px;
  text-align: right;
}

.team-calendar-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 32px;
  margin-top: 10px;
  color: #fff;
  background: var(--navy);
  border-radius: 7px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  transition: background 0.18s ease, transform 0.18s ease;
}

.team-calendar-link:hover,
.team-calendar-link:focus-visible {
  background: var(--teal);
  transform: translateY(-1px);
}

.teams-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
  margin-bottom: 46px;
  padding: 24px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(3, 26, 52, 0.96), rgba(5, 56, 89, 0.9)),
    url("assets/ecole/competition-action-20260624.png") center / cover;
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(4, 25, 52, 0.13);
}

.teams-cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1;
}

.teams-cta p:not(.eyebrow) {
  max-width: 680px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.45;
}

.tarifs-page {
  padding-top: 88px;
  background: linear-gradient(180deg, #eef5fb 0%, #f7fafc 48%, #eef5fb 100%);
}

.tarifs-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: center;
  gap: 48px;
  min-height: 520px;
  padding: 96px max(20px, calc((100vw - var(--max)) / 2)) 76px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(2, 16, 34, 0.92), rgba(2, 36, 66, 0.68)),
    url("assets/slide2.webp") center / cover;
}

.tarifs-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(46px, 6vw, 78px);
  line-height: 0.98;
  font-weight: 950;
  text-transform: uppercase;
}

.tarifs-hero p {
  max-width: 630px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.55;
}

.tarifs-hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
}

.night-card {
  padding: 28px;
  color: #fff;
  background: rgba(1, 17, 35, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.night-card span {
  display: inline-flex;
  padding: 7px 12px;
  color: var(--navy);
  background: #12d7bd;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.night-card h2 {
  margin-top: 20px;
  color: #fff;
  font-size: 76px;
}

.night-card h2 small {
  display: block;
  margin-top: 4px;
  color: #12d7bd;
  font-size: 18px;
}

.night-card p {
  margin: 16px 0 0;
  font-size: 15px;
}

.night-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.night-card li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 800;
}

.night-card li::before,
.benefit-grid article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
}

.tarifs-benefits,
.pricing-section,
.tarifs-info-grid,
.source-flyers {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.tarifs-benefits {
  padding: 48px 0 18px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.benefit-grid article {
  position: relative;
  min-height: 92px;
  padding: 22px 18px 18px 34px;
  color: #1b2d47;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(4, 25, 52, 0.07);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.35;
}

.benefit-grid article::before {
  top: 27px;
  left: 18px;
}

.pricing-section {
  padding: 42px 0 0;
}

.pricing-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.pricing-heading p:not(.eyebrow) {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.pricing-table {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(4, 25, 52, 0.08);
}

.pricing-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  min-height: 86px;
  border-top: 1px solid var(--line);
}

.pricing-row:first-child {
  border-top: 0;
}

.pricing-row > div,
.pricing-row > span {
  display: grid;
  align-content: center;
  padding: 20px 24px;
}

.pricing-row > div + div,
.pricing-row > span + span {
  border-left: 1px solid var(--line);
  text-align: center;
}

.pricing-head {
  min-height: 58px;
  color: var(--navy);
  background: #dff36e;
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

.pricing-row strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.35;
}

.pricing-row small {
  margin-top: 6px;
  color: #246280;
  font-size: 15px;
  font-style: italic;
  line-height: 1.35;
}

.pricing-row div:last-child strong {
  margin: 3px 0;
  font-size: 18px;
}

.tarifs-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: 42px 0 72px;
}

.info-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(4, 25, 52, 0.08);
}

.info-card h2 {
  font-size: 22px;
}

.discount-grid,
.payment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.discount-grid span,
.payment-list span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  color: #17304f;
  background: #eef5fb;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
}

.discount-grid strong {
  margin-left: 6px;
  color: var(--lime-dark);
}

.source-flyers {
  padding: 48px 0 64px;
}

.source-flyers .section-heading p {
  margin: 10px 0 0;
  color: var(--muted);
}

.flyer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 24px;
}

.flyer-grid a {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(4, 25, 52, 0.08);
}

.flyer-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
  background: #dfe7f0;
}

.flyer-grid span {
  display: block;
  padding: 16px 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

.club-page {
  padding-top: 88px;
  background: linear-gradient(180deg, #eef5fb 0%, #f7fafc 52%, #eef5fb 100%);
}

.club-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 640px;
  padding: 118px max(20px, calc((100vw - var(--max)) / 2)) 70px;
  color: #fff;
  background: var(--navy);
  overflow: hidden;
}

.club-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 16, 34, 0.66) 0%, rgba(2, 16, 34, 0.34) 38%, rgba(2, 16, 34, 0.08) 72%, rgba(2, 16, 34, 0.02) 100%),
    linear-gradient(0deg, rgba(2, 16, 34, 0.2), rgba(2, 16, 34, 0) 48%);
}

.club-hero-bg {
  position: absolute;
  inset: 0;
  min-height: 100%;
  border-radius: 0;
  box-shadow: none;
}

.club-hero-bg img {
  transform: scale(1.04);
}

.club-hero-bg img.is-active {
  transform: scale(1);
}

.club-hero-bg .media-dots {
  right: max(20px, calc((100vw - var(--max)) / 2));
  bottom: 36px;
  z-index: 3;
}

.media-caption {
  position: absolute;
  right: max(20px, calc((100vw - var(--max)) / 2));
  bottom: 58px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  color: #fff;
  background: rgba(2, 16, 34, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.club-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(50px, 7vw, 88px);
  line-height: 0.96;
  font-weight: 950;
  text-transform: uppercase;
  text-shadow: 0 3px 18px rgba(3, 18, 39, 0.24);
}

.club-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 20px;
  line-height: 1.45;
}

.club-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 740px;
}

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

.club-hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
  margin-top: 34px;
}

.club-hero-facts span {
  display: grid;
  gap: 4px;
  min-height: 78px;
  padding: 16px 14px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.club-hero-facts strong {
  color: #fff;
  font-size: 30px;
  line-height: 1;
}

.president-section,
.club-pillars,
.club-spirit,
.club-gallery,
.club-cta {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.club-spirit {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
  padding: 42px 0 10px;
}

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

.spirit-grid article {
  min-height: 150px;
  padding: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(4, 25, 52, 0.1);
}

.spirit-grid article:nth-child(2) {
  background: linear-gradient(135deg, #0b4f69, #278369);
}

.spirit-grid article:nth-child(3) {
  background: linear-gradient(135deg, #2d4a62, #b65a3c);
}

.spirit-grid span {
  display: block;
  font-size: 22px;
  font-weight: 950;
  text-transform: uppercase;
}

.spirit-grid p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.45;
}

.club-tags {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.club-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  color: #18304f;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(4, 25, 52, 0.06);
  font-size: 13px;
  font-weight: 850;
}

.president-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 28px;
  padding: 54px 0 28px;
}

.president-card {
  position: relative;
  padding: clamp(18px, 3vw, 26px) 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.president-card::before {
  display: none;
}

.president-card h2 {
  position: relative;
  max-width: 520px;
  margin-bottom: 24px;
}

.president-text {
  position: relative;
  display: grid;
  gap: 16px;
  max-width: 620px;
}

.president-text p {
  margin: 0;
  color: #23324b;
  font-size: 16px;
  line-height: 1.68;
}

.president-text p:first-child {
  padding: 0;
  color: var(--ink);
  background: transparent;
  border-left: 0;
  border-radius: 0;
  font-size: 17px;
  font-weight: 600;
}

.president-card footer {
  position: relative;
  display: grid;
  justify-items: start;
  margin-top: 28px;
  padding-top: 0;
  border-top: 0;
}

.president-card footer::before {
  display: none;
}

.president-card footer strong,
.president-card footer span {
  display: block;
}

.president-card footer strong {
  color: var(--ink);
  font-size: 16px;
}

.president-card footer span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}


.president-photo,
.media-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(4, 25, 52, 0.12);
}

.club-hero .club-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 100%;
  border-radius: 0;
  box-shadow: none;
}

.president-photo {
  min-height: 520px;
  background:
    linear-gradient(180deg, rgba(3, 18, 39, 0), rgba(3, 18, 39, 0.16)),
    url("assets/slide5.jpg") center / cover;
}

.media-carousel {
  min-height: 520px;
  background: #dfe7f0;
}

.media-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1s ease, transform 5s ease;
}

.media-carousel img.is-active {
  opacity: 1;
  transform: scale(1);
}

.media-dots {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.media-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.52);
}

.media-dots span.is-active {
  background: var(--lime);
}

.club-pillars {
  padding: 38px 0 18px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.pillar-grid article {
  min-height: 300px;
  padding: 26px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(4, 25, 52, 0.07);
}

.pillar-grid span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--lime-dark);
  font-size: 13px;
  font-weight: 950;
}

.pillar-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.15;
  text-transform: uppercase;
}

.pillar-grid p {
  margin: 14px 0 0;
  color: #33445d;
  font-size: 15px;
  line-height: 1.55;
}

.club-gallery,
.club-dynamic-section,
.engagement-section {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
  padding: 46px 0 24px;
}

.club-dynamic-section,
.engagement-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.club-dynamic-copy p:not(.eyebrow),
.engagement-copy p:not(.eyebrow) {
  margin: 14px 0 0;
  color: #33445d;
  font-size: 16px;
  line-height: 1.62;
}

.dynamic-carousel {
  min-height: 430px;
}

.engagement-section {
  grid-template-columns: 1fr 360px;
  align-items: stretch;
  padding-top: 28px;
}

.engagement-media {
  min-height: 420px;
}

.engagement-copy {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(4, 25, 52, 0.07);
}

.label-row {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.label-row img {
  width: 100%;
  max-height: 92px;
  object-fit: contain;
  padding: 16px;
  background: #b65a3c;
  border: 1px solid rgba(182, 90, 60, 0.42);
  border-radius: var(--radius);
  box-shadow: 0 14px 28px rgba(88, 40, 26, 0.18);
}


.club-gallery h2 {
  max-width: 270px;
}

.club-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.club-gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(4, 25, 52, 0.1);
}

.club-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  gap: 20px;
  align-items: center;
  margin-bottom: 72px;
  padding: 30px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(4, 25, 52, 0.16);
}

.club-cta h2 {
  color: #fff;
}

.club-cta p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.club-cta div {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.history-page {
  padding-top: 88px;
  background: linear-gradient(180deg, #eef5fb 0%, #f7fafc 48%, #eef5fb 100%);
}

.history-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.75fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  min-height: 620px;
  padding: 112px max(20px, calc((100vw - var(--max)) / 2)) 70px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(3, 26, 52, 0.62), rgba(6, 65, 92, 0.34)),
    url("assets/slide3.jpg") center / cover;
}

.history-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 26, 52, 0.3), rgba(3, 26, 52, 0));
  pointer-events: none;
}

.history-hero > * {
  position: relative;
  z-index: 1;
}

.history-copy h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(46px, 6vw, 78px);
  line-height: 0.98;
  font-weight: 950;
  text-transform: uppercase;
}

.history-copy p:not(.eyebrow) {
  max-width: 630px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 19px;
  line-height: 1.55;
}

.history-carousel {
  min-height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.history-carousel .media-caption {
  right: 18px;
  bottom: 52px;
  max-width: calc(100% - 36px);
}

.history-carousel .media-dots {
  right: 18px;
  bottom: 24px;
}

.history-story,
.history-timeline {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.history-story {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 44px;
  padding: 56px 0 28px;
}

.history-text {
  display: grid;
  gap: 16px;
  color: #23324b;
}

.history-text p {
  margin: 0;
  font-size: 16px;
  line-height: 1.72;
}

.history-text strong {
  color: var(--navy);
}

.history-timeline {
  padding: 38px 0 18px;
}

.history-timeline h2,
.presidency-heading h2 {
  margin-bottom: 26px;
}

.history-timeline ol {
  position: relative;
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0 0 0 28px;
  list-style: none;
}

.history-timeline ol::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 9px;
  width: 2px;
  background: linear-gradient(180deg, #caa24a, var(--lime));
}

.history-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: stretch;
}

.history-timeline li::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 22px;
  width: 14px;
  height: 14px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #caa24a;
  box-shadow: 0 0 0 2px rgba(202, 162, 74, 0.24);
}

.history-timeline li > span {
  display: grid;
  place-items: center;
  min-height: 82px;
  color: #fff;
  background: var(--navy);
  border-radius: var(--radius);
  font-size: 22px;
  font-weight: 950;
}

.history-timeline li > div {
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(4, 25, 52, 0.07);
}

.history-timeline h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
}

.history-timeline p {
  margin: 8px 0 0;
  color: #33445d;
  line-height: 1.5;
}

.presidency-section {
  width: 100%;
  margin: 36px 0 0;
  padding: 48px 26px 72px;
  background:
    radial-gradient(circle at 50% 0, rgba(202, 162, 74, 0.14), transparent 32%),
    #fbf8f2;
  box-shadow: inset 0 10px 18px rgba(4, 25, 52, 0.06);
}

.presidency-heading {
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
}

.presidency-heading p:not(.eyebrow) {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.presidency-board {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.presidency-row {
  display: grid;
  gap: 16px;
}

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

.presidency-row-racing {
  width: calc((100% - 32px) / 3 * 2 + 16px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.presidency-row-club {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.presidency-row article {
  min-height: 124px;
  padding: 22px 22px 24px;
  background: #fff;
  border: 1px solid rgba(4, 25, 52, 0.05);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(4, 25, 52, 0.07);
}

.presidency-row h3 {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.15;
  text-transform: uppercase;
}

.presidency-row p {
  margin: 10px 0 0;
  color: #b99135;
  font-size: 16px;
  font-weight: 850;
}

.presidency-row span {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
}

.rules-page {
  padding-top: 88px;
  background: #f5f8fb;
}

.rules-hero {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 330px;
  padding: 82px max(20px, calc((100vw - var(--max)) / 2)) 56px;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
  border-bottom: 1px solid var(--line);
}

.rules-hero::before {
  content: "";
  position: absolute;
  right: max(20px, calc((100vw - var(--max)) / 2));
  bottom: 52px;
  width: min(360px, 32vw);
  height: 2px;
  background: linear-gradient(90deg, #caa24a, var(--lime));
  pointer-events: none;
}

.rules-hero > * {
  position: relative;
  z-index: 1;
}

.rules-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.rules-hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 18px 0 0;
  color: #516179;
  font-size: 18px;
  line-height: 1.55;
}

.rules-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  width: min(var(--max), calc(100% - 40px));
  margin: 34px auto 0;
  padding-bottom: 74px;
}

.rules-summary {
  position: sticky;
  top: 112px;
  align-self: start;
  display: grid;
  gap: 8px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(4, 25, 52, 0.06);
}

.rules-summary h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.15;
}

.rules-summary a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 10px;
  color: #243650;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.25;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.rules-summary a:hover,
.rules-summary a:focus-visible {
  color: var(--navy);
  background: #f1f5f9;
  transform: translateX(2px);
}

.rules-content {
  display: grid;
  gap: 18px;
}

.rules-intro,
.rule-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(4, 25, 52, 0.055);
}

.rules-intro {
  padding: 24px 26px;
  color: #263752;
  font-size: 17px;
  line-height: 1.65;
}

.rules-intro strong {
  color: var(--navy);
}

.rule-card {
  position: relative;
  padding: 28px 30px 30px;
  scroll-margin-top: 124px;
}

.rule-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: #d9e4ee;
  border-radius: var(--radius) var(--radius) 0 0;
}

.rule-card > span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 14px;
  padding: 0 10px;
  color: var(--navy);
  background: #eef5fb;
  border: 1px solid #d9e5f0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rule-card h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.1;
}

.rule-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rule-card li {
  position: relative;
  padding-left: 22px;
  color: #293a54;
  font-size: 16px;
  line-height: 1.6;
}

.rule-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--lime);
  border: 2px solid #edf7c2;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(167, 216, 23, 0.15);
}

.highlight-rule {
  background: #fff;
  border-color: #cfdceb;
}

.highlight-rule > span {
  color: var(--navy);
  background: #f1f5f9;
  border-color: #d9e5f0;
}

.charter-page {
  padding-top: 88px;
  background:
    linear-gradient(180deg, #061a33 0, #061a33 420px, #eef5fb 420px, #f7fafc 100%);
}

.charter-page::before,
.charter-page::after {
  content: "";
  position: fixed;
  z-index: 0;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  opacity: 0.16;
  pointer-events: none;
}

.charter-page::before {
  right: -54px;
  top: 156px;
  background:
    radial-gradient(circle at 35% 35%, #efffb0 0 12%, transparent 13%),
    radial-gradient(circle, var(--lime) 0 62%, transparent 63%);
}

.charter-page::after {
  left: -82px;
  bottom: 18%;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 54%, rgba(255, 255, 255, 0.75) 55% 58%, transparent 59%),
    radial-gradient(circle, var(--lime) 0 62%, transparent 63%);
}

.charter-hero {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 610px;
  padding: 120px max(20px, calc((100vw - var(--max)) / 2)) 116px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(100deg, rgba(3, 18, 39, 0.9) 0%, rgba(3, 18, 39, 0.64) 42%, rgba(3, 18, 39, 0.18) 100%),
    linear-gradient(0deg, rgba(3, 18, 39, 0.76), rgba(3, 18, 39, 0)),
    url("assets/charte-jeunes-competition-20260625.png") center 42% / cover;
}

.charter-hero::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 78px;
  background: linear-gradient(135deg, var(--lime) 0 18%, rgba(255, 255, 255, 0) 18% 32%, var(--teal) 32% 48%, rgba(255, 255, 255, 0) 48%);
  opacity: 0.92;
  transform: skewY(-2.5deg);
  transform-origin: 100% 100%;
  pointer-events: none;
}

.charter-hero::after {
  content: "TCP";
  position: absolute;
  right: max(10px, calc((100vw - var(--max)) / 2 - 90px));
  bottom: 58px;
  color: rgba(255, 255, 255, 0.08);
  font-size: clamp(110px, 18vw, 250px);
  font-weight: 950;
  line-height: 0.8;
  letter-spacing: 0;
  pointer-events: none;
}

.charter-hero > * {
  position: relative;
  z-index: 1;
}

.charter-hero h1 {
  max-width: 870px;
  margin: 0;
  font-size: clamp(54px, 8.6vw, 112px);
  line-height: 0.9;
  font-weight: 950;
  text-transform: uppercase;
}

.charter-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.55;
}

.charter-sprint {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.charter-sprint span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 15px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  backdrop-filter: blur(14px);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.charter-sprint strong {
  color: var(--lime);
  font-size: 22px;
  line-height: 1;
}

.charter-score {
  display: inline-grid;
  grid-template-columns: minmax(110px, auto) 48px 48px minmax(140px, auto);
  align-items: center;
  width: fit-content;
  margin-top: 16px;
  overflow: hidden;
  color: #fff;
  background: rgba(3, 18, 39, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.charter-score span {
  display: grid;
  place-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.charter-score span:nth-child(2),
.charter-score span:nth-child(3) {
  color: #061a33;
  background: var(--lime);
  font-size: 22px;
}

.charter-score span:last-child {
  border-right: 0;
}

.charter-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  width: min(var(--max), calc(100% - 40px));
  margin: -58px auto 0;
  padding-bottom: 78px;
  position: relative;
  z-index: 2;
}

.charter-side {
  position: sticky;
  top: 112px;
  align-self: start;
  display: grid;
  gap: 8px;
  padding: 20px;
  color: #fff;
  background: linear-gradient(180deg, #071b37, #092747);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 24px 56px rgba(4, 25, 52, 0.24);
}

.charter-side h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 18px;
  line-height: 1.15;
}

.charter-side a {
  min-height: 38px;
  padding: 9px 10px;
  color: rgba(255, 255, 255, 0.82);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.charter-side a:hover,
.charter-side a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
}

.charter-content {
  display: grid;
  gap: 22px;
}

.charter-intro {
  padding: 28px 30px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), #071b37);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(4, 25, 52, 0.16);
  font-size: 18px;
  line-height: 1.65;
}

.charter-intro strong {
  color: var(--lime);
}

.charter-play-cues {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 8px;
}

.charter-play-cues span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 15px 0 34px;
  color: #061a33;
  background: #fff;
  border: 1px solid rgba(219, 227, 237, 0.9);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(4, 25, 52, 0.08);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

.charter-play-cues span:nth-child(even) {
  transform: rotate(1.2deg);
}

.charter-play-cues span::before {
  content: "";
  position: absolute;
  left: 12px;
  width: 12px;
  height: 12px;
  background: var(--lime);
  border: 2px solid #ecf8bd;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(167, 216, 23, 0.16);
}

.charter-values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 18px;
  padding-top: 8px;
}

.charter-card {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  padding: 30px 28px 30px;
  background: #fff;
  border: 1px solid rgba(219, 227, 237, 0.92);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(4, 25, 52, 0.1);
  scroll-margin-top: 124px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.charter-card:nth-child(1) {
  transform: rotate(-0.8deg);
}

.charter-card:nth-child(2) {
  transform: translateY(22px) rotate(0.7deg);
}

.charter-card:nth-child(3) {
  transform: translateY(-8px) rotate(0.8deg);
}

.charter-card:nth-child(4) {
  transform: translateY(16px) rotate(-0.6deg);
}

.charter-card:hover {
  transform: translateY(-9px) rotate(0deg) scale(1.012);
  border-color: rgba(13, 123, 138, 0.26);
  box-shadow: 0 28px 70px rgba(4, 25, 52, 0.18);
}

.charter-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: -18px;
  left: 24px;
  height: 9px;
  background: linear-gradient(90deg, var(--lime), var(--teal));
  border-radius: 0 0 999px 999px;
  transform: skewX(-22deg);
}

.charter-card::after {
  content: attr(data-value);
  position: absolute;
  right: -12px;
  bottom: -16px;
  color: rgba(6, 42, 77, 0.055);
  font-size: 108px;
  font-weight: 950;
  line-height: 0.8;
  text-transform: uppercase;
  pointer-events: none;
}

.charter-card h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 5px;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--lime), var(--teal));
  border-radius: 999px;
  transform: rotate(-2deg);
}

.charter-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  min-width: 46px;
  margin-bottom: 14px;
  padding: 0 12px;
  color: #061a33;
  background: var(--lime);
  border: 0;
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(126, 172, 0, 0.22);
  font-size: 16px;
  font-weight: 950;
}

.charter-card h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(31px, 3.4vw, 46px);
  line-height: 0.95;
  text-transform: uppercase;
}

.charter-card ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.charter-card li {
  position: relative;
  padding-left: 22px;
  color: #293a54;
  font-size: 16px;
  line-height: 1.58;
}

.charter-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--teal);
  border: 2px solid #d7eef1;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(13, 123, 138, 0.12);
}

.charter-card-wide {
  grid-column: 1 / -1;
  min-height: 310px;
  transform: rotate(-0.35deg);
  background:
    linear-gradient(110deg, rgba(6, 42, 77, 0.95), rgba(6, 42, 77, 0.78)),
    url("assets/slide5.jpg") center / cover;
  border-color: rgba(255, 255, 255, 0.12);
}

.charter-card-wide h2,
.charter-card-wide li {
  color: #fff;
}

.charter-card-wide h2::after {
  background: var(--lime);
}

.charter-card-wide li::before {
  background: var(--lime);
  border-color: rgba(255, 255, 255, 0.24);
}

.charter-quote {
  margin: 0;
  padding: 34px 36px;
  color: #061a33;
  background: var(--lime);
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 24px 58px rgba(126, 172, 0, 0.22);
  font-size: clamp(25px, 3vw, 40px);
  font-weight: 950;
  line-height: 1.08;
  text-transform: uppercase;
}

.tour-page {
  padding-top: 88px;
  background: #f6fafc;
}

.tour-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 36px;
  align-items: end;
  min-height: 620px;
  padding: 122px max(20px, calc((100vw - var(--max)) / 2)) 96px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(105deg, rgba(3, 18, 39, 0.58) 0%, rgba(3, 18, 39, 0.34) 46%, rgba(3, 18, 39, 0.08) 100%),
    linear-gradient(0deg, rgba(3, 18, 39, 0.42), rgba(3, 18, 39, 0)),
    url("assets/tournee/slide5.jpg") center / cover;
}

.tour-hero::before {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: -70px;
  width: 44vw;
  height: 150px;
  background: var(--lime);
  transform: rotate(-5deg);
  opacity: 0.9;
}

.tour-hero > * {
  position: relative;
  z-index: 1;
}

.tour-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(56px, 8vw, 108px);
  line-height: 0.9;
  font-weight: 950;
  text-transform: uppercase;
}

.tour-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.55;
}

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

.tour-hero-panel {
  align-self: end;
  display: grid;
  gap: 12px;
  max-width: 430px;
  padding: 16px;
  color: #fff;
  background: rgba(6, 42, 77, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(4, 25, 52, 0.18);
  backdrop-filter: blur(14px);
  transform: rotate(-0.6deg);
}

.tour-hero-panel span,
.tour-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.tour-hero-panel span {
  width: fit-content;
  color: #061a33;
  background: var(--lime);
}

.tour-capacity-lines {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.tour-capacity-lines div {
  min-height: 88px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
}

.tour-capacity-lines strong {
  display: block;
  color: #fff;
  font-size: clamp(34px, 3.6vw, 46px);
  line-height: 0.9;
  text-transform: uppercase;
}

.tour-capacity-lines p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.18;
  text-transform: uppercase;
}

.tour-hero-panel em {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-style: normal;
  font-weight: 760;
  line-height: 1.45;
}

.tour-stats,
.tour-section,
.tour-gallery-section,
.tour-practical,
.tour-cta {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.tour-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -44px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 58px rgba(4, 25, 52, 0.16);
}

.tour-stats div {
  min-height: 116px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.tour-stats div:last-child {
  border-right: 0;
}

.tour-stats strong {
  display: block;
  color: var(--ink);
  font-size: clamp(29px, 3.6vw, 46px);
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.tour-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.tour-section,
.tour-gallery-section,
.tour-practical {
  padding: 64px 0 0;
}

.tour-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.tour-card {
  position: relative;
  display: grid;
  gap: 26px;
  min-height: 500px;
  overflow: hidden;
  padding: 30px;
  color: #fff;
  border-radius: var(--radius);
  box-shadow: 0 24px 58px rgba(4, 25, 52, 0.14);
}

.tour-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 18, 39, 0.04), rgba(3, 18, 39, 0.5)),
    linear-gradient(90deg, rgba(3, 18, 39, 0.72), rgba(3, 18, 39, 0.08));
}

.tour-card > * {
  position: relative;
  z-index: 1;
}

.tour-card-summer {
  background: url("assets/tournee/slide1.jpg") center / cover;
}

.tour-card-autumn {
  background: url("assets/tournee/slide10.jpg") center / cover;
  transform: translateY(28px);
}

.tour-tag {
  color: #061a33;
  background: var(--lime);
}

.tour-card h3 {
  max-width: 520px;
  margin: 18px 0 0;
  text-shadow: 0 3px 18px rgba(3, 18, 39, 0.22);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.96;
  font-weight: 950;
  text-transform: uppercase;
}

.tour-card p {
  max-width: 540px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  line-height: 1.55;
}

.tour-card ul {
  align-self: end;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tour-card li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.48;
}

.tour-card li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
}

.tour-gallery-section {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 34px;
  align-items: start;
}

.tour-gallery-copy p:not(.eyebrow) {
  color: #33445d;
  line-height: 1.62;
}

.tour-carousel {
  min-height: 560px;
  border-radius: var(--radius);
  box-shadow: 0 24px 58px rgba(4, 25, 52, 0.16);
}

.tour-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.tour-info-grid article {
  min-height: 290px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(4, 25, 52, 0.055);
}

.tour-info-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: #061a33;
  background: var(--lime);
  border-radius: 999px;
  font-weight: 950;
}

.tour-info-grid h3 {
  margin: 18px 0 12px;
  color: var(--ink);
  font-size: 22px;
  text-transform: uppercase;
}

.tour-info-grid p {
  margin: 10px 0 0;
  color: #33445d;
  line-height: 1.58;
}

.tour-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 64px;
  margin-bottom: 76px;
  padding: 32px;
  color: #fff;
  background: linear-gradient(135deg, rgba(6, 42, 77, 0.96), rgba(13, 123, 138, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(4, 25, 52, 0.16);
}

.tour-cta h2 {
  max-width: 740px;
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
  text-transform: uppercase;
}

.teaching-page {
  padding-top: 88px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(167, 216, 23, 0.14), transparent 26%),
    linear-gradient(180deg, #f4f8fb 0%, #ffffff 48%, #eef5fb 100%);
}

.teaching-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 52px;
  align-items: end;
  min-height: 590px;
  padding: 122px max(20px, calc((100vw - var(--max)) / 2)) 82px;
  color: #fff;
  background:
    linear-gradient(105deg, rgba(3, 18, 39, 0.82) 0%, rgba(3, 18, 39, 0.58) 46%, rgba(3, 18, 39, 0.2) 100%),
    url("assets/ecole/ecole-tennis-photo-v2.png") center / cover;
}

.teaching-hero::before {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -44px;
  width: 44vw;
  height: 118px;
  background: var(--lime);
  transform: rotate(-4deg);
  opacity: 0.94;
}

.teaching-hero > * {
  position: relative;
  z-index: 1;
}

.teaching-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.92;
  font-weight: 950;
  text-transform: uppercase;
}

.teaching-hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.55;
}

.teaching-hero-card {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding: 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 22px 54px rgba(4, 25, 52, 0.22);
  backdrop-filter: blur(14px);
  transform: rotate(-0.5deg);
}

.teaching-hero-card img {
  width: 100%;
  aspect-ratio: 1 / 1.28;
  object-fit: cover;
  border-radius: 6px;
}

.teaching-hero-card div {
  grid-column: 1 / -1;
  padding: 12px 10px 10px;
}

.teaching-hero-card span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.teaching-hero-card strong {
  display: block;
  margin-top: 5px;
  font-size: 24px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.teacher-section,
.teaching-method,
.teaching-offers,
.private-lessons {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.teacher-section {
  padding: 70px 0 34px;
}

.teacher-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.teacher-card {
  position: relative;
  display: grid;
  align-content: start;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(4, 25, 52, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.teacher-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 64px rgba(4, 25, 52, 0.15);
}

.teacher-card-lead {
  color: var(--ink);
  background: #fff;
  border-color: rgba(167, 216, 23, 0.45);
}

.teacher-card-lead::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--lime);
}

.teacher-card img {
  width: 100%;
  aspect-ratio: 1 / 0.86;
  object-fit: cover;
}

.teacher-card-lead img {
  min-height: 0;
}

.teacher-card div {
  padding: 18px 16px 20px;
}

.teacher-card span {
  color: var(--lime-dark);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.teacher-card h3 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 0.98;
  text-transform: uppercase;
}

.teacher-card p {
  margin: 10px 0 0;
  color: #40516b;
  font-weight: 760;
  line-height: 1.45;
}

.teacher-card-lead h3,
.teacher-card-lead p {
  color: var(--ink);
}

.teacher-card-lead span {
  color: var(--lime-dark);
}

.teaching-method {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
  align-items: start;
  padding: 56px 0 24px;
}

.method-grid,
.offer-grid,
.private-grid {
  display: grid;
  gap: 18px;
}

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

.method-grid article,
.offer-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(4, 25, 52, 0.065);
}

.method-grid article {
  min-height: 250px;
}

.method-grid span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  color: #061a33;
  background: var(--lime);
  border-radius: 999px;
  font-weight: 950;
}

.method-grid h3,
.offer-card h3,
.private-grid h3 {
  margin: 16px 0 10px;
  color: var(--ink);
  font-size: 22px;
  text-transform: uppercase;
}

.method-grid p,
.offer-card p,
.private-copy p:not(.eyebrow),
.private-grid p {
  color: #40516b;
  line-height: 1.58;
}

.teaching-offers {
  padding: 56px 0 28px;
}

.offer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.offer-card {
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--lime), var(--teal));
}

.offer-card ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.offer-card li {
  position: relative;
  padding-left: 20px;
  color: #33445d;
}

.offer-card li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
}

.offer-card a,
.private-grid a {
  color: var(--lime-dark);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.offer-card-dark {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(3, 26, 52, 0.92), rgba(13, 123, 138, 0.84)),
    url("assets/slide1.webp") center / cover;
  border-color: rgba(255, 255, 255, 0.12);
}

.offer-card-dark h3,
.offer-card-dark p,
.offer-card-dark a {
  color: #fff;
}

.private-lessons {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
  align-items: start;
  padding: 56px 0 86px;
}

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

.private-grid article {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(4, 25, 52, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.private-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 64px rgba(4, 25, 52, 0.14);
}

.private-grid img {
  width: 100%;
  aspect-ratio: 1.4 / 1;
  object-fit: cover;
}

.private-grid div {
  padding: 22px;
}

.school-page {
  padding-top: 88px;
  background: linear-gradient(180deg, #f4f8fb 0%, #ffffff 48%, #eef5fb 100%);
}

.school-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 44px;
  align-items: end;
  min-height: 590px;
  padding: 122px max(20px, calc((100vw - var(--max)) / 2)) 86px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(105deg, rgba(3, 18, 39, 0.78), rgba(3, 18, 39, 0.34)),
    url("assets/ecole/ecole-tennis-regen-20260624.png") center / cover;
}

.school-hero::before {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -42px;
  width: 44vw;
  height: 118px;
  background: var(--lime);
  transform: rotate(-4deg);
}

.school-hero > * {
  position: relative;
  z-index: 1;
}

.school-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(54px, 8vw, 106px);
  line-height: 0.9;
  font-weight: 950;
  text-transform: uppercase;
}

.school-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.55;
}

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

.school-path-card {
  padding: 18px;
  color: #fff;
  background: rgba(6, 42, 77, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(4, 25, 52, 0.2);
  backdrop-filter: blur(14px);
  transform: rotate(-0.4deg);
}

.school-path-card span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: #061a33;
  background: var(--lime);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.school-path-card strong {
  display: block;
  margin-top: 16px;
  color: #fff;
  font-size: 56px;
  line-height: 0.9;
  font-weight: 950;
}

.school-path-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 780;
  line-height: 1.45;
}

.school-nav,
.school-programs,
.adapted-faq,
.school-cta {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.school-nav {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: -34px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(4, 25, 52, 0.12);
}

.school-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: var(--ink);
  background: #f3f7fb;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.school-programs {
  display: grid;
  gap: 28px;
  padding: 66px 0 24px;
}

.program-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(4, 25, 52, 0.08);
  scroll-margin-top: 112px;
}

.program-card:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
}

.program-card:nth-child(even) img {
  grid-column: 2;
}

.program-card:nth-child(even) > div {
  grid-column: 1;
  grid-row: 1;
}

.program-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.program-card > div {
  padding: clamp(28px, 4vw, 48px);
}

.program-card span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  color: #061a33;
  background: var(--lime);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.program-card h2 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 0.94;
  text-transform: uppercase;
}

.program-card p {
  margin: 18px 0 0;
  color: #40516b;
  font-size: 17px;
  line-height: 1.62;
}

.program-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.program-card li {
  position: relative;
  padding-left: 20px;
  color: #293a54;
  font-weight: 760;
  line-height: 1.42;
}

.program-card li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
}

.program-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.program-actions a {
  color: var(--lime-dark);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.program-card-adapted {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--teal));
}

.program-card-adapted h2,
.program-card-adapted p,
.program-card-adapted li {
  color: #fff;
}

.adapted-faq {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 56px 0 24px;
}

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

.faq-grid article {
  min-width: 0;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(4, 25, 52, 0.065);
}

.faq-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.35;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.faq-grid p {
  margin: 12px 0 0;
  color: #40516b;
  font-size: 16px;
  line-height: 1.58;
  overflow-wrap: break-word;
}

.school-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 56px;
  margin-bottom: 78px;
  padding: 32px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(4, 25, 52, 0.16);
}

.school-cta h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
  text-transform: uppercase;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 46px minmax(0, 1fr) 46px;
  }

  .site-header .brand {
    grid-column: 2;
    justify-self: center;
  }

  .nav-toggle {
    display: inline-grid;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    gap: 5px;
    width: 46px;
    height: 46px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 5px;
    background: transparent;
  }

  .nav-toggle span {
    display: block;
    height: 2px;
    background: #fff;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .site-header.menu-open .main-nav,
  .site-header.menu-open .header-actions {
    display: flex;
    grid-column: 1 / -1;
  }

  .site-header.menu-open {
    height: 100dvh;
    max-height: 100dvh;
    align-content: start;
    background: rgba(2, 16, 34, 0.98);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .site-header.menu-open .main-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding-top: 14px;
  }

  .nav-item {
    display: grid;
    width: 100%;
  }

  .submenu {
    position: static;
    min-width: 0;
    width: 100%;
    margin-top: 4px;
    padding: 8px 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    box-shadow: none;
  }

  .submenu::before {
    display: none;
  }

  .submenu a {
    min-height: 38px;
    padding: 0 14px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
  }

  .submenu a:hover,
  .submenu a:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    transform: none;
  }

  .site-header.menu-open .header-actions {
    flex-wrap: wrap;
  }

  .choice-grid {
    padding: 0;
  }

  .event-track {
    grid-template-columns: repeat(5, minmax(220px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .event-card {
    scroll-snap-align: start;
  }

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

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

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

  .stat:nth-child(4n) {
    border-right: 0;
  }

  .rules-layout {
    grid-template-columns: 240px 1fr;
    gap: 22px;
  }

  .charter-layout {
    grid-template-columns: 230px 1fr;
    gap: 22px;
  }

  .tour-hero {
    grid-template-columns: 1fr;
  }

  .tour-hero-panel {
    max-width: 420px;
  }

  .tour-gallery-section {
    grid-template-columns: 1fr;
  }

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

  .teaching-hero,
  .school-hero,
  .teaching-method,
  .adapted-faq,
  .private-lessons {
    grid-template-columns: 1fr;
  }

  .teaching-hero-card {
    max-width: 430px;
  }

  .school-path-card {
    max-width: 360px;
  }

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

  .teacher-card-lead {
    grid-row: auto;
  }

  .teacher-card-lead img {
    min-height: 0;
  }

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

  .tarifs-hero {
    grid-template-columns: 1fr;
    padding-top: 86px;
  }

  .night-card {
    max-width: 460px;
  }

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

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

  .president-section,
  .club-spirit,
  .club-gallery,
  .club-dynamic-section,
  .engagement-section,
  .club-cta {
    grid-template-columns: 1fr;
  }

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

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

  .engagement-section {
    grid-template-columns: 1fr;
  }

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

  .club-cta div {
    justify-content: flex-start;
  }

  .club-tags {
    grid-column: auto;
  }
}

@media (min-width: 1121px) and (max-width: 1320px) {
  .site-header {
    gap: 20px;
    padding-right: 22px;
    padding-left: 22px;
  }

  .main-nav {
    gap: 16px;
  }

  .main-nav a,
  .nav-item > button {
    font-size: 11.4px;
  }

  .site-header .button {
    padding-right: 11px;
    padding-left: 11px;
    font-size: 10.7px;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 76px;
    padding: 14px 20px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    font-size: 13px;
  }

  .brand-text {
    font-size: 12px;
  }

  .hero {
    min-height: 650px;
    padding-top: 76px;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 18, 39, 0.66), rgba(3, 18, 39, 0.24)),
      linear-gradient(0deg, rgba(3, 18, 39, 0.22), rgba(3, 18, 39, 0));
  }

  .hero-content {
    padding: 70px 0 132px;
  }

  .hero-actions,
  .header-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-arrow {
    top: auto;
    bottom: 108px;
    width: 40px;
    height: 40px;
    font-size: 29px;
  }

  .button {
    width: 100%;
  }

  .stats-panel {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -88px;
    padding: 16px;
  }

  .stat {
    min-height: 88px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .intro-section {
    padding-top: 30px;
  }

  .choice-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card-body p {
    min-height: 0;
  }

  .section-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .team-section {
    grid-template-columns: 1fr;
  }

  .team-intro {
    max-width: 420px;
  }

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

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

  .equipment-section {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    text-align: left;
  }

  .pickleball-section {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    text-align: left;
  }

  .join-band {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 34px 20px 22px;
    background:
      radial-gradient(circle at 18% 0%, rgba(167, 216, 23, 0.12), transparent 30%),
      #02162d;
  }

  .footer-brand {
    justify-content: center;
    padding-bottom: 6px;
  }

  .footer-brand .brand-logo {
    width: 168px;
    max-height: 62px;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .footer-links > div {
    min-height: 154px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
  }

  .footer-links h3 {
    margin-bottom: 12px;
    color: var(--lime);
    font-size: 11px;
  }

  .footer-links a {
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 13px;
    line-height: 1.25;
  }

  .copyright {
    margin-top: 2px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.62);
    text-align: center;
  }

  .tarifs-page {
    padding-top: 76px;
  }

  .tarifs-hero {
    min-height: 0;
    padding: 64px 20px 52px;
  }

  .tarifs-hero h1 {
    font-size: 43px;
  }

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

  .night-card h2 {
    font-size: 58px;
  }

  .tarifs-benefits,
  .pricing-section,
  .tarifs-info-grid,
  .source-flyers,
  .president-section,
  .club-pillars,
  .club-spirit,
  .club-gallery,
  .club-dynamic-section,
  .engagement-section,
  .club-cta {
    width: calc(100% - 24px);
  }

  .benefit-grid,
  .tarifs-info-grid,
  .flyer-grid {
    grid-template-columns: 1fr;
  }

  .pricing-row {
    grid-template-columns: 1fr;
  }

  .pricing-row > div + div,
  .pricing-row > span + span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .pricing-row > div,
  .pricing-row > span {
    padding: 18px;
  }

  .pricing-head span:last-child {
    display: none;
  }

  .club-page {
    padding-top: 76px;
  }

  .club-hero {
    min-height: 480px;
    padding: 72px 20px 54px;
  }

  .club-hero h1 {
    font-size: 44px;
  }

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

  .club-hero-facts {
    grid-template-columns: 1fr;
  }

  .media-caption {
    right: 20px;
    bottom: 58px;
  }

  .club-spirit,
  .spirit-grid {
    grid-template-columns: 1fr;
  }

  .president-section {
    padding-top: 34px;
  }

  .president-photo {
    min-height: 360px;
  }

  .media-carousel,
  .dynamic-carousel,
  .engagement-media {
    min-height: 320px;
  }

  .pillar-grid,
  .club-gallery-grid {
    grid-template-columns: 1fr;
  }

  .pillar-grid article {
    min-height: 0;
  }

  .club-cta {
    padding: 24px 20px;
  }

  .club-cta div {
    flex-direction: column;
  }

  .label-row {
    grid-template-columns: 1fr;
  }

  .rules-page {
    padding-top: 76px;
  }

  .rules-hero {
    min-height: 320px;
    padding: 76px 20px 54px;
  }

  .rules-hero h1 {
    font-size: 42px;
  }

  .rules-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .rules-layout {
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
    margin-top: 22px;
    padding-bottom: 54px;
  }

  .rules-summary {
    position: relative;
    top: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rules-summary h2 {
    grid-column: 1 / -1;
  }

  .rule-card {
    padding: 24px 20px 26px;
  }

  .rules-intro {
    padding: 20px;
  }

  .charter-page {
    padding-top: 76px;
  }

  .charter-hero {
    min-height: 560px;
    padding: 88px 20px 92px;
    background-position: 42% center;
  }

  .charter-hero h1 {
    font-size: 52px;
  }

  .charter-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .charter-hero::before {
    height: 54px;
  }

  .charter-hero::after {
    right: -22px;
    bottom: 46px;
    font-size: 112px;
  }

  .charter-sprint {
    gap: 8px;
  }

  .charter-sprint span {
    min-height: 42px;
    padding: 0 12px;
    font-size: 12px;
  }

  .charter-score {
    grid-template-columns: minmax(0, 1fr) 42px 42px minmax(0, 1fr);
    width: 100%;
  }

  .charter-score span {
    min-height: 40px;
    padding: 0 8px;
    font-size: 10px;
    text-align: center;
  }

  .charter-score span:nth-child(2),
  .charter-score span:nth-child(3) {
    font-size: 19px;
  }

  .charter-layout {
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
    margin-top: -42px;
    padding-bottom: 54px;
  }

  .charter-side {
    position: relative;
    top: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .charter-side h2 {
    grid-column: 1 / -1;
  }

  .charter-values {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .charter-card {
    min-height: 0;
    padding: 24px 20px 26px;
    transform: none;
  }

  .charter-card:nth-child(1),
  .charter-card:nth-child(2),
  .charter-card:nth-child(3),
  .charter-card:nth-child(4),
  .charter-card-wide {
    transform: none;
  }

  .charter-card::after {
    font-size: 72px;
  }

  .charter-card-wide {
    min-height: 0;
  }

  .charter-intro,
  .charter-quote {
    padding: 20px;
  }

  .tour-page {
    padding-top: 76px;
  }

  .tour-hero {
    min-height: 620px;
    padding: 90px 20px 90px;
  }

  .tour-hero h1 {
    font-size: 54px;
  }

  .tour-hero p:not(.eyebrow) {
    font-size: 17px;
  }

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

  .tour-hero-panel {
    max-width: none;
    transform: none;
  }

  .tour-capacity-lines div {
    min-height: 86px;
  }

  .tour-capacity-lines strong {
    font-size: 38px;
  }

  .tour-stats {
    grid-template-columns: repeat(2, 1fr);
    width: calc(100% - 24px);
  }

  .tour-stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .tour-stats div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .tour-section,
  .tour-gallery-section,
  .tour-practical,
  .tour-cta {
    width: calc(100% - 24px);
  }

  .tour-cards,
  .tour-info-grid {
    grid-template-columns: 1fr;
  }

  .tour-card,
  .tour-card-autumn {
    min-height: 470px;
    transform: none;
  }

  .tour-gallery-section {
    gap: 22px;
  }

  .tour-carousel {
    min-height: 380px;
  }

  .tour-cta {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  .teaching-page {
    padding-top: 76px;
  }

  .school-page {
    padding-top: 76px;
  }

  .teaching-hero {
    min-height: 560px;
    padding: 88px 20px 64px;
  }

  .school-hero {
    min-height: 620px;
    padding: 88px 20px 90px;
  }

  .teaching-hero h1 {
    font-size: 50px;
  }

  .school-hero h1 {
    font-size: 54px;
  }

  .teaching-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .school-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .teaching-hero-card {
    transform: none;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    padding: 8px;
  }

  .school-path-card {
    transform: none;
  }

  .teaching-hero-card img {
    aspect-ratio: 1 / 1.1;
  }

  .teacher-section,
  .teaching-method,
  .teaching-offers,
  .private-lessons,
  .school-nav,
  .school-programs,
  .adapted-faq,
  .school-cta {
    width: calc(100% - 24px);
  }

  .teacher-grid,
  .method-grid,
  .offer-grid,
  .private-grid {
    grid-template-columns: 1fr;
  }

  .teaching-method,
  .private-lessons,
  .adapted-faq {
    gap: 22px;
  }

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

  .school-nav {
    margin-top: -42px;
  }

  .program-card,
  .program-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .program-card:nth-child(even) img,
  .program-card:nth-child(even) > div {
    grid-column: auto;
    grid-row: auto;
  }

  .program-card img {
    min-height: 310px;
  }

  .program-card ul,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .school-cta {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-links > div {
    min-height: 0;
  }

  .hero h1 {
    font-size: 44px;
  }

  .signature {
    font-size: 27px;
  }

  .stats-panel {
    width: calc(100% - 24px);
  }

  .section,
  .team-section,
  .partners-section {
    width: calc(100% - 24px);
  }

  .stat strong {
    font-size: 31px;
  }

  .coach-grid {
    gap: 12px;
  }

  .rules-summary {
    grid-template-columns: 1fr;
  }

  .rule-card li {
    font-size: 15px;
  }

  .charter-side {
    grid-template-columns: 1fr;
  }

  .charter-card li {
    font-size: 15px;
  }

  .tour-hero h1 {
    font-size: 46px;
  }

  .tour-stats {
    grid-template-columns: 1fr;
  }

  .tour-stats div:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .tour-stats div:last-child {
    border-bottom: 0;
  }

  .tour-card {
    padding: 24px 20px;
  }

  .tour-capacity-lines {
    grid-template-columns: 1fr;
  }

  .tour-capacity-lines div {
    min-height: 0;
  }

  .tour-info-grid article {
    min-height: 0;
  }

  .teaching-hero h1 {
    font-size: 42px;
  }

  .school-hero h1 {
    font-size: 46px;
  }

  .teaching-hero-card strong {
    font-size: 62px;
  }

  .teacher-card h3 {
    font-size: 20px;
  }

  .school-path-card strong {
    font-size: 62px;
  }

  .school-nav {
    display: grid;
  }

.program-card > div {
    padding: 24px 20px;
  }
}

.stages-page {
  background: #f5f8fb;
  color: var(--ink);
  overflow: hidden;
}

.stages-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  align-items: center;
  gap: 40px;
  min-height: 720px;
  padding: 164px max(28px, calc((100vw - 1280px) / 2)) 88px;
  color: #fff;
  background:
    linear-gradient(105deg, rgba(3, 26, 52, 0.9) 0%, rgba(3, 26, 52, 0.68) 45%, rgba(3, 26, 52, 0.28) 100%),
    url("assets/slide3.jpg") center / cover;
}

.stages-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(245, 248, 251, 0) 76%, #f5f8fb 100%);
  pointer-events: none;
}

.stages-hero-carousel {
  min-height: 520px;
  border: 8px solid #fff;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(8, 25, 50, 0.16);
}

.stages-hero > * {
  position: relative;
  z-index: 1;
}

.stages-hero-copy {
  max-width: 690px;
  align-self: end;
}

.stages-hero h1 {
  margin: 8px 0 18px;
  font-size: clamp(56px, 8vw, 116px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0;
}

.stages-hero-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.65;
}

.stages-hero-actions,
.stages-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.stages-hero-actions .button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.stages-hero-actions .button-ghost:hover,
.stages-hero-actions .button-ghost:focus-visible {
  color: var(--navy);
  border-color: rgba(255, 255, 255, 0.9);
  background: #fff;
}

.stages-hero-worlds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  grid-column: 1 / 3;
}

.stage-world-card {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 168px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: #fff;
  box-shadow: 0 18px 48px rgba(8, 25, 50, 0.1);
}

.stage-world-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: var(--lime);
}

.stage-world-sailing::before {
  background: #12a6c8;
}

.stage-world-card:hover,
.stage-world-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 58px rgba(8, 25, 50, 0.15);
}

.stage-offer-content span,
.stages-season-grid span,
.stages-steps-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #061a33;
  background: var(--lime);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.stage-offer-sailing .stage-offer-content > span {
  color: #fff;
  background: #12a6c8;
}

.stage-world-card strong {
  color: var(--navy);
  font-size: 34px;
  line-height: 1.05;
  text-transform: uppercase;
}

.stage-world-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.stages-intro,
.stages-offers,
.stages-calendar,
.stages-pricing,
.stages-steps,
.stages-cta {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.stages-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: 42px;
  align-items: end;
  margin-top: 34px;
  margin-bottom: 42px;
}

.stages-intro h2,
.stages-calendar h2,
.stages-steps h2,
.stages-cta h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.02;
  text-transform: uppercase;
}

.stages-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.stages-offers {
  display: grid;
  gap: 28px;
  margin-bottom: 82px;
}

.stages-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1180px, calc(100% - 32px));
  margin: -34px auto 82px;
  padding: 30px 34px;
  border: 1px solid rgba(18, 166, 200, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18, 166, 200, 0.12), rgba(166, 221, 0, 0.1)),
    #fff;
  box-shadow: 0 18px 48px rgba(8, 25, 50, 0.09);
}

.stages-contact h2 {
  margin: 0;
  color: var(--navy);
  max-width: 100%;
  font-size: clamp(26px, 2.8vw, 38px);
  white-space: normal;
  line-height: 1.05;
  text-wrap: balance;
  overflow-wrap: break-word;
  text-transform: uppercase;
}

.stages-contact > div:first-child {
  min-width: 0;
}

.stages-contact p:not(.eyebrow) {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.stages-contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.planning-page {
  padding-top: 88px;
  background:
    radial-gradient(circle at 12% 12%, rgba(167, 216, 23, 0.16), transparent 30%),
    linear-gradient(180deg, #f5f9fc 0%, #eef5f9 58%, #f7f9fb 100%);
}

.planning-hero {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 68px 0 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 28px;
  align-items: end;
}

.planning-hero-copy h1 {
  margin: 10px 0 16px;
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(48px, 6vw, 86px);
  line-height: 0.92;
  text-transform: uppercase;
}

.planning-hero-copy p:not(.eyebrow) {
  max-width: 660px;
  margin: 0;
  color: #4f6078;
  font-size: 19px;
  line-height: 1.65;
}

.planning-hero-card {
  padding: 28px;
  color: #fff;
  background: linear-gradient(145deg, var(--navy), #123a63);
  border-radius: 20px;
  box-shadow: 0 22px 44px rgba(4, 25, 52, 0.18);
}

.planning-hero-card strong {
  display: block;
  font-size: 74px;
  line-height: 0.9;
  font-weight: 950;
}

.planning-hero-card span {
  display: block;
  margin-top: 8px;
  color: var(--lime);
  font-weight: 950;
  text-transform: uppercase;
}

.planning-hero-card p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.planning-table-section,
.planning-contact {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.planning-table-section {
  padding: 18px 0 48px;
}

.planning-table-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 18px;
}

.planning-table-heading h2 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 52px);
  text-transform: uppercase;
}

.planning-table-heading > p {
  max-width: 310px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  text-align: right;
}

.planning-table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid rgba(4, 25, 52, 0.09);
  border-radius: 18px;
  box-shadow: 0 24px 52px rgba(4, 25, 52, 0.1);
}

.planning-table {
  width: 100%;
  min-width: 920px;
  border-collapse: separate;
  border-spacing: 0;
  color: var(--ink);
}

.planning-table th,
.planning-table td {
  padding: 11px 12px;
  border-right: 1px solid rgba(4, 25, 52, 0.16);
  border-bottom: 1px solid rgba(4, 25, 52, 0.16);
  text-align: center;
  font-size: 15px;
  line-height: 1.2;
}

.planning-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  color: #fff;
  background: var(--navy);
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

.planning-table th:last-child,
.planning-table td:last-child {
  border-right: 0;
}

.planning-table tr:last-child th,
.planning-table tr:last-child td {
  border-bottom: 0;
}

.planning-table tbody th {
  width: 142px;
  background: rgba(255, 255, 255, 0.42);
  font-weight: 850;
}

.planning-period-blue th,
.planning-period-blue td {
  background: #d9e8f6;
}

.planning-period-peach th,
.planning-period-peach td {
  background: #f7e1d3;
}

.planning-period-green th,
.planning-period-green td {
  background: #ddf1d5;
}

.planning-period-grey th,
.planning-period-grey td {
  background: #d8d8d8;
}

.planning-table .planning-alert {
  color: #e50019;
  font-weight: 900;
}

.planning-contact {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  margin-bottom: 72px;
  padding: 30px;
  background: linear-gradient(135deg, #fff, #eef8fb);
  border: 1px solid rgba(4, 25, 52, 0.08);
  border-radius: 20px;
  box-shadow: 0 18px 44px rgba(4, 25, 52, 0.08);
}

.planning-contact h2 {
  margin: 8px 0 8px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 42px);
  text-transform: uppercase;
}

.planning-contact p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.planning-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.partners-page {
  padding-top: 88px;
  background:
    radial-gradient(circle at 14% 8%, rgba(167, 216, 23, 0.12), transparent 28%),
    linear-gradient(180deg, #eef5f9 0%, #f8fafc 100%);
}

.partners-hero {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 96px max(20px, calc((100% - var(--max)) / 2)) 76px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3, 16, 33, 0.74) 0%, rgba(3, 16, 33, 0.48) 46%, rgba(3, 16, 33, 0.12) 100%),
    linear-gradient(180deg, rgba(3, 16, 33, 0.02), rgba(3, 16, 33, 0.38)),
    url("assets/partenaires-hero-20260626-v2.png") center / cover;
}

.partners-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  background: linear-gradient(90deg, var(--lime), #d5aa43, #42a9c2);
}

.partners-hero-copy,
.partners-hero-panel {
  position: relative;
  z-index: 1;
}

.partners-hero-copy h1 {
  margin: 10px 0 16px;
  max-width: 820px;
  color: #fff;
  font-size: clamp(50px, 6vw, 92px);
  line-height: 0.9;
  text-transform: uppercase;
}

.partners-hero-copy p:not(.eyebrow) {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.65;
}

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

.partners-hero-panel {
  padding: 28px;
  color: #fff;
  background: rgba(3, 26, 52, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  box-shadow: 0 24px 54px rgba(4, 25, 52, 0.2);
  backdrop-filter: blur(14px);
}

.partners-hero-panel strong {
  display: block;
  font-size: 76px;
  line-height: 0.9;
  font-weight: 950;
}

.partners-hero-panel span {
  display: block;
  margin-top: 8px;
  color: var(--lime);
  font-weight: 950;
  text-transform: uppercase;
}

.partners-hero-panel p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.partners-nav,
.partners-section,
.partners-cta {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.partners-nav {
  position: sticky;
  top: 88px;
  z-index: 9;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 0 28px;
  background: linear-gradient(180deg, rgba(238, 245, 249, 0.98), rgba(238, 245, 249, 0.82));
  backdrop-filter: blur(14px);
}

.partners-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(4, 25, 52, 0.08);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(4, 25, 52, 0.07);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.partners-section {
  padding: 32px 0 26px;
}

.partners-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.55fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 20px;
}

.partners-section-head h2 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.95;
  text-transform: uppercase;
}

.partners-section-head > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.partners-grid {
  display: grid;
  gap: 16px;
}

.partners-grid-inst,
.partners-grid-silver,
.partners-grid-bronze,
.partners-grid-sport {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.partners-grid-bronze {
  margin-top: 16px;
}

.partner-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(4, 25, 52, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(4, 25, 52, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(4, 25, 52, 0.13);
}

.partner-logo {
  display: grid;
  place-items: center;
  min-height: 154px;
  padding: 24px;
  background: #f7fafc;
}

.partner-logo img {
  width: 100%;
  max-width: 210px;
  max-height: 92px;
  object-fit: contain;
}

.partner-logo.is-missing {
  color: var(--muted);
  font-weight: 950;
  text-align: center;
}

.partner-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.partner-badge {
  align-self: flex-start;
  padding: 5px 9px;
  color: var(--ink);
  background: #eef3f8;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.partner-body h3 {
  margin: 14px 0 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.18;
}

.partner-body p {
  margin: 0;
  color: #52637a;
  font-size: 14px;
  line-height: 1.5;
}

.partner-card-gold {
  border-color: rgba(185, 145, 53, 0.36);
  box-shadow: 0 20px 44px rgba(185, 145, 53, 0.14);
}

.partner-card-gold .partner-logo {
  min-height: 190px;
  background: linear-gradient(145deg, #fffdf3, #f7e8b5);
}

.partner-card-gold .partner-logo img {
  max-width: 260px;
  max-height: 116px;
}

.partner-card-gold .partner-badge {
  color: #5c4300;
  background: #f4df9c;
}

.partner-card-silver .partner-logo {
  background: linear-gradient(145deg, #f8fafc, #e8edf3);
}

.partner-card-silver .partner-badge,
.partner-card-sport .partner-badge {
  color: #33445d;
  background: #e8edf3;
}

.partner-card-bronze .partner-logo {
  background: linear-gradient(145deg, #fff8f2, #f2d8c4);
}

.partner-card-bronze .partner-badge {
  color: #704214;
  background: #efd4bd;
}

.partner-card-inst .partner-logo {
  background: linear-gradient(145deg, #f2f8ff, #dcecff);
}

.partner-card-inst .partner-badge {
  color: #0b4a7a;
  background: #d9ecff;
}

.partner-card-sport .partner-logo {
  background: linear-gradient(145deg, #f7fbfb, #e1f3f0);
}

.partners-error {
  grid-column: 1 / -1;
  margin: 0;
  padding: 18px;
  color: #9a3412;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 12px;
}

.partners-cta {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  margin-top: 28px;
  margin-bottom: 72px;
  padding: 32px;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(167, 216, 23, 0.18), transparent 30%),
    linear-gradient(135deg, #fff, #eef8fb);
  border: 1px solid rgba(4, 25, 52, 0.08);
  border-radius: 22px;
  box-shadow: 0 22px 48px rgba(4, 25, 52, 0.1);
}

.partners-cta h2 {
  margin: 8px 0;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 0.98;
  text-transform: uppercase;
}

.partners-cta p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: #52637a;
  line-height: 1.55;
}

.grand-page {
  padding-top: 88px;
  background:
    radial-gradient(circle at 70% 0%, rgba(44, 157, 255, 0.18), transparent 28%),
    radial-gradient(circle at 12% 8%, rgba(167, 216, 23, 0.14), transparent 28%),
    linear-gradient(180deg, #eaf5ff 0%, #f8fafc 58%, #eef5f9 100%);
}

.grand-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 34px;
  align-items: center;
  min-height: 720px;
  padding: 82px max(20px, calc((100% - var(--max)) / 2)) 64px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 53% 12%, rgba(167, 216, 23, 0.75), rgba(68, 177, 255, 0.28) 10%, transparent 26%),
    radial-gradient(circle at 70% 48%, rgba(52, 169, 255, 0.35), transparent 28%),
    linear-gradient(90deg, rgba(2, 15, 39, 0.96) 0%, rgba(2, 33, 80, 0.86) 54%, rgba(2, 72, 142, 0.62) 100%),
    url("assets/grand-chelem-2026-affiche.png") center / cover;
}

.grand-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, #ffffff, #70d4ff, var(--lime), #ffffff);
  box-shadow: 0 -12px 42px rgba(70, 190, 255, 0.7);
}

.grand-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 26%, rgba(255, 255, 255, 0.15) 26.4%, transparent 27% 100%),
    linear-gradient(74deg, transparent 0 58%, rgba(255, 255, 255, 0.12) 58.3%, transparent 59% 100%),
    radial-gradient(circle at 46% 11%, rgba(255, 255, 255, 0.55), transparent 7%);
  mix-blend-mode: screen;
}

.grand-hero-copy,
.grand-hero-side {
  position: relative;
  z-index: 1;
}

.grand-hero-copy h1 {
  max-width: 880px;
  margin: 10px 0 18px;
  color: #fff;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.45);
  font-size: clamp(48px, 5.5vw, 80px);
  line-height: 0.92;
  text-transform: uppercase;
}

.grand-hero-copy p:not(.eyebrow) {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.62;
}

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

.grand-hero-side {
  display: grid;
  gap: 14px;
}

.grand-poster-card {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.36), 0 0 54px rgba(72, 183, 255, 0.32);
  transform: rotate(1.4deg);
}

.grand-poster-card img {
  width: 100%;
  aspect-ratio: 0.72;
  object-fit: cover;
}

.grand-score-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.grand-score-card span {
  display: inline-flex;
  padding: 7px 12px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.grand-score-card strong {
  display: block;
  margin-top: 18px;
  color: #0a3672;
  font-size: 68px;
  line-height: 0.9;
  font-weight: 950;
  text-shadow: 0 0 26px rgba(92, 190, 255, 0.55);
}

.grand-score-card p {
  margin: 18px 0 0;
  color: #52637a;
  line-height: 1.5;
}

.grand-kpis,
.grand-intro,
.grand-experience,
.grand-categories,
.grand-media-block,
.grand-sites,
.grand-cta {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.grand-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 28px 0 36px;
}

.grand-kpis article {
  position: relative;
  overflow: hidden;
  padding: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(66, 169, 194, 0.2), transparent 42%),
    #fff;
  border: 1px solid rgba(34, 122, 196, 0.14);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(4, 25, 52, 0.09);
}

.grand-kpis strong {
  display: block;
  color: #062a68;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 0.9;
  font-weight: 950;
}

.grand-kpis .grand-kpi-word strong {
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
}

.grand-kpis span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 850;
  text-transform: uppercase;
}

.grand-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  gap: 44px;
  padding: 42px 0;
}

.grand-intro h2,
.grand-section-title h2,
.grand-categories h2,
.grand-media-card h2,
.grand-sites h2,
.grand-cta h2 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: clamp(27px, 2.7vw, 38px);
  line-height: 1.04;
  text-transform: uppercase;
}

.grand-intro-text {
  display: grid;
  gap: 16px;
}

.grand-intro-text p,
.grand-categories-copy p,
.grand-sites p,
.grand-media-card p,
.grand-cta p:not(.eyebrow) {
  margin: 0;
  color: #52637a;
  line-height: 1.68;
}

.grand-experience {
  padding: 42px 0;
}

.grand-section-title {
  max-width: 660px;
  margin-bottom: 22px;
}

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

.grand-experience-grid article {
  min-height: 225px;
  padding: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(20, 86, 132, 0.12);
  border-radius: 16px;
  box-shadow: 0 16px 38px rgba(4, 25, 52, 0.08);
}

.grand-experience-grid span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: #0a4a75;
  background: #e8f5f8;
  border: 1px solid rgba(66, 169, 194, 0.24);
  border-radius: 10px;
  font-weight: 950;
}

.grand-experience-grid h3 {
  margin: 26px 0 10px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.18;
}

.grand-experience-grid p {
  margin: 0;
  color: #52637a;
  line-height: 1.58;
}

.grand-categories {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.65fr);
  gap: 24px;
  align-items: stretch;
  padding: 44px 0;
}

.grand-categories-copy {
  padding: 34px;
  background: #fff;
  border: 1px solid rgba(4, 25, 52, 0.08);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(4, 25, 52, 0.08);
}

.grand-categories-copy p:not(.eyebrow) {
  margin-top: 20px;
}

.grand-category-list {
  display: grid;
  gap: 12px;
}

.grand-category-list article {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 20px;
  background: #fff;
  border-left: 7px solid #42a9c2;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(4, 25, 52, 0.07);
}

.grand-category-list strong {
  color: var(--ink);
  font-size: 24px;
  font-weight: 950;
}

.grand-category-list span {
  color: var(--muted);
  font-weight: 800;
  text-align: right;
}

.grand-media-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 22px;
  padding: 48px 0;
}

.grand-media-card {
  min-height: 500px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(3, 20, 43, 0.02), rgba(3, 20, 43, 0.2)),
    url("assets/grand-chelem-2026-affiche.png") center 32% / cover;
  border: 1px solid rgba(20, 86, 132, 0.14);
  border-radius: 18px;
  box-shadow: 0 20px 46px rgba(4, 25, 52, 0.11);
}

.grand-media-card-content {
  max-width: 700px;
  padding: 24px 26px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(4, 25, 52, 0.15);
  backdrop-filter: blur(8px);
}

.grand-media-card-content h2 {
  font-size: clamp(25px, 2.4vw, 34px);
  line-height: 1.08;
}

.grand-media-card-content p:not(.eyebrow) {
  margin-top: 18px;
  max-width: 620px;
}

.grand-media-list {
  display: grid;
  gap: 14px;
}

.grand-media-list article {
  padding: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(20, 86, 132, 0.12);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(4, 25, 52, 0.07);
}

.grand-media-list strong,
.grand-media-list span {
  display: block;
}

.grand-media-list strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.15;
}

.grand-media-list span {
  margin-top: 10px;
  color: #52637a;
  line-height: 1.45;
}

.grand-sites {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
  padding: 42px 0 50px;
}

.grand-sites > div:first-child {
  padding: 34px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(4, 25, 52, 0.08);
}

.grand-sites > div:first-child p:not(.eyebrow) {
  margin-top: 18px;
}

.grand-sites-card {
  padding: 28px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(20, 86, 132, 0.12);
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(4, 25, 52, 0.08);
}

.grand-sites-card span {
  color: #23809b;
  font-weight: 950;
  text-transform: uppercase;
}

.grand-sites-card strong {
  display: block;
  margin-top: 18px;
  font-size: 32px;
  line-height: 1;
}

.grand-sites-card p {
  margin-top: 16px;
  color: #52637a;
}

.grand-cta {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  margin-bottom: 76px;
  padding: 32px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(3, 26, 52, 0.96), rgba(0, 82, 148, 0.88)),
    url("assets/grand-chelem-2026-affiche.png") center 45% / cover;
  border-radius: 24px;
  box-shadow: 0 26px 58px rgba(4, 25, 52, 0.18);
}

.grand-cta h2 {
  color: #fff;
}

.grand-cta p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.tournaments-page {
  padding-top: 88px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(230, 32, 44, 0.12), transparent 28%),
    radial-gradient(circle at 84% 8%, rgba(255, 197, 0, 0.18), transparent 30%),
    linear-gradient(180deg, #f4f8fb 0%, #ffffff 44%, #eef5f9 100%);
}

.tournaments-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  min-height: 500px;
  padding: 82px max(20px, calc((100% - var(--max)) / 2)) 58px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 80% 14%, rgba(255, 197, 0, 0.22), transparent 18%),
    linear-gradient(110deg, rgba(3, 16, 33, 0.9) 0%, rgba(5, 34, 76, 0.76) 46%, rgba(3, 16, 33, 0.24) 100%),
    url("assets/ecole/competition-action-20260624.png") center / cover;
}

.tournaments-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 0 18%, rgba(230, 32, 44, 0.42) 18.2% 18.8%, transparent 19% 100%),
    linear-gradient(45deg, transparent 0 58%, rgba(255, 143, 31, 0.42) 58.2% 58.8%, transparent 59% 100%),
    linear-gradient(90deg, transparent 0 74%, rgba(0, 166, 81, 0.38) 74.2% 74.8%, transparent 75% 100%);
  mix-blend-mode: screen;
}

.tournaments-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, #e6202c, #ff8f1f, #00a651, #ffc500);
  box-shadow: 0 -12px 32px rgba(255, 197, 0, 0.22);
}

.tournaments-hero-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.tournaments-hero-copy h1 {
  max-width: 760px;
  margin: 10px 0 16px;
  color: #fff;
  font-size: clamp(56px, 8vw, 108px);
  line-height: 0.86;
  text-transform: uppercase;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.36);
}

.tournaments-hero-copy p:not(.eyebrow) {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.55;
}

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

.tournament-color-nav,
.tournament-type-nav,
.tournament-intro,
.tournament-feature-grid,
.tournament-color-section,
.tournament-legend,
.tournament-list-section,
.tournament-calendar,
.tournament-cta {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.tournament-color-nav {
  position: sticky;
  top: 88px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 16px 0;
}

.tournament-color-nav a {
  display: grid;
  place-items: center;
  min-height: 46px;
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(4, 25, 52, 0.16);
}

.color-red {
  background: #e6202c;
}

.color-orange {
  background: #ff8f1f;
}

.color-green {
  background: #00a651;
}

.color-yellow {
  color: var(--ink) !important;
  background: #ffc500;
}

.tournament-type-nav {
  position: sticky;
  top: 88px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 16px 0;
}

.tournament-type-nav a {
  display: grid;
  place-items: center;
  min-height: 48px;
  padding: 0 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(4, 25, 52, 0.1);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(4, 25, 52, 0.09);
}

.tournament-type-nav a:hover,
.tournament-type-nav a:focus-visible {
  color: var(--ink);
  background: var(--lime);
}

.tournament-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: 44px;
  padding: 54px 0 28px;
}

.tournament-intro h2,
.tournament-color-head h2,
.tournament-calendar-copy h2,
.tournament-cta h2 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 66px);
  line-height: 0.94;
  text-transform: uppercase;
}

.tournament-intro > p,
.tournament-color-head p,
.tournament-calendar-copy p,
.tournament-cta p:not(.eyebrow) {
  margin: 0;
  color: #52637a;
  line-height: 1.68;
}

.tournament-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 26px 0 46px;
}

.tournament-feature-grid article {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: #fff;
  border-radius: 22px;
  box-shadow: 0 22px 48px rgba(4, 25, 52, 0.16);
}

.tournament-feature-grid article:nth-child(1) {
  background: radial-gradient(circle at 85% 8%, rgba(255, 255, 255, 0.32), transparent 28%), linear-gradient(145deg, #9e101b, #e6202c);
}

.tournament-feature-grid article:nth-child(2) {
  background: radial-gradient(circle at 85% 8%, rgba(255, 255, 255, 0.32), transparent 28%), linear-gradient(145deg, #bd4b00, #ff8f1f);
}

.tournament-feature-grid article:nth-child(3) {
  background: radial-gradient(circle at 85% 8%, rgba(255, 255, 255, 0.28), transparent 28%), linear-gradient(145deg, #006b38, #00a651);
}

.tournament-feature-grid article:nth-child(4) {
  color: var(--ink);
  background: radial-gradient(circle at 85% 8%, rgba(255, 255, 255, 0.44), transparent 28%), linear-gradient(145deg, #d5a700, #ffc500);
}

.tournament-feature-grid span {
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  opacity: 0.82;
}

.tournament-feature-grid strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 0.92;
  text-transform: uppercase;
}

.tournament-feature-grid p {
  margin: 12px 0 0;
  line-height: 1.45;
}

.tournament-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 30px 0 18px;
}

.tournament-legend span,
.level-badge,
.format-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.tournament-legend span {
  color: #31425a;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(4, 25, 52, 0.08);
  box-shadow: 0 10px 24px rgba(4, 25, 52, 0.04);
}

.level-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.level-red {
  background: #e6202c;
}

.level-orange {
  background: #ff8f1f;
}

.level-green {
  background: #00a651;
}

.level-yellow {
  background: #ffc500;
}

.level-open {
  background: linear-gradient(135deg, #052252, #0073b4);
}

.level-badge {
  position: relative;
  color: #25364d;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(4, 25, 52, 0.09);
}

.level-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.level-badge.level-red {
  color: #b51922;
  background: rgba(230, 32, 44, 0.07);
  border-color: rgba(230, 32, 44, 0.16);
}

.level-badge.level-orange {
  color: #bd5f00;
  background: rgba(255, 143, 31, 0.08);
  border-color: rgba(255, 143, 31, 0.18);
}

.level-badge.level-green {
  color: #007c43;
  background: rgba(0, 166, 81, 0.07);
  border-color: rgba(0, 166, 81, 0.16);
}

.level-badge.level-yellow {
  color: #8b6900;
  background: rgba(255, 197, 0, 0.12);
  border-color: rgba(255, 197, 0, 0.25);
}

.level-badge.level-open {
  color: #075d8f;
  background: rgba(0, 115, 180, 0.08);
  border-color: rgba(0, 115, 180, 0.18);
}

.format-badge {
  color: #647386;
  background: transparent;
  border: 1px solid rgba(4, 25, 52, 0.1);
}

.ranking-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 24px;
  padding: 0 10px;
  color: #07375c;
  background: linear-gradient(135deg, rgba(216, 168, 35, 0.13), rgba(0, 115, 180, 0.08));
  border: 1px solid rgba(0, 115, 180, 0.14);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.ranking-badge::before {
  content: "Classement";
  color: #8b6900;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tournament-list-section {
  position: relative;
  overflow: hidden;
  margin-top: 16px;
  padding: clamp(22px, 3.4vw, 34px);
  background: #fff;
  border: 1px solid rgba(4, 25, 52, 0.08);
  border-radius: 28px;
  box-shadow: 0 26px 62px rgba(4, 25, 52, 0.1);
}

.tournament-list-head {
  margin-bottom: 16px;
  padding-left: 0;
  text-align: center;
}

.tournament-list-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2.7vw, 34px);
  line-height: 1;
  text-transform: uppercase;
}

.tournament-list {
  display: grid;
  gap: 6px;
  padding-left: 0;
}

.tournament-row {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  min-height: 56px;
  padding: 6px 9px;
  background:
    radial-gradient(circle at 100% 0%, rgba(167, 216, 23, 0.07), transparent 30%),
    #f8fbfd;
  border: 1px solid rgba(4, 25, 52, 0.07);
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tournament-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(4, 25, 52, 0.11);
}

.tournament-row-featured {
  grid-template-columns: 60px minmax(0, 1fr);
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 197, 0, 0.12), transparent 34%),
    linear-gradient(135deg, #f8fbfd, #fff);
  border-color: rgba(255, 197, 0, 0.2);
}

.tournament-date {
  display: grid;
  place-items: center;
  min-height: 44px;
  padding: 4px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(4, 25, 52, 0.09);
  border-radius: 10px;
  text-align: center;
}

.tournament-date span {
  font-size: 15px;
  line-height: 0.95;
  font-weight: 950;
}

.tournament-date small {
  margin-top: 2px;
  color: #6b7a8d;
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
}

.tournament-row-main {
  min-width: 0;
}

.tournament-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 3px;
}

.tournament-row h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 1;
  text-transform: uppercase;
}

.tournament-row p {
  margin: 2px 0 0;
  color: #52637a;
  line-height: 1.18;
  font-size: 11px;
}

.tournament-program {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 20px;
  width: min(var(--max), calc(100% - 40px));
  margin: 34px auto 0;
  align-items: start;
}

.program-legend {
  position: sticky;
  top: 112px;
  padding: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 115, 180, 0.42), transparent 40%),
    linear-gradient(160deg, #06152d, #0b294f);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  box-shadow: 0 24px 56px rgba(4, 25, 52, 0.18);
}

.program-legend h2 {
  color: #fff;
  font-size: clamp(25px, 2.35vw, 34px);
  line-height: 0.98;
  overflow-wrap: anywhere;
}

.program-legend p {
  margin: 10px 0 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.45;
}

.program-key {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.program-key span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.program-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  color: #fff;
  border-radius: 8px;
  font-style: normal;
  font-size: 16px;
  font-weight: 950;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.icon-men {
  background: #147cc4;
}

.icon-women {
  background: #e83476;
}

.icon-mixed {
  background: #7542b8;
}

.icon-youth {
  background: #f28a17;
  font-size: 13px;
}

.icon-galaxy {
  background: #35a146;
}

.icon-galaxy.red {
  background: #e6202c;
}

.icon-galaxy.orange {
  background: #ff8f1f;
}

.icon-galaxy.green {
  background: #00a651;
}

.icon-open {
  background: linear-gradient(135deg, #06152d, #0073b4);
  font-size: 13px;
}

.program-board {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(4, 25, 52, 0.09);
  border-radius: 20px;
  box-shadow: 0 26px 62px rgba(4, 25, 52, 0.12);
}

.program-board-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px 24px;
  align-items: end;
  padding: 24px 26px 18px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(167, 216, 23, 0.95), rgba(167, 216, 23, 0.95)) left bottom / 100% 5px no-repeat,
    linear-gradient(135deg, #06152d, #082c5b);
}

.program-board-title .eyebrow {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--lime);
}

.program-board-title h2 {
  color: #fff;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.9;
}

.program-table-wrap {
  overflow-x: auto;
}

.program-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.program-table th {
  padding: 9px 12px;
  color: #fff;
  background: #071a35;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-align: left;
  text-transform: uppercase;
}

.program-table th:first-child {
  width: 44px;
}

.program-table th:nth-child(3),
.program-table th:nth-child(4),
.program-table td:nth-child(3),
.program-table td:nth-child(4) {
  text-align: center;
}

.program-table td {
  padding: 7px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-right: 1px solid rgba(4, 25, 52, 0.12);
  border-bottom: 1px solid rgba(4, 25, 52, 0.12);
  font-size: 12px;
  font-weight: 850;
  vertical-align: middle;
}

.program-table td:first-child {
  padding: 6px 8px;
  text-align: center;
}

.program-table td:nth-child(4) {
  color: #7ca700;
  font-weight: 950;
  text-transform: uppercase;
}

.program-table strong {
  display: block;
  font-size: 12px;
  line-height: 1.1;
  text-transform: uppercase;
}

.program-table small {
  display: block;
  margin-top: 2px;
  color: #6a7889;
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.program-table tr:nth-child(even) td {
  background: #f6f9fc;
}

.program-table tr:hover td {
  background: rgba(167, 216, 23, 0.08);
}

.program-table .program-highlight td {
  background: linear-gradient(90deg, rgba(167, 216, 23, 0.14), rgba(255, 255, 255, 0.98));
}

.program-note {
  margin: 0;
  padding: 14px 18px;
  color: #fff;
  background: #06152d;
  border-top: 3px solid var(--lime);
  font-size: 13px;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.tournament-color-section {
  position: relative;
  overflow: hidden;
  margin-top: 22px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 28px;
  box-shadow: 0 26px 62px rgba(4, 25, 52, 0.12);
}

.tournament-color-section::after {
  content: "";
  position: absolute;
  right: -56px;
  top: -70px;
  width: 220px;
  height: 220px;
  border: 34px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  pointer-events: none;
}

.tournament-red {
  background: linear-gradient(135deg, rgba(230, 32, 44, 0.1), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(230, 32, 44, 0.2);
}

.tournament-orange {
  background: linear-gradient(135deg, rgba(255, 143, 31, 0.14), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(255, 143, 31, 0.24);
}

.tournament-green {
  background: linear-gradient(135deg, rgba(0, 166, 81, 0.12), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(0, 166, 81, 0.22);
}

.tournament-yellow {
  background: linear-gradient(135deg, rgba(255, 197, 0, 0.18), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(213, 167, 0, 0.26);
}

.tournament-color-head {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin-bottom: 24px;
}

.tournament-color-head p:not(.eyebrow) {
  margin-top: 18px;
}

.tournament-date-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.tournament-date-grid.compact {
  grid-template-columns: minmax(0, 0.45fr);
}

.tournament-date-grid article {
  min-height: 170px;
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(4, 25, 52, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(4, 25, 52, 0.08);
}

.tournament-date-grid time {
  display: inline-flex;
  padding: 7px 11px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.tournament-date-grid strong,
.tournament-date-grid span {
  display: block;
}

.tournament-date-grid strong {
  margin-top: 22px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.02;
  text-transform: uppercase;
}

.tournament-date-grid span {
  margin-top: 10px;
  color: #52637a;
  line-height: 1.45;
}

.tournament-yellow-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.46fr) minmax(0, 1fr);
  gap: 16px;
}

.tournament-open-card {
  min-height: 100%;
  padding: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 8%, rgba(255, 197, 0, 0.38), transparent 32%),
    linear-gradient(145deg, #041b41, #005d99);
  border-radius: 22px;
  box-shadow: 0 24px 52px rgba(4, 25, 52, 0.16);
}

.tournament-open-card span {
  display: inline-flex;
  padding: 7px 12px;
  color: var(--ink);
  background: #ffc500;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.tournament-open-card h3 {
  margin: 26px 0 14px;
  color: #fff;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.9;
  text-transform: uppercase;
}

.tournament-open-card p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.58;
}

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

.tournament-calendar {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 58px 0 40px;
}

.tournament-calendar-copy {
  padding: 30px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(4, 25, 52, 0.08);
}

.tournament-calendar-copy p:not(.eyebrow) {
  margin-top: 18px;
}

.tournament-calendar-image {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(4, 25, 52, 0.1);
  border-radius: 22px;
  box-shadow: 0 24px 54px rgba(4, 25, 52, 0.13);
}

.tournament-calendar-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center;
}

.tournament-cta {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  margin-top: 58px;
  margin-bottom: 76px;
  padding: 32px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(3, 26, 52, 0.96), rgba(3, 26, 52, 0.74)),
    linear-gradient(90deg, #e6202c, #ff8f1f, #00a651, #ffc500);
  border-radius: 24px;
  box-shadow: 0 26px 58px rgba(4, 25, 52, 0.16);
}

.tournament-cta h2 {
  color: #fff;
}

.tournament-cta p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 1120px) {
  .tournaments-hero,
  .tournament-intro,
  .tournament-program,
  .tournament-list-head,
  .tournament-yellow-layout,
  .tournament-calendar {
    grid-template-columns: 1fr;
  }

  .program-legend {
    position: static;
  }

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

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

  .tournament-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .tournaments-page {
    padding-top: 76px;
  }

  .tournaments-hero {
    min-height: 0;
    padding: 48px 20px 42px;
  }

  .tournaments-hero-copy h1 {
    max-width: 100%;
    font-size: 48px;
    line-height: 0.9;
  }

  .tournaments-hero-copy {
    width: 100%;
    max-width: 100%;
  }

  .tournaments-hero-copy p:not(.eyebrow) {
    max-width: 100%;
    font-size: 18px;
  }

  .tournaments-hero-actions .button {
    width: 100%;
    justify-content: center;
  }

  .tournament-color-nav,
  .tournament-type-nav,
  .tournament-intro,
  .tournament-feature-grid,
  .tournament-color-section,
  .tournament-legend,
  .tournament-list-section,
  .tournament-program,
  .tournament-calendar,
  .tournament-cta {
    width: calc(100% - 24px);
  }

  .tournament-color-nav,
  .tournament-type-nav {
    position: static;
    grid-template-columns: 1fr;
  }

  .tournament-feature-grid,
  .tournament-date-grid,
  .tournament-date-grid.compact,
  .yellow-list {
    grid-template-columns: 1fr;
  }

  .tournament-color-section {
    padding: 26px 18px;
    border-radius: 18px;
  }

  .tournament-list-section {
    padding: 26px 18px;
    border-radius: 18px;
  }

  .tournament-program {
    gap: 12px;
  }

  .program-legend {
    padding: 18px;
    border-radius: 18px;
  }

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

  .program-board {
    border-radius: 18px;
  }

  .program-board-title {
    grid-template-columns: 1fr;
    padding: 20px 18px 16px;
  }

  .program-board-title span {
    justify-self: start;
  }

  .program-table {
    min-width: 680px;
  }

  .program-table th,
  .program-table td {
    padding: 7px 9px;
    font-size: 11px;
  }

  .program-table strong {
    font-size: 11px;
  }

  .tournament-list-head,
  .tournament-list {
    padding-left: 0;
  }

  .tournament-list-head h2 {
    font-size: 28px;
  }

  .tournament-row,
  .tournament-row-featured {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 9px;
    min-height: 58px;
    padding: 7px 9px;
  }

  .tournament-date {
    min-width: 0;
  }

  .tournament-row-featured .button {
    width: fit-content;
  }

  .tournament-calendar {
    padding: 42px 0 30px;
  }

  .tournament-calendar-copy,
  .tournament-cta {
    padding: 24px 18px;
  }

  .tournament-calendar-image img {
    aspect-ratio: 1.35 / 1;
  }

  .tournament-cta {
    margin-bottom: 48px;
  }
}

.stage-offer {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(8, 25, 50, 0.1);
}

.stage-offer:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.92fr);
}

.stage-offer:nth-child(even) .stage-offer-media {
  order: 2;
}

.stage-offer-media {
  min-height: 360px;
}

.stage-offer-media.media-carousel {
  border-radius: 0;
  box-shadow: none;
}

.stage-offer-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stage-offer-content {
  padding: clamp(28px, 5vw, 56px);
}

.stage-offer-content h2 {
  margin: 16px 0 14px;
  color: var(--navy);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.95;
  text-transform: uppercase;
}

.stage-offer-content p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.stage-offer-content ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.stage-offer-content li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  line-height: 1.55;
}

.stage-offer-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
}

.stages-calendar,
.stages-steps {
  margin-top: 82px;
}

.stages-season-grid,
.stages-steps-grid,
.stages-pricing {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.stage-date-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.stage-date-list article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(8, 25, 50, 0.07);
}

.stage-date-list span {
  display: block;
  color: var(--navy);
  font-size: 18px;
  font-weight: 950;
  text-transform: uppercase;
}

.stage-date-list p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.stages-season-grid article,
.stages-steps-grid article,
.stages-pricing-card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(8, 25, 50, 0.08);
}

.stages-season-grid h3,
.stages-steps-grid h3,
.stages-pricing-card h2 {
  margin: 18px 0 12px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.1;
}

.stages-season-grid p,
.stages-steps-grid p,
.stages-pricing-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.stages-pricing {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
}

.stages-pricing-card {
  min-height: 0;
}

.stages-pricing-card .eyebrow {
  margin: 0;
}

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

.stages-steps-grid span {
  background: #d8b45f;
  color: #081932;
}

.stages-cta {
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 82px;
  margin-bottom: 82px;
  padding: 34px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #061a33, #0b2b54);
}

.stages-cta h2 {
  max-width: 720px;
  color: #fff;
}

.stages-cta .eyebrow {
  margin: 0 0 10px;
}

@media (max-width: 980px) {
  .stages-hero,
  .stages-intro,
  .stage-offer,
  .stage-offer:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .stages-hero {
    padding-top: 132px;
  }

  .stages-hero-carousel,
  .stages-hero-worlds {
    grid-column: auto;
  }

  .stage-offer:nth-child(even) .stage-offer-media {
    order: 0;
  }

  .stages-season-grid,
  .stages-pricing,
  .stages-steps-grid,
  .stage-date-list {
    grid-template-columns: 1fr 1fr;
  }

  .stages-contact {
    align-items: flex-start;
    flex-direction: column;
  }

  .stages-contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .stages-hero {
    min-height: 0;
    padding: 118px 20px 64px;
  }

  .stages-hero h1 {
    font-size: 48px;
  }

  .stages-hero-carousel {
    min-height: 320px;
    border-width: 6px;
  }

  .stages-hero-worlds {
    grid-template-columns: 1fr;
  }

  .stages-season-grid,
  .stages-pricing,
  .stages-steps-grid,
  .stage-date-list {
    grid-template-columns: 1fr;
  }

  .stage-offer-media {
    min-height: 260px;
  }

  .stages-cta {
    padding: 26px 20px;
  }

  .stages-contact {
    margin-top: -40px;
    padding: 24px 20px;
  }
}

@media (max-width: 1120px) {
  .history-hero,
  .history-story {
    grid-template-columns: 1fr;
  }

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

  .presidency-row-racing {
    width: 100%;
  }
}

@media (max-width: 820px) {
  .history-page {
    padding-top: 76px;
  }

  .history-hero {
    min-height: 0;
    padding: 64px 20px 52px;
  }

  .history-copy h1 {
    font-size: 42px;
  }

  .history-carousel {
    min-height: 320px;
  }

  .history-story,
  .history-timeline {
    width: calc(100% - 24px);
  }

  .history-timeline li {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .history-timeline li > span {
    justify-items: start;
    min-height: 48px;
    padding: 0 16px;
  }

  .presidency-section {
    padding: 42px 12px 56px;
  }

  .presidency-board {
    gap: 12px;
  }

  .presidency-row,
  .presidency-row-wide,
  .presidency-row-racing,
  .presidency-row-club {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .planning-hero {
    grid-template-columns: 1fr;
  }

  .planning-contact {
    align-items: flex-start;
    flex-direction: column;
  }

  .planning-contact-actions {
    justify-content: flex-start;
  }

  .partners-hero,
  .partners-section-head {
    grid-template-columns: 1fr;
  }

  .partners-hero-panel {
    max-width: 420px;
  }

  .partners-grid-inst,
  .partners-grid-silver,
  .partners-grid-bronze,
  .partners-grid-sport,
  .partners-grid-gold {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partners-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .grand-hero,
  .grand-intro,
  .grand-categories,
  .grand-media-block,
  .grand-sites {
    grid-template-columns: 1fr;
  }

  .grand-hero-side,
  .grand-score-card,
  .grand-sites-card {
    max-width: 430px;
  }

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

  .grand-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .planning-page {
    padding-top: 76px;
  }

  .planning-hero,
  .planning-table-section,
  .planning-contact {
    width: calc(100% - 24px);
  }

  .planning-hero {
    padding: 48px 0 20px;
  }

  .planning-hero-copy h1 {
    font-size: 44px;
  }

  .planning-hero-card strong {
    font-size: 58px;
  }

  .planning-table-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .planning-table-heading > p {
    max-width: none;
    text-align: left;
  }

  .planning-table th,
  .planning-table td {
    padding: 10px;
    font-size: 14px;
  }

  .planning-contact {
    margin-bottom: 48px;
    padding: 24px 18px;
  }

  .partners-page {
    padding-top: 76px;
  }

  .partners-hero,
  .partners-nav,
  .partners-section,
  .partners-cta {
    width: calc(100% - 24px);
  }

  .partners-hero {
    padding: 48px 0 22px;
  }

  .partners-hero-copy h1 {
    font-size: 44px;
  }

  .partners-hero-panel strong {
    font-size: 58px;
  }

  .partners-nav {
    position: static;
    padding-bottom: 18px;
  }

  .partners-nav a {
    flex: 1 1 calc(50% - 6px);
    justify-content: center;
    padding: 0 10px;
    text-align: center;
  }

  .partners-section {
    padding: 28px 0 18px;
  }

  .partners-section-head {
    gap: 12px;
  }

  .partners-grid-inst,
  .partners-grid-silver,
  .partners-grid-bronze,
  .partners-grid-sport,
  .partners-grid-gold {
    grid-template-columns: 1fr;
  }

  .partner-logo {
    min-height: 132px;
  }

  .partners-cta {
    margin-bottom: 48px;
    padding: 24px 18px;
  }

  .grand-page {
    padding-top: 76px;
  }

  .grand-hero {
    min-height: 0;
    padding: 58px 20px 52px;
  }

  .grand-hero-copy h1 {
    font-size: 46px;
  }

  .grand-score-card strong {
    font-size: 62px;
  }

  .grand-hero-side {
    max-width: 340px;
  }

  .grand-poster-card {
    transform: none;
  }

  .grand-kpis,
  .grand-intro,
  .grand-experience,
  .grand-categories,
  .grand-media-block,
  .grand-sites,
  .grand-cta {
    width: calc(100% - 24px);
  }

  .grand-kpis,
  .grand-experience-grid {
    grid-template-columns: 1fr;
  }

  .grand-intro,
  .grand-categories,
  .grand-media-block,
  .grand-sites {
    padding: 30px 0;
  }

  .grand-categories-copy,
  .grand-media-card,
  .grand-sites > div:first-child,
  .grand-cta {
    padding: 24px 18px;
  }

  .grand-media-card {
    min-height: 360px;
  }

  .grand-category-list article {
    align-items: flex-start;
    flex-direction: column;
  }

  .grand-category-list span {
    text-align: left;
  }

  .grand-cta {
    margin-bottom: 48px;
  }
}

@media (max-width: 980px) {
  .teams-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 76px 20px 72px;
  }

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

  .teams-toolbar,
  .teams-cta {
    grid-template-columns: 1fr;
  }

  .team-filters {
    justify-content: flex-start;
  }

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

  .pickle-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 66px 20px 72px;
  }

  .pickle-hero-visual {
    justify-self: center;
    width: min(620px, 100%);
    min-height: 360px;
  }

  .pickle-hero-poster {
    width: min(360px, 100%);
    min-height: 0;
  }

  .pickle-hero-visual img {
    min-height: 360px;
  }

  .pickle-hero-poster img {
    min-height: 0;
  }

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

  .pickle-visual-strip {
    grid-template-columns: 1fr 1fr;
  }

  .pickle-visual-strip figure:nth-child(2) {
    margin-top: 0;
  }

  .pickle-visual-strip figure:nth-child(3) {
    grid-column: 1 / -1;
  }

  .pickle-intro {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .pickle-pricing .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .pickle-contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .teams-page {
    padding-top: 76px;
  }

  .teams-hero {
    padding: 46px 16px 46px;
  }

  .teams-hero h1 {
    font-size: 42px;
  }

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

  .teams-hero-panel {
    padding: 18px;
  }

  .teams-stats,
  .teams-toolbar,
  .teams-groups,
  .teams-cta {
    width: calc(100% - 24px);
  }

  .teams-stats,
  .teams-grid {
    grid-template-columns: 1fr;
  }

  .teams-toolbar {
    padding-top: 38px;
  }

  .teams-toolbar h2 {
    font-size: 30px;
  }

  .team-filters {
    gap: 7px;
  }

  .team-filters button {
    flex: 1 1 calc(50% - 7px);
    padding: 0 10px;
  }

  .teams-group-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .team-competition-card {
    min-height: 0;
    padding: 14px;
  }

  .team-competition-card h3 {
    min-height: 0;
  }

  .teams-cta {
    padding: 22px 18px;
  }

  .pickle-page {
    padding-top: 76px;
  }

  .pickle-hero {
    padding: 48px 16px 58px;
  }

  .pickle-hero h1 {
    font-size: 48px;
  }

  .pickle-actions {
    flex-direction: column;
  }

  .pickle-hero-visual {
    width: 100%;
    min-height: 280px;
  }

  .pickle-hero-poster {
    width: min(330px, 100%);
    min-height: 0;
  }

  .pickle-hero-visual::before {
    inset: 14px -8px -10px 14px;
  }

  .pickle-hero-visual img {
    min-height: 280px;
    border-width: 6px;
  }

  .pickle-hero-poster img {
    min-height: 0;
  }

  .pickle-quick-grid,
  .pickle-plans {
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
  }

  .pickle-visual-strip {
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
    margin-top: 30px;
  }

  .pickle-visual-strip figure,
  .pickle-visual-strip figure:nth-child(3) {
    grid-column: auto;
    min-height: 210px;
  }

  .pickle-quick-grid {
    margin-top: -32px;
  }

  .pickle-intro,
  .pickle-pricing,
  .pickle-contact {
    width: calc(100% - 24px);
  }

  .pickle-intro h2,
  .pickle-pricing .section-heading h2,
  .pickle-contact h2 {
    font-size: 36px;
  }

  .pickle-tournament {
    margin: 32px 0 52px;
    padding: 0 12px;
  }

  .pickle-tournament-card {
    padding: 30px 22px;
  }

  .pickle-tournament-card h2 {
    font-size: 38px;
  }

  .pickle-contact {
    padding: 28px 22px;
  }
}
