/* A quieter, more editorial layer over the existing booking UI. */
:root {
  --ink: #17342c;
  --muted: #66776d;
  --lime: #cce29b;
  --cream: #f5f4ef;
  --line: #d9e1d9;
  --orange: #b96c53;
  --landing-ink: #17342c;
  --landing-deep: #102920;
  --landing-mint: #cddfd5;
  --landing-lime: #cce29b;
  --landing-orange: #b96c53;
  --landing-paper: #f5f4ef;
  --landing-white: #fcfbf8;
  --landing-line: rgba(23, 52, 44, 0.14);
  --landing-shadow: 0 22px 54px rgba(22, 48, 38, 0.08);
}

body {
  background: var(--landing-paper);
  color: var(--landing-ink);
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: #dae8b7;
  color: var(--landing-deep);
}

:where(a, button, input, select, summary):focus-visible {
  outline: 3px solid #a2bd72;
  outline-offset: 3px;
}

.site-header {
  height: 78px;
  padding-inline: clamp(20px, 4vw, 72px);
  border-bottom-color: #e3e8e1;
  background: rgba(252, 251, 248, 0.94);
  box-shadow: 0 4px 24px rgba(13, 40, 29, 0.035);
}

.site-header .brand {
  gap: 12px;
  font-size: 16px;
  letter-spacing: -0.035em;
}

.site-header .brand-logo {
  display: block;
  width: 38px;
  height: 38px;
  object-fit: cover;
  border: 1px solid #dbe6dd;
  border-radius: 10px;
  box-shadow: 0 5px 14px rgba(14, 52, 39, 0.09);
}

.site-header nav {
  gap: clamp(18px, 2.2vw, 34px);
  color: #4e6258;
  font-size: 13px;
}

.site-header nav a::after {
  height: 1px;
  background: var(--landing-ink);
}

.header-cta,
.hero-primary,
.book-another-link {
  border-radius: 999px;
}

.header-cta {
  min-height: 43px;
  padding-inline: 20px;
  background: var(--landing-deep);
  box-shadow: 0 7px 20px rgba(16, 41, 32, 0.12);
}

.header-cta:hover,
.primary-btn:hover {
  background: #2b5845;
}

.header-cta span,
.primary-btn span {
  color: var(--landing-lime);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-login-button,
.header-auth-button {
  min-height: 40px;
  border-radius: 999px;
  font: 600 12px "DM Sans", sans-serif;
  white-space: nowrap;
  cursor: pointer;
}

.header-login-button {
  padding-inline: 15px;
  border: 1px solid transparent;
}

.header-recovery-button {
  padding-inline: 15px;
  border: 1px solid #cad6cc;
  background: transparent;
  color: #53675d;
}

.header-recovery-button:hover {
  border-color: #9db0a1;
  background: #f2f5ef;
  color: var(--landing-ink);
}

.header-create-button {
  padding-inline: 18px;
  border: 1px solid var(--landing-deep);
  background: var(--landing-deep);
  color: #fff;
  box-shadow: 0 7px 20px rgba(16, 41, 32, 0.12);
}

.header-create-button:hover {
  background: #2b5845;
}

.guest-auth-button[hidden] {
  display: none;
}

/* Signed-in account chip and dropdown */
.header-actions {
  position: relative;
}

.header-login-button.is-signed-in {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 4px 12px 4px 4px;
  border: 1px solid #d5dfd7;
  background: #fff;
  color: var(--landing-ink);
  box-shadow: 0 6px 18px rgba(16, 41, 32, 0.06);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.header-login-button.is-signed-in:hover,
.header-login-button.is-signed-in[aria-expanded="true"] {
  border-color: #9db0a1;
  background: #fff;
  box-shadow: 0 8px 22px rgba(16, 41, 32, 0.1);
}

.account-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--landing-deep);
  color: var(--landing-lime);
  font: 700 11px "DM Sans", sans-serif;
  letter-spacing: 0.04em;
}

.account-avatar-lg {
  flex-basis: 42px;
  width: 42px;
  height: 42px;
  font-size: 14px;
}

.account-name {
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 700;
}

.account-caret {
  width: 7px;
  height: 7px;
  margin: -3px 2px 0 0;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.6;
  transition: transform 0.2s ease;
}

.header-login-button[aria-expanded="true"] .account-caret {
  margin-top: 3px;
  transform: rotate(-135deg);
}

.account-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 60;
  width: 260px;
  padding: 8px;
  border: 1px solid #dbe4dd;
  border-radius: 18px;
  background: #fffefa;
  box-shadow: 0 22px 50px rgba(16, 41, 32, 0.16);
}

.account-menu[hidden] {
  display: none;
}

.account-menu-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
  padding: 10px 10px 14px;
  border-bottom: 1px solid #e6ece7;
}

.account-menu-identity {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.account-menu-identity strong {
  overflow: hidden;
  color: var(--landing-ink);
  font: 700 14px "DM Sans", sans-serif;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-menu-identity small {
  overflow: hidden;
  color: #6c7d74;
  font: 500 12px "DM Sans", sans-serif;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-menu-item {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: var(--landing-ink);
  font: 600 13px "DM Sans", sans-serif;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.account-menu-item:hover,
.account-menu-item:focus-visible {
  background: #f1f5ef;
  outline: none;
}

.account-menu-logout {
  margin-top: 4px;
  border-top: 1px solid #e6ece7;
  border-radius: 0 0 11px 11px;
  color: #a63b25;
}

.account-menu-logout:hover,
.account-menu-logout:focus-visible {
  background: #fbefeb;
}

@media (max-width: 620px) {
  .header-login-button.is-signed-in {
    padding-right: 10px;
  }

  .header-login-button.is-signed-in .account-name {
    display: none;
  }

  .account-menu {
    position: fixed;
    top: 72px;
    right: 16px;
    width: min(280px, calc(100vw - 32px));
  }
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);
  gap: clamp(24px, 3vw, 50px);
  width: min(100%, 1720px);
  min-height: 680px;
  margin-inline: auto;
  padding: clamp(24px, 3vw, 48px) clamp(22px, 4vw, 72px);
  background: var(--landing-paper);
}

.hero-copy {
  min-width: 0;
  padding: 54px 0 58px;
}

.hero-kicker {
  gap: 7px;
  margin-bottom: clamp(30px, 4vw, 55px);
  padding: 10px 15px;
  border-color: #dce5db;
  background: #fffefa;
  color: #456051;
  letter-spacing: 0.12em;
}

.hero h1,
.booking-section h2,
.club-section h2,
.faq h2 {
  font-weight: 600;
  letter-spacing: -0.067em;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(57px, 5.6vw, 86px);
  line-height: 0.99;
  text-wrap: balance;
}

.hero h1 em,
.booking-section .section-heading h2 em,
.faq-heading h2 em {
  color: var(--landing-orange);
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.075em;
}

.hero-text {
  width: min(100%, 485px);
  max-width: 485px;
  margin: 29px 0 32px;
  color: #5e7066;
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  gap: 26px;
}

.hero-primary {
  min-width: 205px;
  padding: 17px 22px;
  background: var(--landing-deep);
  box-shadow: 0 13px 28px rgba(16, 41, 32, 0.14);
}

.hero-primary:hover {
  box-shadow: 0 16px 32px rgba(16, 41, 32, 0.2);
}

.hero-secondary {
  border-color: #8fa196;
  color: var(--landing-ink);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  width: fit-content;
  margin-top: clamp(40px, 5vw, 68px);
  padding-top: 20px;
  border-top: 1px solid #ced9cf;
}

.hero-facts div {
  display: flex;
  align-items: baseline;
  gap: 9px;
  padding-right: 24px;
}

.hero-facts div + div {
  padding-left: 24px;
  border-left: 1px solid #ced9cf;
}

.hero-facts strong {
  color: var(--landing-ink);
  font: 600 25px "Space Grotesk", sans-serif;
  letter-spacing: -0.06em;
}

.hero-facts span {
  color: #66776d;
  font-size: 12px;
}

.hero-art {
  min-height: 610px;
  border: 1px solid #c7d9cc;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.25), transparent 56%),
    #cddfd5;
  box-shadow: 0 22px 45px rgba(30, 66, 47, 0.09);
}

.hero-art::before {
  opacity: 0.42;
}

.sun {
  top: -185px;
  right: -125px;
  width: 430px;
  height: 430px;
  background: #dce8af;
  box-shadow: none;
}

.hero-floating-card {
  border-color: rgba(219, 231, 220, 0.95);
  border-radius: 14px;
  background: rgba(255, 254, 250, 0.92);
  box-shadow: 0 14px 35px rgba(23, 52, 44, 0.11);
}

.hero-next-slot {
  top: 36px;
  left: 6%;
  padding: 18px 21px;
}

.hero-next-slot span {
  color: #667d6c;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero-next-slot strong {
  font-size: 21px;
  letter-spacing: -0.04em;
}

.hero-court-count {
  right: 6%;
  bottom: 68px;
}

.hero-court-count strong {
  color: var(--landing-ink);
}

.art-label {
  color: #3b604d;
  font-size: 9px;
  letter-spacing: 0.17em;
}

.benefit-strip {
  padding-inline: clamp(22px, 4vw, 72px);
  border-top: 1px solid #e1e8df;
  border-bottom: 1px solid #e1e8df;
  background: #fffefa;
  color: var(--landing-ink);
}

.benefit-strip article {
  min-height: 112px;
  border-left-color: #e0e8df;
}

.benefit-strip article:last-child {
  border-right-color: #e0e8df;
}

.benefit-strip article > span {
  color: var(--landing-orange);
}

.benefit-strip strong {
  font-weight: 600;
}

.benefit-strip small {
  color: #738379;
}

.booking-section,
.club-section,
.faq {
  padding-inline: clamp(22px, 5vw, 88px);
}

.booking-section {
  padding-block: clamp(85px, 8vw, 124px);
  background: var(--landing-white);
}

.section-note {
  border-left-color: var(--landing-orange);
  color: #5b6d63;
  line-height: 1.65;
}

.date-picker {
  border-color: #dce4dc;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(23, 52, 44, 0.045);
}

.court-list {
  gap: 18px;
}

.courts-loading,
.court-load-error {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 170px;
  margin: 0;
  border: 1px solid var(--landing-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  font-size: 14px;
}

.courts-loading-indicator {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(23, 52, 44, 0.18);
  border-right-color: var(--landing-ink);
  border-radius: 50%;
  animation: reservebai-spin 0.75s linear infinite;
}

.court-load-error {
  border-left: 4px solid var(--landing-orange);
  color: #963d2f;
}

.court {
  min-height: 232px;
  padding: 25px;
  border: 1px solid #dce5dd;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(22, 53, 37, 0.05);
}

.court:hover {
  border-color: #9db7a4;
  box-shadow: 0 16px 34px rgba(22, 53, 37, 0.09);
}

.court.selected-court {
  border-color: #668e72;
  box-shadow: 0 0 0 2px #ccdfa8, 0 16px 34px rgba(22, 53, 37, 0.08);
}

.court h3 {
  font-size: 22px;
  letter-spacing: -0.045em;
}

.price {
  min-width: 88px;
  min-height: 46px;
  padding-inline: 13px;
  background: #eef2e8;
  color: var(--landing-ink);
  font-weight: 700;
}

.time-btn {
  min-height: 36px;
  border-radius: 9px;
  background: #fffefa;
}

.time-btn:hover:not(:disabled),
.time-btn.selected {
  border-color: #9ab76f;
  background: #dcecb7;
  color: var(--landing-deep);
}

.booking-card {
  border-color: #355b48;
  border-radius: 19px;
  background: linear-gradient(135deg, #15382d, #102920);
  box-shadow: 0 20px 50px rgba(9, 39, 29, 0.21);
}

.booking-card .primary-btn {
  border-radius: 999px;
}

.my-bookings {
  border-color: #315543;
  border-radius: 22px;
  background:
    radial-gradient(circle at 97% 5%, rgba(204, 226, 155, 0.11), transparent 21%),
    #14372c;
  box-shadow: 0 26px 55px rgba(15, 45, 31, 0.12);
}

.my-bookings h3,
.bookings-header .eyebrow {
  color: #edf5e9;
}

.bookings-intro {
  color: #b9cfc0;
}

.book-another-link {
  border-color: #dceab9;
  background: #dceab9;
  color: var(--landing-deep);
}

.booking-history {
  border-radius: 16px;
  box-shadow: 0 9px 20px rgba(6, 31, 23, 0.1);
}

.club-section {
  padding-block: clamp(95px, 8vw, 130px);
  background:
    radial-gradient(circle at 92% 5%, rgba(204, 226, 155, 0.09), transparent 28%),
    #102920;
}

.club-section h2 em {
  color: #dceab9;
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.075em;
}

.club-story p,
.club-features p {
  color: #b8c9bd;
}

.club-features article {
  padding-top: 36px;
}

.feature-number {
  color: #c7dbad;
}

.faq {
  padding-block: clamp(90px, 8vw, 132px);
  background: #f5f4ef;
}

.faq-list {
  border-top-color: #d7dfd6;
}

.faq details {
  padding-block: 25px;
  border-bottom-color: #d7dfd6;
}

.faq summary {
  color: var(--landing-ink);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.faq summary::after {
  border-color: #cdd9cc;
  color: #5b755e;
}

.faq details[open] summary::after {
  background: var(--landing-deep);
  color: #e9f3d5;
}

.faq details p {
  color: #5f7065;
  line-height: 1.7;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 8vw, 130px);
  padding: clamp(82px, 8vw, 126px) max(7vw, calc((100vw - 1480px) / 2));
  background: #edf2eb;
}

.contact-intro h2 {
  margin: 18px 0 22px;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 0.97;
  letter-spacing: -0.067em;
}

.contact-intro h2 em {
  color: var(--landing-orange);
  font-family: Georgia, serif;
  font-weight: 400;
}

.contact-intro > p:not(.eyebrow) {
  max-width: 440px;
  color: #5f7065;
  line-height: 1.7;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.contact-details a {
  display: grid;
  gap: 3px;
  width: fit-content;
  color: var(--landing-ink);
}

.contact-details span {
  color: #718279;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--landing-line);
  border-radius: 22px;
  background: #fffefa;
  box-shadow: var(--landing-shadow);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--landing-ink);
  font-size: 12px;
  font-weight: 700;
}

.contact-form .contact-label-text {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  color: var(--landing-ink);
  line-height: 1.3;
}

.contact-form .contact-label-text .required-mark {
  color: #a63b25;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfdbd0;
  border-radius: 10px;
  background: #fff;
  color: var(--landing-ink);
  font: 500 14px "DM Sans", sans-serif;
}

.contact-form input,
.contact-form select {
  min-height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 148px;
  padding: 14px;
  resize: vertical;
}

.contact-form-status {
  min-height: 20px;
  margin: 0;
  color: #a63b25;
  font-size: 13px;
}

.contact-form-status.success {
  color: #27683f;
}

.contact-submit {
  width: 100%;
  min-height: 58px;
  margin: 0;
  padding-inline: 24px 12px;
  border-radius: 999px;
}

.site-footer {
  display: block;
  padding: clamp(56px, 6vw, 84px) max(7vw, calc((100vw - 1480px) / 2)) 28px;
  background: #0b211a;
  color: #a9bbb3;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 1.25fr) minmax(130px, 0.65fr) minmax(210px, 0.95fr) minmax(250px, 1fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
}

.site-footer .footer-brand .brand {
  gap: 13px;
  color: #fff;
  font-size: 17px;
}

.site-footer .footer-brand .brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.footer-brand p {
  margin: 20px 0 0;
  color: #d5dfda;
  font: 500 clamp(18px, 2vw, 24px)/1.35 "Space Grotesk", sans-serif;
  letter-spacing: -0.035em;
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: #8fa59b;
  font-size: 12px;
}

.footer-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--landing-lime);
  box-shadow: 0 0 0 4px rgba(204, 226, 155, 0.1);
}

.footer-column {
  display: grid;
  align-content: start;
  justify-content: start;
  gap: 12px;
}

.footer-label {
  margin-bottom: 8px;
  color: #d4ed77;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.footer-column a {
  color: #a9bbb3;
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: #fff;
}

.footer-action {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(214, 231, 220, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.footer-action strong {
  color: #fff;
  font: 600 21px/1.25 "Space Grotesk", sans-serif;
  letter-spacing: -0.035em;
}

.footer-booking-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  margin-top: 5px;
  padding: 7px 8px 7px 18px;
  border-radius: 999px;
  background: var(--landing-lime);
  color: var(--landing-deep);
  font-size: 13px;
  font-weight: 700;
}

.footer-booking-button span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--landing-deep);
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: clamp(42px, 5vw, 70px);
  padding-top: 24px;
  border-top: 1px solid rgba(214, 231, 220, 0.12);
  color: #758c82;
  font-size: 11px;
}

.footer-bottom a {
  color: #a9bbb3;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--landing-lime);
}

@media (max-width: 1050px) {
  .footer-main {
    grid-template-columns: 1.2fr 0.7fr 1fr;
  }

  .footer-action {
    grid-column: 1 / -1;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .footer-action .footer-label {
    grid-column: 1;
  }

  .footer-booking-button {
    grid-column: 2;
    grid-row: 1 / span 2;
    min-width: 220px;
  }
}

@media (max-width: 700px) {
  .site-footer {
    padding: 52px 20px 24px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand,
  .footer-action {
    grid-column: 1 / -1;
  }

  .footer-action {
    grid-template-columns: 1fr;
  }

  .footer-booking-button {
    grid-column: 1;
    grid-row: auto;
    min-width: 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

.modal-backdrop {
  background: rgba(7, 30, 21, 0.63);
  backdrop-filter: blur(5px);
}

.modal {
  border: 1px solid #dfe7dc;
  border-radius: 19px;
  background: #fffefa;
  box-shadow: 0 28px 80px rgba(7, 31, 22, 0.24);
}

.modal h2 {
  color: var(--landing-deep);
  font-weight: 600;
  letter-spacing: -0.055em;
}

.modal-summary,
.profile-security-check {
  border: 1px solid #e0e8dc;
  border-radius: 12px;
  background: #f6f8f2;
}

#bookingForm .form-status:empty {
  display: none;
}

.modal input,
.modal select,
.modal textarea {
  border-color: #d4e0d3;
  border-radius: 9px;
  background: #fff;
}

.profile-account-header {
  border-bottom-color: #dce6da;
  background: linear-gradient(135deg, #eaf1e7, #f9faf5);
}

.profile-avatar {
  background: linear-gradient(145deg, #1c5540, #123629);
  box-shadow: 0 10px 24px rgba(18, 59, 34, 0.17);
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);
    padding-inline: 28px;
  }

  .hero h1 {
    font-size: clamp(50px, 5.7vw, 70px);
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .hero-copy {
    padding: 70px 7vw 62px;
  }

  .hero h1 {
    font-size: clamp(54px, 9vw, 76px);
  }

  .hero-art {
    min-height: 470px;
    margin-inline: 20px;
    border-radius: 22px;
  }
}

@media (max-width: 800px) {
  .site-header {
    height: 70px;
    padding-inline: 22px;
  }

  .site-header nav {
    top: 70px;
    background: #fffefa;
  }

  .header-auth-button {
    display: none;
  }

  .benefit-strip {
    padding-inline: 20px;
  }
}

@media (max-width: 620px) {
  .hero-copy {
    padding: 58px 20px 55px;
  }

  .hero h1 {
    font-size: clamp(42px, 11.3vw, 52px);
  }

  .hero-facts {
    margin-top: 42px;
  }

  .hero-facts div {
    gap: 6px;
    padding-right: 13px;
  }

  .hero-facts div + div {
    padding-left: 13px;
  }

  .hero-facts strong {
    font-size: 21px;
  }

  .hero-facts span {
    font-size: 10px;
  }

  .hero-art {
    min-height: 390px;
    margin-inline: 12px;
    border-radius: 18px;
  }

  .hero-next-slot {
    top: 24px;
    left: 18px;
  }

  .hero-court-count {
    right: 16px;
    bottom: 54px;
  }

  .benefit-strip article,
  .benefit-strip article:last-child {
    border-right: 0;
    border-left: 0;
    border-bottom-color: #e0e8df;
  }

  .booking-section,
  .club-section,
  .faq,
  .contact-section {
    padding-inline: 20px;
  }

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

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

  .court {
    min-height: 0;
  }

  .my-bookings {
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header *,
  .hero *,
  .court,
  .time-btn,
  .faq summary::after {
    scroll-behavior: auto;
    transition: none;
  }
}
