:root {
  --navy: #0b2a4a;
  --blue: #1e8edb;
  --sky: #dff3ff;
  --amber: #f4a62a;
  --green: #2fbf71;
  --purple: #7b61d1;
  --ink: #102033;
  --muted: #65758a;
  --line: #d9e3ec;
  --soft: #f5f8fb;
  --white: #ffffff;
  --shadow: none;
  --radius: 4px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  cursor: url("./assets/cursors/shuttle-real-default.png?v=real-photo") 5 5, auto;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.modal-open {
  overflow: hidden;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

a {
  color: inherit;
  cursor: url("./assets/cursors/shuttle-real-pointer.png?v=real-photo") 5 5, pointer;
  text-decoration: none;
}

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

button,
select,
summary,
[role="button"],
.court-pill,
.court-option,
.social-buttons button {
  cursor: url("./assets/cursors/shuttle-real-pointer.png?v=real-photo") 5 5, pointer;
}

input,
textarea {
  cursor: text;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 227, 236, 0.85);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  color: var(--navy);
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 42px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
}

.brand-mark svg {
  width: 31px;
  height: 31px;
}

.brand-mark path,
.scene-shuttle path,
.player-figure path,
.player-figure circle,
.hero-racket path,
.hero-racket ellipse {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.brand-mark .mark-shuttle {
  fill: rgba(30, 142, 219, 0.2);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 24px);
  color: #33465c;
  font-size: 0.94rem;
  font-weight: 650;
}

.desktop-nav a {
  padding: 8px 0;
}

.desktop-nav a:hover {
  color: var(--blue);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.95rem;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
  box-shadow: none;
}

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: none;
}

.button-primary:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
  box-shadow: none;
}

.button-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.hero {
  display: grid;
  grid-template-columns: minmax(600px, 1.12fr) minmax(460px, 0.88fr);
  gap: clamp(28px, 3.8vw, 54px);
  align-items: center;
  min-height: min(720px, calc(100vh - 76px));
  padding: clamp(38px, 5vw, 68px) clamp(32px, 5.6vw, 96px);
  background:
    linear-gradient(120deg, rgba(223, 243, 255, 0.86), transparent 52%),
    linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 1040px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(3rem, 4.6vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.25rem, 3vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 720px;
  margin: 18px 0 0;
  color: #4d6279;
  font-size: clamp(1.05rem, 1.4vw, 1.16rem);
  line-height: 1.62;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  margin-top: clamp(28px, 4vw, 46px);
  border-top: 1px solid rgba(11, 42, 74, 0.14);
  border-bottom: 1px solid rgba(11, 42, 74, 0.14);
}

.hero-proof span {
  display: grid;
  gap: 4px;
  min-height: 74px;
  align-content: center;
  padding: 14px 18px 14px 0;
}

.hero-proof span + span {
  padding-left: 18px;
  border-left: 1px solid rgba(11, 42, 74, 0.14);
}

.hero-proof strong {
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.15;
}

.hero-proof small {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  min-height: clamp(440px, 40vw, 560px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: none;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-photo-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 20, 36, 0.08), rgba(6, 20, 36, 0.46)),
    linear-gradient(90deg, rgba(6, 20, 36, 0.24), transparent 44%);
}

.court-scene {
  position: absolute;
  inset: 38px 38px 92px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  background:
    radial-gradient(circle at 78% 18%, rgba(244, 166, 42, 0.26), transparent 18%),
    linear-gradient(135deg, rgba(30, 142, 219, 0.22), rgba(255, 255, 255, 0.03));
  transform: perspective(900px) rotateX(58deg);
  transform-origin: bottom;
}

.court-scene::before {
  position: absolute;
  top: 18%;
  left: 12%;
  width: 76%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: rotate(-9deg);
}

.court-lines span,
.court-lines::before,
.court-lines::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.52);
}

.court-lines::before {
  inset: 0;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: transparent;
}

.court-lines::after,
.court-lines .net {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
}

.court-lines .service-one,
.court-lines .service-two {
  top: 50%;
  width: 100%;
  height: 2px;
}

.court-lines .service-one {
  transform: translateY(-82px);
}

.court-lines .service-two {
  transform: translateY(82px);
}

.court-lines .sideline-one,
.court-lines .sideline-two {
  top: 0;
  bottom: 0;
  width: 2px;
}

.court-lines .sideline-one {
  left: 24%;
}

.court-lines .sideline-two {
  right: 24%;
}

.scene-shuttle {
  position: absolute;
  top: 58px;
  right: 82px;
  z-index: 4;
  width: 104px;
  height: 104px;
  color: var(--white);
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.22));
  transform: rotate(14deg);
}

.scene-shuttle path:first-child {
  fill: rgba(244, 166, 42, 0.34);
}

.player-figure {
  position: absolute;
  z-index: 3;
  width: 118px;
  height: 148px;
  color: rgba(255, 255, 255, 0.88);
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.26));
  transform-origin: center bottom;
}

.player-left {
  bottom: 54px;
  left: 66px;
  transform: rotate(-8deg) scale(0.92);
}

.player-right {
  right: 72px;
  bottom: 58px;
  transform: rotate(8deg) scale(0.88);
}

.player-head {
  fill: rgba(255, 255, 255, 0.9);
  stroke-width: 0;
}

.player-body,
.player-limb,
.player-arm {
  stroke-width: 6;
}

.player-arm,
.racket-handle,
.racket-head {
  color: var(--amber);
}

.racket-head {
  fill: rgba(244, 166, 42, 0.16);
}

.hero-racket {
  position: absolute;
  right: 44px;
  bottom: 24px;
  z-index: 2;
  width: 86px;
  height: 116px;
  color: rgba(255, 255, 255, 0.24);
  transform: rotate(-22deg);
}

.hero-racket path,
.hero-racket ellipse {
  stroke-width: 2;
}

.shuttle-trail {
  position: absolute;
  z-index: 2;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.82), transparent);
}

.trail-one {
  top: 88px;
  right: 158px;
  width: 128px;
  transform: rotate(-15deg);
}

.trail-two {
  top: 122px;
  right: 182px;
  width: 82px;
  opacity: 0.7;
  transform: rotate(-15deg);
}

.hero-note {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 40px);
  align-items: center;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(7, 27, 48, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.hero-note span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 750;
}

.section {
  padding: clamp(48px, 6vw, 76px) clamp(32px, 5.6vw, 96px);
}

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

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.approach-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.82fr);
  gap: clamp(26px, 4vw, 48px);
  align-items: start;
  background:
    linear-gradient(90deg, rgba(223, 243, 255, 0.62), transparent 48%),
    #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.approach-copy h2 {
  max-width: 940px;
}

.approach-body {
  display: grid;
  gap: 14px;
  color: var(--muted);
  font-size: 1.08rem;
}

.approach-body p,
.approach-strip p,
.community p {
  margin: 0;
  color: var(--muted);
}

.approach-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.approach-strip div {
  display: grid;
  gap: 8px;
  align-items: start;
  min-height: 104px;
  padding: 22px 24px 0 0;
}

.approach-strip div + div {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.approach-strip strong {
  color: var(--navy);
  font-size: 1.04rem;
}

.facilities-section {
  display: grid;
  grid-template-columns: minmax(330px, 0.56fr) minmax(0, 1.04fr);
  gap: clamp(30px, 4.6vw, 60px);
  align-items: start;
  background:
    linear-gradient(120deg, rgba(223, 243, 255, 0.5), transparent 38%),
    var(--white);
}

.facilities-copy {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
  align-content: start;
}

.facilities-copy h2 {
  max-width: 640px;
}

.facilities-copy > p {
  max-width: 510px;
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.facility-panel {
  position: relative;
  display: grid;
  gap: 22px;
  padding: 4px 0 4px 28px;
}

.facility-photo,
.community-photo {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
  border-radius: var(--radius);
}

.facility-photo {
  aspect-ratio: 16 / 7.8;
}

.facility-photo img,
.community-photo img,
.program-list img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility-line {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(30, 142, 219, 0.34), transparent);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 30px;
}

.feature-item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-height: 112px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  transition:
    border-color 170ms ease,
    transform 170ms ease;
}

.feature-item:hover {
  border-color: rgba(30, 142, 219, 0.34);
  transform: translateY(-2px);
}

.feature-item h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.feature-icon {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #42627f;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.programs-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 4.6vw, 58px);
  align-items: start;
  background:
    linear-gradient(90deg, #f5f8fb 0%, #f5f8fb 44%, #ffffff 44%, #ffffff 100%);
}

.programs-content {
  display: grid;
  align-content: start;
  position: sticky;
  top: 104px;
}

.programs-content h2 {
  max-width: 700px;
}

.programs-content p:not(.eyebrow) {
  max-width: 470px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.58;
}

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

.program-list article {
  display: grid;
  grid-template-columns: minmax(250px, 0.4fr) minmax(0, 1fr);
  gap: clamp(18px, 2.5vw, 26px);
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition:
    border-color 170ms ease,
    transform 170ms ease;
}

.program-list article:hover {
  border-color: rgba(30, 142, 219, 0.38);
  transform: translateX(3px);
}

.program-list article > img {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
}

.program-list article > div {
  max-width: 560px;
}

.program-list h3 {
  margin-bottom: 7px;
}

.program-list p {
  margin: 0;
  color: var(--muted);
}

.community {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 0.92fr);
  gap: clamp(30px, 4.8vw, 62px);
  align-items: center;
  background:
    linear-gradient(110deg, rgba(11, 42, 74, 0.9), rgba(11, 42, 74, 0.64)),
    linear-gradient(90deg, transparent 0 48%, rgba(255, 255, 255, 0.08) 48% 49%, transparent 49%),
    #0b2a4a;
}

.community-copy {
  max-width: 760px;
}

.community .eyebrow,
.community h2,
.community-copy p {
  color: var(--white);
}

.community-copy p:last-child {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.06rem;
}

.community-panel {
  display: grid;
  gap: 18px;
}

.community-photo {
  aspect-ratio: 16 / 8.8;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.goal-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.goal-list div {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 800;
}

.goal-list span {
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 950;
}

.booking-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f9fd 100%);
}

.booking-shell {
  padding: clamp(22px, 3.2vw, 36px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.booking-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 44px);
  margin-bottom: 18px;
}

.booking-header > div:first-child {
  min-width: min(680px, 100%);
}

.section-lede {
  max-width: 620px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.booking-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.booking-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.booking-summary span {
  min-height: 56px;
  padding: 13px 18px 13px 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.booking-summary span + span {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.booking-summary strong {
  display: block;
  margin-bottom: 2px;
  color: var(--navy);
  font-size: 0.95rem;
}

.date-nav {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--navy);
  background: transparent;
  border: 0;
  cursor: url("./assets/cursors/shuttle-real-pointer.png?v=real-photo") 5 5, pointer;
}

.icon-button:hover {
  background: var(--sky);
}

.icon-button svg {
  width: 20px;
  height: 20px;
}

.icon-button path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.schedule-date-label {
  min-width: 152px;
  padding: 0 12px;
  color: var(--navy);
  text-align: center;
  font-size: 0.92rem;
  font-weight: 900;
  white-space: nowrap;
}

.availability-desktop {
  display: block;
}

.availability-mobile {
  display: none;
}

.schedule-grid {
  display: grid;
  grid-template-columns: minmax(88px, 0.72fr) repeat(8, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: none;
}

.schedule-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 6px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  font-size: 0.78rem;
}

.schedule-cell:nth-child(9n) {
  border-right: 0;
}

.schedule-head,
.time-cell {
  color: var(--navy);
  background: #f4f8fb;
  font-weight: 900;
}

.booking-cell {
  align-items: stretch;
  min-height: 48px;
  background: #fbfdff;
}

.booking-block {
  display: flex;
  width: 100%;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: var(--radius);
  color: var(--navy);
  font-weight: 850;
  line-height: 1.1;
}

.booking-block.available {
  color: #9aacbd;
  background: transparent;
  font-weight: 700;
}

.booking-block.course {
  background: rgba(244, 166, 42, 0.2);
  border: 1px solid rgba(244, 166, 42, 0.56);
}

.booking-block.social {
  background: rgba(30, 142, 219, 0.16);
  border: 1px solid rgba(30, 142, 219, 0.42);
}

.booking-block.private {
  background: rgba(47, 191, 113, 0.16);
  border: 1px solid rgba(47, 191, 113, 0.42);
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.legend i {
  width: 15px;
  height: 15px;
  border-radius: 4px;
}

.legend-course {
  background: rgba(244, 166, 42, 0.3);
  border: 1px solid var(--amber);
}

.legend-social {
  background: rgba(30, 142, 219, 0.24);
  border: 1px solid var(--blue);
}

.legend-private {
  background: rgba(47, 191, 113, 0.24);
  border: 1px solid var(--green);
}

.legend-available {
  background: #f7fafc;
  border: 1px solid var(--line);
}

.mobile-controls {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

textarea {
  resize: vertical;
}

.mobile-courts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.court-pill {
  min-height: 42px;
  padding: 0 14px;
  color: var(--navy);
  background: var(--sky);
  border: 1px solid rgba(30, 142, 219, 0.32);
  border-radius: var(--radius);
  font-weight: 850;
}

.unavailable-message {
  width: 100%;
  margin: 0;
  padding: 14px;
  color: #8a3d16;
  background: rgba(244, 166, 42, 0.14);
  border: 1px solid rgba(244, 166, 42, 0.42);
  border-radius: var(--radius);
  font-weight: 750;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: clamp(30px, 4vw, 52px);
  background: #f7fafc;
}

dl {
  display: grid;
  gap: 18px;
  margin: 28px 0;
}

dt {
  color: var(--navy);
  font-weight: 900;
}

dd {
  margin: 5px 0 0;
  color: var(--muted);
}

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

.social-buttons button {
  min-height: 40px;
  padding: 0 13px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.contact-form,
.booking-form {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

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

.pricing-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  background: #f7fafc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.pricing-summary div {
  display: grid;
  gap: 4px;
  min-height: 70px;
  align-content: center;
  padding: 12px;
  border-right: 1px solid var(--line);
}

.pricing-summary div:last-child {
  border-right: 0;
}

.pricing-summary span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.pricing-summary strong {
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.15;
}

.pricing-summary .pricing-total {
  background: var(--sky);
}

.pricing-summary .pricing-total strong {
  color: var(--blue);
  font-size: 1.14rem;
}

.booking-submit-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}

.booking-submit-row .button {
  width: 100%;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-weight: 850;
}

.form-error {
  min-height: 20px;
  margin: 0;
  color: #b94d16;
  font-size: 0.92rem;
  font-weight: 800;
}

.booking-success {
  display: grid;
  gap: 20px;
}

.booking-success[hidden] {
  display: none;
}

.success-mark {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: var(--radius);
  font-size: 1.5rem;
  font-weight: 950;
}

.success-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

.success-summary div {
  min-height: 74px;
  padding: 14px 16px 14px 0;
  border-bottom: 1px solid var(--line);
}

.success-summary div:nth-child(even) {
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.success-summary dt {
  font-size: 0.78rem;
}

.success-summary dd {
  color: var(--navy);
  font-weight: 850;
}

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

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy);
}

.footer span:first-child {
  color: var(--white);
  font-weight: 900;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  overflow-y: auto;
  padding: 24px;
  background: rgba(5, 20, 35, 0.58);
}

.modal-backdrop.is-open {
  display: grid;
  place-items: center;
}

.modal {
  position: relative;
  width: min(620px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--navy);
  background: #f1f6fa;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.modal-close svg {
  width: 19px;
  height: 19px;
}

.modal-close path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2.2;
}

.modal-header {
  padding-right: 42px;
  margin-bottom: 18px;
}

.court-selection {
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.court-selection legend {
  padding: 0 6px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 900;
}

.court-options {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.court-option {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 12px;
  color: var(--navy);
  background: #f7fafc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.court-option.is-selected {
  background: var(--sky);
  border-color: rgba(30, 142, 219, 0.55);
  box-shadow: none;
}

.court-option input {
  width: auto;
  min-height: auto;
  accent-color: var(--blue);
}

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

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

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

  .hero-proof {
    max-width: none;
  }

  .schedule-grid {
    grid-template-columns: minmax(72px, 0.66fr) repeat(8, minmax(0, 1fr));
  }

  .schedule-cell {
    min-height: 44px;
    padding: 4px;
    font-size: 0.68rem;
  }

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

  .approach-section,
  .programs-section {
    grid-template-columns: 1fr;
  }

  .approach-strip {
    grid-template-columns: 1fr;
  }

  .approach-strip div,
  .approach-strip div + div {
    padding: 22px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .facilities-copy {
    position: static;
  }

  .programs-content {
    position: static;
  }

  .facility-panel {
    padding-left: 0;
  }

  .facility-line {
    display: none;
  }

  .booking-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .booking-actions {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
    max-width: calc(100% - 120px);
  }

  .brand span:last-child {
    font-size: 0.92rem;
    line-height: 1.1;
  }

  .site-header > .button {
    min-height: 40px;
    padding: 0 13px;
  }

  .hero,
  .section {
    padding-right: 16px;
    padding-left: 16px;
  }

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-visual {
    min-height: 330px;
  }

  .hero-proof,
  .booking-summary {
    grid-template-columns: 1fr;
  }

  .hero-proof span,
  .hero-proof span + span,
  .booking-summary span,
  .booking-summary span + span {
    min-height: auto;
    padding: 12px 0;
    border-left: 0;
  }

  .hero-proof span + span,
  .booking-summary span + span {
    border-top: 1px solid rgba(11, 42, 74, 0.14);
  }

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

  .court-scene {
    inset: 28px 24px 86px;
  }

  .scene-shuttle {
    width: 76px;
    height: 76px;
    top: 44px;
    right: 36px;
  }

  .player-figure {
    width: 88px;
    height: 110px;
  }

  .player-left {
    bottom: 58px;
    left: 20px;
    transform: rotate(-8deg) scale(0.78);
  }

  .player-right {
    right: 24px;
    bottom: 60px;
    transform: rotate(8deg) scale(0.74);
  }

  .player-body,
  .player-limb,
  .player-arm {
    stroke-width: 7;
  }

  .hero-racket {
    width: 64px;
    height: 88px;
    right: 20px;
    bottom: 30px;
  }

  .trail-one {
    top: 78px;
    right: 102px;
    width: 90px;
  }

  .trail-two {
    top: 102px;
    right: 126px;
    width: 56px;
  }

  .hero-note {
    align-items: center;
    max-width: calc(100% - 32px);
  }

  .approach-section,
  .programs-section,
  .community,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .program-list article {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 0;
  }

  .program-list article > img {
    aspect-ratio: 16 / 9.6;
  }

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

  .feature-item {
    min-height: auto;
    padding: 18px 0;
  }

  .booking-actions {
    width: 100%;
    justify-content: space-between;
  }

  .date-nav {
    flex: 1 1 230px;
  }

  .schedule-date-label {
    flex: 1;
    min-width: 0;
  }

  .availability-desktop {
    display: none;
  }

  .availability-mobile {
    display: block;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: none;
  }

  .availability-mobile > .open-booking {
    display: none;
  }

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

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

  .pricing-summary div:nth-child(2) {
    border-right: 0;
  }

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

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

  .success-summary,
  .success-actions {
    grid-template-columns: 1fr;
  }

  .success-summary div:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .footer {
    flex-direction: column;
  }

  .modal-backdrop {
    align-items: start;
    padding: 12px;
  }

  .modal {
    max-height: calc(100vh - 24px);
    padding: 22px 16px;
  }
}

@media (max-width: 420px) {
  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .brand span:last-child {
    max-width: 142px;
  }

  h1 {
    font-size: 2.34rem;
  }

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

  .hero-actions .button,
  .booking-actions > .button {
    width: 100%;
  }

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

  .date-nav {
    width: 100%;
  }
}
