@font-face {
  font-family: "Yanone Kaffeesatz";
  src: url("/assets/fonts/yanone-kaffeesatz-regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  --brand-blue: #271f5b;
  --brand-cyan: #009fe3;
  --brand-green: #84bc26;
  --brand-pink: #d81f84;
  --aqua-soft: #e8f8fb;
  --aqua: var(--brand-cyan);
  --teal: var(--brand-cyan);
  --teal-deep: var(--brand-blue);
  --pink: var(--brand-pink);
  --pink-ink: #a71168;
  --pink-soft: #fbe4f2;
  --ink: var(--brand-blue);
  --muted: #625d7a;
  --paper: #fbfafc;
  --white: #ffffff;
  --line: rgba(39, 31, 91, 0.14);
  --brand-gradient: linear-gradient(115deg, var(--brand-cyan), var(--brand-green));
  --shadow: 0 24px 70px rgba(39, 31, 91, 0.13);
  --radius-sm: 16px;
  --radius-md: 26px;
  --radius-lg: 42px;
  --shell: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", "Trebuchet MS", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

figure {
  margin: 0;
}

h1,
h2,
h3,
.schedule-card strong,
.pricing-row strong,
.price-line strong,
.info-big strong,
.error-code {
  font-family: "Yanone Kaffeesatz", "Arial Narrow", sans-serif;
  font-weight: 400;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--pink-ink);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
}

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

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(63, 57, 79, 0.08);
  background: rgba(251, 250, 252, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: block;
  width: 62px;
  height: 62px;
  overflow: hidden;
  flex: 0 0 62px;
  border: 0;
  background: transparent url("/assets/images/logo-badaflo-blason.png") center / contain no-repeat;
  color: transparent;
  font-size: 0;
  text-indent: -9999px;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  color: var(--brand-blue);
  font-family: "Yanone Kaffeesatz", "Arial Narrow", sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 750;
}

.site-nav a {
  padding: 10px 13px;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(0, 159, 227, 0.1);
  color: var(--brand-blue);
}

.site-nav .nav-cta {
  margin-left: 7px;
  padding-inline: 18px;
  background: var(--ink);
  color: var(--white);
}

.site-nav .nav-cta:hover {
  background: var(--pink-ink);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.menu-toggle span[aria-hidden="true"] {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 9vw, 122px) 0 clamp(72px, 9vw, 118px);
  background:
    radial-gradient(circle at 86% 6%, rgba(0, 159, 227, 0.15), transparent 30%),
    radial-gradient(circle at 8% 100%, rgba(132, 188, 38, 0.1), transparent 25%),
    linear-gradient(180deg, var(--paper), #f4fbfc);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 94px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 3px;
  border-radius: 99px;
  background: var(--brand-gradient);
}

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

h1 {
  max-width: 720px;
  margin-bottom: 25px;
  font-size: clamp(48px, 6.4vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

h1 em {
  display: block;
  background: var(--brand-gradient);
  background-clip: text;
  color: var(--brand-cyan);
  font-style: normal;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  max-width: 630px;
  margin-bottom: 31px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.65;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-hero .button-row {
  margin-top: 20px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 13px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(63, 57, 79, 0.18);
}

.button-primary:hover {
  background: var(--pink-ink);
  box-shadow: 0 14px 34px rgba(202, 110, 154, 0.24);
}

.button-ghost {
  background: transparent;
}

.button-ghost:hover {
  background: var(--white);
}

.hero-motto {
  margin: 27px 0 0;
  color: var(--pink-ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.photo-placeholder {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(47, 148, 173, 0.28);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.2)),
    var(--aqua-soft);
  box-shadow: var(--shadow);
}

.club-photo {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  margin: 0;
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--brand-blue);
  box-shadow: var(--shadow);
}

.club-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.hero-photo {
  min-height: 430px;
}

.hero-photo img {
  object-position: 52% 50%;
}

.club-photo.photo-panorama {
  min-height: 0;
  aspect-ratio: 3137 / 1340;
  background:
    linear-gradient(145deg, rgba(142, 236, 233, 0.18), rgba(0, 159, 227, 0.08)),
    var(--brand-blue);
}

.club-photo.photo-panorama img {
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.club-photo.photo-main-crop {
  min-height: 0;
  aspect-ratio: 2 / 1;
}

.club-photo.photo-main-crop img {
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 52% 50%;
}

.club-photo.photo-natural {
  min-height: 0;
}

.club-photo.photo-natural img {
  height: 100%;
  min-height: 0;
}

.photo-ratio-4-3 {
  aspect-ratio: 4 / 3;
}

.photo-ratio-3-2 {
  aspect-ratio: 3 / 2;
}

.photo-ratio-square {
  aspect-ratio: 1;
}

.photo-placeholder::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -44px;
  bottom: -38px;
  border: 54px solid rgba(202, 110, 154, 0.45);
  border-radius: 50%;
}

.court-lines {
  position: absolute;
  inset: 24px;
  border: 2px solid rgba(47, 148, 173, 0.22);
  border-radius: 28px;
}

.court-lines::before,
.court-lines::after {
  content: "";
  position: absolute;
  background: rgba(47, 148, 173, 0.22);
}

.court-lines::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
}

.court-lines::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
}

.photo-note {
  position: absolute;
  z-index: 2;
  right: 35px;
  bottom: 36px;
  left: 35px;
  padding: 25px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 50px rgba(40, 94, 104, 0.13);
  backdrop-filter: blur(12px);
}

.photo-note span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--pink-ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.photo-note strong,
.photo-note small {
  display: block;
}

.photo-note strong {
  max-width: 330px;
  font-size: 21px;
  line-height: 1.25;
}

.photo-note small {
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(47, 148, 173, 0.18);
  border-radius: 50%;
}

.hero-orbit-one {
  width: 380px;
  height: 380px;
  top: -230px;
  left: 18%;
}

.hero-orbit-two {
  width: 250px;
  height: 250px;
  right: 40%;
  bottom: -190px;
}

.quick-facts {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.registration-strip {
  padding: 28px 0;
  background: var(--brand-blue);
  color: var(--white);
}

.registration-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
}

.registration-inner .eyebrow {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.7);
}

.registration-inner h2 {
  margin: 0 0 4px;
  font-size: clamp(30px, 4vw, 45px);
  line-height: 1;
}

.registration-inner p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

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

.fact {
  display: flex;
  min-height: 132px;
  align-items: center;
  gap: 16px;
  padding: 25px 28px;
  border-right: 1px solid var(--line);
}

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

.fact > span {
  color: var(--pink-ink);
  font-size: 11px;
  font-weight: 900;
}

.fact p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.fact strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 16px;
}

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

.practice-preview {
  background: var(--paper);
}

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

.split-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 50px;
}

.split-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(37px, 5vw, 59px);
  line-height: 1.06;
  letter-spacing: -0.055em;
}

.split-heading > p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 17px;
}

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

.practice-card {
  min-height: 270px;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.practice-card .card-index {
  display: block;
  margin-bottom: 70px;
  font-size: 11px;
  font-weight: 900;
}

.practice-card h3 {
  margin-bottom: 12px;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.practice-card p {
  margin-bottom: 0;
  color: rgba(63, 57, 79, 0.8);
  font-size: 14px;
}

.practice-card .text-link {
  margin-top: 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--teal-deep);
  font-size: 13px;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(23, 106, 123, 0.3);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.text-link:hover {
  color: var(--pink-ink);
}

.text-link-large {
  justify-self: end;
  font-size: 15px;
}

.card-aqua {
  background: linear-gradient(145deg, rgba(0, 159, 227, 0.17), rgba(132, 188, 38, 0.12));
}

.card-white {
  background: var(--white);
}

.card-pink {
  background: var(--pink-soft);
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.eyebrow-light {
  color: var(--aqua-soft);
}

.life-grid {
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.life-copy h2,
.final-cta h2 {
  margin-bottom: 25px;
  font-size: clamp(42px, 5.7vw, 68px);
  line-height: 1.03;
  letter-spacing: -0.06em;
}

.life-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button-light:hover {
  border-color: var(--aqua-soft);
  background: var(--aqua-soft);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.button-outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.photo-collage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto;
  gap: clamp(14px, 1.6vw, 20px);
}

.photo-collage .mini-photo-feature {
  grid-column: 1 / -1;
  aspect-ratio: 3054 / 1373;
  border-radius: 38px;
}

.photo-collage .mini-photo-community,
.photo-collage .mini-photo-rando {
  aspect-ratio: 4 / 3;
}

.mini-photo {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  align-items: flex-end;
  margin: 0;
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(142, 236, 233, 0.2), rgba(70, 171, 186, 0.03)),
    rgba(255, 255, 255, 0.06);
}

.mini-photo-image {
  padding: 0;
  border: 0;
  background: var(--brand-blue);
}

.mini-photo-image::before,
.mini-photo-image::after {
  display: none;
}

.mini-photo-image img {
  display: block;
  flex: 1 0 100%;
  width: 100%;
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-photo-team img {
  object-position: center;
}

.mini-photo-community img {
  object-position: center 20%;
}

.photo-podium img {
  object-position: center 8%;
}

.club-hero-team img {
  object-position: center 55%;
}

.mini-photo::before,
.mini-photo::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(142, 236, 233, 0.2);
  border-radius: 50%;
}

.mini-photo::before {
  width: 180px;
  height: 180px;
  top: -60px;
  right: -60px;
}

.mini-photo::after {
  width: 80px;
  height: 80px;
  top: 30%;
  left: 18%;
}

.mini-photo-large {
  grid-row: 1 / -1;
  border-radius: 38px;
}

.mini-photo-pink {
  background: rgba(202, 110, 154, 0.22);
}

.passing-section {
  background: var(--white);
}

.passing-card {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(30px, 7vw, 90px);
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid rgba(47, 148, 173, 0.28);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 98% 8%, rgba(202, 110, 154, 0.24), transparent 28%),
    var(--aqua-soft);
}

.passing-card h2 {
  max-width: 450px;
  margin: 0;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.03;
  letter-spacing: -0.06em;
}

.passing-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
  align-self: end;
}

.passing-copy > p:first-child {
  font-size: 18px;
}

.location-line {
  margin: 22px 0 28px;
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.passing-label {
  position: absolute;
  right: -13px;
  bottom: -40px;
  color: rgba(255, 255, 255, 0.45);
  font-size: clamp(76px, 13vw, 170px);
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.info-preview {
  background: #eef8fb;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card {
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.card-kicker {
  margin-bottom: 55px;
  color: var(--pink-ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.info-big {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 17px;
}

.info-big strong {
  float: right;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.info-card small {
  display: block;
  margin-top: 31px;
  color: var(--muted);
  font-size: 11px;
}

.info-card-location {
  background: var(--ink);
  color: var(--white);
}

.info-card-location h3 {
  max-width: 240px;
  margin-bottom: 9px;
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.info-card-location p,
.info-card-location small {
  color: rgba(255, 255, 255, 0.7);
}

.info-card-price {
  background: var(--pink-soft);
}

.price-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(63, 57, 79, 0.13);
}

.price-line span {
  font-size: 14px;
}

.price-line strong {
  font-size: 20px;
}

.social-strip {
  background: var(--white);
}

.social-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.social-inner h2 {
  max-width: 680px;
  margin-bottom: 17px;
  font-size: clamp(36px, 4.6vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.social-inner p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
}

.social-inner .button {
  flex: 0 0 auto;
}

.social-buttons {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 10px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--teal-deep);
  color: var(--white);
  text-align: center;
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(142, 236, 233, 0.18);
  border-radius: 50%;
}

.final-cta::before {
  width: 440px;
  height: 440px;
  top: -290px;
  left: -80px;
}

.final-cta::after {
  width: 310px;
  height: 310px;
  right: -100px;
  bottom: -210px;
}

.final-cta-inner {
  position: relative;
  z-index: 2;
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta h2 {
  margin-bottom: 17px;
}

.final-cta p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 auto 31px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.button-row-center {
  justify-content: center;
}

.site-footer {
  padding: 72px 0 24px;
  background: #272332;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 1fr;
  gap: 50px;
  padding-bottom: 55px;
}

.brand-footer .brand-mark {
  width: 84px;
  height: 82px;
  flex-basis: 84px;
  border-radius: 18px;
  background-color: var(--white);
  background-size: calc(100% - 10px);
}

.brand-footer .brand-copy strong {
  color: var(--white);
}

.brand-footer .brand-copy small {
  color: rgba(255, 255, 255, 0.55);
}

.footer-motto {
  margin: 21px 0 0;
  color: var(--aqua-soft);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.footer-socials a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
}

.footer-socials a:hover {
  border-color: var(--brand-pink);
  background: rgba(216, 31, 132, 0.16);
  color: var(--white);
}

.social-logo {
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.footer-grid nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 9px;
  font-size: 13px;
}

.footer-grid nav strong,
.footer-contact strong {
  margin-bottom: 9px;
  color: var(--aqua-soft);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-grid nav a,
.footer-contact a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.68);
}

.footer-grid nav a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom .footer-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-cookie-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.footer-cookie-button:hover {
  color: var(--white);
}

.footer-bottom .footer-bottom-right {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.site-credit {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  text-align: right;
  white-space: nowrap;
}

.site-credit strong {
  color: inherit;
  font-weight: 500;
  transition: color 180ms ease;
}

.site-credit-link:hover strong,
.site-credit-link:focus-visible strong {
  color: rgba(255, 255, 255, 0.82);
}

.analytics-consent {
  position: fixed;
  z-index: 200;
  right: 20px;
  bottom: 20px;
  left: 20px;
  width: min(calc(100% - 40px), 760px);
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(39, 31, 91, 0.16);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 24px 80px rgba(22, 17, 58, 0.3);
}

.analytics-consent[hidden] {
  display: none;
}

.analytics-consent::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: var(--brand-gradient);
  content: "";
}

.analytics-consent-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 16px 18px 16px 23px;
}

.analytics-consent-copy strong {
  display: block;
  margin-bottom: 4px;
  color: var(--brand-blue);
  font-size: 15px;
}

.analytics-consent-copy p {
  display: inline;
  max-width: 740px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.analytics-consent-copy a {
  display: inline;
  margin-left: 5px;
  color: var(--pink-ink);
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.analytics-consent-actions {
  display: flex;
  align-items: stretch;
  gap: 8px;
}

.analytics-consent-choice {
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--brand-blue);
  border-radius: 999px;
  background: var(--white);
  color: var(--brand-blue);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.analytics-consent-choice:hover {
  background: var(--brand-blue);
  color: var(--white);
  transform: translateY(-1px);
}

/* Interior pages */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 8vw, 96px) 0 clamp(62px, 8vw, 100px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 91% 12%, rgba(0, 159, 227, 0.15), transparent 29%),
    linear-gradient(180deg, var(--paper), #f0f9fb);
}

.page-hero::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -170px;
  bottom: -170px;
  border: 1px solid rgba(202, 110, 154, 0.28);
  border-radius: 50%;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.breadcrumb a:hover {
  color: var(--teal-deep);
}

.page-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  align-items: center;
  gap: clamp(42px, 7vw, 90px);
}

.page-hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(48px, 6vw, 76px);
}

.page-hero .hero-lead {
  max-width: 680px;
  margin-bottom: 0;
}

.page-photo {
  min-height: 390px;
}

.page-photo .photo-note {
  padding: 21px;
}

.section-intro {
  max-width: 780px;
  margin-bottom: 52px;
}

.section-intro h2,
.content-heading h2,
.location-panel h2,
.legal-copy h1 {
  margin-bottom: 20px;
  font-size: clamp(37px, 4.8vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.055em;
}

.section-intro > p:not(.eyebrow),
.content-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.value-card {
  min-height: 245px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.value-card:nth-child(2) {
  background: var(--aqua-soft);
}

.value-card:nth-child(4) {
  background: var(--pink-soft);
}

.value-icon {
  display: grid;
  width: 43px;
  height: 43px;
  margin-bottom: 54px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 900;
}

.value-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.value-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.club-benefit-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  padding: clamp(29px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.club-benefit-card:nth-child(2) {
  border-color: transparent;
  background: var(--brand-blue);
  color: var(--white);
}

.club-benefit-card:nth-child(3) {
  background: linear-gradient(145deg, rgba(0, 159, 227, 0.13), rgba(132, 188, 38, 0.18));
}

.club-benefit-index {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 70px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--pink-ink);
  font-size: 11px;
  font-weight: 950;
}

.club-benefit-card:nth-child(2) .club-benefit-index {
  color: var(--aqua-soft);
}

.club-benefit-card h3 {
  margin-bottom: 12px;
  font-size: clamp(25px, 3vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.club-benefit-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.club-benefit-card:nth-child(2) p {
  color: rgba(255, 255, 255, 0.74);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 7vw, 95px);
}

.story-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.story-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.story-placeholder {
  padding: 36px;
  border: 1px solid rgba(142, 236, 233, 0.26);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.06);
}

.story-placeholder span {
  display: inline-flex;
  margin-bottom: 30px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--pink-ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-placeholder h3 {
  margin-bottom: 13px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.story-placeholder p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.story-placeholder .button {
  margin-top: 24px;
}

.wide-photo-grid {
  display: grid;
  min-height: 480px;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 16px;
}

.wide-photo-grid .mini-photo {
  color: var(--ink);
  border-color: rgba(47, 148, 173, 0.2);
  background: linear-gradient(145deg, rgba(0, 159, 227, 0.17), rgba(132, 188, 38, 0.12));
}

.wide-photo-grid .mini-photo:last-child {
  background: var(--pink-soft);
}

.club-life-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.club-life-gallery .gallery-wide {
  grid-column: 1 / -1;
  aspect-ratio: 3127 / 1340;
}

.club-life-gallery .gallery-regular {
  aspect-ratio: 4 / 3;
}

.club-extra-gallery {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 16px;
  aspect-ratio: 4 / 1;
}

.club-extra-gallery .mini-photo {
  min-height: 0;
}

.club-life-gallery .photo-fit img {
  object-fit: contain;
}

.practice-detail-list {
  display: grid;
  gap: 17px;
}

.practice-detail {
  display: grid;
  grid-template-columns: 90px 0.85fr 1.15fr;
  gap: 34px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
}

.practice-detail:nth-child(even) {
  background: #eef8fb;
}

.detail-number {
  color: var(--pink-ink);
  font-size: 12px;
  font-weight: 900;
}

.practice-detail h2 {
  margin: 0;
  font-size: clamp(31px, 4vw, 45px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.practice-detail-copy p {
  color: var(--muted);
}

.practice-detail-copy p:last-child {
  margin-bottom: 0;
}

.practice-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
}

.practice-tags span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vacation-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: clamp(34px, 6vw, 65px);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(0, 159, 227, 0.18), rgba(132, 188, 38, 0.16));
}

.vacation-banner h2 {
  margin-bottom: 14px;
  font-size: clamp(37px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.vacation-banner p {
  max-width: 730px;
  margin-bottom: 0;
  color: var(--muted);
}

.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.schedule-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 32px;
  border-radius: 30px;
  background: var(--ink);
  color: var(--white);
}

.schedule-card:nth-child(2) {
  background: var(--brand-pink);
}

.schedule-card .day {
  display: block;
  margin-bottom: 54px;
  color: var(--aqua-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.schedule-card strong {
  display: block;
  font-size: clamp(58px, 8vw, 86px);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.schedule-card p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.location-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(35px, 7vw, 90px);
  align-items: center;
}

.season-grid,
.tournament-feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;
}

.tournament-feature {
  grid-template-columns: 1fr;
}

.season-card,
.membership-card,
.tournament-copy {
  padding: clamp(28px, 4.5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.season-card h3,
.membership-card h2,
.tournament-copy h2 {
  margin-bottom: 15px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.03;
}

.tournament-copy h3 {
  margin: 26px 0 8px;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.08;
}

.season-card p,
.membership-card p,
.tournament-copy p {
  color: var(--muted);
}

.season-card-highlight {
  background: var(--brand-blue);
  color: var(--white);
}

.season-card-highlight p {
  color: rgba(255, 255, 255, 0.7);
}

.season-card ul,
.membership-card ul {
  padding-left: 20px;
  color: var(--muted);
}

.season-card-highlight ul {
  color: rgba(255, 255, 255, 0.78);
}

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

.membership-card .card-kicker {
  margin-bottom: 32px;
}

.membership-card:nth-child(2) {
  background: linear-gradient(145deg, rgba(0, 159, 227, 0.14), rgba(132, 188, 38, 0.12));
}

.membership-card .button {
  margin-top: 12px;
}

.tournament-gallery {
  display: grid;
  width: min(100%, 1200px);
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
}

.club-photo.tournament-photo {
  width: 100%;
  min-height: 0;
  margin: 0;
  aspect-ratio: 1;
}

.club-photo.tournament-photo img {
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.source-note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.map-embed {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(47, 148, 173, 0.24);
  border-radius: var(--radius-lg);
  background: #e3f6f3;
  box-shadow: var(--shadow);
}

.map-embed iframe {
  display: block;
  width: 100%;
  min-height: 350px;
  border: 0;
}

.map-embed iframe[hidden] {
  display: none;
}

.map-consent {
  background: var(--white);
}

.map-consent[hidden] {
  display: none;
}

.map-consent-icon {
  display: grid;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--teal);
  box-shadow: 0 8px 26px rgba(15, 10, 58, 0.24);
  font-size: 25px;
  font-weight: 900;
}

.map-preview {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 350px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #dce9d1;
  color: var(--white);
  cursor: pointer;
  text-align: left;
}

.map-preview::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(27, 20, 79, 0.76) 100%);
  content: "";
  transition: background 180ms ease;
}

.map-preview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 240ms ease;
}

.map-preview:hover img {
  transform: scale(1.018);
}

.map-preview:hover::after {
  background: linear-gradient(180deg, rgba(39, 31, 91, 0.05) 25%, rgba(27, 20, 79, 0.86) 100%);
}

.map-preview:focus-visible {
  outline: 4px solid var(--pink);
  outline-offset: -4px;
}

.map-preview-cta {
  position: absolute;
  z-index: 1;
  right: clamp(18px, 4vw, 30px);
  bottom: 22px;
  left: clamp(18px, 4vw, 30px);
  display: flex;
  align-items: center;
  gap: 13px;
}

.map-preview-cta strong,
.map-preview-cta small {
  display: block;
}

.map-preview-cta strong {
  color: var(--white);
  font-size: 18px;
}

.map-preview-cta small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 700;
}

.map-consent-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 16px;
  border-top: 1px solid var(--line);
  background: #f8fbfc;
}

.map-consent-note p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.map-privacy-link {
  color: var(--teal-deep);
  font-size: 10px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(23, 106, 123, 0.3);
  text-underline-offset: 4px;
}

.map-consent-links {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.map-active-controls {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
}

.map-active-controls[hidden] {
  display: none;
}

.map-hide-button {
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(39, 31, 91, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 6px 18px rgba(39, 31, 91, 0.15);
  cursor: pointer;
  font-size: 11px;
  font-weight: 850;
}

.map-hide-button:hover {
  border-color: var(--pink-ink);
  color: var(--pink-ink);
}

.map-embed-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 19px;
  background: var(--white);
  font-size: 12px;
}

.map-location {
  display: grid;
  max-width: 260px;
  gap: 4px;
}

.map-location strong {
  color: var(--ink);
  font-size: 13px;
}

.map-location span {
  color: var(--muted);
  line-height: 1.45;
}

.map-location .text-link {
  width: fit-content;
  margin-top: 4px;
}

.route-picker {
  width: min(100%, 190px);
}

.route-trigger {
  display: inline-flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-size: 11px;
  font-weight: 850;
  list-style: none;
  white-space: nowrap;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.route-trigger::-webkit-details-marker {
  display: none;
}

.route-trigger:hover,
.route-picker[open] .route-trigger {
  border-color: var(--pink-ink);
  background: var(--pink-ink);
}

.route-trigger:focus-visible {
  outline: 3px solid rgba(0, 159, 227, 0.3);
  outline-offset: 3px;
}

.route-chevron {
  font-size: 18px;
  line-height: 0.8;
  transition: transform 180ms ease;
}

.route-picker[open] .route-chevron {
  transform: rotate(180deg);
}

.route-links {
  display: grid;
  gap: 7px;
  padding-top: 8px;
}

.route-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 11px;
  font-weight: 850;
  white-space: nowrap;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.route-link:hover {
  border-color: var(--teal);
  background: var(--aqua-soft);
  transform: translateY(-1px);
}

.route-link::before {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--route-color, var(--teal));
  content: "";
}

.route-google {
  --route-color: #4285f4;
}

.route-waze {
  --route-color: #33ccff;
}

.route-apple {
  --route-color: #78c45a;
}

.pricing-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
}

.pricing-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 25px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}

.pricing-row:last-child {
  border-bottom: 0;
}

.pricing-row span {
  color: var(--muted);
}

.pricing-row strong {
  font-size: 25px;
  letter-spacing: -0.03em;
}

.notice {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  margin-top: 22px;
  padding: 21px 23px;
  border-left: 4px solid var(--pink);
  border-radius: 0 16px 16px 0;
  background: var(--pink-soft);
}

.notice strong {
  display: block;
  margin-bottom: 3px;
}

.notice p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

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

.contact-card {
  min-height: 300px;
  padding: clamp(30px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.contact-card:nth-child(2) {
  background: var(--aqua-soft);
}

.contact-card .card-kicker {
  margin-bottom: 75px;
}

.contact-card h2 {
  margin-bottom: 14px;
  font-size: clamp(31px, 4vw, 46px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.contact-card > a:not(.button) {
  display: inline-block;
  margin-bottom: 25px;
  color: var(--teal-deep);
  font-size: clamp(18px, 2.5vw, 25px);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.faq-list summary {
  position: relative;
  padding: 22px 42px 22px 0;
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 17px;
  right: 0;
  color: var(--pink-ink);
  font-size: 25px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 760px;
  padding-bottom: 22px;
  margin: 0;
  color: var(--muted);
}

.facebook-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(30px, 5vw, 54px);
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--white);
}

.facebook-card .social-buttons {
  justify-content: flex-end;
}

.facebook-card h2 {
  margin-bottom: 10px;
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: -0.05em;
}

.facebook-card p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
}

.legal-page {
  padding: clamp(65px, 9vw, 110px) 0;
}

.legal-copy {
  max-width: 820px;
}

.legal-copy h1 {
  margin-bottom: 38px;
}

.legal-copy h2 {
  margin: 45px 0 13px;
  font-size: 25px;
  letter-spacing: -0.035em;
}

.legal-copy p,
.legal-copy li {
  color: var(--muted);
}

.legal-copy ul {
  display: grid;
  gap: 7px;
  padding-left: 21px;
}

.legal-copy .legal-updated {
  margin: -24px 0 36px;
  color: var(--muted);
  font-size: 13px;
}

/* Club charters */
.document-page-hero .page-hero-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.72fr);
}

.document-page-hero .button-row {
  margin-top: 30px;
}

.document-hero-panel {
  position: relative;
  display: flex;
  min-height: 360px;
  overflow: hidden;
  padding: clamp(34px, 5vw, 54px);
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 8%, rgba(132, 188, 38, 0.88), transparent 26%),
    linear-gradient(145deg, var(--brand-blue), #0b759e);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.document-hero-panel::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -70px;
  bottom: -80px;
  border: 26px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.document-hero-panel-pink {
  background:
    radial-gradient(circle at 90% 8%, rgba(0, 159, 227, 0.92), transparent 26%),
    linear-gradient(145deg, var(--brand-blue), #b52b78);
}

.document-hero-panel > span,
.charter-card-number {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.document-hero-panel > strong {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-size: clamp(39px, 4vw, 57px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.document-hero-panel > small {
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.charter-card {
  display: flex;
  min-height: 430px;
  padding: clamp(30px, 4vw, 48px);
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--white), var(--aqua-soft));
}

.charter-card-dark {
  border-color: transparent;
  background: var(--brand-blue);
  color: var(--white);
}

.charter-card:not(.charter-card-dark) .charter-card-number {
  color: var(--teal-deep);
}

.charter-card .card-kicker {
  margin: auto 0 10px;
}

.charter-card-dark .card-kicker,
.charter-card-dark > p:not(.card-kicker) {
  color: rgba(255, 255, 255, 0.72);
}

.charter-card h3 {
  margin-bottom: 15px;
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: -0.05em;
}

.charter-card > p:not(.card-kicker) {
  max-width: 560px;
  color: var(--muted);
}

.charter-card-actions {
  display: flex;
  align-items: center;
  gap: 18px 24px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.text-link-light {
  color: var(--white);
}

.charter-body {
  background: #f7f8fb;
}

.charter-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(38px, 7vw, 90px);
}

.charter-toc {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 4px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.charter-toc strong {
  margin-bottom: 12px;
  color: var(--brand-blue);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.charter-toc a {
  padding: 8px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.charter-toc a:hover {
  color: var(--pink-ink);
}

.charter-content {
  max-width: 880px;
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(39, 31, 91, 0.07);
}

.charter-content > p,
.charter-section > p,
.charter-list li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.charter-lead {
  color: var(--brand-blue) !important;
  font-size: 20px !important;
}

.charter-section {
  padding-top: 38px;
  margin-top: 38px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 115px;
}

.charter-section-first {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}

.charter-section h2 {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 18px;
  font-size: clamp(27px, 3vw, 36px);
  letter-spacing: -0.045em;
}

.charter-section h2 span {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  border-radius: 9px;
  background: var(--pink-ink);
  color: var(--white);
  font-size: 15px;
}

.charter-section:nth-of-type(3n + 2) h2 span {
  background: var(--aqua);
}

.charter-section:nth-of-type(3n) h2 span {
  background: var(--green);
}

.charter-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.charter-list li {
  position: relative;
  padding-left: 24px;
}

.charter-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--pink-ink);
  font-weight: 900;
}

.charter-callout {
  padding: 22px 24px;
  margin-top: 24px;
  border-left: 4px solid #c48700;
  background: #fff5dc;
}

.charter-callout-green {
  border-left-color: var(--green);
  background: rgba(132, 188, 38, 0.1);
}

.charter-callout strong {
  display: block;
  margin-bottom: 7px;
  color: var(--brand-blue);
}

.charter-callout p {
  margin: 0;
  color: var(--muted);
}

.charter-validation {
  margin-top: 30px;
  font-size: 14px !important;
  font-style: italic;
  text-align: right;
}

.charter-end-actions {
  display: flex;
  align-items: center;
  gap: 18px 26px;
  padding-top: 36px;
  margin-top: 42px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.placeholder-inline {
  display: inline;
  padding: 2px 6px;
  border-radius: 5px;
  background: var(--pink-soft);
  color: #7e365c;
  font-size: 0.9em;
  font-weight: 750;
}

.error-page {
  display: grid;
  min-height: 70vh;
  place-items: center;
  text-align: center;
}

.error-page .eyebrow {
  justify-content: center;
}

.error-page .hero-lead {
  margin-inline: auto;
}

.error-code {
  margin-bottom: 5px;
  color: var(--aqua);
  font-size: clamp(95px, 22vw, 210px);
  font-weight: 950;
  letter-spacing: -0.1em;
  line-height: 0.75;
}

@media (max-width: 960px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 84px 0 auto;
    display: grid;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: max-height 220ms ease, opacity 180ms ease, padding 220ms ease;
  }

  .site-nav.is-open {
    max-height: 420px;
    padding-block: 18px 26px;
    border-bottom: 1px solid var(--line);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .site-nav a {
    padding: 13px 16px;
  }

  .site-nav .nav-cta {
    margin: 7px 0 0;
    text-align: center;
  }

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

  .hero-copy {
    max-width: 740px;
  }

  .photo-placeholder {
    min-height: 470px;
  }

  .hero-photo {
    min-height: 430px;
  }

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

  .fact:nth-child(2) {
    border-right: 0;
  }

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

  .split-heading {
    grid-template-columns: 1fr;
    gap: 23px;
  }

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

  .practice-card:last-child {
    grid-column: 1 / -1;
  }

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

  .photo-collage {
    width: min(100%, 760px);
    min-height: 0;
    margin-inline: auto;
  }

  .passing-card {
    grid-template-columns: 1fr;
  }

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

  .info-card-price {
    grid-column: 1 / -1;
  }

  .social-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .text-link-large {
    justify-self: start;
  }

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

  .document-page-hero .page-hero-grid,
  .charter-layout {
    grid-template-columns: 1fr;
  }

  .charter-toc {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .charter-toc strong {
    grid-column: 1 / -1;
  }

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

  .story-grid,
  .location-panel,
  .tournament-feature {
    grid-template-columns: 1fr;
  }

  .practice-detail {
    grid-template-columns: 50px 0.75fr 1.25fr;
    gap: 22px;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .analytics-consent {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: calc(100% - 24px);
    border-radius: 16px;
  }

  .analytics-consent-inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px 15px 14px 20px;
  }

  .analytics-consent-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .analytics-consent-choice {
    width: 100%;
  }

  .header-inner {
    min-height: 74px;
  }

  .site-nav {
    inset-block-start: 74px;
  }

  .brand-copy small {
    display: none;
  }

  .brand-mark {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }

  .hero {
    padding-top: 52px;
  }

  h1 {
    font-size: clamp(43px, 14vw, 62px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .photo-placeholder {
    min-height: 390px;
    border-radius: 30px;
  }

  .club-photo,
  .hero-photo {
    min-height: 300px;
    border-radius: 30px;
  }

  .photo-note {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .facts-grid,
  .practice-grid {
    grid-template-columns: 1fr;
  }

  .registration-inner,
  .season-grid,
  .membership-grid {
    grid-template-columns: 1fr;
  }

  .registration-inner .button {
    width: 100%;
  }

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

  .fact:nth-child(3) {
    border-bottom: 1px solid var(--line);
  }

  .fact:last-child {
    border-bottom: 0;
  }

  .practice-card:last-child {
    grid-column: auto;
  }

  .practice-card .card-index {
    margin-bottom: 50px;
  }

  .photo-collage {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .photo-collage .mini-photo-feature,
  .photo-collage .mini-photo-community,
  .photo-collage .mini-photo-rando {
    grid-column: auto;
  }

  .photo-collage .mini-photo-feature {
    aspect-ratio: 16 / 9;
  }

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

  .club-extra-gallery {
    grid-template-columns: 1fr;
    aspect-ratio: auto;
  }

  .club-extra-gallery .gallery-extra-rando {
    aspect-ratio: 4 / 3;
  }

  .club-extra-gallery .gallery-extra-meal {
    aspect-ratio: 3054 / 1373;
  }

  .passing-card {
    padding: 34px 25px;
    border-radius: 30px;
  }

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

  .info-card-price {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .footer-bottom .footer-bottom-right {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px 20px;
  }

  .footer-bottom .site-credit {
    margin-left: auto;
  }

  .page-hero h1 {
    font-size: clamp(43px, 13vw, 61px);
  }

  .page-photo {
    min-height: 340px;
  }

  .values-grid,
  .club-benefits,
  .charter-index-grid,
  .schedule-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .document-hero-panel {
    min-height: 290px;
  }

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

  .charter-toc strong {
    grid-column: auto;
  }

  .charter-content {
    padding: 30px 22px;
  }

  .charter-section h2 {
    align-items: flex-start;
  }

  .wide-photo-grid {
    min-height: 700px;
    grid-template-columns: 1fr;
  }

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

  .club-life-gallery .gallery-wide,
  .club-life-gallery .gallery-regular,
  .club-life-gallery .gallery-closing {
    grid-column: auto;
  }

  .club-life-gallery .gallery-wide {
    aspect-ratio: 3127 / 1340;
  }

  .club-life-gallery .gallery-regular {
    aspect-ratio: 4 / 3;
  }

  .club-life-gallery .gallery-closing {
    aspect-ratio: 3 / 2;
  }

  .map-embed-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .map-consent-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .map-consent-links {
    flex-wrap: wrap;
  }

  .route-links {
    width: 100%;
  }

  .route-picker {
    width: 100%;
  }

  .practice-detail {
    grid-template-columns: 1fr;
  }

  .vacation-banner,
  .facebook-card {
    align-items: flex-start;
    grid-template-columns: 1fr;
    flex-direction: column;
  }


  .facebook-card .social-buttons,
  .social-buttons {
    width: 100%;
  }

  .social-buttons .button {
    width: 100%;
  }

  .vacation-banner .button,
  .facebook-card .button {
    width: 100%;
  }
}

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