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

:root {
    --navy: #0a0f1e;
    --navy-mid: #0d1730;
    --blue-deep: #0c2a5e;
    --blue: #1a4fa0;
    --blue-bright: #2d6fd4;
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --cream: #f5f0e8;
    --white: #ffffff;
    --text-muted: rgba(245, 240, 232, 0.55);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', sans-serif;
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 22px;
    --r-xl: 32px;
    --r-full: 999px;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--navy);
    color: var(--cream);
    font-family: var(--font-body);
    font-weight: 300;
    overflow-x: hidden;
}

.img-responsive {
    max-width: 100%;
    height: auto;
}

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem 0.5rem;
    background: linear-gradient(to bottom, rgba(10, 15, 30, 0.95), transparent);
    backdrop-filter: blur(4px);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.04em;
    text-decoration: none;
    width: 100px;
}

.nav-logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cream);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-cta {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--gold);
    border: none;
    padding: 0.65rem 1.5rem;
    border-radius: var(--r-full);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

/* ─── HAMBURGER (mobile only) ─── */
.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    position: relative;
    z-index: 110;
}

.nav-toggle span {
    position: absolute;
    left: 8px;
    right: 8px;
    height: 1.5px;
    background: var(--gold);
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.25s ease, top 0.35s ease;
}

.nav-toggle span:nth-child(1) {
    top: 13px;
}

.nav-toggle span:nth-child(2) {
    top: 19px;
}

.nav-toggle span:nth-child(3) {
    top: 25px;
}

body.nav-open .nav-toggle span:nth-child(1) {
    top: 19px;
    transform: rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
    top: 19px;
    transform: rotate(-45deg);
}

/* ─── OPENING SOON BANNER ─── */
.opening-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--gold);
    color: var(--navy);
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

nav {
    top: 0.5rem;
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 3rem 6rem;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(26, 79, 160, 0.25) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at 20% 80%, rgba(12, 42, 94, 0.4) 0%, transparent 60%),
        linear-gradient(160deg, var(--navy) 0%, #071020 100%);
}

.court-lines {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    height: 80%;
    opacity: 0.06;
    animation: fadeLines 2s ease forwards;
}

@keyframes fadeLines {
    from {
        opacity: 0;
        transform: translateY(-50%) scale(0.97);
    }

    to {
        opacity: 0.06;
        transform: translateY(-50%) scale(1);
    }
}

.court-lines svg {
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    animation: heroIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes heroIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 2.5rem;
    height: 1px;
    background: var(--gold);
}

/* Opening soon badge in hero */
.opening-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.45rem 1.1rem;
    border-radius: var(--r-full);
    margin-bottom: 1.5rem;
}

.opening-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    font-weight: 300;
    line-height: 1.0;
    color: var(--white);
    margin-bottom: 1rem;
}

.hero-title em {
    font-style: italic;
    color: var(--gold-light);
    font-weight: 300;
}

.hero-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-primary {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--gold);
    padding: 1rem 2.2rem;
    border-radius: var(--r-full);
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-ghost {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cream);
    border: 1px solid rgba(245, 240, 232, 0.25);
    padding: 1rem 2.2rem;
    border-radius: var(--r-full);
    text-decoration: none;
    transition: border-color 0.3s, background 0.3s;
}

.btn-ghost:hover {
    border-color: rgba(245, 240, 232, 0.6);
    background: rgba(245, 240, 232, 0.05);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.4;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    animation: bobScroll 2s ease-in-out infinite;
}

@keyframes bobScroll {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

.hero-scroll::after {
    content: '';
    width: 1px;
    height: 3rem;
    background: linear-gradient(to bottom, var(--cream), transparent);
}

/* ─── STATS BAR ─── */
.stats-bar {
    background: var(--blue-deep);
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    padding: 2rem 3rem;
    display: flex;
    justify-content: center;
    gap: 5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.3rem;
    display: block;
}

/* ─── SECTION SHARED ─── */
section {
    padding: 7rem 3rem;
}

.section-tag {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.section-tag::before {
    content: '';
    display: block;
    width: 2rem;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.section-title em {
    font-style: italic;
    color: var(--gold-light);
}

/* ─── ABOUT ─── */
.about {
    background: var(--navy-mid);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-text p {
    font-size: 1.0rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    max-width: 480px;
}

.about-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-card {
    background: rgba(26, 79, 160, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: var(--r-lg);
    padding: 1.8rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
}

.about-card:hover {
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateY(-3px);
}

.about-card-icon {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.about-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.about-card.tall {
    grid-row: span 2;
}

/* ─── COURTS ─── */
.courts {
    background: var(--navy);
}

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

.court-card {
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: var(--r-xl);
    overflow: hidden;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
}

.court-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 168, 76, 0.4);
}

.court-card-visual {
    height: 220px;
    background: var(--blue-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.court-card-visual svg {
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.court-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--navy);
    padding: 0.3rem 0.9rem;
    border-radius: var(--r-full);
}

.court-info {
    padding: 1.5rem;
    background: rgba(13, 23, 48, 0.95);
}

.court-info h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.court-info p {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.court-price {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    font-size: 0.78rem;
    color: var(--gold);
    letter-spacing: 0.08em;
}

/* ─── SCHEDULE ─── */
.schedule {
    background: var(--blue-deep);
    text-align: center;
}

.schedule-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.6rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.hour-col {
    text-align: center;
}

.hour-day {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: block;
}

.hour-block {
    background: rgba(26, 79, 160, 0.2);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: var(--r-sm);
    padding: 0.7rem 0.3rem;
    font-size: 0.75rem;
    color: var(--cream);
    margin-bottom: 0.4rem;
    transition: background 0.3s, border-color 0.3s;
}

.hour-block.peak {
    background: rgba(201, 168, 76, 0.08);
    border-color: rgba(201, 168, 76, 0.25);
    color: var(--gold-light);
}

/* ─── CONTACT (replaces booking) ─── */
.contact-section {
    background: var(--navy);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-list {
    list-style: none;
}

.contact-list a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(245, 240, 232, 0.08);
    font-size: 0.9rem;
    color: var(--cream);
}

.contact-icon {
    width: 2.4rem;
    height: 2.4rem;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Coming soon card */
.coming-soon-card {
    background: rgba(13, 23, 48, 0.7);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: var(--r-xl);
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.coming-soon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.coming-soon-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1.2rem;
}

.coming-soon-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.coming-soon-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.notify-form {
    display: flex;
    gap: 0;
    border-radius: var(--r-full);
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.3);
}

.notify-form input {
    flex: 1;
    background: rgba(26, 79, 160, 0.1);
    border: none;
    color: var(--cream);
    padding: 0.75rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
}

.notify-form input::placeholder {
    color: var(--text-muted);
}

.notify-form button {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 0.75rem 1.4rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
}

.notify-form button:hover {
    background: var(--gold-light);
}

/* ─── FOOTER ─── */
footer {
    background: #060910;
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
}

.footer-logo span {
    color: var(--gold);
}

.footer-copy {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 2.4rem;
    height: 2.4rem;
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-decoration: none;
    transition: border-color 0.3s, color 0.3s;
}

.footer-socials a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.gold-line {
    width: 3rem;
    height: 1px;
    background: linear-gradient(to right, var(--gold), transparent);
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--gold);
}

.pg-logo {
    margin-top: 50px;
}

@media (max-width: 900px) {
    .nav-logo {
        width: 140px;
    }

    .opening-banner {
        font-size: 0.65rem;
        padding: 0.4rem;
    }

    nav {
        padding: 1.2rem 1.5rem;
        top: 1.8rem;
    }

    .nav-toggle {
        display: block;
    }

    .nav-cta {
        display: none;
    }

    .nav-links {
        position: fixed;
        height: 100vh;
        inset: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        background: rgba(10, 15, 30, 0.97);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        z-index: 105;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease, visibility 0.35s ease;
        padding: 4rem 1.5rem;
    }

    .nav-links a {
        font-family: var(--font-display);
        font-size: 2rem;
        font-weight: 400;
        letter-spacing: 0.05em;
        text-transform: none;
        opacity: 0;
        transform: translateY(12px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    body.nav-open {
        overflow: hidden;
    }

    body.nav-open .nav-links {
        opacity: 1;
        visibility: visible;
    }

    body.nav-open .nav-links a {
        opacity: 0.9;
        transform: translateY(0);
        transition-delay: 0.1s;
    }

    body.nav-open .nav-links li:nth-child(2) a {
        transition-delay: 0.18s;
    }

    body.nav-open .nav-links li:nth-child(3) a {
        transition-delay: 0.26s;
    }

    body.nav-open .nav-links li:nth-child(4) a {
        transition-delay: 0.34s;
    }

    body.nav-open .nav-links li:nth-child(5) a {
        transition-delay: 0.42s;
    }

    .nav-links .mobile-cta {
        margin-top: 1rem;
        padding: 0.9rem 2.2rem;
        background: var(--gold);
        color: var(--navy);
        border-radius: var(--r-full);
        font-family: var(--font-body);
        font-size: 0.8rem;
        font-weight: 500;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

    .hero {
        padding: 0 1.5rem 4rem;
    }

    .stats-bar {
        gap: 2rem;
        padding: 1.5rem;
        flex-wrap: wrap;
    }

    .about,
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

    section {
        padding: 4rem 1.5rem;
    }

    footer {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}