html {
    scroll-behavior: smooth;
}

body {
    background-color: #111111;
    background-image:
        radial-gradient(circle at top left, rgba(243, 178, 51, 0.08), transparent 28%),
        radial-gradient(circle at bottom right, rgba(185, 132, 88, 0.10), transparent 24%),
        linear-gradient(180deg, #141412 0%, #111111 100%);
    color: #e8dcc6;
    font-family: "Manrope", sans-serif;
    overflow-x: hidden;
}

body.is-locked {
    overflow: hidden;
}

::selection {
    background: #f3b233;
    color: #111111;
}

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
}

[data-mobile-menu].hidden,
[data-reservation-modal].hidden,
[data-modal-step].hidden,
[data-reservation-success].hidden,
[data-special-group-message].hidden,
[data-filter-date-error].hidden,
[data-modal-photo-wrap].hidden,
[data-modal-reason].hidden,
[data-table-grid].hidden,
[data-admin-login].hidden,
[data-admin-session].hidden,
.lightbox.hidden {
    display: none !important;
}

.container-shell {
    width: 100%;
    max-width: 80rem;
    margin-inline: auto;
    padding-inline: 1rem;
}

.section-title {
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.25rem, 6vw, 3rem);
    font-weight: 600;
    line-height: 1.05;
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: #f3b233;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    transition: transform 300ms ease, background-color 300ms ease, border-color 300ms ease, color 300ms ease;
}

.btn-primary {
    background: #f3b233;
    color: #111111;
    font-weight: 800;
}

.btn-primary:hover {
    transform: translateY(-0.125rem);
    background: #fde047;
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-weight: 700;
}

.btn-secondary:hover {
    transform: translateY(-0.125rem);
    border-color: #f3b233;
    background: rgba(255, 255, 255, 0.10);
}

.hero-actions {
    align-items: stretch;
}

.hero-cta {
    width: 100%;
    min-height: 2.95rem;
    padding: 0.76rem 1.05rem;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.hero-cta--secondary {
    border-color: rgba(243, 178, 51, 0.45);
    background: rgba(243, 178, 51, 0.12);
    color: #fff7e3;
}

.hero-cta--secondary:hover {
    border-color: #f3b233;
    background: rgba(243, 178, 51, 0.2);
}

.panel-card {
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.065);
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.backdrop-blur-xl {
    backdrop-filter: none !important;
}

main > section:not(:first-child) {
    content-visibility: auto;
    contain-intrinsic-size: 1px 720px;
}

.page-fishing main > section {
    content-visibility: visible;
    contain-intrinsic-size: auto;
}

.page-fishing .fishing-media {
    align-self: start;
}

.page-fishing .fishing-top-grid {
    display: grid;
    gap: 1.5rem;
    align-items: start;
}

.page-fishing .fishing-image-main {
    height: 220px;
}

.page-fishing .fishing-image-small {
    height: 150px;
}

@media (min-width: 768px) {
    .page-fishing .fishing-top-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .page-fishing .fishing-image-main {
        height: 260px;
    }

    .page-fishing .fishing-image-small {
        height: 170px;
    }
}

@media (min-width: 1024px) {
    .page-fishing .fishing-top-grid {
        gap: 2rem;
        grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    }

    .page-fishing .fishing-image-main {
        height: 300px;
    }

    .page-fishing .fishing-image-small {
        height: 190px;
    }
}

.hero-info-card {
    padding: 0.82rem 0.88rem 0.8rem;
    border-radius: 20px;
}

.hero-info-grid {
    align-items: stretch;
}

.image-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 28px;
    background: rgba(0, 0, 0, 0.20);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-card img {
    width: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.image-card:hover img {
    transform: scale(1.05);
}

.hero-banner {
    position: relative;
    overflow: hidden;
}

.hero-banner__slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 700ms ease;
}

.hero-banner__slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-banner__image {
    object-fit: cover;
}

.hero-banner__controls {
    position: absolute;
    inset: auto 1rem 1rem 1rem;
    z-index: 2;
    display: flex;
    justify-content: space-between;
}

.hero-banner__button,
.lightbox-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.42);
    color: #fff;
    font-size: 1.7rem;
    transition: transform 250ms ease, background-color 250ms ease, border-color 250ms ease;
}

.hero-banner__button:hover,
.lightbox-close:hover {
    transform: translateY(-1px);
    border-color: rgba(243, 178, 51, 0.55);
    background: rgba(17, 17, 17, 0.62);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.table-status-free {
    border-color: rgba(52, 211, 153, 0.3);
    background: rgba(16, 185, 129, 0.15);
    color: #a7f3d0;
}

.table-status-pending {
    border-color: rgba(251, 191, 36, 0.3);
    background: rgba(245, 158, 11, 0.15);
    color: #fef3c7;
}

.table-status-reserved {
    border-color: rgba(251, 113, 133, 0.3);
    background: rgba(244, 63, 94, 0.15);
    color: #ffe4e6;
}

.reservation-table-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem;
}

.reservation-table {
    display: flex;
    min-height: 84px;
    min-width: 0;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border-width: 1px;
    border-style: solid;
    border-radius: 16px;
    padding: 0.5rem 0.375rem;
    text-align: center;
    transition: transform 300ms ease;
}

.reservation-table:hover {
    transform: translateY(-0.25rem);
}

.reservation-table span {
    display: block;
    width: 100%;
    overflow: hidden;
    font-size: 8px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.reservation-table strong {
    margin-top: 0.25rem;
    overflow: hidden;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.reservation-table small {
    margin-top: 0.25rem;
    font-size: 9px;
    line-height: 1.15;
    opacity: 0.8;
}

.reservation-table-photo {
    aspect-ratio: 12 / 9;
}

.faq-list {
    width: 100%;
}

.faq-item {
    width: 100%;
    min-height: 5.25rem;
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    display: inline-flex;
    width: 2rem;
    height: 2rem;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: #f3b233;
}

.faq-item[open] summary::after {
    content: "-";
}

input[type="date"],
input[type="number"],
input[type="text"] {
    color-scheme: dark;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.72);
    padding: 1rem;
    backdrop-filter: blur(10px);
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.lightbox img {
    width: min(100%, 68rem);
    max-height: 82vh;
    object-fit: contain;
    border-radius: 1.5rem;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
}

@media (min-width: 640px) {
    .container-shell {
        padding-inline: 1.5rem;
    }

    .hero-cta {
        width: auto;
        min-width: 12.5rem;
        min-height: 3.35rem;
        padding: 0.9rem 1.4rem;
    }

    .hero-info-card {
        padding: 1rem 1rem 0.95rem;
        border-radius: 22px;
    }

    .reservation-table-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.5rem;
    }

    .reservation-table {
        min-height: 108px;
        border-radius: 20px;
        padding: 0.75rem;
    }

    .reservation-table span {
        font-size: 11px;
        letter-spacing: 0.16em;
    }

    .reservation-table strong {
        margin-top: 0.5rem;
        font-size: 1rem;
    }

    .reservation-table small {
        margin-top: 0.5rem;
        font-size: 11px;
    }
}

@media (min-width: 768px) {
    .reservation-table-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .container-shell {
        padding-inline: 2rem;
    }

    .reservation-table-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .container-shell {
        padding-inline: 1rem;
    }

    .panel-card {
        border-radius: 24px;
        padding: 1.1rem;
    }

    .eyebrow {
        letter-spacing: 0.2em;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
        animation-duration: 0.001ms !important;
    }
}
