@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Outfit:wght@400;500;600;700&display=swap");

:root {
  --green: #6b2d3c;
  --green-deep: #4a1e2a;
  --green-soft: #8a3f52;
  --cream: #f6f1ee;
  --cream-deep: #ebe3de;
  --beige: #e8d8ce;
  --white: #ffffff;
  --ink: #24161a;
  --ink-soft: #6a575c;
  --line: #d9cdc7;
  --gold: #c4a574;
  --radius: 2px;
  --radius-md: 8px;
  --container: 1200px;
  --font: "Outfit", sans-serif;
  --font-display: "Libre Baskerville", serif;
  --header-h: 78px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-fast: 0.25s;
  --motion-med: 0.55s;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

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

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.section { padding: 96px 0; }
.section--green {
  background: var(--green);
  color: var(--white);
}
.section--beige { background: var(--beige); }
.section__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.section--green .section__eyebrow { color: rgba(255, 255, 255, 0.65); }
.section__title {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  max-width: 14ch;
  color: var(--green);
}
.section--green .section__title { color: var(--white); }
.section__title em {
  font-style: italic;
  font-weight: 500;
}
.section__lead {
  margin-top: 18px;
  color: var(--ink-soft);
  max-width: 46ch;
  font-size: 1.02rem;
}
.section--green .section__lead { color: rgba(255, 255, 255, 0.78); }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--motion-fast) ease, color var(--motion-fast) ease, border-color var(--motion-fast) ease, transform var(--motion-fast) ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--solid {
  background: var(--white);
  color: var(--green);
}
.btn--solid:hover { background: var(--cream); }
.btn--green {
  background: var(--green);
  color: var(--white);
}
.btn--green:hover { background: var(--green-deep); }
.btn--outline {
  background: transparent;
  border-color: var(--green);
  color: var(--green);
}
.btn--outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}
.btn--beige {
  background: var(--beige);
  color: var(--green);
}

/* Header */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 40;
  color: var(--white);
}
.site-header--solid {
  position: sticky;
  top: 0;
  background: var(--green);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: var(--header-h);
}
.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.logo span { font-style: italic; font-weight: 500; }
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav__link {
  padding: 8px 12px;
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  transition: color var(--motion-fast) ease;
}
.nav__link:hover,
.nav__link.is-active { color: var(--white); }
.header-cta {
  flex-shrink: 0;
  margin-left: 8px;
  min-height: 40px;
  padding: 0 16px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  font-size: 0.78rem;
}
.header-cta:hover {
  background: var(--white);
  color: var(--green);
}
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  position: relative;
  cursor: pointer;
  margin-left: auto;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 1.5px;
  background: var(--white);
  content: "";
}
.nav-toggle span { top: 50%; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

/* Hero */
.hero {
  position: relative;
  min-height: 100dvh;
  color: var(--white);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--green-deep);
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: ken 22s var(--ease-out) infinite alternate;
}
.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(74, 30, 42, 0.45), rgba(74, 30, 42, 0.15) 40%, rgba(74, 30, 42, 0.72));
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 120px 0 48px;
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}
.hero__frame {
  width: min(100%, 420px);
  aspect-ratio: 4/5;
  border: 1px solid rgba(255, 255, 255, 0.55);
  margin-bottom: 36px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}
.hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
}
.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: 10px;
}
.hero__title {
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  line-height: 0.9;
  max-width: 12ch;
  margin-bottom: 24px;
}
.hero__title em { font-style: italic; font-weight: 500; }
.hero__text {
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 28px;
}
.hero__bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.hero__slogan {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-style: italic;
  line-height: 0.95;
}

@keyframes ken {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-item h3 {
  font-size: 1.7rem;
  color: var(--green);
  margin-bottom: 10px;
}
.service-item p { color: var(--ink-soft); font-size: 0.95rem; }
.service-item__media {
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--cream-deep);
}
.service-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Program cards */
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.program-card {
  background: var(--white);
  border: 1px solid var(--line);
}
.program-card__media {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--cream-deep);
  position: relative;
}
.program-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.program-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--green);
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
}
.program-card__body {
  background: var(--beige);
  padding: 14px 16px 16px;
}
.program-card h3 {
  font-size: 1.35rem;
  color: var(--green);
  margin-bottom: 8px;
}
.program-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: 0.78rem;
  color: var(--ink-soft);
}
.program-card__meta span + span::before {
  content: "|";
  margin-right: 12px;
  opacity: 0.45;
}

/* Split / court */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.split--reverse { grid-template-columns: 0.9fr 1.1fr; }
.split img {
  width: 100%;
  min-height: 420px;
  max-height: 560px;
  object-fit: cover;
}
.panel {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 28px;
}
.panel h3 {
  font-size: 1.8rem;
  color: var(--green);
  margin-bottom: 12px;
}
.panel p { color: var(--ink-soft); }

.court-band {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.court-band__media {
  position: absolute;
  inset: 0;
}
.court-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.court-band__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(74, 30, 42, 0.72), rgba(74, 30, 42, 0.25));
}
.court-band__panel {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 420px);
  margin-left: max(24px, calc((100% - var(--container)) / 2));
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  padding: 32px;
}
.court-band__panel h2 {
  color: var(--green);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}
.court-band__panel p {
  color: var(--ink-soft);
  margin-bottom: 20px;
}

/* Membership */
.member-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.member-card {
  background: var(--green);
  color: var(--white);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.member-card h3 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.member-card p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 18px;
  max-width: 34ch;
}
.member-card ul {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}
.member-card li {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
  padding-left: 14px;
  position: relative;
}
.member-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--beige);
}

/* Atmosphere */
.atmosphere-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.atmosphere-card__media {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream-deep);
  margin-bottom: 12px;
}
.atmosphere-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.atmosphere-card h3 {
  font-size: 1.4rem;
  color: var(--green);
}

/* Story */
.story {
  position: relative;
  overflow: hidden;
}
.story__quote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--green);
  max-width: 18ch;
  margin: 28px 0;
  font-style: italic;
}
.story__huge {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 7rem);
  color: var(--green);
  line-height: 0.9;
  margin-top: 48px;
}
.story__huge em { font-style: italic; font-weight: 500; }
.stack-media {
  position: relative;
  width: min(100%, 360px);
  margin-inline: auto;
}
.stack-media::before,
.stack-media::after {
  content: "";
  position: absolute;
  inset: 18px -14px -14px 18px;
  border: 1px solid var(--line);
  background: var(--cream-deep);
  z-index: 0;
}
.stack-media::after {
  inset: 34px -28px -28px 34px;
  background: var(--beige);
}
.stack-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

/* Page hero */
.page-hero {
  background: var(--green);
  color: var(--white);
  padding: 140px 0 72px;
}
.page-hero__title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  max-width: 12ch;
}
.page-hero__title em { font-style: italic; font-weight: 500; }
.page-hero__text {
  margin-top: 18px;
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.value-card {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 22px;
}
.value-card h3 {
  font-size: 1.45rem;
  color: var(--green);
  margin-bottom: 8px;
}
.value-card p { color: var(--ink-soft); font-size: 0.92rem; }

.feature-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}
.feature-list li {
  padding-left: 16px;
  position: relative;
  color: var(--ink-soft);
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  background: var(--green);
}

.faq-list { display: grid; gap: 0; max-width: 820px; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item h3 {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}
.faq-item p { color: var(--ink-soft); font-size: 0.95rem; }

.hours-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.hours-card {
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 20px;
}
.hours-card h3 {
  font-family: var(--font);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 10px;
}
.hours-card p {
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
}
.contact-card,
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 28px;
}
.contact-card h2,
.form-card h2 {
  font-size: 2rem;
  color: var(--green);
  margin-bottom: 14px;
}
.contact-meta {
  display: grid;
  gap: 10px;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.map-embed {
  border: 0;
  width: 100%;
  min-height: 280px;
  filter: grayscale(0.35) contrast(1.05);
}
.form-grid { display: grid; gap: 12px; }
.form-grid label {
  display: grid;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-grid input,
.form-grid textarea,
.form-grid select {
  min-height: 46px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 10px 0;
  background: transparent;
}
.form-grid textarea { min-height: 110px; resize: vertical; }
.form-lead {
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.cta-band {
  padding: 72px 0;
  background: var(--green);
  color: var(--white);
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 14px;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 42ch;
  margin: 0 auto 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 14px;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}
.gallery-grid img:first-child { min-height: 360px; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.step-card {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 24px;
}
.step-card__num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--green);
  margin-bottom: 10px;
}
.step-card h3 {
  font-size: 1.35rem;
  color: var(--green);
  margin-bottom: 8px;
}
.step-card p { color: var(--ink-soft); font-size: 0.92rem; }

/* Footer */
.site-footer {
  background: var(--green);
  color: var(--white);
  padding: 64px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.footer-top h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}
.footer-top p,
.footer-list a { color: rgba(255, 255, 255, 0.78); }
.footer-list { display: grid; gap: 8px; }
.newsletter-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.newsletter-form input {
  flex: 1;
  min-width: 180px;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: var(--white);
  padding: 0 14px;
}
.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.45); }

.footer-policies {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
a.policy-block {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 18px;
  color: inherit;
  transition: background var(--motion-fast) ease, transform var(--motion-fast) ease;
}
a.policy-block:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}
.policy-block h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.policy-block p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.65);
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
}
.footer-links { display: flex; gap: 14px; flex-wrap: wrap; }

/* Cookie / modal / legal / motion */
.cookie-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 100;
  max-width: 520px;
  margin-inline: auto;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 18px 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  display: none;
  gap: 14px;
  align-items: center;
}
.cookie-bar.is-visible { display: flex; }
.cookie-bar__text { flex: 1; font-size: 0.88rem; }
.cookie-bar__text strong { display: block; margin-bottom: 4px; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(74, 30, 42, 0.55);
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--motion-fast) ease, visibility var(--motion-fast) ease;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__panel {
  background: var(--cream);
  padding: 28px;
  max-width: 420px;
  width: 100%;
  border: 1px solid var(--line);
}
.modal__panel h2 {
  color: var(--green);
  font-size: 2rem;
  margin-bottom: 10px;
}
.modal__panel p { color: var(--ink-soft); margin-bottom: 20px; }

.page-enter { animation: page-fade 0.55s var(--ease-out) both; }
@keyframes page-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal,
.reveal-stagger {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--motion-med) var(--ease-out), transform var(--motion-med) var(--ease-out);
}
.reveal.is-inview,
.reveal-stagger.is-inview {
  opacity: 1;
  transform: none;
}
.reveal-stagger.is-inview > * {
  animation: rise-in 0.55s var(--ease-out) both;
}
.reveal-stagger.is-inview > *:nth-child(2) { animation-delay: 0.07s; }
.reveal-stagger.is-inview > *:nth-child(3) { animation-delay: 0.14s; }
.reveal-stagger.is-inview > *:nth-child(4) { animation-delay: 0.21s; }
@keyframes rise-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.legal-page { padding: 56px 0 80px; }
.legal-page__inner {
  width: min(100% - 40px, 760px);
  margin-inline: auto;
}
.legal-back {
  display: inline-flex;
  margin-bottom: 24px;
  font-weight: 600;
  color: var(--green);
}
.legal-page h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--green);
  margin-bottom: 10px;
}
.legal-updated { color: var(--ink-soft); margin-bottom: 28px; }
.legal-lead { margin-bottom: 22px; font-size: 1.05rem; }
.legal-body h2 {
  font-size: 1.35rem;
  color: var(--green);
  margin: 28px 0 10px;
}
.legal-body p {
  color: var(--ink-soft);
  margin-bottom: 12px;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .services-grid,
  .program-grid,
  .atmosphere-grid,
  .values-grid,
  .steps,
  .hours-grid,
  .member-grid,
  .footer-policies,
  .gallery-grid,
  .split,
  .split--reverse,
  .contact-grid,
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    left: 24px;
    right: 24px;
    top: calc(var(--header-h) - 4px);
    background: var(--green-deep);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
  }
  .nav.is-open { display: flex; }
  .header-cta { display: none; }
  .site-header__inner { position: relative; }
  .court-band__panel { margin-left: 24px; }
}

@media (max-width: 640px) {
  .services-grid,
  .program-grid,
  .atmosphere-grid,
  .values-grid,
  .steps,
  .hours-grid,
  .member-grid,
  .footer-policies,
  .gallery-grid,
  .split,
  .contact-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }
  .cookie-bar { flex-direction: column; align-items: stretch; }
  .hero__frame { width: min(100%, 280px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__media img { animation: none; }
  .reveal, .reveal-stagger { opacity: 1; transform: none; }
  .page-enter { animation: none; }
}
