:root {
    --bg: #F7FEE7;
    --ink: #07110B;
    --muted: #14532D;
    --line: rgba(20, 83, 45, 0.18);
    --green: #14532D;
    --lime: #84CC16;
    --gold: #D9F99D;
    --white: #F7FEE7;
    --dark: #07110B;
    --soft: #D9F99D;
    --shadow: 0 22px 70px rgba(7, 17, 11, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

body.locked {
    overflow: hidden;
}

img,
video {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 14px clamp(18px, 4vw, 54px);
    background: rgba(247, 254, 231, 0.9);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(18px);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.scrolled {
    border-color: var(--line);
    box-shadow: 0 12px 32px rgba(7, 17, 11, 0.08);
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.brand img,
.footer-brand img {
    width: 58px;
    height: 42px;
    object-fit: contain;
}

.site-nav {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
}

.site-nav a {
    min-width: 96px;
    padding: 10px 18px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
    text-align: center;
}

.site-nav a:hover,
.site-nav a.active {
    background: var(--dark);
    color: var(--white);
}

.header-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta,
.button.primary {
    background: var(--lime);
    color: var(--dark);
    box-shadow: 0 12px 28px rgba(132, 204, 22, 0.3);
}

.button.ghost {
    background: rgba(247, 254, 231, 0.14);
    color: var(--white);
    border: 1px solid rgba(247, 254, 231, 0.32);
}

.button.outline {
    background: transparent;
    color: var(--dark);
    border: 1px solid var(--line);
    box-shadow: none;
}

.header-cta:hover,
.button:hover {
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--white);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--ink);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 45;
    display: none;
    background: rgba(7, 17, 11, 0.62);
    backdrop-filter: blur(4px);
}

body.menu-open {
    overflow: hidden;
}

body.menu-open .nav-backdrop {
    display: block;
}

.hero {
    position: relative;
    min-height: calc(100vh - 82px);
    display: grid;
    align-items: end;
    padding: clamp(120px, 20vh, 210px) clamp(18px, 5vw, 70px) 128px;
    overflow: hidden;
    color: var(--white);
}

.home-hero {
    min-height: calc(100vh - 72px);
}

.hero-media {
    position: absolute;
    inset: 0;
    background: var(--dark);
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 17, 11, 0.94), rgba(20, 83, 45, 0.66) 56%, rgba(7, 17, 11, 0.34)),
        linear-gradient(0deg, rgba(7, 17, 11, 0.82), transparent 48%);
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--green);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero .eyebrow,
.dark-section .eyebrow,
.booking-hero .eyebrow {
    color: var(--lime);
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.03;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 680px;
    font-size: clamp(64px, 11vw, 150px);
    text-transform: uppercase;
}

.hero p:not(.eyebrow) {
    max-width: 650px;
    margin: 18px 0 0;
    color: rgba(247, 254, 231, 0.88);
    font-size: clamp(18px, 2.1vw, 25px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.hero-proof span {
    padding: 10px 13px;
    border: 1px solid rgba(247, 254, 231, 0.20);
    border-radius: 8px;
    background: rgba(247, 254, 231, 0.10);
    color: var(--soft);
    font-size: 13px;
    font-weight: 900;
    backdrop-filter: blur(14px);
}

.interactive-card {
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.hero-dock {
    position: absolute;
    right: clamp(18px, 5vw, 70px);
    bottom: 24px;
    left: clamp(18px, 5vw, 70px);
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    background: rgba(247, 254, 231, 0.1);
    border: 1px solid rgba(247, 254, 231, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(20px);
}

.hero-dock a {
    display: grid;
    gap: 3px;
    padding: 18px;
    border-left: 1px solid rgba(247, 254, 231, 0.16);
}

.hero-dock a:first-child {
    border-left: 0;
}

.hero-dock span {
    color: rgba(247, 254, 231, 0.64);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.hero-dock strong {
    color: var(--white);
    font-size: clamp(16px, 2vw, 22px);
}

.hero-panel span,
.hero-panel small {
    display: block;
    color: rgba(247, 254, 231, 0.72);
    font-weight: 800;
}

.hero-panel strong {
    display: block;
    margin: 4px 0;
    color: var(--lime);
    font-size: 34px;
    line-height: 1;
}

.section {
    padding: clamp(64px, 8vw, 110px) clamp(18px, 5vw, 70px);
}

.section-copy {
    max-width: 720px;
}

.section-copy h2,
.section-heading h2,
.page-hero h1 {
    font-size: clamp(36px, 5vw, 72px);
}

.section-copy p,
.page-hero p,
.sidebar-panel p,
.form-note {
    color: var(--muted);
    font-size: 17px;
}

.intro-section {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1fr);
    gap: clamp(28px, 6vw, 80px);
    align-items: start;
}

.story-section {
    display: grid;
    grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1fr);
    gap: clamp(28px, 6vw, 80px);
    align-items: center;
}

.story-media {
    position: relative;
    min-height: 560px;
}

.story-media img {
    position: absolute;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.story-main {
    inset: 0 auto auto 0;
    width: 78%;
    height: 82%;
}

.story-float {
    right: 0;
    bottom: 0;
    width: 48%;
    height: 52%;
    border: 10px solid var(--bg);
}

.stat-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.stat-strip div {
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.stat-strip strong {
    display: block;
    color: var(--green);
    font-size: 40px;
    line-height: 1;
}

.stat-strip span {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-weight: 800;
}

.experience-section {
    background: var(--soft);
}

.experience-layout {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 18px;
    margin-top: 28px;
}

.experience-tabs {
    display: grid;
    gap: 10px;
}

.experience-tabs button {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 74px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--muted);
    cursor: pointer;
    font-weight: 950;
    text-align: left;
}

.experience-tabs button span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    background: var(--soft);
    border-radius: 50%;
    color: var(--green);
}

.experience-tabs button.active {
    background: var(--dark);
    color: var(--white);
    transform: translateX(8px);
}

.experience-tabs button.active span {
    background: var(--lime);
    color: var(--dark);
}

.experience-preview {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--dark);
    box-shadow: var(--shadow);
}

.experience-preview article {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: end;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.experience-preview article.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.experience-preview img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-preview article::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(7, 17, 11, 0.88), rgba(20, 83, 45, 0.18));
}

.experience-preview div {
    position: relative;
    z-index: 1;
    max-width: 680px;
    padding: clamp(22px, 5vw, 48px);
    color: var(--white);
}

.experience-preview p {
    margin: 0 0 8px;
    color: var(--lime);
    font-weight: 900;
    text-transform: uppercase;
}

.experience-preview h3 {
    font-size: clamp(42px, 7vw, 86px);
}

.experience-preview span {
    display: block;
    max-width: 560px;
    margin-top: 12px;
    color: rgba(247, 254, 231, 0.78);
    font-size: 18px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.feature-grid article,
.sidebar-panel,
.form-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(7, 17, 11, 0.07);
}

.feature-grid article {
    min-height: 220px;
    padding: 24px;
}

.feature-grid span {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 28px;
    background: var(--dark);
    color: var(--lime);
    border-radius: 50%;
    font-weight: 950;
}

.feature-grid h3 {
    font-size: 22px;
}

.dark-section {
    background: var(--dark);
    color: var(--white);
}

.pricing-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    margin-top: 34px;
}

.pricing-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
    gap: 24px;
    align-items: end;
}

.pricing-heading > p {
    color: rgba(247, 254, 231, 0.68);
}

.price-estimator {
    display: grid;
    gap: 12px;
    padding: 24px;
    background: rgba(247, 254, 231, 0.08);
    border: 1px solid rgba(247, 254, 231, 0.14);
    border-radius: 8px;
}

.price-estimator label {
    color: var(--white);
    margin: 0;
}

.price-estimator select {
    background: rgba(247, 254, 231, 0.92);
}

.mini-label {
    color: var(--lime);
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
}

.estimate-output {
    margin: 6px 0;
    padding: 18px;
    background: rgba(7, 17, 11, 0.24);
    border-radius: 8px;
}

.estimate-output span {
    display: block;
    color: rgba(247, 254, 231, 0.64);
    font-weight: 850;
}

.estimate-output strong {
    display: block;
    margin-top: 4px;
    color: var(--gold);
    font-size: 34px;
    line-height: 1;
}

.court-size-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.court-size-grid article {
    padding: 24px;
    background: rgba(247, 254, 231, 0.06);
    border: 1px solid rgba(247, 254, 231, 0.12);
    border-radius: 8px;
}

.court-size-grid span {
    color: rgba(247, 254, 231, 0.68);
    font-weight: 900;
}

.court-size-grid strong {
    display: block;
    margin-top: 8px;
    color: var(--white);
    font-size: 28px;
}

.court-size-grid p {
    margin-bottom: 0;
    color: rgba(247, 254, 231, 0.64);
}

.venue-section {
    background: var(--bg);
}

.venue-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.65fr);
    grid-template-rows: repeat(2, 260px);
    gap: 14px;
    margin-top: 28px;
}

.venue-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: var(--dark);
    color: var(--white);
}

.venue-card.large {
    grid-row: span 2;
}

.venue-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.venue-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(7, 17, 11, 0.78), transparent 60%);
}

.venue-card:hover img {
    transform: scale(1.04);
}

.venue-card h3,
.venue-card p,
.venue-card div {
    position: absolute;
    right: 22px;
    bottom: 22px;
    left: 22px;
    z-index: 1;
}

.venue-card div h3,
.venue-card div p {
    position: static;
}

.venue-card h3 {
    font-size: 28px;
}

.venue-card p {
    color: rgba(247, 254, 231, 0.74);
}

.location-section {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
    gap: 24px;
    align-items: stretch;
    background: var(--soft);
}

.location-copy {
    align-self: center;
}

.location-copy h2 {
    font-size: clamp(36px, 5vw, 68px);
}

.location-copy p {
    color: var(--muted);
}

.map-panel {
    min-height: 470px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.map-panel iframe {
    width: 100%;
    height: 100%;
    min-height: 470px;
    border: 0;
}

.final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: var(--dark);
    color: var(--white);
}

.final-cta div {
    max-width: 760px;
}

.final-cta h2 {
    font-size: clamp(38px, 6vw, 76px);
}

.final-cta p {
    color: rgba(247, 254, 231, 0.7);
}

.terms-page {
    display: grid;
    gap: 32px;
    background: var(--bg);
}

.terms-intro {
    max-width: 920px;
}

.terms-intro h2 {
    font-size: clamp(34px, 5vw, 64px);
}

.terms-intro p {
    color: var(--muted);
}

.terms-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.terms-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.terms-highlight article {
    min-height: 170px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark), var(--green));
    color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.terms-highlight article::after {
    content: "";
    position: absolute;
    inset: auto -30px -42px auto;
    width: 120px;
    height: 120px;
    background: rgba(132, 204, 22, 0.22);
    border-radius: 50%;
}

.terms-highlight span {
    display: block;
    color: var(--lime);
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
}

.terms-highlight strong {
    display: block;
    margin-top: 8px;
    font-size: clamp(30px, 5vw, 54px);
    line-height: 1;
}

.terms-highlight p {
    margin-bottom: 0;
    color: rgba(247, 254, 231, 0.72);
}

.terms-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 370px;
    gap: 20px;
    align-items: start;
}

.terms-policy-grid {
    display: grid;
    gap: 14px;
}

.terms-policy-grid article {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 22px;
    background: rgba(247, 254, 231, 0.92);
    border: 1px solid rgba(20, 83, 45, 0.18);
    border-left: 6px solid var(--lime);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(7, 17, 11, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.terms-policy-grid article:hover {
    transform: translateY(-4px);
    background: var(--white);
    box-shadow: 0 20px 48px rgba(7, 17, 11, 0.13);
}

.terms-policy-grid article > span {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    background: var(--dark);
    color: var(--lime);
    border-radius: 50%;
    font-weight: 950;
}

.terms-policy-grid h3 {
    margin: 0;
    font-size: clamp(22px, 2vw, 30px);
}

.terms-policy-grid p {
    margin: 0;
    margin-top: 10px;
    color: var(--ink);
    font-size: clamp(17px, 1.4vw, 20px);
    font-weight: 850;
}

.terms-policy-grid small {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 15px;
}

.terms-side-card {
    position: sticky;
    top: 92px;
    display: grid;
    gap: 18px;
    padding: 26px;
    background:
        linear-gradient(160deg, rgba(132, 204, 22, 0.12), transparent 38%),
        var(--dark);
    color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(217, 249, 157, 0.14);
}

.terms-side-card h2 {
    font-size: 34px;
}

.terms-side-card p {
    color: rgba(247, 254, 231, 0.7);
}

.terms-meter {
    display: grid;
    gap: 6px;
    padding: 18px;
    background: rgba(217, 249, 157, 0.09);
    border: 1px solid rgba(217, 249, 157, 0.16);
    border-radius: 8px;
}

.terms-meter span {
    color: var(--lime);
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
}

.terms-meter strong {
    color: var(--white);
    font-size: 22px;
}

.terms-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 28px;
    background: linear-gradient(135deg, var(--dark), var(--green));
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--white);
    box-shadow: var(--shadow);
}

.terms-cta h2 {
    font-size: clamp(28px, 4vw, 48px);
}

.terms-cta p {
    margin: 8px 0 0;
    color: rgba(247, 254, 231, 0.74);
}

.js-ready .reveal-on-scroll {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.js-ready .reveal-on-scroll.revealed,
.reveal-on-scroll {
    opacity: 1;
    transform: translateY(0);
}

.price-table,
.court-list article {
    border: 1px solid rgba(247, 254, 231, 0.14);
    border-radius: 8px;
    overflow: hidden;
}

.price-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    min-height: 92px;
    border-top: 1px solid rgba(247, 254, 231, 0.12);
}

.price-row:first-child {
    border-top: 0;
}

.price-row > * {
    display: grid;
    align-content: center;
    padding: 18px;
    border-left: 1px solid rgba(247, 254, 231, 0.12);
}

.price-row > *:first-child {
    border-left: 0;
}

.price-row.head {
    min-height: 76px;
    background: rgba(247, 254, 231, 0.06);
    color: var(--lime);
    font-weight: 950;
    text-transform: uppercase;
}

.price-row strong {
    color: var(--gold);
    font-size: 30px;
}

.court-list {
    display: grid;
    gap: 14px;
}

.court-list article {
    padding: 22px;
    background: rgba(247, 254, 231, 0.06);
}

.court-list span {
    display: block;
    color: rgba(247, 254, 231, 0.7);
    font-weight: 900;
}

.court-list strong {
    display: block;
    margin-top: 8px;
    color: var(--white);
    font-size: 24px;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
    gap: clamp(28px, 6vw, 80px);
    align-items: center;
}

.image-stack {
    display: grid;
    grid-template-columns: 1fr 0.78fr;
    gap: 14px;
    align-items: end;
}

.image-stack img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.image-stack img:nth-child(2) {
    aspect-ratio: 4 / 6;
}

.contact-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0;
}

.contact-strip span {
    padding: 10px 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-weight: 850;
}

.page-hero {
    padding: clamp(82px, 12vw, 140px) clamp(18px, 5vw, 70px) clamp(42px, 8vw, 84px);
    background: var(--dark);
    color: var(--white);
}

.page-hero.compact {
    background: linear-gradient(135deg, #07110B, #14532D);
}

.terms-hero {
    background:
        linear-gradient(120deg, rgba(7, 17, 11, 0.94), rgba(20, 83, 45, 0.72)),
        url("../images/turf-court.jpeg") center / cover;
}

.page-hero p:not(.eyebrow) {
    max-width: 760px;
    color: rgba(247, 254, 231, 0.76);
}

.gallery-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.gallery-toolbar button {
    min-height: 42px;
    padding: 9px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    color: var(--muted);
    cursor: pointer;
    font-weight: 900;
}

.gallery-toolbar button.active {
    background: var(--dark);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: dense;
    gap: 14px;
}

.gallery-item {
    min-height: 260px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
    cursor: zoom-in;
    box-shadow: 0 10px 34px rgba(7, 17, 11, 0.1);
}

.gallery-item.wide {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.video-section {
    padding-top: 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(190px, 1fr));
    gap: 18px;
    margin-top: 24px;
    align-items: start;
}

.video-grid video {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    background: var(--dark);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    place-items: center;
    padding: 24px;
    background: rgba(7, 17, 11, 0.86);
}

.lightbox[aria-hidden="false"] {
    display: grid;
}

.lightbox img {
    max-height: 86vh;
    border-radius: 8px;
}

.lightbox button {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 10px 16px;
    border: 0;
    border-radius: 999px;
    background: var(--white);
    cursor: pointer;
    font-weight: 900;
}

.booking-hero {
    background: linear-gradient(rgba(7, 17, 11, 0.82), rgba(20, 83, 45, 0.72)), url("../images/turf-sample.jpg") center / cover;
}

.booking-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 24px;
    align-items: start;
    width: 100%;
    max-width: 1780px;
    margin-inline: auto;
    overflow: hidden;
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(20, 83, 45, 0.12);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(247, 254, 231, 0.98), rgba(217, 249, 157, 0.28)),
        var(--light);
    box-shadow: 0 22px 70px rgba(7, 17, 11, 0.08);
}

.form-card {
    padding: 18px;
    border: 1px solid rgba(20, 83, 45, 0.10);
    background: rgba(255, 255, 255, 0.54);
    box-shadow: 0 10px 28px rgba(7, 17, 11, 0.04);
}

.booking-alert {
    border: 1px solid rgba(132, 204, 22, 0.35);
    background: rgba(217, 249, 157, 0.45);
    color: var(--green);
    font-weight: 900;
}

.form-card.full,
.submit-button.full,
.form-note,
.booking-message.full {
    grid-column: 1 / -1;
}

.booking-message {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 1200;
    display: grid;
    gap: 5px;
    width: min(420px, calc(100vw - 32px));
    padding: 16px 18px;
    border-radius: 8px;
    border: 1px solid rgba(20, 83, 45, 0.14);
    background: var(--light);
    color: var(--green);
    box-shadow: 0 24px 70px rgba(7, 17, 11, 0.24);
    animation: bookingToastIn 0.22s ease-out;
}

.booking-message[hidden] {
    display: none;
}

.booking-message strong {
    font-size: 16px;
    line-height: 1.2;
}

.booking-message span {
    color: var(--ink);
    line-height: 1.5;
}

.booking-message.success {
    border-color: rgba(132, 204, 22, 0.46);
    background: linear-gradient(135deg, rgba(247, 254, 231, 1), rgba(217, 249, 157, 0.64));
}

.booking-message.warning {
    border-color: rgba(20, 83, 45, 0.34);
    background: linear-gradient(135deg, rgba(217, 249, 157, 0.72), rgba(247, 254, 231, 1));
}

.booking-message.error {
    border-color: rgba(145, 29, 29, 0.25);
    background: #fff7ed;
    color: #7f1d1d;
}

@keyframes bookingToastIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.booking-confirm-modal {
    position: fixed;
    inset: 0;
    z-index: 1300;
    display: grid;
    place-items: center;
    padding: 18px;
    background: rgba(7, 17, 11, 0.72);
    backdrop-filter: blur(5px);
}

.booking-confirm-modal[hidden] {
    display: none;
}

.booking-confirm-card {
    width: min(460px, 100%);
    display: grid;
    justify-items: center;
    gap: 14px;
    padding: 36px 32px 30px;
    border: 1px solid rgba(132, 204, 22, 0.45);
    border-radius: 8px;
    background: #F7FEE7;
    color: var(--ink);
    text-align: center;
    box-shadow: 0 34px 100px rgba(7, 17, 11, 0.46);
    animation: bookingConfirmIn 0.24s ease-out;
}

.booking-confirm-icon {
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--lime);
    color: var(--dark);
    font-size: 44px;
    font-weight: 950;
    line-height: 1;
    box-shadow: 0 14px 34px rgba(132, 204, 22, 0.38);
}

.booking-confirm-card h2 {
    margin: 6px 0 0;
    color: var(--dark);
    font-size: 32px;
    line-height: 1.08;
}

.booking-confirm-card p {
    margin: 0;
    color: var(--green);
    font-weight: 800;
    line-height: 1.65;
    max-width: 350px;
}

.booking-confirm-card .button {
    margin-top: 6px;
    min-width: 150px;
    justify-content: center;
}

@keyframes bookingConfirmIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

label,
.field-label {
    display: block;
    margin-bottom: 9px;
    color: var(--ink);
    font-weight: 950;
}

input,
select {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(247, 254, 231, 0.88);
    color: var(--ink);
    outline: 0;
}

input:focus,
select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(132, 204, 22, 0.22);
}

.form-card small {
    display: block;
    margin-top: 8px;
    color: var(--muted);
}

.court-choice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.court-choice {
    margin: 0;
}

.court-choice input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.court-choice span {
    position: relative;
    display: grid;
    gap: 8px;
    min-height: 118px;
    padding: 18px;
    overflow: hidden;
    border: 1px solid rgba(20, 83, 45, 0.14);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(247, 254, 231, 0.96), rgba(217, 249, 157, 0.34)),
        var(--bg);
    color: var(--ink);
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(7, 17, 11, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.court-choice b {
    position: relative;
    z-index: 1;
    width: max-content;
    max-width: 100%;
    padding: 5px 9px;
    border-radius: 999px;
    background: var(--green);
    color: var(--light);
    font-size: 11px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0;
}

.court-choice strong {
    position: relative;
    z-index: 1;
    font-size: 18px;
    line-height: 1.1;
}

.court-choice small {
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: 92%;
    line-height: 1.45;
}

.court-choice:hover span {
    border-color: rgba(132, 204, 22, 0.55);
    transform: translateY(-2px);
}

.court-choice input:checked + span {
    border-color: var(--lime);
    background:
        linear-gradient(135deg, rgba(7, 17, 11, 0.96), rgba(20, 83, 45, 0.94)),
        var(--dark);
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(7, 17, 11, 0.18);
}

.court-choice input:checked + span strong {
    color: var(--white);
}

.court-choice input:checked + span b {
    background: var(--lime);
    color: var(--dark);
}

.court-choice input:checked + span small {
    color: var(--soft);
}

.slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
}

.slot-chip {
    margin: 0;
}

.slot-chip input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.slot-chip span {
    display: grid;
    align-content: center;
    gap: 4px;
    min-height: 78px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--bg);
    color: var(--ink);
    cursor: pointer;
    font-weight: 900;
    transition: border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.slot-chip strong,
.slot-chip small,
.slot-chip em {
    display: block;
}

.slot-chip strong {
    font-size: 14px;
    line-height: 1.2;
}

.slot-chip small {
    min-height: 16px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.25;
}

.slot-chip em {
    width: max-content;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(132, 204, 22, 0.16);
    color: var(--green);
    font-size: 10px;
    font-style: normal;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0;
}

.slot-chip input:checked + span {
    background: var(--dark);
    color: var(--lime);
    border-color: var(--dark);
    transform: translateY(-2px);
}

.slot-chip input:checked + span small {
    color: var(--soft);
}

.slot-chip.booked span {
    border-color: rgba(7, 17, 11, 0.08);
    background: rgba(7, 17, 11, 0.05);
    color: rgba(7, 17, 11, 0.42);
    cursor: not-allowed;
}

.slot-chip.booked small {
    color: rgba(7, 17, 11, 0.38);
}

.slot-chip.booked em {
    background: rgba(7, 17, 11, 0.12);
    color: rgba(7, 17, 11, 0.58);
}

.slot-chip.past span {
    border-color: rgba(7, 17, 11, 0.08);
    background: rgba(7, 17, 11, 0.05);
    color: rgba(7, 17, 11, 0.42);
    cursor: not-allowed;
}

.slot-chip.past small {
    color: rgba(7, 17, 11, 0.38);
}

.slot-chip.past em {
    background: rgba(7, 17, 11, 0.12);
    color: rgba(7, 17, 11, 0.58);
}


.slot-grid.is-loading {
    opacity: 0.68;
    pointer-events: none;
}

.slot-status {
    margin: 12px 0 0;
    color: var(--green);
    font-size: 13px;
    font-weight: 850;
}

.submit-button:disabled {
    cursor: wait;
    opacity: 0.68;
}

.form-note {
    margin: 0;
}

.booking-sidebar {
    display: grid;
    gap: 14px;
}

.booking-visual-panel {
    position: relative;
    min-height: 330px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--dark);
    color: var(--light);
    box-shadow: 0 24px 70px rgba(7, 17, 11, 0.18);
}

.booking-visual-panel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.82;
}

.booking-visual-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 17, 11, 0.06), rgba(7, 17, 11, 0.88));
}

.booking-visual-panel div {
    position: absolute;
    z-index: 1;
    left: 20px;
    right: 20px;
    bottom: 20px;
    display: grid;
    gap: 7px;
}

.booking-visual-panel span {
    width: max-content;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--lime);
    color: var(--dark);
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
}

.booking-visual-panel strong {
    color: var(--white);
    font-size: 32px;
    line-height: 1;
}

.booking-visual-panel small {
    max-width: 280px;
    color: var(--soft);
    font-weight: 800;
    line-height: 1.45;
}

.sidebar-panel {
    padding: 24px;
}

.sidebar-panel h2 {
    margin: 0 0 14px;
    font-size: 28px;
}

.sidebar-panel strong {
    display: block;
    margin-bottom: 10px;
    color: var(--green);
    font-size: 22px;
}

.terms-panel {
    background: var(--light);
    border: 1px solid rgba(20, 83, 45, 0.14);
}

.booking-terms-list {
    display: grid;
    gap: 10px;
}

.booking-terms-list article {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: start;
    padding: 12px;
    border: 1px solid rgba(20, 83, 45, 0.10);
    border-radius: 8px;
    background: rgba(247, 254, 231, 0.72);
}

.booking-terms-list span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: var(--dark);
    color: var(--lime);
    font-size: 12px;
    font-weight: 950;
}

.booking-terms-list p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.booking-terms-list strong {
    display: inline;
    margin: 0;
    color: var(--ink);
    font-size: inherit;
}

.site-footer {
    padding: 54px clamp(18px, 5vw, 70px) 24px;
    background: var(--dark);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 0.6fr 0.6fr;
    gap: 28px;
}

.footer-grid p {
    color: rgba(247, 254, 231, 0.7);
}

.footer-grid h2 {
    margin-bottom: 14px;
    color: var(--lime);
    font-size: 16px;
    text-transform: uppercase;
}

.footer-grid a:not(.footer-brand) {
    display: block;
    margin-top: 8px;
    color: rgba(247, 254, 231, 0.78);
}

.footer-bottom {
    margin-top: 32px;
    padding-top: 18px;
    border-top: 1px solid rgba(247, 254, 231, 0.12);
    color: rgba(247, 254, 231, 0.58);
}

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: auto 1fr auto auto;
        gap: 12px;
        padding: 10px clamp(12px, 3vw, 24px);
    }

    .brand img {
        width: 48px;
        height: 34px;
    }

    .brand span {
        font-size: 15px;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 60;
        width: 100%;
        height: 100dvh;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 12px;
        padding: 92px 18px 28px;
        background: var(--dark) !important;
        border: 0;
        border-radius: 0;
        box-shadow: var(--shadow);
        transform: translateY(-105%);
        transition: transform 0.26s ease;
    }

    .site-nav.open {
        transform: translateY(0);
    }

    .site-nav a {
        display: flex;
        align-items: center;
        min-height: 56px;
        width: 100%;
        min-width: 0;
        padding: 14px 18px;
        background: rgba(247, 254, 231, 0.08);
        border: 1px solid rgba(247, 254, 231, 0.12);
        border-radius: 8px;
        color: var(--white);
        font-size: 18px;
        text-align: left;
    }

    .site-nav a:hover,
    .site-nav a.active {
        background: var(--lime);
        color: var(--dark);
    }

    .menu-toggle {
        display: block;
        justify-self: end;
        position: relative;
        z-index: 70;
        background: var(--bg);
        order: 3;
    }

    .header-cta {
        display: inline-flex;
        min-height: 36px;
        padding: 8px 16px;
        font-size: 12.5px;
        order: 2;
    }

    .intro-section,
    .story-section,
    .experience-layout,
    .pricing-layout,
    .pricing-heading,
    .split-section,
    .location-section,
    .booking-section,
    .terms-shell,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .story-media {
        min-height: 460px;
    }

    .hero {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        min-height: auto;
        padding: 100px clamp(16px, 4vw, 36px) 40px;
    }

    .hero-content {
        margin-bottom: 28px;
        max-width: 100%;
    }

    .hero-dock {
        position: static;
        margin-top: 24px;
        width: 100%;
        grid-template-columns: 1fr;
    }

    .hero-dock a {
        border-left: 0;
        border-top: 1px solid rgba(247, 254, 231, 0.16);
    }

    .hero-dock a:first-child {
        border-top: 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .terms-list {
        grid-template-columns: 1fr;
    }

    .terms-side-card {
        position: static;
    }

    .venue-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: none;
    }

    .venue-card {
        min-height: 240px;
        grid-row: auto;
    }

    .venue-card.large {
        grid-column: span 2;
        grid-row: auto;
        min-height: 300px;
    }

    .final-cta,
    .terms-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .experience-tabs {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 8px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .experience-tabs::-webkit-scrollbar {
        display: none;
    }

    .experience-tabs button {
        flex: 0 0 auto;
        min-height: auto;
        height: 48px;
        padding: 8px 16px;
        gap: 8px;
    }

    .experience-tabs button span {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }

    .experience-tabs button.active {
        transform: none;
    }
}

@media (max-width: 620px) {
    .brand span {
        font-size: 14px;
    }

    .hero {
        padding-top: 90px;
        padding-bottom: 30px;
    }

    .hero h1 {
        font-size: clamp(38px, 12vw, 54px);
    }

    .hero p:not(.eyebrow) {
        font-size: 16px;
    }

    .hero-proof,
    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .button {
        justify-content: center;
    }

    .price-row {
        grid-template-columns: 1fr;
    }

    .price-row > * {
        border-left: 0;
        border-top: 1px solid rgba(247, 254, 231, 0.12);
    }

    .price-row > *:first-child {
        border-top: 0;
    }

    .image-stack,
    .booking-form,
    .stat-strip {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: minmax(0, 360px);
        justify-content: center;
    }

    .story-media {
        min-height: 380px;
    }

    .story-main {
        width: 88%;
        height: 76%;
    }

    .story-float {
        width: 58%;
        height: 48%;
        border-width: 6px;
    }

    .experience-preview {
        min-height: 440px;
    }

    .terms-policy-grid article {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .gallery-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .venue-grid {
        grid-template-columns: 1fr;
    }

    .venue-card.large {
        grid-column: span 1;
        min-height: 240px;
    }

}

/* --- Time Slot Navigator and Multi-Selection --- */
.slot-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.44);
}

.slot-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--bg);
    color: var(--green);
    cursor: pointer;
    font-size: 14px;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.slot-nav-btn:hover {
    border-color: var(--green);
    background: var(--soft);
    transform: scale(1.05);
}

.slot-nav-btn:active {
    transform: scale(0.95);
}

.slot-nav-btn:disabled {
    opacity: 0.38;
    cursor: not-allowed;
    pointer-events: none;
}

.slot-nav-info {
    text-align: center;
    flex: 1;
}

.slot-nav-title {
    font-size: 15px;
    font-weight: 900;
    color: var(--ink);
}

.slot-nav-subtitle {
    font-size: 11px;
    font-weight: 800;
    color: var(--muted);
    margin-top: 1px;
}

/* Selected Slots Container */
.slot-selection-summary {
    margin-top: 20px;
    border-top: 1px solid var(--line);
    padding-top: 18px;
}

.selected-slots-title {
    font-size: 14px;
    font-weight: 950;
    margin-bottom: 10px;
    color: var(--ink);
}

.slot-empty-state {
    padding: 14px;
    border: 1px dashed var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.3);
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    text-align: center;
}

.slot-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.selected-slot-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: var(--dark);
    color: var(--lime);
    border: 1px solid var(--dark);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 4px 10px rgba(7, 17, 11, 0.08);
}

.selected-slot-chip button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: inherit;
    padding: 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 900;
}

.selected-slot-chip button:hover {
    color: var(--white);
}

/* Custom indicator on check availability */
.slot-chip input:disabled + span {
    border-color: rgba(7, 17, 11, 0.08);
    background: rgba(7, 17, 11, 0.05);
    color: rgba(7, 17, 11, 0.42);
    cursor: not-allowed;
}
