/* ======================================================
   Design Tokens & Base Reset
   ====================================================== */
:root {
    --black: #000;
    --white: #fff;
    --gray: #ccc;
    --neon: #edfa5c;
    --font: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    --container: 1100px;
    --pad: clamp(16px, 2vw, 28px);

    /* Scroll-driven state (set via JS) */
    --heroProgress: 0;
    --aboutTheme: 0;
    --revealProgress: 0;
    --cardProgress: 0;
    --currentTheme: 0; /* 0 = dark, 1 = accent */
}

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

html, body {
    height: 100%;
}

body {
    margin: 0;
    color: var(--white);
    font-family: var(--font);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    transition: background-color 0.4s ease, color 0.4s ease;
}

/* Theme backgrounds controlled by data-theme */
body[data-theme="dark"] {
    background-color: var(--black);
    color: var(--white);
}

body[data-theme="accent"] {
    background-color: var(--neon);
    color: var(--black);
}

.container {
    width: min(100% - 2 * var(--pad), var(--container));
    margin-inline: auto;
}

/* ======================================================
   Typography
   ====================================================== */
.h2 {
    margin: 0 0 0.75em;
    font-size: clamp(1.3rem, 1rem + 1.6vw, 2rem);
    font-weight: 900;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.h2--inline {
    display: inline-block;
    background: var(--neon);
    color: var(--black);
    padding: 0.4rem 0.7rem;
    border-radius: 0.4rem;
}

/* ======================================================
   Mobile Menu (with dynamic color based on theme)
   ====================================================== */
.menu-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    transition: transform 0.3s ease;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

.menu-toggle__bar {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, background-color 0.4s ease;
}

/* Menu bar color changes based on body theme */
body[data-theme="dark"] .menu-toggle__bar {
    background-color: var(--white);
}

body[data-theme="accent"] .menu-toggle__bar {
    background-color: var(--black);
}

/* When menu is open, bars are always black (on yellow overlay) */
.menu-toggle.is-active .menu-toggle__bar {
    background-color: var(--black) !important;
}

.menu-toggle.is-active .menu-toggle__bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.is-active .menu-toggle__bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active .menu-toggle__bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    background: var(--neon);
    transform-origin: top right;
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

.menu-overlay.is-open {
    transform: scaleX(1);
}

.menu-items {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease 0.4s;
}

.menu-overlay.is-open .menu-items {
    opacity: 1;
}

.menu-item {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    text-transform: uppercase;
    font-weight: 800;
    color: var(--black);
    text-decoration: none;
    transition: transform 0.2s ease;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: var(--font);
    display: block;
    width: 100%;
    text-align: center;
}

.menu-item:hover {
    transform: scale(1.05);
}

.menu-item-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-item--toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
}

.menu-item__arrow {
    display: inline-block;
    font-size: 2rem;
    transition: transform 0.3s ease;
    line-height: 1;
}

.menu-item--toggle[aria-expanded="true"] .menu-item__arrow {
    transform: rotate(90deg);
}

.menu-submenu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 0;
}

.menu-submenu.is-open {
    max-height: 300px;
    opacity: 1;
    margin-top: 16px;
}

.menu-submenu__item {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    text-transform: uppercase;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.85;
    text-align: center;
}

.menu-submenu__item:hover {
    transform: scale(1.05);
    opacity: 1;
}

.menu-legal {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 24px;
    text-align: center;
}

.menu-legal__link {
    color: var(--black);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.menu-legal__link:hover {
    opacity: 1;
    text-decoration: underline;
}

@media (min-width: 900px) {
    .menu-overlay {
        width: 350px;
    }

    .menu-legal {
        width: 350px;
        right: 0;
        left: auto;
    }

    .menu-legal__link {
        font-size: 1rem;
    }
}

/* ======================================================
   Hero Section
   ====================================================== */
.hero-stage {
    height: 200svh;
}

.hero {
    position: sticky;
    top: 0;
    min-height: 100svh;
    padding: var(--pad);
    display: grid;
    grid-template-rows: auto 1fr;
    background: url("../img/frontpage/frontpage.webp") center/cover no-repeat;
}

.hero__logo {
    position: absolute;
    top: 100px;
    left: 100px;
}

.hero__logo img {
    width: clamp(160px, 22vw, 300px);
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .hero__logo {
        top: 60px;
        left: 20px;
    }

    .hero__logo img {
        width: clamp(120px, 30vw, 180px);
    }
}

.hero__content {
    position: absolute;
    left: var(--pad);
    bottom: clamp(80px, 12vh, 140px);
    max-width: min(78%, 980px);
}

.hero__quote {
    margin: 0 0 0.9rem;
    font-size: clamp(1.05rem, 0.7rem + 1.8vw, 2rem);
    line-height: 1.25;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.65), 0 1px 2px rgba(0, 0, 0, 0.85);
    max-width: 38ch;
}

.hero .hero__content,
.hero .hero__logo,
.hero .btn--floating {
    will-change: transform, opacity, filter;
    transform-origin: center;
}

.hero.is-active .hero__content,
.hero.is-active .hero__logo,
.hero.is-active .btn--floating {
    transform: translateY(calc(-18px * var(--heroProgress))) scale(calc(1 - 0.18 * var(--heroProgress)));
    opacity: calc(1 - var(--heroProgress));
    filter: blur(calc(0.8px * var(--heroProgress)));
}

/* ======================================================
   Buttons
   ====================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    border-radius: 999px;
    padding: 1rem 1.6rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:active {
    transform: translateY(1px);
}

.btn--primary {
    background: var(--neon);
    color: var(--black);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.btn--floating {
    position: absolute;
    bottom: 100px;
    right: 100px;
    padding: 0.4rem 3rem;
    font-size: clamp(1rem, 0.9rem + 0.3vw, 1.15rem);
}

/* ======================================================
   Sections
   ====================================================== */
.section {
    padding-block: clamp(40px, 6vw, 64px);
}

/* Section themes inherit from body */
.section[data-theme="dark"] {
    background: var(--black);
    color: var(--white);
}

.section[data-theme="accent"] {
    background: var(--neon);
    color: var(--black);
}

/* ======================================================
   About Section
   ====================================================== */
#about.section {
    min-height: 100svh;
    display: grid;
    padding-block: clamp(24px, 8vh, 64px);
}

#about.section > .container {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(16px, 3vw, 32px);
}

.reveal,
.reveal-right,
.reveal-up {
    transition: none;
    will-change: transform, opacity;
    opacity: var(--revealProgress);
    transform: translateX(calc((1 - var(--revealProgress)) * -28px));
}

.reveal-right {
    transform: translateX(calc((1 - var(--revealProgress)) * 28px));
}

.reveal-up {
    transform: translateY(calc((1 - var(--revealProgress)) * 28px));
}

.split {
    display: grid;
    gap: clamp(16px, 3vw, 32px);
    grid-template-columns: 1fr 1fr;
}

.split__item {
    min-width: 0;
}

.media {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* ======================================================
   Offers Section
   ====================================================== */
#offers {
    min-height: 100svh;
    display: grid;
    align-content: center;
    padding-block: clamp(24px, 8vh, 64px);
    --container: 1600px;
}

#offers > .container {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: clamp(16px, 2vw, 28px);
}

#offers .cards {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    align-items: stretch;
}

.cards {
    display: grid;
    gap: clamp(16px, 3vw, 24px);
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-top: clamp(16px, 3vw, 28px);
}

.card {
    background: #111;
    border-radius: 10px;
    padding: clamp(12px, 2.2vw, 16px);
    display: flex;
    flex-direction: column;
    will-change: transform, opacity;
    transform: scale(calc(0.85 + 0.15 * var(--cardProgress)));
    opacity: var(--cardProgress);
    transition: none;
}

.card__img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 8px;
}

.card__img--focus-left {
    object-position: 35% 50%;
}

.card__title {
    margin: 0.8rem 0 0.25rem;
    font-size: clamp(1rem, 0.9rem + 0.4vw, 1.2rem);
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--white);
}

.card__text {
    margin: 0;
    color: var(--gray);
    font-size: 0.95rem;
}

/* ======================================================
   Discover Section
   ====================================================== */
.discover-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--black);
    color: var(--neon);
    padding: 0;
    margin: 0;
    min-height: 80vh;
    overflow: hidden;
    width: 100%;
    position: relative;
    /* Smooth background color transition via CSS variable */
    background: linear-gradient(
            to bottom,
            rgb(237, 250, 92) calc(var(--discoverColorProgress, 0) * -100%),
            var(--black) calc(var(--discoverColorProgress, 0) * 100%)
    );
}

.discover__container {
    display: flex;
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow: hidden;
}

.discover__text {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-left: 5%;
    padding-right: 2%;
    padding-top: 4rem;
}

.discover__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--neon);
    word-wrap: break-word;
    hyphens: auto;
    /* Animation: slide from right */
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.discover__title.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.discover__image {
    flex: 1;
    overflow: hidden;
    margin: 0;
}

.discover__image img {
    width: 100%;
    height: auto;
    max-height: 100vh;
    object-fit: contain;
    object-position: right center;
    /* Animation: slide from left */
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.discover__image img.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* ======================================================
   Gallery Section
   ====================================================== */
.gallery-toc {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: clamp(20px, 3vw, 32px);
}

.gallery-toc__link {
    display: inline-block;
    padding: 8px 24px;
    border: 2px solid var(--black);
    background: var(--black);
    border-radius: 999px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    /* Scroll-driven scale - starts at 0.3, scales to 1.0 */
    transform: scale(calc(0.3 + 0.7 * var(--galleryTocProgress, 0)));
    transform-origin: center;
    will-change: transform;
}

.gallery-toc__link:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.gallery__heading {
    color: var(--black);
    font-size: clamp(1.3rem, 1rem + 1.6vw, 2rem);
    font-weight: 900;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin: 0 0 0.75em;
    /* Animation: rise from below */
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery__heading.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery--complex-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: clamp(180px, 22vw, 280px);
    grid-auto-flow: dense;
    gap: clamp(8px, 1.2vw, 16px);
    margin-bottom: clamp(40px, 6vw, 64px);
}

.gallery--complex-grid .gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #111;
    margin: 0;
    grid-column: span 1;
    grid-row: span 1;
    /* Animation: rise from below */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery--complex-grid .gallery__item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery--complex-grid .gallery__item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
    cursor: pointer;
}

.gallery--complex-grid .gallery__item:hover img {
    transform: scale(1.03);
}

.gallery--complex-grid .item-h-span-2 {
    grid-column: span 2;
}

.gallery--complex-grid .item-h-span-3 {
    grid-column: span 3;
}

.gallery--complex-grid .item-h-span-4 {
    grid-column: span 4;
}

.gallery--complex-grid .item-v-span-2 {
    grid-row: span 2;
}

.gallery--complex-grid .item-v-span-3 {
    grid-row: span 3;
}

/* Lightbox */
.lightbox {
    border: none;
    background: transparent;
    max-width: 100vw;
    max-height: 100vh;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.lightbox[open] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox::backdrop {
    background: rgba(0, 0, 0, 0.95);
}

.lightbox__close {
    position: fixed;
    top: 24px;
    right: 24px;
    background: var(--neon);
    border: none;
    color: var(--black);
    font-size: 2rem;
    font-weight: 700;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(237, 250, 92, 0.3);
}

.lightbox__close:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(237, 250, 92, 0.5);
}

.lightbox__nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: var(--neon);
    border: none;
    color: var(--black);
    font-size: 2rem;
    font-weight: 700;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(237, 250, 92, 0.3);
}

.lightbox__nav:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(237, 250, 92, 0.5);
}

.lightbox__nav--prev {
    left: 24px;
}

.lightbox__nav--next {
    right: 24px;
}

.lightbox__img {
    max-width: 90vw;
    max-height: 90vh;
    display: block;
    object-fit: contain;
}

@media (max-width: 768px) {
    .lightbox__close {
        top: 16px;
        right: 16px;
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
    }

    .lightbox__nav {
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
    }

    .lightbox__nav--prev {
        left: 16px;
    }

    .lightbox__nav--next {
        right: 16px;
    }

    .lightbox__img {
        max-width: 95vw;
        max-height: 85vh;
    }
}

/* ======================================================
   CTA Section
   ====================================================== */
.cta-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    padding: 0;
    min-height: 80vh;
    width: 100%;
    overflow: hidden;
}

.cta__media {
    overflow: hidden;
    /* Animation: slide from left */
    opacity: calc(var(--ctaProgress, 0));
    transform: translateX(calc(-80px * (1 - var(--ctaProgress, 0))));
    will-change: transform, opacity;
}

.cta__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta__panel {
    background: var(--neon);
    color: var(--black);
    display: grid;
    grid-template-rows: 1fr auto;
    padding: clamp(24px, 6vw, 56px);
    width: 100%;
    /* Animation: slide from right */
    opacity: calc(var(--ctaProgress, 0));
    transform: translateX(calc(80px * (1 - var(--ctaProgress, 0))));
    will-change: transform, opacity;
}

.cta__title {
    margin: 0 0 0.6rem;
    font-size: clamp(1.6rem, 1rem + 3vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.cta__text {
    margin: 0 0 1.2rem;
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1.25;
}

.cta__email-link {
    display: inline-block;
    color: var(--black);
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 800;
    text-decoration: none;
    border-bottom: 3px solid var(--black);
    margin-bottom: 1.5rem;
    transition: opacity 0.2s ease;
    word-break: break-word;
}

.cta__email-link:hover {
    opacity: 0.7;
}

.cta__actions {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.cta__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: var(--black);
    color: var(--neon);
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.2s ease;
}

.cta__social:hover {
    transform: translateY(-1px);
    background: #111;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.45);
}

/* ======================================================
   Footer
   ====================================================== */
.footer {
    padding: clamp(24px, 4vw, 32px) 0;
    background: var(--black);
    color: var(--white);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.footer__links {
    display: flex;
    gap: 24px;
}

.footer__link {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer__link:hover {
    color: var(--gray);
    text-decoration: underline;
}

.footer__copy p {
    margin: 0;
    opacity: 0.7;
}

/* ======================================================
   Responsive Design
   ====================================================== */
@media (min-width: 1200px) {
    #offers .cards {
        grid-template-columns: repeat(3, minmax(420px, 1fr));
        gap: clamp(16px, 1.5vw, 28px);
    }

    #offers .card {
        padding: clamp(10px, 0.9vw, 16px);
    }
}

@media (min-width: 900px) and (max-width: 1199px) {
    #offers {
        --container: 1400px;
    }

    #offers .cards {
        grid-template-columns: repeat(3, minmax(360px, 1fr));
    }
}

@media (max-width: 1200px) {
    .hero {
        display: grid;
        grid-template-rows: auto 1fr;
        padding: clamp(16px, 2vw, 24px);
        padding-bottom: 120px;
    }

    .hero__logo {
        position: static;
        justify-self: start;
        margin-top: 8px;
    }

    .hero__content {
        position: static;
        align-self: end;
        max-width: 40ch;
    }

    .btn--floating {
        position: absolute;
        bottom: 28px;
        right: 28px;
        width: auto;
        max-width: 60vw;
    }
}

@media (max-width: 1000px) {
    .gallery--complex-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: clamp(180px, 25vw, 300px);
    }

    .gallery--complex-grid .item-h-span-4 {
        grid-column: span 3;
    }
}

@media (max-width: 900px) {
    .split {
        grid-template-columns: 1fr;
    }

    #about.section > .container {
        grid-template-columns: 1fr;
        align-content: center;
        row-gap: clamp(12px, 3vh, 24px);
    }

    #about .media {
        max-height: 45svh;
        object-fit: cover;
    }

    #offers {
        padding-block: clamp(20px, 6vh, 48px);
    }

    #offers .cards {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .hero__content {
        position: absolute;
        left: 20px;
        right: 20px;
        bottom: calc(env(safe-area-inset-bottom) + 96px);
        max-width: 34ch;
    }

    .hero__quote {
        font-size: clamp(1rem, 0.7rem + 1.4vw, 1.35rem);
        line-height: 1.25;
        text-shadow: 0 2px 18px rgba(0, 0, 0, 0.6), 0 1px 2px rgba(0, 0, 0, 0.85);
    }

    .btn--floating {
        position: absolute;
        bottom: 28px;
        right: 28px;
        width: auto;
        max-width: 60vw;
        padding: 0.9rem 1.4rem;
        font-size: 1rem;
        border-radius: 999px;
    }

    .hero__logo img {
        width: clamp(140px, 22vw, 220px);
    }

    .hero {
        background-position: 70% center;
    }

    .cta-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .cta__panel {
        grid-template-rows: auto auto;
    }

    .cta__actions {
        justify-content: flex-start;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .gallery--complex-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: clamp(180px, 30vw, 320px);
    }

    .gallery--complex-grid .item-h-span-3,
    .gallery--complex-grid .item-h-span-4 {
        grid-column: span 2;
    }

    .discover-section {
        min-height: auto;
        overflow: hidden;
    }

    .discover__container {
        flex-direction: column;
        width: 100%;
    }

    .discover__text {
        align-items: flex-start;
        justify-content: flex-start;
        padding: 12vw 6vw 6vw;
    }

    .discover__title {
        font-size: clamp(2rem, 9vw, 3rem);
        line-height: 1.05;
        margin: 0;
    }

    .discover__image {
        flex: unset;
        width: 100%;
    }

    .discover__image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: center;
        max-height: 60vh;
        display: block;
    }

    .footer__content {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (max-width: 600px) {
    .hero__content {
        left: 16px;
        right: 16px;
        bottom: calc(env(safe-area-inset-bottom) + 110px);
        max-width: 32ch;
        position: absolute;
    }

    .hero__quote {
        font-size: clamp(0.95rem, 0.85rem + 1.1vw, 1.15rem);
        line-height: 1.25;
    }

    .btn--floating {
        bottom: max(16px, env(safe-area-inset-bottom) + 12px);
        right: max(16px, env(safe-area-inset-right) + 12px);
        width: auto;
        max-width: 70vw;
        padding: 0.85rem 1.3rem;
    }

    .hero__logo img {
        width: clamp(120px, 36vw, 180px);
    }

    .hero {
        background-position: 65% 45%;
    }

    #offers .cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .gallery--complex-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 12px;
    }

    .gallery--complex-grid .item-h-span-2,
    .gallery--complex-grid .item-h-span-3,
    .gallery--complex-grid .item-h-span-4,
    .gallery--complex-grid .item-v-span-2,
    .gallery--complex-grid .item-v-span-3 {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 4 / 5;
    }

    .gallery--complex-grid .gallery__item img {
        aspect-ratio: unset;
    }
}

/* ======================================================
   Accessibility
   ====================================================== */
@media (prefers-reduced-motion: reduce) {
    body,
    .menu-toggle__bar {
        transition: none;
    }

    .hero.is-active .hero__content,
    .hero.is-active .hero__logo,
    .hero.is-active .btn--floating,
    .reveal,
    .reveal-right,
    .reveal-up,
    .cards .card {
        transition: none;
        filter: none;
        transform: none;
        opacity: 1;
    }
}

/* ======================================================
   Cookie Consent Banner
   ====================================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--black);
    color: var(--white);
    padding: clamp(16px, 3vw, 24px);
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.cookie-banner__content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: clamp(16px, 3vw, 24px);
    align-items: center;
}

.cookie-banner__text {
    margin: 0;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    line-height: 1.5;
}

.cookie-banner__text a {
    color: var(--neon);
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.cookie-banner__text a:hover {
    opacity: 0.8;
}

.cookie-banner__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-banner__btn {
    padding: 10px 24px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

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

.cookie-banner__btn--accept {
    background: var(--neon);
    color: var(--black);
}

.cookie-banner__btn--accept:hover {
    background: #f0f54e;
}

.cookie-banner__btn--decline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cookie-banner__btn--decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .cookie-banner__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cookie-banner__actions {
        justify-content: center;
        width: 100%;
    }

    .cookie-banner__btn {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .cookie-banner__actions {
        flex-direction: column;
        gap: 8px;
    }

    .cookie-banner__btn {
        width: 100%;
    }
}