:root {
  --ink: #102a2a;
  --muted: #5d706d;
  --cream: #f6f3e9;
  --paper: #fffdf7;
  --green: #1e5f4c;
  --green-dark: #123f36;
  --lime: #c9f56a;
  --orange: #ef713c;
  --line: #dce3dc;
  --shadow: 0 20px 50px rgba(16, 42, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
.brand,
.price,
.event-symbol {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  max-width: 16ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 span {
  color: var(--orange);
  font-style: italic;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.45rem;
}

.container {
  width: min(100% - 2.5rem, 72rem);
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(16, 42, 42, 0.12);
  background: rgba(255, 253, 247, 0.96);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5rem;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border-radius: 50%;
  color: var(--lime);
  background: var(--green-dark);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.25rem);
}

.nav-links a {
  position: relative;
  padding: 1.75rem 0;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a:focus,
.nav-links a.active {
  color: var(--green);
}

.nav-links a.active::after {
  position: absolute;
  right: 0;
  bottom: 1rem;
  left: 0;
  height: 3px;
  border-radius: 10px;
  background: var(--orange);
  content: "";
}

.home-hero {
  position: relative;
  display: flex;
  min-height: 47rem;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--green-dark);
}

.home-hero-photo,
.home-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero-photo {
  object-fit: cover;
  object-position: center 54%;
}

.home-hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 35, 30, 0.96) 0%, rgba(7, 35, 30, 0.78) 43%, rgba(7, 35, 30, 0.22) 72%, rgba(7, 35, 30, 0.34) 100%),
    linear-gradient(0deg, rgba(7, 35, 30, 0.48), transparent 45%);
}

.home-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 23rem);
  align-items: end;
  gap: clamp(3rem, 8vw, 8rem);
  padding-block: 7rem;
}

.home-hero-copy .eyebrow {
  color: var(--lime);
}

.home-hero-copy h1 {
  max-width: 11ch;
  margin-bottom: 1.75rem;
  font-size: clamp(4rem, 7.5vw, 7rem);
}

.home-hero-copy .lead {
  max-width: 39rem;
  color: rgba(255, 255, 255, 0.86);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.78);
  color: #fff;
  background: rgba(10, 41, 36, 0.28);
}

.button-outline-light:hover,
.button-outline-light:focus {
  border-color: #fff;
  background: rgba(10, 41, 36, 0.62);
}

.hero-offer-card {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 1.25rem;
  color: var(--ink);
  background: rgba(255, 253, 247, 0.94);
  box-shadow: 0 24px 70px rgba(4, 25, 21, 0.32);
  backdrop-filter: blur(10px);
}

.hero-offer-card h2 {
  margin-bottom: 1.5rem;
  font-size: 2.25rem;
}

.offer-option {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 1rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
}

.offer-option > div {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.offer-option strong {
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.65rem;
  font-weight: 500;
  line-height: 1;
}

.offer-option span,
.offer-option p {
  color: var(--muted);
  font-size: 0.78rem;
}

.offer-option p {
  max-width: 9rem;
  margin-bottom: 0;
  text-align: right;
}

.hero-offer-card .text-link {
  display: inline-block;
  margin-top: 1.1rem;
}

.quick-facts {
  color: var(--green-dark);
  background: var(--lime);
}

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

.quick-facts-grid > div {
  display: flex;
  min-height: 7rem;
  align-items: center;
  gap: 0.8rem;
  padding: 1.25rem 2rem;
  border-left: 1px solid rgba(18, 63, 54, 0.2);
}

.quick-facts-grid > div:first-child {
  border-left: 0;
}

.quick-facts-grid strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  font-weight: 500;
}

.quick-facts-grid span {
  max-width: 10rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow,
.card-kicker {
  margin-bottom: 1rem;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lead {
  max-width: 42rem;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  border: 2px solid var(--green);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease;
}

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

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

.button-primary:hover,
.button-primary:focus {
  background: var(--green-dark);
}

.button-secondary {
  color: var(--green);
  background: transparent;
}

.button-light {
  border-color: var(--lime);
  color: var(--green-dark);
  background: var(--lime);
}

.text-link {
  color: var(--lime);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.3rem;
}

.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 4rem;
  margin-bottom: 3rem;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading > p {
  color: var(--muted);
}

.feature-grid,
.membership-grid {
  display: grid;
  gap: 1.25rem;
}

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

.membership-grid {
  max-width: 56rem;
  margin-inline: auto;
  grid-template-columns: repeat(2, 1fr);
}

.feature-card,
.price-card {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: #fff;
}

.feature-card p,
.price-card > p:not(.price):not(.card-kicker) {
  color: var(--muted);
}

.feature-number {
  display: inline-block;
  margin-bottom: 2.5rem;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.section-dark {
  color: #fff;
  background: var(--green-dark);
}

.section-tint {
  background: var(--cream);
}

.callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.callout h2 {
  margin-bottom: 0;
}

.price-card {
  display: flex;
  min-height: 28rem;
  flex-direction: column;
}

.price-card.featured {
  border-color: var(--green);
  background: var(--cream);
  box-shadow: inset 0 5px 0 var(--orange);
}

.price {
  margin-bottom: 1.25rem;
  color: var(--green-dark);
  font-size: 3.75rem;
  line-height: 1;
}

.price span {
  vertical-align: top;
  font-size: 1.25rem;
}

.price small {
  color: var(--muted);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9rem;
}

.check-list {
  margin: auto 0 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.6rem;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "\2713";
  font-weight: 900;
}

.centered-cta {
  max-width: 40rem;
  margin: 3rem auto 0;
  text-align: center;
}

.centered-cta p {
  color: var(--muted);
}

.steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.steps-list li:first-child {
  padding-top: 0;
}

.steps-list li > span {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: 50%;
  color: var(--lime);
  background: var(--green-dark);
  font-weight: 800;
}

.steps-list p {
  margin: 0.2rem 0 0;
  color: var(--muted);
}

.upcoming-event {
  margin-bottom: clamp(5rem, 10vw, 8rem);
}

.upcoming-event-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 4rem;
  margin-bottom: 2.5rem;
}

.upcoming-event-heading h2,
.upcoming-event-heading p {
  margin-bottom: 0;
}

.upcoming-event-heading > p {
  color: var(--muted);
}

.championship-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.95fr);
  overflow: hidden;
  border-radius: 1.5rem;
  color: #fff;
  background:
    radial-gradient(circle at 12% 14%, rgba(201, 245, 106, 0.18), transparent 25%),
    linear-gradient(135deg, #154c40, var(--green-dark));
  box-shadow: var(--shadow);
}

.championship-card::before,
.championship-card::after {
  position: absolute;
  border: 1px solid rgba(201, 245, 106, 0.18);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.championship-card::before {
  top: -12rem;
  left: -10rem;
  width: 28rem;
  height: 28rem;
}

.championship-card::after {
  right: -6rem;
  bottom: -9rem;
  width: 22rem;
  height: 22rem;
}

.championship-intro,
.championship-details {
  position: relative;
  z-index: 1;
  padding: clamp(2.25rem, 5vw, 4.25rem);
}

.championship-intro {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.championship-host {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.75rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.championship-host span + span {
  padding-left: 0.8rem;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.championship-save {
  margin-bottom: 0.8rem;
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.championship-the {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.championship-intro h3 {
  margin-bottom: 1.75rem;
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
  text-transform: uppercase;
}

.championship-venue {
  display: grid;
  gap: 0.1rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.championship-venue span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.championship-venue strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.championship-date {
  display: grid;
  min-width: min(100%, 18rem);
  margin-bottom: 0.8rem;
  padding: 1rem 2rem;
  border: 1px solid rgba(201, 245, 106, 0.5);
  border-radius: 0.9rem;
  color: var(--green-dark);
  background: var(--lime);
  text-transform: uppercase;
}

.championship-date span {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.championship-date strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.15rem;
  font-weight: 500;
  line-height: 1;
}

.championship-start {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.championship-start strong {
  color: #fff;
}

.championship-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(4, 28, 24, 0.3);
}

.court-counts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.court-counts > div {
  display: grid;
  gap: 0.25rem;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.06);
}

.court-counts strong {
  color: var(--lime);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.25rem;
  font-weight: 500;
  line-height: 1;
}

.court-counts span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.event-amenities {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.event-amenities span + span::before {
  margin-inline: 0.75rem;
  color: var(--orange);
  content: "|";
}

.event-highlights {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.event-highlights-title {
  margin-bottom: 1rem;
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.event-highlights-title span {
  color: var(--orange);
}

.event-highlights ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.event-highlights li {
  position: relative;
  padding-left: 1.15rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.45;
}

.event-highlights li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.championship-motto {
  margin: 2rem 0 1.25rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}

.championship-motto span {
  margin-inline: 0.3rem;
  color: var(--orange);
}

.championship-details .button {
  align-self: center;
}

.recurring-activities-heading {
  margin-bottom: 2rem;
}

.event-list {
  border-top: 1px solid var(--line);
}

.event-card {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--line);
}

.event-copy h2 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.event-copy > p:not(.card-kicker) {
  max-width: 48rem;
  color: var(--muted);
}

.event-meta {
  margin-bottom: 0;
  color: var(--green) !important;
  font-size: 0.85rem;
  font-weight: 800;
}

.notice {
  display: grid;
  grid-template-columns: 1.15fr 1fr auto;
  align-items: center;
  gap: 2rem;
  margin-top: 4rem;
  padding: 2rem;
  border-radius: 1rem;
  background: var(--cream);
}

.notice h2,
.notice p {
  margin-bottom: 0;
}

.notice > p {
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 9vw, 8rem);
}

.contact-list {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.contact-list a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.contact-list a:hover strong,
.contact-list a:focus strong {
  color: var(--orange);
}

.contact-list span {
  color: var(--muted);
}

.contact-list strong {
  text-align: right;
}

.meeting-card {
  padding: 2.25rem;
  border-radius: 1.25rem;
  color: #fff;
  background: var(--green-dark);
  box-shadow: var(--shadow);
}

.meeting-card .card-kicker {
  color: var(--lime);
}

.meeting-card h2 {
  font-size: 2.4rem;
}

.meeting-card h3 {
  color: #fff;
  font-size: 1.85rem;
}

.meeting-card address {
  margin: 1.5rem 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #d5dfdc;
  font-style: normal;
}

.site-footer {
  padding-block: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #c5d2ce;
  background: #0a2924;
  font-size: 0.85rem;
}

.footer-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.footer-content p {
  margin-bottom: 0;
}

.footer-brand {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.sport-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}

.sport-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sport-feature {
  background: var(--cream);
}

.sport-feature-grid {
  display: grid;
  grid-template-columns: minmax(20rem, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.sport-photo {
  height: 35rem;
}

.sport-photo img {
  object-position: center 58%;
}

.dark-link {
  color: var(--green);
}

.service-callout {
  color: #fff;
  background: var(--green-dark);
}

.service-callout .eyebrow {
  color: var(--lime);
}

.service-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.service-content h2,
.service-content p {
  margin-bottom: 0;
}

.service-content .eyebrow {
  margin-bottom: 0.5rem;
}

.service-content > div > p:last-child {
  margin-top: 0.65rem;
  color: #c5d2ce;
}

.service-star {
  display: grid;
  width: 5.5rem;
  height: 5.5rem;
  place-items: center;
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--lime);
  font-size: 2rem;
}

.price-card h2 {
  min-height: 2.2em;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.event-symbol {
  display: grid;
  width: 7rem;
  height: 7rem;
  place-items: center;
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--lime);
  font-size: 2.75rem;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.6rem;
  text-align: center;
}

.footer-contact a {
  color: #fff;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2rem;
}

.photo-page-hero {
  position: relative;
  display: flex;
  min-height: 38rem;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--green-dark);
}

.page-hero-photo,
.photo-page-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero-photo {
  object-fit: cover;
  object-position: center;
}

.photo-page-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 41, 36, 0.94) 0%, rgba(10, 41, 36, 0.74) 46%, rgba(10, 41, 36, 0.18) 100%),
    linear-gradient(0deg, rgba(10, 41, 36, 0.36), transparent 55%);
}

.photo-page-content {
  position: relative;
  z-index: 2;
  padding-block: 5rem;
}

.photo-page-content .eyebrow {
  color: var(--lime);
}

.photo-page-content h1 {
  max-width: 12ch;
  font-size: clamp(3.4rem, 7vw, 6.6rem);
}

.photo-page-content .lead {
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.86);
}

.photo-page-content .button-secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
}

.photo-page-content .button-secondary:hover,
.photo-page-content .button-secondary:focus {
  background: rgba(255, 255, 255, 0.12);
}

.contact-photo-hero .page-hero-photo {
  object-position: center 50%;
}

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

.benefit-item {
  padding-top: 1.5rem;
  border-top: 3px solid var(--green);
}

.benefit-item > span {
  display: inline-block;
  margin-bottom: 2rem;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.benefit-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.light-heading .eyebrow {
  color: var(--lime);
}

.light-heading h2 {
  color: #fff;
}

.light-heading > p {
  color: #c5d2ce;
}

.activity-gallery {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 1rem;
}

.activity-tile,
.program-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 1.25rem;
  background: var(--green-dark);
}

.activity-tile {
  min-height: 28rem;
}

.activity-tile::after,
.program-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 31, 27, 0.9) 0%, rgba(6, 31, 27, 0.08) 66%);
  content: "";
}

.activity-tile img,
.program-photo img,
.wellness-photo img,
.visit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.activity-tile:nth-child(2) img {
  object-position: center 45%;
}

.activity-tile:nth-child(3) img {
  object-position: 70% center;
}

.activity-tile-copy,
.program-photo figcaption {
  position: absolute;
  right: 1.5rem;
  bottom: 1.4rem;
  left: 1.5rem;
  z-index: 1;
  color: #fff;
}

.activity-tile-copy span,
.program-photo figcaption span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.activity-tile-copy h3 {
  margin-bottom: 0.35rem;
  font-size: 2.25rem;
}

.activity-tile-copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.wellness-grid,
.visit-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}

.wellness-photo,
.visit-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}

.wellness-photo-tall {
  height: 43rem;
}

.wellness-photo-tall img {
  object-position: center 38%;
}

.wellness-photo-wide {
  height: 18rem;
  margin-top: 2.25rem;
}

.wellness-photo-wide img {
  object-position: center 45%;
}

.wellness-copy .lead {
  max-width: 34rem;
}

.membership-hero-photo {
  object-position: center 54%;
}

.faq-grid,
.program-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.faq-card {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: #fff;
}

.faq-card h3 {
  min-height: 2.5em;
}

.faq-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.faq-card a {
  color: var(--green);
  font-weight: 800;
}

.activity-heading {
  margin-top: 5rem;
}

.program-photo {
  height: 25rem;
}

.program-photo:nth-child(2) img {
  object-position: center bottom;
}

.program-photo:nth-child(1) img {
  object-position: center 64%;
}

.program-photo:nth-child(3) img {
  object-position: center 72%;
}

.program-photo figcaption {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  line-height: 1.1;
}

.program-photo figcaption span {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.visit-photo {
  height: 42rem;
}

.visit-photo img {
  object-position: center 62%;
}

.visit-grid .steps-list {
  margin-bottom: 2rem;
}

.visit-grid .steps-list h3 {
  margin-bottom: 0;
}

.contact-final-cta {
  border-top: 1px solid var(--line);
}

.contact-details .lead {
  margin-bottom: 1.5rem;
}

.contact-visit-card {
  margin-top: 2.25rem;
  box-shadow: none;
}

.contact-visit-card address {
  margin-bottom: 1.25rem;
}

.contact-form-card {
  padding: clamp(2rem, 5vw, 3.25rem);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.contact-form-card > p:not(.eyebrow) {
  margin-bottom: 1.75rem;
  color: var(--muted);
}

.contact-form-card h2 {
  margin-bottom: 0.75rem;
}

.contact-form {
  display: grid;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field label {
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #c9d2ca;
  border-radius: 0.7rem;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.form-field input,
.form-field select {
  min-height: 3.25rem;
  padding: 0.75rem 0.9rem;
}

.form-field textarea {
  min-height: 8rem;
  padding: 0.85rem 0.9rem;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(30, 95, 76, 0.16);
}

.contact-form .button {
  justify-self: start;
  cursor: pointer;
}

.form-success {
  display: grid;
  gap: 0.2rem;
  margin-bottom: 1.5rem;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--green);
  border-radius: 0.5rem;
  color: var(--green-dark);
  background: rgba(201, 245, 106, 0.4);
}

.form-success span {
  color: var(--muted);
  font-size: 0.86rem;
}

@media (max-width: 800px) {
  .navbar {
    flex-direction: column;
    gap: 0;
    padding-top: 1rem;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .nav-links a {
    padding: 1rem 0 1.25rem;
    font-size: 0.7rem;
  }

  .nav-links a.active::after {
    bottom: 0.65rem;
  }

  .section-heading,
  .upcoming-event-heading,
  .feature-grid,
  .membership-grid,
  .notice,
  .contact-grid,
    .sport-feature-grid,
    .service-content,
    .benefit-grid,
    .activity-gallery,
    .wellness-grid,
    .faq-grid,
    .program-gallery,
    .visit-grid,
    .home-hero-grid,
    .quick-facts-grid {
    grid-template-columns: 1fr;
  }

  .upcoming-event-heading {
    gap: 1rem;
  }

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

  .championship-details {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .home-hero {
    min-height: auto;
  }

  .home-hero-shade {
    background: rgba(7, 35, 30, 0.78);
  }

  .home-hero-grid {
    align-items: start;
    gap: 3rem;
    padding-block: 4.5rem;
  }

  .home-hero-copy h1 {
    font-size: clamp(3.6rem, 15vw, 5.25rem);
  }

  .hero-offer-card {
    width: min(100%, 30rem);
  }

  .quick-facts-grid > div {
    min-height: auto;
    padding: 1rem 0;
    border-top: 1px solid rgba(18, 63, 54, 0.2);
    border-left: 0;
  }

  .quick-facts-grid > div:first-child {
    border-top: 0;
  }

  .section-heading {
    gap: 1rem;
  }

  .price-card {
    min-height: auto;
  }

  .check-list {
    margin-top: 1rem;
  }

  .notice {
    align-items: start;
  }

  .service-content {
    justify-items: start;
  }

  .footer-content {
    flex-wrap: wrap;
  }

  .photo-page-hero {
    min-height: 36rem;
  }

  .photo-page-shade {
    background: rgba(10, 41, 36, 0.74);
  }

  .photo-page-content h1 {
    max-width: 11ch;
  }

  .activity-tile,
  .program-photo {
    min-height: 22rem;
  }

  .wellness-photo-tall,
  .visit-photo {
    height: 34rem;
  }

  .wellness-photo-wide {
    height: 20rem;
  }

  .faq-card h3 {
    min-height: 0;
  }

  .membership-hero-photo {
    object-position: 64% center;
  }
}

@media (max-width: 520px) {
  .brand > span:last-child {
    font-size: 1rem;
  }

  .nav-links {
    gap: 0.6rem;
  }

  .event-card {
    grid-template-columns: 4.75rem 1fr;
    gap: 1.25rem;
  }

  .event-symbol {
    width: 4.75rem;
    height: 4.75rem;
    font-size: 1.9rem;
  }

  .court-counts,
  .event-highlights ul {
    grid-template-columns: 1fr;
  }

  .championship-intro,
  .championship-details {
    padding: 2rem 1.4rem;
  }

  .championship-host {
    align-items: center;
    flex-direction: column;
    gap: 0.25rem;
  }

  .championship-host span + span {
    padding-left: 0;
    border-left: 0;
  }

  .championship-intro h3 {
    font-size: 2.5rem;
  }

  .contact-list a,
  .callout,
  .footer-content {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-list strong {
    text-align: left;
  }

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

  .home-hero-copy h1 {
    font-size: 3.5rem;
  }
}

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

  .button {
    transition: none;
  }
}
