.custom-scrollbar::-webkit-scrollbar { width: 6px; }
.custom-scrollbar::-webkit-scrollbar-track { background: #1a1a1a; border-radius: 10px; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: var(--brand-green); border-radius: 10px; }
.custom-scrollbar::-webkit-scrollbar-thumb:hover { background: var(--brand-green-hover); }

:root {
    --brand-green: #B8D62E;
    --brand-green-hover: #A3C028;
    --brand-green-light: #C9E866;
    --brand-green-rgb: 184, 214, 46;
    --site-header-height: 6.5rem;
    --font-hero-display: 'Bebas Neue', sans-serif;
    --font-hero-brand: 'Barlow Condensed', var(--font-hero-sport);
    --font-hero-sport: 'Oswald', Montserrat, sans-serif;
    --font-body: Montserrat, sans-serif;
}

@media (min-width: 1024px) {
    :root {
        --site-header-height: 7.25rem;
    }
}

.card {
    background-color: rgba(21, 21, 21, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(184, 214, 46, 0.2);
    border-radius: 0.75rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
    border-color: rgba(184, 214, 46, 0.45);
    box-shadow: 0 0 30px rgba(184, 214, 46, 0.2);
}

.feature-card {
    text-align: left;
}

.feature-card:hover {
    border-color: #B8D62E;
    box-shadow: 0 0 35px rgba(184, 214, 46, 0.25);
    transform: translateY(-2px);
}

.feature-card .feature-icon {
    color: #B8D62E;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background-color: #B8D62E;
    color: #0B0B0B;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0.5rem;
    border: 2px solid #B8D62E;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: rgba(184, 214, 46, 0.9);
    box-shadow: 0 0 30px rgba(184, 214, 46, 0.6);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    background-color: transparent;
    color: #B8D62E;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0.5rem;
    border: 2px solid #B8D62E;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: rgba(184, 214, 46, 0.1);
}

.hero-banner-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.hero-slider {
    position: relative;
}

.hero-section {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    padding-top: var(--site-header-height);
    --hero-banner-height: min(42rem, max(15rem, calc(100vw * 802 / 1962)));
    height: calc(var(--site-header-height) + var(--hero-banner-height));
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s ease, visibility 0.9s ease;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0a0f0a;
}

.hero-banner-frame {
    position: relative;
    width: 100%;
    max-height: 100%;
    aspect-ratio: 1962 / 802;
    overflow: hidden;
}

.hero-slide-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    filter: brightness(1.14) saturate(1.06);
    transform-origin: center center;
    animation: heroBannerZoom 6s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes heroBannerZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.07);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide-image {
        animation: none;
        will-change: auto;
    }
}

.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-hero-sport);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-hero-display);
    font-size: clamp(2.25rem, 6.5vw, 3.75rem);
    line-height: 0.95;
    letter-spacing: 0.04em;
    font-weight: 400;
    text-shadow: 0 0 28px rgba(184, 214, 46, 0.28);
}

.hero-title-accent {
    display: block;
    position: relative;
    margin-top: 0.4rem;
    transform: skewX(-10deg) rotate(-1deg);
}

.hero-title-accent::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 42%;
    z-index: -1;
    width: min(100%, 28rem);
    height: 0.35rem;
    transform: translate(-50%, -50%) skewX(-18deg);
    background: repeating-linear-gradient(
        90deg,
        rgba(184, 214, 46, 0) 0,
        rgba(184, 214, 46, 0) 6px,
        rgba(184, 214, 46, 0.35) 6px,
        rgba(184, 214, 46, 0.35) 18px
    );
    opacity: 0.65;
    pointer-events: none;
}

.hero-title-brand {
    display: block;
    font-family: var(--font-hero-brand);
    font-style: italic;
    font-weight: 800;
    font-size: clamp(3.5rem, 12vw, 6.75rem);
    line-height: 0.82;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    white-space: nowrap;
}

.hero-title-super {
    color: #ffffff;
    text-shadow:
        3px 3px 0 rgba(0, 0, 0, 0.45),
        0 0 24px rgba(255, 255, 255, 0.12);
}

.hero-title-six {
    margin-left: 0.06em;
    background: linear-gradient(165deg, #efff8a 0%, #B8D62E 45%, #7a9918 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 18px rgba(184, 214, 46, 0.75)) drop-shadow(3px 4px 0 rgba(0, 0, 0, 0.35));
}

.hero-title-turf {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.35rem;
    padding: 0.2rem 1.5rem 0.25rem;
    border-top: 2px solid rgba(184, 214, 46, 0.55);
    border-bottom: 2px solid rgba(184, 214, 46, 0.55);
    background: linear-gradient(
        90deg,
        rgba(184, 214, 46, 0) 0%,
        rgba(184, 214, 46, 0.12) 25%,
        rgba(184, 214, 46, 0.12) 75%,
        rgba(184, 214, 46, 0) 100%
    );
    box-shadow: 0 0 20px rgba(184, 214, 46, 0.15);
}

.hero-title-turf span {
    font-family: var(--font-hero-brand);
    font-style: italic;
    font-weight: 700;
    font-size: clamp(1.35rem, 4vw, 2rem);
    line-height: 1;
    letter-spacing: 0.42em;
    text-indent: 0.42em;
    text-transform: uppercase;
    color: #f5f5f5;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.35);
}

.hero-title-turf::before,
.hero-title-turf::after {
    content: none;
}

.hero-tagline {
    font-family: var(--font-hero-sport);
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #e2e2e2;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.875rem, 1.6vw, 1rem);
    color: #c9c9c9;
    line-height: 1.5;
    margin-bottom: 1.25rem !important;
}

.hero-slide-content--opening {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding-top: 5rem;
    padding-bottom: 4.5rem;
}

.hero-opening-logo {
    width: auto;
    height: clamp(5rem, 14vw, 8rem);
    max-width: min(90vw, 18rem);
    object-fit: contain;
    margin-bottom: 1.25rem;
}

.hero-opening-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(184, 214, 46, 0.35);
    background: rgba(184, 214, 46, 0.1);
    color: #B8D62E;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-opening-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.25rem;
}

.hero-opening-date-day {
    font-size: clamp(3.5rem, 12vw, 5.5rem);
    line-height: 1;
    font-weight: 800;
    color: #B8D62E;
    text-shadow: 0 0 30px rgba(184, 214, 46, 0.35);
}

.hero-opening-date-meta {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    text-align: left;
}

.hero-opening-date-month,
.hero-opening-date-year {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    line-height: 1.05;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.04em;
}

.hero-opening-time {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: #d4d4d4;
    font-size: 1rem;
    font-weight: 500;
}

.hero-opening-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding: 0;
    list-style: none;
}

.hero-opening-highlights li {
    padding: 0.45rem 0.85rem;
    border-radius: 9999px;
    border: 1px solid rgba(184, 214, 46, 0.22);
    background: rgba(184, 214, 46, 0.06);
    color: #e8ffe8;
    font-size: 0.8125rem;
    font-weight: 600;
}

.hero-opening-tagline {
    margin-top: 1.25rem;
    color: #fff;
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    font-weight: 700;
}

.hero-opening-subtagline {
    margin-top: 0.35rem;
    color: #BDBDBD;
    font-size: 1rem;
}

.home-offer-banner {
    padding: 2.5rem 0;
    background: linear-gradient(180deg, #0f0f0f 0%, #0B0B0B 100%);
    border-bottom: 1px solid rgba(184, 214, 46, 0.12);
}

.home-offer-banner-link {
    display: block;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(184, 214, 46, 0.18);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-offer-banner-link:hover {
    border-color: rgba(184, 214, 46, 0.4);
    box-shadow: 0 8px 32px rgba(184, 214, 46, 0.08);
}

.home-offer-banner-image {
    display: block;
    width: 100%;
    height: auto;
}

body.launch-locked,
html.launch-locked {
    overflow: hidden;
}

.launch-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background:
        radial-gradient(circle at top, rgba(184, 214, 46, 0.16), transparent 42%),
        linear-gradient(180deg, #101010 0%, #0B0B0B 55%, #080808 100%);
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.launch-overlay--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.launch-overlay--complete .launch-overlay-inner {
    border-color: rgba(184, 214, 46, 0.55);
    box-shadow: 0 24px 80px rgba(184, 214, 46, 0.18);
}

.launch-overlay-message--live {
    color: #B8D62E !important;
    font-size: 1.125rem !important;
    font-weight: 700;
}

.launch-overlay-glow {
    position: absolute;
    inset: auto;
    top: 10%;
    left: 50%;
    width: min(36rem, 80vw);
    height: min(36rem, 80vw);
    transform: translateX(-50%);
    border-radius: 9999px;
    background: radial-gradient(circle, rgba(184, 214, 46, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.launch-overlay-inner {
    position: relative;
    z-index: 1;
    width: min(100%, 40rem);
    padding: 2rem 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(184, 214, 46, 0.28);
    background: rgba(17, 17, 17, 0.92);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    text-align: center;
}

.launch-overlay-logo {
    width: auto;
    height: 4.5rem;
    margin: 0 auto 1.25rem;
    object-fit: contain;
}

.launch-overlay-eyebrow {
    color: #B8D62E;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.launch-overlay-headline {
    margin-top: 0.5rem;
    color: #fff;
    font-family: 'Bebas Neue', 'Barlow Condensed', sans-serif;
    font-size: clamp(2.5rem, 8vw, 4rem);
    line-height: 1;
    letter-spacing: 0.04em;
}

.launch-overlay-message {
    margin-top: 0.85rem;
    color: #d4d4d4;
    font-size: 1rem;
    line-height: 1.6;
}

.launch-overlay-schedule {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.25rem;
    margin-top: 1.25rem;
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 600;
}

.launch-overlay-schedule span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.launch-overlay-schedule i {
    color: #B8D62E;
}

.launch-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.75rem;
}

.launch-countdown-item {
    min-width: 4.5rem;
    padding: 0.85rem 0.65rem;
    border-radius: 0.85rem;
    border: 1px solid rgba(184, 214, 46, 0.24);
    background: rgba(184, 214, 46, 0.08);
}

.launch-countdown-value {
    display: block;
    color: #fff;
    font-family: 'Oswald', 'Barlow Condensed', sans-serif;
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    font-weight: 700;
    line-height: 1;
}

.launch-countdown-label {
    display: block;
    margin-top: 0.35rem;
    color: #B8D62E;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.launch-countdown-separator {
    color: #B8D62E;
    font-size: 1.5rem;
    font-weight: 700;
    padding-bottom: 1.25rem;
}

.launch-overlay-tagline {
    margin-top: 1.5rem;
    color: #B8D62E;
    font-size: 0.9375rem;
    font-weight: 600;
}

.launch-overlay-address {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 1rem;
    color: #BDBDBD;
    font-size: 0.875rem;
    line-height: 1.5;
    text-align: left;
}

.launch-overlay-address i {
    flex-shrink: 0;
    margin-top: 0.15rem;
    color: #B8D62E;
}

.launch-overlay-phone {
    display: inline-block;
    margin-top: 1.25rem;
    padding: 0.75rem 1.25rem;
    border-radius: 0.65rem;
    border: 1px solid rgba(184, 214, 46, 0.35);
    color: #B8D62E;
    font-weight: 700;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.launch-overlay-phone:hover {
    background: #B8D62E;
    color: #0B0B0B;
}

@media (max-width: 640px) {
    .launch-overlay-inner {
        padding: 1.5rem 1rem;
    }

    .launch-countdown-item {
        min-width: 3.6rem;
        padding: 0.7rem 0.45rem;
    }

    .launch-countdown-separator {
        padding-bottom: 1rem;
    }
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(11, 11, 11, 0.42) 0%,
        rgba(11, 11, 11, 0.22) 50%,
        rgba(11, 11, 11, 0.5) 100%
    );
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    padding-top: 1rem;
    padding-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-slide-content {
        padding-top: 1.25rem;
        padding-bottom: 2rem;
    }
}

.hero-slider-dots {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.hero-slider-dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 9999px;
    border: 1px solid rgba(184, 214, 46, 0.5);
    background-color: transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 0;
}

.hero-slider-dot.active {
    width: 2rem;
    background-color: #B8D62E;
    border-color: #B8D62E;
    box-shadow: 0 0 12px rgba(184, 214, 46, 0.6);
}

.hero-slider-dot:hover {
    border-color: #B8D62E;
    background-color: rgba(184, 214, 46, 0.35);
}

@media (min-width: 640px) {
    .hero-banner-btns {
        flex-direction: row;
        justify-content: center;
    }
}

.hero-btn-primary,
.hero-btn-outline {
    min-width: 10rem;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-hero-sport);
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-btn-primary {
    background-color: #B8D62E;
    color: #0B0B0B;
    border: 2px solid #B8D62E;
    box-shadow: 0 0 20px rgba(184, 214, 46, 0.25);
}

.hero-btn-primary:hover {
    background-color: #A3C028;
    box-shadow: 0 0 35px rgba(184, 214, 46, 0.55);
    transform: translateY(-1px);
}

.hero-btn-primary svg,
.hero-btn-primary i {
    color: #0B0B0B;
    stroke: #0B0B0B;
}

.hero-btn-outline {
    background-color: transparent;
    color: #B8D62E;
    border: 2px solid #B8D62E;
}

.hero-btn-outline:hover {
    background-color: rgba(184, 214, 46, 0.08);
    box-shadow: 0 0 20px rgba(184, 214, 46, 0.15);
    transform: translateY(-1px);
}

.invitation-popup {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.invitation-popup.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.invitation-popup-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.invitation-popup-panel {
    position: relative;
    width: 100%;
    max-width: 32rem;
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(180deg, #151515 0%, #0B0B0B 100%);
    border: 1px solid rgba(184, 214, 46, 0.25);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 0 50px rgba(184, 214, 46, 0.15);
}

.invitation-popup-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid rgba(184, 214, 46, 0.3);
    border-radius: 0.5rem;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.invitation-popup-close:hover {
    background-color: rgba(184, 214, 46, 0.15);
    color: #B8D62E;
}

.invitation-popup-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

.invitation-popup-btn {
    display: block;
    width: 100%;
    margin-top: 1rem;
    padding: 0.875rem 1.5rem;
    background-color: #B8D62E;
    color: #0B0B0B;
    font-weight: 700;
    text-align: center;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.invitation-popup-btn:hover {
    background-color: #A3C028;
    box-shadow: 0 0 25px rgba(184, 214, 46, 0.45);
}

.input-field {
    width: 100%;
    margin-top: 0.5rem;
    background-color: #1a1a1a;
    border: 1px solid rgba(184, 214, 46, 0.3);
    color: #ffffff;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.input-field:focus {
    border-color: #B8D62E;
}

.slot-available { border-color: rgba(57,255,20,0.3); }
.slot-available:hover { border-color: #B8D62E; background: rgba(57,255,20,0.1); }
.slot-booked { border-color: rgba(239,68,68,0.3); background: rgba(239,68,68,0.05); cursor: not-allowed; }
.slot-blocked { border-color: rgba(107,114,128,0.4); background: rgba(107,114,128,0.08); cursor: not-allowed; }
.slot-selected { border-color: #B8D62E !important; background: rgba(57,255,20,0.1) !important; }

.slot-price {
    color: #FACC15;
    font-weight: 600;
    font-size: 0.875rem;
}

.slot-price-weekend {
    color: #38BDF8;
}

.price-highlight {
    color: #FACC15;
    font-weight: 700;
}

.price-highlight.price-highlight-weekend {
    color: #38BDF8;
}

.pricing-notice {
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-notice-weekday {
    color: #FACC15;
}

.pricing-notice-weekend {
    color: #38BDF8;
}

.booking-offer-notice {
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(184, 214, 46, 0.3);
    background: rgba(184, 214, 46, 0.1);
    color: #B8D62E;
    font-size: 0.875rem;
    line-height: 1.4;
}

.admin-price {
    color: #FACC15;
    font-weight: 600;
}

.admin-price-weekend {
    color: #38BDF8;
}

.offers-price {
    color: #FACC15;
    font-weight: 600;
}

.offers-price-weekend {
    color: #38BDF8;
}

.offers-price-weekend {
    color: #38BDF8;
}

.contact-map-card {
    overflow: hidden;
    padding: 0;
    min-height: 420px;
}

.contact-map-card iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background-color: rgba(21, 21, 21, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(184, 214, 46, 0.2);
    border-radius: 0.75rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-item:hover {
    border-color: rgba(184, 214, 46, 0.45);
    box-shadow: 0 0 24px rgba(184, 214, 46, 0.12);
}

.contact-info-icon {
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    background: rgba(184, 214, 46, 0.1);
    border: 1px solid rgba(184, 214, 46, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B8D62E;
}

.contact-info-body {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.contact-info-title {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.contact-info-text {
    color: #BDBDBD;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.contact-info-text a {
    color: #BDBDBD;
    transition: color 0.2s ease;
}

.contact-info-text a:hover {
    color: #B8D62E;
}

.contact-map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.75rem;
    color: #B8D62E;
    font-size: 0.875rem;
    font-weight: 600;
}

.contact-map-link:hover {
    text-decoration: underline;
}

.coupon-message-success {
    color: #B8D62E;
}

.coupon-message-error {
    color: #f87171;
}

.gallery-item { break-inside: avoid; margin-bottom: 1rem; }

.site-logo {
    filter: drop-shadow(0 0 8px rgba(184, 214, 46, 0.3));
}

.site-header-inner {
    display: grid;
    grid-template-columns: minmax(0, 14rem) minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 0.75rem;
    min-height: 5.75rem;
    padding: 0.4rem 0;
}

.site-header-logo {
    display: block;
    min-width: 0;
    width: 100%;
    max-width: 14rem;
    line-height: 0;
}

.site-header-nav {
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0.15rem 0.65rem;
    min-width: 0;
    padding: 0 0.25rem;
}

.site-header-nav-link {
    display: inline-block;
    font-family: var(--font-hero-sport);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.site-header-book-btn {
    font-family: var(--font-hero-sport);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-mobile-nav-link {
    font-family: var(--font-hero-sport);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.site-flash-message {
    top: calc(var(--site-header-height) + 0.5rem);
    font-family: var(--font-body);
}

.site-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
    gap: 0.5rem;
}

.header-logo {
    display: block;
    height: 4.75rem;
    width: auto;
    max-width: 100%;
}

@media (min-width: 1024px) {
    .site-header-inner {
        grid-template-columns: 16rem minmax(0, 1fr) auto;
        min-height: 6.5rem;
        column-gap: 1.25rem;
    }

    .site-header-logo {
        max-width: 16rem;
    }

    .header-logo {
        height: 5.5rem;
    }

    .site-header-nav {
        gap: 0.15rem 0.85rem;
    }

    .site-header-nav-link {
        font-size: 0.9375rem;
    }
}

.nav-page-offset {
    padding-top: calc(var(--site-header-height) + 0.75rem);
}

.page-hero {
    position: relative;
    padding: 2.25rem 1rem;
    overflow: hidden;
}

.page-hero--compact {
    padding: 2rem 1rem;
}

@media (min-width: 768px) {
    .page-hero {
        padding: 2.75rem 1rem;
    }

    .page-hero--compact {
        padding: 2.25rem 1rem;
    }
}

.page-hero-bg {
    position: absolute;
    inset: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-bg--gradient {
    background: linear-gradient(to bottom, #151515, #0B0B0B);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 11, 11, 0.88);
}

.page-hero-inner {
    position: relative;
    z-index: 10;
    max-width: 80rem;
    margin: 0 auto;
    text-align: center;
}

.page-hero-inner--narrow {
    max-width: 56rem;
}

.page-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    margin-bottom: 0.65rem;
    border-radius: 9999px;
    border: 1px solid rgba(184, 214, 46, 0.3);
    background: rgba(184, 214, 46, 0.1);
    font-family: var(--font-hero-sport);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #B8D62E;
}

.page-hero-title {
    font-family: var(--font-hero-sport);
    font-size: clamp(1.625rem, 4vw, 2.35rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.15;
}

.page-hero-title-accent {
    color: #B8D62E;
}

.page-hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.875rem, 1.6vw, 1rem);
    font-weight: 400;
    color: #BDBDBD;
    line-height: 1.55;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background-color: #151515;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #B8D62E;
    color: #0B0B0B;
    box-shadow: 0 0 20px rgba(184, 214, 46, 0.6);
}

.social-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: currentColor;
}

.site-footer {
    background-color: #0B0B0B;
    border-top: 1px solid rgba(184, 214, 46, 0.2);
}

.site-footer-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 3rem 1rem;
}

@media (min-width: 640px) {
    .site-footer-inner {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .site-footer-inner {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.site-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 768px) {
    .site-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .site-footer-grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr) minmax(0, 1.35fr) minmax(0, 0.95fr);
        column-gap: 3rem;
    }
}

.footer-col {
    min-width: 0;
}

.footer-title {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    margin: 0 0 1.25rem;
}

.footer-title-spaced {
    margin-top: 1.75rem;
}

.footer-brand-logo {
    display: block;
    width: auto;
    height: 6.5rem;
    max-width: 17rem;
    object-fit: contain;
    object-position: left center;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .footer-brand-logo {
        height: 7.75rem;
        max-width: 19rem;
    }
}

.footer-text {
    color: #BDBDBD;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-text-sm {
    color: #BDBDBD;
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-links a {
    color: #BDBDBD;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #B8D62E;
}

.footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact-icon {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.2rem;
    color: #B8D62E;
}

.footer-contact-body {
    flex: 1;
    min-width: 0;
    color: #BDBDBD;
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-contact-body a {
    color: #BDBDBD;
    transition: color 0.2s ease;
    word-break: break-word;
}

.footer-contact-body a:hover {
    color: #B8D62E;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.site-footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(184, 214, 46, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .site-footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer-legal-links {
        justify-content: flex-end;
    }
}

.footer-legal-links a {
    color: #BDBDBD;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: #B8D62E;
}

.about-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background-color: rgba(184, 214, 46, 0.1);
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.about-icon-circle-lg:hover {
    background-color: rgba(184, 214, 46, 0.2);
}

.about-icon-circle-red {
    background-color: rgba(239, 68, 68, 0.1);
}

.about-mission-card:hover {
    border-color: rgba(184, 214, 46, 0.4);
    box-shadow: 0 0 30px rgba(184, 214, 46, 0.15);
}

.card-prohibited {
    border-color: rgba(239, 68, 68, 0.2);
}

.card-prohibited:hover {
    border-color: rgba(239, 68, 68, 0.35);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.1);
}

.about-note-card {
    background: linear-gradient(to right, #151515, #0B0B0B);
    border-color: rgba(184, 214, 46, 0.3);
    text-align: left;
}

/* Booking Modal */
.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.booking-modal.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.booking-modal-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

.booking-modal-panel {
    position: relative;
    width: 100%;
    max-width: 28rem;
    background: linear-gradient(180deg, #151515 0%, #0B0B0B 100%);
    border: 1px solid rgba(184, 214, 46, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0 50px rgba(184, 214, 46, 0.15);
    transform: scale(1);
    transition: transform 0.25s ease;
    text-align: center;
}

.booking-modal.hidden .booking-modal-panel {
    transform: scale(0.95);
}

.booking-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: none;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: #BDBDBD;
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.booking-modal-close:hover {
    color: #B8D62E;
    background-color: rgba(184, 214, 46, 0.1);
}

.booking-modal-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.5rem;
    height: 4.5rem;
    margin: 0 auto 1.25rem;
    border-radius: 9999px;
}

.booking-modal-icon.success {
    background-color: rgba(184, 214, 46, 0.15);
    color: #B8D62E;
    box-shadow: 0 0 30px rgba(184, 214, 46, 0.2);
}

.booking-modal-icon.error {
    background-color: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.15);
}

.booking-modal-icon.warning {
    background-color: rgba(234, 179, 8, 0.15);
    color: #eab308;
}

.booking-modal-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.booking-modal-message {
    color: #BDBDBD;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.booking-modal-details {
    background-color: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(184, 214, 46, 0.15);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
    text-align: left;
}

.booking-modal-details .detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(184, 214, 46, 0.08);
}

.booking-modal-details .detail-row:last-child {
    border-bottom: none;
    padding-top: 0.75rem;
    margin-top: 0.25rem;
    border-top: 1px solid rgba(184, 214, 46, 0.2);
}

.booking-modal-details .detail-label {
    color: #BDBDBD;
    font-size: 0.875rem;
}

.booking-modal-details .detail-value {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.875rem;
    text-align: right;
}

.booking-modal-details .detail-value.amount {
    color: #FACC15;
    font-size: 1.125rem;
    font-weight: 700;
}

.booking-modal-details .detail-value.discount {
    color: #B8D62E;
}

.booking-modal-details .detail-value.coupon {
    color: #B8D62E;
    text-transform: uppercase;
}

.booking-modal-details .detail-value.capitalize {
    text-transform: capitalize;
}

.booking-modal-details .detail-value.multi-line {
    max-width: 58%;
    white-space: normal;
    line-height: 1.4;
    font-size: 0.8125rem;
}

.booking-modal-note {
    color: #BDBDBD;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem 1rem;
    background-color: rgba(184, 214, 46, 0.05);
    border: 1px solid rgba(184, 214, 46, 0.15);
    border-radius: 0.5rem;
    line-height: 1.5;
}

.booking-advance-notice {
    margin-top: 1rem;
    padding: 0.875rem 1rem;
    background-color: rgba(184, 214, 46, 0.05);
    border: 1px solid rgba(184, 214, 46, 0.2);
    border-radius: 0.5rem;
    text-align: center;
}

.booking-advance-notice-title {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
}

.booking-advance-notice-text {
    color: #BDBDBD;
    font-size: 0.8125rem;
    line-height: 1.5;
}

.booking-advance-gpay {
    color: #B8D62E;
    font-weight: 600;
    text-decoration: underline;
}

.booking-advance-gpay:hover {
    color: #C9E866;
}

.booking-modal-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.booking-modal-btn.success {
    background-color: #B8D62E;
    color: #0B0B0B;
}

.booking-modal-btn.success:hover {
    background-color: #A3C028;
    box-shadow: 0 0 25px rgba(184, 214, 46, 0.5);
}

.booking-modal-btn.error {
    background-color: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.booking-modal-btn.error:hover {
    background-color: rgba(239, 68, 68, 0.3);
}
