/* ─── CSS Custom Properties ─── */
:root {
    --gold: #d4af37;
    --gold-light: #f3e099;
    --gold-glow: rgba(212, 175, 55, 0.16);
    --dark: #0b281a;
    --dark-surface: #113322;
    --dark-card: #173f2b;
    --olive: #1a402e;
    --cream: #faf8f3;
    --text-light: #ebf2ed;
    --text-muted: #a1c4b0;

    --font-title: 'Tangerine', Georgia, 'Noto Serif', 'Liberation Serif', serif;
    --font-body: 'Inter', Arial, 'Roboto', 'Liberation Sans', sans-serif;
    --font-ui: 'Outfit', Arial, 'Roboto', 'Liberation Sans', sans-serif;

    --section-pad-y: clamp(2.5rem, 5vw, 4rem);
    --section-pad-x: clamp(1.5rem, 5vw, 4rem);
    --container-max: 1280px;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-base: 0.4s var(--ease-out-expo);
    --transition-slow: 0.8s var(--ease-out-expo);
}

/* ─── Reset & Base ─── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark);
    background-color: var(--cream);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-base);
}

ul,
ol {
    list-style: none;
}

/* ─── Utilities ─── */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--section-pad-x);
}

.section-pad {
    padding-block: var(--section-pad-y);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ─── Section Titles ─── */
.section-title {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: clamp(4rem, 8vw, 6.5rem);
    color: var(--gold);
    text-align: center;
    margin-bottom: 0.2em;
    line-height: 1.1;
    position: relative;
}

.section-title--light {
    color: var(--gold-light);
}

.section-subtitle {
    font-family: var(--font-ui);
    font-weight: 300;
    font-size: clamp(0.85rem, 1.5vw, 1.05rem);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 2.5rem;
    opacity: 0.7;
}

.section-subtitle--light {
    color: var(--text-muted);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0.6rem auto 0;
}

/* ─── Scroll Animations ─── */
.reveal,
.reveal-left,
.reveal-right {
    will-change: opacity, transform;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.9s var(--ease-out-expo),
        transform 0.9s var(--ease-out-expo);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition:
        opacity 0.9s var(--ease-out-expo),
        transform 0.9s var(--ease-out-expo);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
    will-change: auto;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition:
        opacity 0.9s var(--ease-out-expo),
        transform 0.9s var(--ease-out-expo);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
    will-change: auto;
}

/* ─── Gold Shimmer ─── */
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.shimmer-text {
    background: linear-gradient(
        90deg,
        var(--gold) 0%,
        var(--gold-light) 25%,
        var(--gold) 50%,
        var(--gold-light) 75%,
        var(--gold) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 6s linear infinite;
}

/* ─── Navigation ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition:
        background var(--transition-base),
        padding var(--transition-base),
        box-shadow var(--transition-base);
}

.nav.scrolled {
    background: rgba(11, 40, 26, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 0.7rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.nav.menu-open,
.nav:has(.nav__links.open) {
    background: #0b281a !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    font-family: var(--font-title);
    font-size: clamp(2.8rem, 5vw, 3.2rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    transition: color var(--transition-base);
}

.nav__logo:hover {
    color: var(--gold-light);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav__link {
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    padding-bottom: 2px;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link.active {
    color: var(--gold);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav__hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition:
        transform var(--transition-base),
        opacity var(--transition-base);
}

.nav__hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.open span:nth-child(2) {
    opacity: 0;
}

.nav__hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero__bg-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 50%;
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(11, 40, 26, 0.35) 0%,
        rgba(11, 40, 26, 0.5) 50%,
        rgba(11, 40, 26, 0.88) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 900px;
}

.hero__title {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: clamp(5.5rem, 15vw, 10.5rem);
    line-height: 0.85;
    color: var(--gold);
    margin-bottom: 0.15em;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 1.2s var(--ease-out-expo) 0.3s forwards;
}

.hero__scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: heroFadeIn 1s var(--ease-out-expo) 1.5s forwards;
}

.hero__scroll-hint span {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

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

@keyframes scrollPulse {
    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.6);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* ─── Venue ─── */
.venue {
    background-color: var(--cream);
    position: relative;
}

.venue__intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--olive);
}

.venue__intro p {
    margin-bottom: 1.2rem;
}

.venue__intro p strong {
    color: var(--dark);
    font-weight: 600;
}

/* ─── Pool ─── */
.pool {
    background-color: var(--dark);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.pool::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    pointer-events: none;
}

.pool__intro {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
}

/* ─── Park & Café ─── */
.park {
    background-color: var(--cream);
    position: relative;
}

.park__intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--olive);
}

.park__intro p {
    margin-bottom: 1.2rem;
}

.park__intro p strong {
    color: var(--dark);
    font-weight: 600;
}

.park__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--gold);
    border-bottom: 1.5px solid var(--gold);
    padding-bottom: 2px;
    margin-top: 0.5rem;
    transition:
        border-color var(--transition-base),
        color var(--transition-base);
}

.park__link:hover {
    border-color: var(--gold-light);
    color: var(--gold-light);
}

.park__link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-base);
}

.park__link:hover svg {
    transform: translateX(4px);
}

/* ─── FAQ ─── */
.faq {
    background-color: var(--dark);
    color: var(--text-light);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--gold-glow),
        transparent
    );
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq__item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq__question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cream);
    text-align: left;
    transition: color var(--transition-base);
}

.faq__question:hover,
.faq__item.open .faq__question {
    color: var(--gold);
}

.faq__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
    transition:
        border-color var(--transition-base),
        transform var(--transition-base),
        background var(--transition-base);
}

.faq__icon svg {
    width: 12px;
    height: 12px;
    stroke: var(--text-muted);
    transition: stroke var(--transition-base);
}

.faq__item.open .faq__icon {
    transform: rotate(45deg);
    border-color: var(--gold);
    background: var(--gold-glow);
}

.faq__item.open .faq__icon svg {
    stroke: var(--gold);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.5s var(--ease-out-expo),
        padding 0.5s var(--ease-out-expo);
}

.faq__item.open .faq__answer {
    max-height: none;
}

.faq__answer-inner {
    padding-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.faq__answer-inner p:not(:last-child) {
    margin-bottom: 0.75rem;
}

/* ─── Contact ─── */
.contact {
    background: linear-gradient(
        180deg,
        var(--dark-surface) 0%,
        var(--dark) 100%
    );
    color: var(--text-light);
    position: relative;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.contact__detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gold-glow);
    border: 1px solid rgba(201, 168, 76, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__detail-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
}

.contact__detail-text {
    display: flex;
    align-items: center;
}

.contact__detail-text h4 {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.contact__detail-text a {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--cream);
    margin: 0;
    line-height: 1.3;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 1px;
    word-break: break-word;
    overflow-wrap: anywhere;
    transition:
        color var(--transition-base),
        border-color var(--transition-base);
}

.contact__detail-text a:hover {
    color: var(--gold-light);
    border-color: var(--gold-light);
}

.contact__detail-text p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--cream);
    margin: 0;
    line-height: 1.3;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.contact__socials {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.contact__social-link {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        border-color var(--transition-base),
        background var(--transition-base),
        transform var(--transition-base);
}

.contact__social-link svg {
    width: 22px;
    height: 22px;
    color: var(--text-muted);
    transition: color var(--transition-base);
}

.contact__social-link:hover {
    border-color: var(--gold);
    background: var(--gold-glow);
    transform: translateY(-2px);
}

.contact__social-link:hover svg {
    color: var(--gold);
}

/* ─── Gallery ─── */
.gallery-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 2rem;
    width: 100%;
}

.gallery-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 1rem 0.5rem 2rem 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent;
    cursor: grab;
    width: 100%;
}

.gallery-track.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    scroll-behavior: auto;
    user-select: none;
}

.gallery-track::-webkit-scrollbar {
    height: 6px;
}

.gallery-track::-webkit-scrollbar-track {
    background: rgba(201, 168, 76, 0.08);
    border-radius: 4px;
}

.gallery-track::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

.gallery-card {
    flex: 0 0 clamp(280px, 32vw, 380px);
    scroll-snap-align: start;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    background: var(--dark-card);
    transition:
        transform 0.4s var(--ease-out-expo),
        box-shadow 0.4s var(--ease-out-expo);
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}

.gallery-card__image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.gallery-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out-expo);
}

.gallery-card:hover .gallery-card__image img {
    transform: scale(1.08);
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(11, 40, 26, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition:
        background 0.3s,
        color 0.3s,
        border-color 0.3s,
        transform 0.3s;
}

.gallery-nav-btn svg {
    width: 22px;
    height: 22px;
}

.gallery-nav-btn:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav-btn:disabled {
    opacity: 0.25;
    cursor: not-allowed;
    pointer-events: none;
    transform: translateY(-50%);
    box-shadow: none;
    border-color: rgba(212, 175, 55, 0.15);
}

.gallery-nav-btn--prev {
    left: -20px;
}

.gallery-nav-btn--next {
    right: -20px;
}

/* ─── Map ─── */
.contact__map {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-height: 360px;
}

.contact__map iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
    filter: grayscale(0.3) contrast(1.05);
    transition: filter var(--transition-base);
}

.contact__map:hover iframe {
    filter: grayscale(0) contrast(1);
}

/* ─── Responsive — Tablet ─── */
@media (max-width: 768px) {
    body {
        font-size: 0.975rem;
        line-height: 1.65;
    }

    .hero__title {
        font-size: clamp(4.8rem, 18vw, 7.5rem);
    }

    .section-title {
        font-size: clamp(3.6rem, 14vw, 5.2rem);
    }

    .venue__intro,
    .pool__intro,
    .park__intro {
        font-size: 1rem;
        line-height: 1.7;
    }

    .nav__links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background: #0b281a;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.4rem;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out-expo);
    }

    .nav__links.open {
        transform: translateX(0);
    }

    .nav__link {
        font-size: 0.9rem;
        font-weight: 500;
        letter-spacing: 0.15em;
        color: var(--text-light);
    }

    .nav__hamburger {
        display: flex;
        position: relative;
        z-index: 1002;
    }

    .contact__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-nav-btn--prev {
        left: 4px;
    }

    .gallery-nav-btn--next {
        right: 4px;
    }

    .hero__scroll-hint {
        display: none;
    }
}

/* ─── Responsive — Small Mobile ─── */
@media (max-width: 480px) {
    .hero__title {
        font-size: clamp(4.2rem, 19vw, 6.2rem);
    }

    .section-title {
        font-size: clamp(3.2rem, 13vw, 4.4rem);
    }

    .nav__link {
        font-size: 0.85rem;
        letter-spacing: 0.14em;
    }

    .venue__intro,
    .pool__intro,
    .park__intro {
        font-size: 0.95rem;
    }

    .faq__question {
        font-size: 1rem;
    }
}

/* ─── 404 Error Page ─── */
.top-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 1.8rem 0;
}

.top-header__inner {
    display: flex;
    justify-content: flex-start;
}

.top-header__logo {
    font-family: var(--font-title);
    font-size: clamp(2.4rem, 5vw, 3.2rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    transition: color var(--transition-base);
}

.top-header__logo:hover {
    color: var(--gold-light);
}

.error-page {
    min-height: 100vh;
    min-height: 100dvh;
    background-color: var(--dark);
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 1.5rem 3rem;
}

.error-page__bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(750px, 90vw);
    height: min(750px, 90vw);
    background: radial-gradient(
        circle,
        var(--gold-glow) 0%,
        rgba(27, 110, 89, 0.12) 45%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
    animation: pulseGlow 8s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% {
        transform: translate(-50%, -50%) scale(0.85);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 1;
    }
}

.error-page__container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 640px;
}

.error-page__code {
    font-family: var(--font-ui);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.2rem;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.error-page__title {
    font-family: var(--font-ui);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 1.2rem;
    opacity: 0.9;
}

.error-page__subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 2rem;
}

.error-page__actions {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, #c49a2c 100%);
    color: var(--dark);
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    transition:
        transform var(--transition-base),
        box-shadow var(--transition-base),
        background var(--transition-base);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    color: var(--dark);
}

.btn-primary svg {
    width: 15px;
    height: 15px;
    transition: transform var(--transition-base);
}

.btn-primary:hover svg {
    transform: translateX(-3px);
}

/* ─── Cookie Banner ─── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(11, 40, 26, 0.95);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
    padding: 0.5rem 0;
    transform: translateY(100%);
    opacity: 0;
    transition:
        transform 0.4s var(--ease-out-expo),
        opacity 0.4s var(--ease-out-expo);
}

.cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-banner__text {
    font-family: var(--font-body);
    font-size: 0.82rem;
    line-height: 1.35;
    color: var(--text-light);
    margin: 0;
}

.cookie-banner__btn {
    flex-shrink: 0;
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--dark);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border: none;
    border-radius: 5px;
    padding: 0.4rem 1.1rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
    transition:
        transform var(--transition-base),
        box-shadow var(--transition-base),
        filter var(--transition-base);
}

.cookie-banner__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(212, 175, 55, 0.35);
    filter: brightness(1.08);
}

.cookie-banner__btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 0.35rem 0;
    }

    .cookie-banner__container {
        flex-direction: row;
        align-items: center;
        gap: 0.6rem;
    }

    .cookie-banner__text {
        font-size: 0.7rem;
        line-height: 1.25;
    }

    .cookie-banner__text br {
        display: none;
    }

    .cookie-banner__btn {
        width: auto;
        padding: 0.3rem 0.75rem;
        font-size: 0.7rem;
        letter-spacing: 0.04em;
        border-radius: 4px;
    }
}
