@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --forest: #14291d;
  --forest-deep: #09180f;
  --forest-soft: #315440;
  --cream: #f4f0df;
  --cream-dark: #e5deca;
  --lime: #d8f238;
  --white: #fff;
  --ink: #14291d;
  --muted: #617065;
  --line: rgba(20, 41, 29, 0.18);
  --line-light: rgba(255, 255, 255, 0.2);
  --content-width: 1240px;
  --nav-width: 1120px;
  --section-space: clamp(5.5rem, 10vw, 9rem);
  --shadow: 0 24px 65px rgba(9, 24, 15, 0.15);
  --motion-duration: 720ms;
  --motion-distance: 26px;
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--cream);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

button,
input,
select {
  color: inherit;
  font: inherit;
}

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

a {
  color: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3,
.brand__name,
.fact strong,
.rate__price strong {
  font-family: "Barlow Condensed", sans-serif;
}

h1,
h2 {
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(3.75rem, 7.8vw, 7rem);
  font-weight: 700;
  line-height: 0.88;
}

h3 {
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1;
}

section[id] {
  scroll-margin-top: 110px;
}

#contact {
  scroll-margin-top: 110px;
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 0.75rem 1rem;
  transform: translateY(-160%);
  border-radius: 0.5rem;
  background: var(--lime);
  color: var(--forest-deep);
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease;
}

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

.container {
  width: min(calc(100% - 3rem), var(--content-width));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

html.motion-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, var(--motion-distance), 0);
  filter: blur(3px);
  transition:
    opacity var(--motion-duration) var(--motion-ease),
    transform var(--motion-duration) var(--motion-ease),
    filter 560ms var(--motion-ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

html.motion-ready [data-reveal="media"] {
  transform: scale(1.035);
  filter: none;
}

html.motion-ready [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
  filter: none;
  will-change: auto;
}

.section--dark,
.section--forest {
  color: var(--white);
  background: var(--forest-deep);
}

.section--forest {
  background: var(--forest);
}

.section-label,
.eyebrow {
  margin-bottom: 1.1rem;
  color: var(--forest-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-label--lime,
.eyebrow {
  color: var(--lime);
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.55fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
  margin-bottom: clamp(3rem, 7vw, 5.5rem);
}

.section-heading--split > p,
.booking-band__heading > p {
  margin-bottom: 0.3rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.section--forest .section-heading--split > p {
  color: rgba(255, 255, 255, 0.67);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.8rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

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

.button svg {
  width: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button--compact {
  min-height: 44px;
  padding-inline: 1rem;
}

.button--lime {
  background: var(--lime);
  color: var(--forest-deep);
  box-shadow: 0 8px 24px rgba(216, 242, 56, 0.14);
}

.button--lime:hover {
  box-shadow: 0 12px 28px rgba(216, 242, 56, 0.25);
}

.button--forest {
  background: var(--forest);
  color: var(--white);
}

.button--outline {
  border-color: var(--line);
  background: transparent;
  color: var(--forest);
}

.button--outline:hover {
  background: rgba(20, 41, 29, 0.06);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.11);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.7rem;
  border-bottom: 1px solid var(--forest);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  font-size: 1rem;
}

/* Floating navigation */

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 100%;
  padding: 0.65rem 1.75rem;
  transform: translateX(-50%);
  transition:
    top 450ms cubic-bezier(0.22, 1, 0.36, 1),
    width 450ms cubic-bezier(0.22, 1, 0.36, 1),
    max-width 450ms cubic-bezier(0.22, 1, 0.36, 1),
    padding 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-glass {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 74px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 0.55rem 0 1.1rem;
  border: 1px solid transparent;
  border-radius: 0;
  color: var(--white);
  transition:
    min-height 450ms cubic-bezier(0.22, 1, 0.36, 1),
    padding 450ms cubic-bezier(0.22, 1, 0.36, 1),
    color 350ms ease,
    background 450ms ease,
    border-color 450ms ease,
    border-radius 450ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 450ms ease;
}

.nav-glass::before,
.nav-glass::after {
  position: absolute;
  z-index: -1;
  border-radius: inherit;
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms ease;
}

.nav-glass::before {
  inset: 0;
  background:
    radial-gradient(
      circle at 16% -25%,
      rgba(255, 255, 255, 0.95),
      transparent 34%
    ),
    linear-gradient(
      115deg,
      rgba(255, 255, 255, 0.78),
      rgba(231, 239, 220, 0.54) 47%,
      rgba(255, 255, 255, 0.66)
    );
}

.nav-glass::after {
  inset: 1px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -1px 0 rgba(20, 41, 29, 0.06);
}

.site-header.is-floating {
  top: 14px;
  width: calc(100% - 28px);
  max-width: 1120px;
  padding: 0;
}

.site-header.is-floating .nav-glass {
  min-height: 64px;
  padding: 0 0.45rem 0 1rem;
  border-color: rgba(255, 255, 255, 0.74);
  border-radius: 22px;
  background: rgba(244, 240, 223, 0.92);
  color: var(--forest);
  box-shadow: var(--shadow);
}

@supports (backdrop-filter: blur(1px)) {
  .site-header.is-floating .nav-glass {
    background: rgba(244, 240, 223, 0.52);
    backdrop-filter: blur(22px) saturate(165%);
  }
}

.site-header.is-floating .nav-glass::before,
.site-header.is-floating .nav-glass::after {
  opacity: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  justify-self: start;
  color: inherit;
  text-decoration: none;
}

.brand__mark {
  width: 2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.brand__ball {
  fill: var(--lime);
  stroke: none;
}

.brand__name {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav__links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding-inline: 0.8rem;
  border-radius: 999px;
  color: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav__links a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.site-header.is-floating .site-nav__links a:hover {
  background: rgba(20, 41, 29, 0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 0.8rem;
}

.nav-actions__contact {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
}

.menu-button {
  display: none;
  width: 44px;
  min-height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 15px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-button span + span {
  margin-top: 5px;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

/* Hero */

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-deep);
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media {
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  background:
    linear-gradient(
      90deg,
      rgba(5, 18, 11, 0.96) 0%,
      rgba(5, 18, 11, 0.76) 42%,
      rgba(5, 18, 11, 0.08) 78%
    ),
    linear-gradient(0deg, rgba(5, 18, 11, 0.5) 0%, transparent 38%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-top: 10rem;
  padding-bottom: clamp(4rem, 8vw, 6rem);
}

.hero__copy {
  max-width: 49rem;
}

.hero h1 {
  max-width: 47rem;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(5.75rem, 12vw, 10.5rem);
  font-weight: 700;
  line-height: 0.84;
}

.hero__lede {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 500;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.scroll-cue {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.3rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue svg {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  animation: scroll-bob 1.8s ease-in-out infinite;
}

@keyframes scroll-bob {
  50% {
    transform: translateY(5px);
  }
}

.court-trace {
  position: absolute;
  z-index: 1;
  right: -2vw;
  bottom: -8vw;
  width: min(52vw, 48rem);
  aspect-ratio: 1.8;
  border: 1px solid rgba(216, 242, 56, 0.26);
  transform: perspective(700px) rotateX(58deg) rotateZ(-10deg);
  transform-origin: bottom;
}

.court-trace__line {
  position: absolute;
  display: block;
  background: rgba(216, 242, 56, 0.26);
}

.court-trace__line--vertical {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
}

.court-trace__line--horizontal {
  top: 43%;
  right: 0;
  left: 0;
  height: 1px;
}

.court-trace__zone,
.court-trace__court {
  position: absolute;
  color: rgba(216, 242, 56, 0.56);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.court-trace__zone {
  top: 45%;
  left: 52%;
}

.court-trace__court {
  right: 2%;
  bottom: 3%;
}

/* Facts and booking */

.venue-facts {
  background: var(--cream-dark);
}

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

.fact {
  display: grid;
  min-height: 9.5rem;
  align-content: center;
  padding: 1.5rem clamp(1rem, 3vw, 2.5rem);
  border-right: 1px solid var(--line);
}

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

.fact strong {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
}

.fact > span {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.booking-band {
  position: relative;
  padding-block: clamp(4.5rem, 8vw, 7rem);
  overflow: hidden;
}

.booking-band::after {
  position: absolute;
  right: -8rem;
  bottom: -16rem;
  width: 35rem;
  height: 35rem;
  border: 1px solid rgba(216, 242, 56, 0.15);
  border-radius: 50%;
  content: "";
}

.booking-band__heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 4rem;
  align-items: end;
}

.booking-band h2 {
  font-size: clamp(3.5rem, 7vw, 6.5rem);
}

.booking-band__heading > p {
  color: rgba(255, 255, 255, 0.62);
}

.booking-form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 0.65rem;
  margin-top: 3rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-light);
}

.booking-form label {
  display: grid;
  gap: 0.55rem;
}

.booking-form label > span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 54px;
  padding: 0 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 0.85rem;
  color-scheme: dark;
}

.booking-form select option {
  color: var(--forest-deep);
  background: var(--cream);
}

.booking-form__button {
  align-self: end;
  min-height: 54px;
  border: 0;
}

.booking-message {
  position: relative;
  z-index: 1;
  min-height: 1.6rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.8rem;
  font-weight: 700;
}

.booking-message[data-state="success"] {
  color: var(--lime);
}

.booking-message[data-state="error"] {
  color: #ffc6af;
}

/* Facility */

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

.facility__visual {
  position: relative;
  min-height: 42rem;
}

.facility__visual > img {
  width: calc(100% - 3rem);
  height: 100%;
  min-height: 42rem;
  object-fit: cover;
}

.facility__stamp {
  position: absolute;
  right: 0;
  bottom: 3rem;
  display: grid;
  width: 9.5rem;
  aspect-ratio: 1;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--forest-deep);
  line-height: 1;
  text-align: center;
}

.facility__stamp strong {
  margin-block: 0.35rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3.5rem;
}

.facility__stamp span {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-intro {
  margin: 1.8rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.amenity-list {
  margin-block: 2.5rem 1.5rem;
}

.amenity-list > div {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 1.5rem;
  padding-block: 1rem;
  border-top: 1px solid var(--line);
}

.amenity-list > div:last-child {
  border-bottom: 1px solid var(--line);
}

.amenity-list dt {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.1;
}

.amenity-list dd {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.6;
}

/* Rates */

.rates {
  background: #ede8d6;
}

.rates__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.rate {
  position: relative;
  display: flex;
  min-height: 32rem;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border-right: 1px solid var(--line);
  transition:
    transform 240ms var(--motion-ease),
    border-color 240ms ease,
    box-shadow 240ms ease;
}

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

.rate--featured {
  background: var(--lime);
}

.rate__flag {
  position: absolute;
  top: -1.1rem;
  right: 1.5rem;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rate__top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rate--featured .rate__top {
  color: rgba(20, 41, 29, 0.68);
}

.rate__price {
  display: grid;
  margin-block: 4rem 1.5rem;
}

.rate__price strong {
  font-size: clamp(3.5rem, 5.3vw, 5.5rem);
  font-weight: 700;
  line-height: 0.9;
}

.rate__price span {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.rate ul {
  display: grid;
  gap: 0.65rem;
  margin: 0 0 2rem;
  padding: 0;
  color: var(--muted);
  font-size: 0.8rem;
  list-style: none;
}

.rate li::before {
  margin-right: 0.55rem;
  color: var(--forest);
  content: "●";
  font-size: 0.45rem;
  vertical-align: middle;
}

.rate p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

.rate > .button {
  width: 100%;
  margin-top: auto;
}

.rates__note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.68rem;
}

/* Ways to play */

.play {
  position: relative;
  overflow: hidden;
}

.play::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 35%;
  width: 1px;
  background: rgba(216, 242, 56, 0.11);
  content: "";
}

.play h2 {
  color: var(--white);
}

.play__layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.play__photo {
  position: relative;
  margin-bottom: 0;
}

.play__photo img {
  width: 100%;
  height: clamp(28rem, 60vw, 43rem);
  object-fit: cover;
}

.play__photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem 1.2rem;
  background: rgba(9, 24, 15, 0.78);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.play__options {
  border-top: 1px solid var(--line-light);
}

.play__options article {
  display: grid;
  grid-template-columns: 3.5rem 1fr 3rem;
  gap: 1.5rem;
  align-items: center;
  padding-block: clamp(1.8rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line-light);
  transition:
    transform 240ms var(--motion-ease),
    border-color 240ms ease,
    box-shadow 240ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .rate:hover,
  .play__options article:hover {
    transform: translateY(-4px);
  }

  html.motion-ready [data-reveal].is-revealed.rate:hover,
  html.motion-ready .play__options article[data-reveal].is-revealed:hover {
    transform: translateY(-4px);
  }
}

.play__marker {
  color: var(--lime);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.play__options h3 {
  margin-bottom: 0.55rem;
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3.3rem);
}

.play__options p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.play__options a {
  display: grid;
  width: 44px;
  min-height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  font-size: 1.1rem;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.play__options a:hover {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--forest);
}

/* Testimonial */

.testimonial {
  background: var(--lime);
}

.testimonial__inner {
  display: grid;
  grid-template-columns: 0.35fr 1.65fr;
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
}

.testimonial blockquote {
  max-width: 60rem;
  margin-bottom: 1.8rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.94;
}

.testimonial__source {
  margin-bottom: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.testimonial__source span {
  margin-right: 0.75rem;
}

.testimonial__ball {
  position: relative;
  display: grid;
  width: min(100%, 13rem);
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid var(--forest);
  border-radius: 50%;
}

.testimonial__ball::after {
  width: 80%;
  aspect-ratio: 1;
  border: 1px solid rgba(20, 41, 29, 0.24);
  border-radius: 50%;
  content: "";
}

.testimonial__ball span {
  position: absolute;
  width: 1rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--forest);
}

.testimonial__ball span:nth-child(1) {
  top: 20%;
  left: 28%;
}

.testimonial__ball span:nth-child(2) {
  top: 24%;
  right: 25%;
}

.testimonial__ball span:nth-child(3) {
  top: 49%;
  left: 18%;
}

.testimonial__ball span:nth-child(4) {
  right: 20%;
  bottom: 30%;
}

.testimonial__ball span:nth-child(5) {
  bottom: 17%;
  left: 43%;
}

/* FAQ */

.faq__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(3rem, 9vw, 8rem);
  align-items: start;
}

.faq__heading {
  position: sticky;
  top: 8rem;
}

.faq__heading > p:not(.section-label) {
  max-width: 27rem;
  margin: 1.5rem 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

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

.faq__item {
  border-bottom: 1px solid var(--line);
}

.faq__item h3 {
  margin-bottom: 0;
}

.faq-trigger {
  display: grid;
  width: 100%;
  min-height: 72px;
  grid-template-columns: 1fr 2rem;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem 0;
  border: 0;
  background: transparent;
  color: var(--forest);
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  text-align: left;
}

.faq-trigger > span {
  position: relative;
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-trigger > span::before,
.faq-trigger > span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.65rem;
  height: 1px;
  background: var(--forest);
  content: "";
  transform: translate(-50%, -50%);
}

.faq-trigger > span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.faq-trigger[aria-expanded="true"] > span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq__answer {
  overflow: hidden;
}

.js .faq__answer[hidden] {
  display: none;
}

.faq__answer p {
  max-width: 40rem;
  margin: -0.25rem 0 1.5rem;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.75;
}

/* Visit */

.visit {
  background: var(--cream-dark);
}

.visit__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.visit__map {
  position: relative;
  min-height: 39rem;
  overflow: hidden;
  background:
    linear-gradient(rgba(20, 41, 29, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 41, 29, 0.06) 1px, transparent 1px),
    #d8d2bd;
  background-size: 38px 38px;
}

.visit__map::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent, rgba(20, 41, 29, 0.08));
  content: "";
}

.visit__road {
  position: absolute;
  z-index: 1;
  display: block;
  width: 150%;
  height: 2.4rem;
  border-block: 1px solid rgba(20, 41, 29, 0.14);
  background: rgba(244, 240, 223, 0.72);
}

.visit__road--one {
  top: 30%;
  left: -20%;
  transform: rotate(16deg);
}

.visit__road--two {
  top: 62%;
  left: -30%;
  transform: rotate(-21deg);
}

.visit__road--three {
  top: 25%;
  left: 12%;
  transform: rotate(70deg);
}

.visit__pin {
  position: absolute;
  z-index: 3;
  top: 46%;
  left: 54%;
  display: grid;
  width: 5rem;
  aspect-ratio: 1;
  place-items: center;
  border: 0.5rem solid rgba(244, 240, 223, 0.5);
  border-radius: 50% 50% 50% 0;
  background: var(--lime);
  color: var(--forest);
  transform: rotate(-45deg);
  box-shadow: var(--shadow);
}

.visit__pin span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  transform: rotate(45deg);
}

.visit__map > p {
  position: absolute;
  z-index: 4;
  right: 1.25rem;
  bottom: 1.25rem;
  margin-bottom: 0;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visit__copy > p:not(.section-label) {
  max-width: 34rem;
  margin: 1.7rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.visit__details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.visit__details > div {
  padding: 1.3rem 1rem 1.3rem 0;
  border-right: 1px solid var(--line);
}

.visit__details > div + div {
  padding-left: 1rem;
}

.visit__details > div:last-child {
  border-right: 0;
}

.visit__details span,
.visit__details strong {
  display: block;
}

.visit__details span {
  margin-bottom: 0.7rem;
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visit__details strong {
  font-size: 0.75rem;
  line-height: 1.65;
}

.visit__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}

/* Final CTA and footer */

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(6rem, 12vw, 10rem);
  text-align: center;
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  border: 1px solid rgba(216, 242, 56, 0.15);
  border-radius: 50%;
  content: "";
}

.final-cta::before {
  top: -18rem;
  left: -14rem;
  width: 38rem;
  height: 38rem;
}

.final-cta::after {
  right: -12rem;
  bottom: -23rem;
  width: 42rem;
  height: 42rem;
}

.final-cta__inner {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  max-width: 63rem;
  margin-inline: auto;
}

.final-cta p:not(.section-label) {
  margin: 1.5rem 0 1.7rem;
  color: rgba(255, 255, 255, 0.64);
}

.footer {
  padding-block: 4rem 1.5rem;
  color: var(--white);
  background: #050e09;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 2rem;
  align-items: center;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

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

.footer__top > p {
  max-width: 24rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.75rem;
}

.footer__booking {
  min-height: 44px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding-top: 1.5rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.63rem;
}

.footer__bottom > div {
  display: flex;
  gap: 1rem;
}

.footer__bottom a {
  min-height: 44px;
  text-decoration: none;
}

/* Responsive */

@media (max-width: 1020px) {
  .facility__grid,
  .visit__grid {
    gap: 3.5rem;
  }

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

  .rate--event {
    grid-column: 1 / -1;
    min-height: 24rem;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .play__layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3rem;
  }
}

@media (max-width: 800px) {
  .container {
    width: min(calc(100% - 2rem), var(--content-width));
  }

  .section-heading--split,
  .booking-band__heading,
  .facility__grid,
  .play__layout,
  .testimonial__inner,
  .faq__grid,
  .visit__grid {
    grid-template-columns: 1fr;
  }

  .section-heading--split,
  .booking-band__heading {
    gap: 1.5rem;
  }

  .site-header {
    padding: 0.5rem 0.65rem;
  }

  .site-header.is-floating {
    top: 10px;
    width: calc(100% - 20px);
  }

  .nav-glass {
    min-height: 64px;
    grid-template-columns: 1fr auto;
    padding-inline: 0.85rem 0.45rem;
  }

  .brand__name {
    font-size: 1.2rem;
  }

  .brand__mark {
    width: 1.8rem;
  }

  .nav-actions {
    grid-column: 2;
    gap: 0.45rem;
  }

  .nav-actions__contact {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .site-nav__links {
    grid-column: 1 / -1;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.5rem 0 0.8rem;
  }

  .js .site-nav__links {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    left: 0;
    display: none;
    padding: 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 1rem;
    background: rgba(244, 240, 223, 0.96);
    color: var(--forest);
    box-shadow: var(--shadow);
  }

  @supports (backdrop-filter: blur(1px)) {
    .js .site-nav__links {
      background: rgba(244, 240, 223, 0.74);
      backdrop-filter: blur(22px) saturate(160%);
    }
  }

  .js .site-nav__links.is-open {
    display: flex;
  }

  .hero {
    min-height: 92svh;
  }

  .hero__media {
    object-position: 62% center;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(5, 18, 11, 0.94), rgba(5, 18, 11, 0.35)),
      linear-gradient(0deg, rgba(5, 18, 11, 0.75), transparent 62%);
  }

  .hero__inner {
    padding-top: 8rem;
    padding-bottom: 3.2rem;
  }

  .hero h1 {
    max-width: 32rem;
    font-size: clamp(5rem, 20vw, 8rem);
  }

  .scroll-cue {
    display: none;
  }

  .court-trace {
    right: -25%;
    bottom: -2%;
    width: 95vw;
  }

  .venue-facts__grid {
    grid-template-columns: 1fr 1fr;
  }

  .fact {
    min-height: 7.2rem;
    border-bottom: 1px solid var(--line);
  }

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

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

  .booking-form__button {
    grid-column: 2;
  }

  .facility__visual,
  .facility__visual > img {
    min-height: 33rem;
  }

  .facility__visual > img {
    width: calc(100% - 2rem);
  }

  .facility__stamp {
    width: 8rem;
  }

  .facility__copy {
    max-width: 38rem;
  }

  .play::before {
    display: none;
  }

  .play__photo {
    width: min(75%, 28rem);
  }

  .faq__heading {
    position: static;
  }

  .visit__map {
    min-height: 30rem;
  }

  .footer__top,
  .footer__bottom {
    grid-template-columns: 1fr;
  }

  .footer__top {
    align-items: start;
  }
}

@media (max-width: 560px) {
  :root {
    --motion-distance: 18px;
  }

  .site-header .button--compact {
    min-width: 7.6rem;
    padding-inline: 0.75rem;
    font-size: 0.68rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .venue-facts__grid {
    width: 100%;
  }

  .fact {
    padding-inline: 1rem;
  }

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

  .booking-form__button {
    grid-column: auto;
  }

  .amenity-list > div {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

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

  .rate,
  .rate--event {
    min-height: 29rem;
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .play__photo {
    width: 100%;
  }

  .play__options article {
    grid-template-columns: 2rem 1fr 2.8rem;
    gap: 0.75rem;
  }

  .testimonial__ball {
    width: 8rem;
  }

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

  .visit__details > div,
  .visit__details > div + div {
    padding: 1rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .visit__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .visit__actions .button {
    width: 100%;
  }
}

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

  html.motion-ready [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
