﻿
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ink: #0d0a0b;
    --ink-2: #1a1518;
    --ink-3: #2e2830;
    --gold: #c9a97a;
    --gold-2: #e8cfa8;
    --rose: #9c5264;
    --rose-2: #c97a8e;
    --cream: #f5ede6;
    --mist: rgba(201,169,122,.08);
    --f-serif: 'Playfair Display', Georgia, serif;
    --f-sans: 'Jost', sans-serif;
    --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--f-sans);
    background: var(--ink);
    color: var(--cream);
    overflow-x: hidden !important;
    cursor: none;
}

/* ============================================================
           CUSTOM CURSOR
        ============================================================ */
#cursor {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.15s var(--ease-expo), opacity 0.3s;
    mix-blend-mode: difference;
}

#cursor-ring {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201,169,122,0.5);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.5s var(--ease-expo), width 0.3s, height 0.3s, border-color 0.3s;
}

body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring {
    width: 54px;
    height: 54px;
    border-color: var(--rose-2);
}

/* ============================================================
           NOISE OVERLAY
        ============================================================ */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.4;
}

/* ============================================================
           HEADER / HERO
        ============================================================ */
.hero {
    min-height: 100svh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    position: relative;
    overflow: hidden;
}

    /* Ambient glow */
    .hero::after {
        content: '';
        position: absolute;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(156,82,100,.22) 0%, transparent 65%);
        top: -200px;
        right: -200px;
        pointer-events: none;
        animation: breathe 12s ease-in-out infinite;
    }

@keyframes breathe {
    0%,100% {
        transform: scale(1) translate(0,0);
        opacity: .7;
    }

    50% {
        transform: scale(1.15) translate(-40px, 40px);
        opacity: 1;
    }
}

/* Top bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: relative;
    z-index: 2;
}

.logo-mark {
    font-family: var(--f-serif);
    font-size: 1.05rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
}

    .logo-mark span {
        color: var(--cream);
        opacity: .5;
    }

.hero-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

    .hero-nav a {
        font-size: 0.7rem;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: rgba(245,237,230,.55);
        text-decoration: none;
        transition: color 0.3s;
        font-weight: 400;
    }

        .hero-nav a:hover {
            color: var(--gold);
        }

        .hero-nav a.active {
            color: var(--gold-2);
        }

/* Centre stage */
.hero-stage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0 5%;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.hero-text {
}

.eyebrow {
    font-size: 0.65rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .eyebrow::before {
        content: '';
        display: block;
        width: 40px;
        height: 1px;
        background: var(--gold);
    }

.hero-h1 {
    font-family: var(--f-serif);
    font-size: clamp(3.5rem, 6vw, 7rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--cream);
    margin-bottom: 2.5rem;
}

    .hero-h1 em {
        font-style: italic;
        color: var(--rose-2);
    }

.hero-sub {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: rgba(245,237,230,.45);
    text-transform: uppercase;
    line-height: 2;
    max-width: 380px;
}

.hero-ctas {
    margin-top: 3.5rem;
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.btn {
    font-family: var(--f-sans);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 2.2rem;
    border-radius: 100px;
    cursor: none;
    transition: all 0.4s var(--ease-expo);
    display: inline-block;
}

.btn-outline {
    border: 1px solid rgba(201,169,122,.4);
    color: var(--gold-2);
    background: transparent;
}

    .btn-outline:hover {
        background: var(--gold);
        border-color: var(--gold);
        color: var(--ink);
        transform: translateY(-2px);
    }

.btn-ghost {
    border: 1px solid rgba(245,237,230,.15);
    color: rgba(245,237,230,.6);
    background: transparent;
}

    .btn-ghost:hover {
        border-color: rgba(245,237,230,.4);
        color: var(--cream);
    }

/* Hero image collage */
.hero-visual {
    height: 520px;
    display:flex;
    padding-bottom:40px;
    justify-content:center;
    align-items:center;
}

.hero-img-main {
    width: 100%;
    height: 90%;
    object-fit: cover;
    filter: brightness(0.75) contrast(1.02) saturate(0.65) opacity(0.85);
    animation: img-reveal 1.4s var(--ease-expo) 0.3s both;
}

.hero-img-accent {
    position: absolute;
    left: 0;
    bottom: -30px;
    width: 44%;
    height: 58%;
    object-fit: cover;
    border-radius: 4px 80px 4px 4px;
    filter: brightness(.78) contrast(1.08) saturate(0.9);
    animation: img-reveal 1.4s var(--ease-expo) 0.6s both;
    border: 4px solid var(--ink);
}

@keyframes img-reveal {
    from {
        opacity: 0;
        transform: translateY(30px) scale(.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-badge {
    position: absolute;
    bottom: 30px;
    right: 5%;
    background: var(--mist);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201,169,122,.2);
    border-radius: 100px;
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: img-reveal 1.4s var(--ease-expo) 0.9s both;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--rose-2);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%,100% {
        box-shadow: 0 0 0 0 rgba(201,122,142,.6);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(201,122,142,0);
    }
}

.hero-badge span {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: rgba(245,237,230,.7);
    text-transform: uppercase;
}

/* Hero bottom strip */
.hero-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding: 2.5rem 5%;
    border-top: 1px solid rgba(201,169,122,.1);
    position: relative;
    z-index: 2;
}

.strip-stat {
    text-align: center;
}

.strip-stat-num {
    font-family: var(--f-serif);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--gold);
    display: block;
}

.strip-stat-label {
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(245,237,230,.4);
    margin-top: 0.2rem;
    display: block;
}

.strip-divider {
    width: 1px;
    height: 40px;
    background: rgba(201,169,122,.15);
}

/* ============================================================
           NAV BAR (sticky)
        ============================================================ */
.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(13,10,11,.92);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(201,169,122,.12);
    display: flex;
    justify-content: center;
}

.sticky-nav-inner {
    display: flex;
    gap: 0;
}

.nav-btn {
    background: none;
    border: none;
    font-family: var(--f-sans);
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(245,237,230,.5);
    padding: 1.2rem 2.8rem;
    cursor: none;
    transition: color 0.3s;
    position: relative;
}

    .nav-btn a {
        color: inherit;
        text-decoration: none;
    }

    .nav-btn::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: var(--gold);
        transition: width 0.3s var(--ease-expo);
    }

    .nav-btn:hover {
        color: var(--cream);
    }

        .nav-btn:hover::after, .nav-btn.current::after {
            width: 60%;
        }

    .nav-btn.current {
        color: var(--gold);
    }

/* ============================================================
           SECTION WRAPPER & HEADINGS
        ============================================================ */
.section {
    padding: 8rem 5%;
}

.section-label {
    font-size: 0.6rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .section-label::before {
        content: '';
        display: block;
        width: 30px;
        height: 1px;
        background: var(--gold);
    }

.section-title {
    font-family: var(--f-serif);
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

    .section-title em {
        font-style: italic;
        color: var(--rose-2);
    }

/* ============================================================
           GALLERY STRIP
        ============================================================ */
.gallery-section {
    padding: 8rem 0 8rem 5%;
    overflow: hidden;
}

.gallery-header {
    padding-right: 5%;
    margin-bottom: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}



.gallery-strip {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 2rem;
    padding-right: 5%;
    -webkit-overflow-scrolling: touch;
}

    .gallery-strip::-webkit-scrollbar {
        display: none;
    }

.gallery-item {
    flex-shrink: 0;
    scroll-snap-align: start;
    position: relative;
    cursor: none;
    border-radius: 3px;
    overflow: hidden;
}

    .gallery-item:nth-child(odd) {
        width: 340px;
        height: 480px;
    }

    .gallery-item:nth-child(even) {
        width: 280px;
        height: 380px;
        align-self: flex-end;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.8s var(--ease-expo), filter 0.5s;
        filter: brightness(.85) saturate(.9);
    }

    .gallery-item:hover img {
        transform: scale(1.06);
        filter: brightness(.95) saturate(1.05);
    }

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, transparent 50%, rgba(13,10,11,.85));
    opacity: 0;
    transition: opacity 0.5s;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-label {
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-2);
}

.gallery-item-expand {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201,169,122,.5);
    border-radius: 50%;
    background: rgba(13,10,11,.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(.7);
    transition: opacity 0.4s, transform 0.4s var(--ease-expo);
    cursor: none;
    color: var(--gold);
    font-size: 0.75rem;
}

.gallery-item:hover .gallery-item-expand {
    opacity: 1;
    transform: scale(1);
}

/* Scroll controls */
.gallery-controls {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    padding-right: 5%;
    justify-content: flex-end;
}

.scroll-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(201,169,122,.3);
    background: transparent;
    color: var(--gold);
    font-size: 1.1rem;
    cursor: none;
    transition: all 0.3s var(--ease-expo);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .scroll-btn:hover {
        background: var(--gold);
        color: var(--ink);
        border-color: var(--gold);
        transform: scale(1.08);
    }

/* ============================================================
           BEFORE / AFTER
        ============================================================ */
.ba-section {
    background: var(--ink-2);
}

.ba-grid {
    display: grid;
    gap: 6rem;
    max-width: 1100px;
    margin: 0 auto;
}

.ba-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

    .ba-row::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 2px;
        background: var(--gold);
        z-index: 5;
        transform: translateX(-50%);
    }

.ba-divider-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--ink-2);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.55rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0.5rem 0.8rem;
    border-radius: 100px;
    z-index: 10;
    white-space: nowrap;
}

.ba-panel {
    position: relative;
    overflow: hidden;
}

    .ba-panel img {
        width: 100%;
        height: 420px;
        object-fit: cover;
        display: block;
        filter: brightness(.82);
        transition: filter 0.5s;
    }

    .ba-panel:hover img {
        filter: brightness(.92);
    }

.ba-panel-cap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(13,10,11,.85), transparent);
}

.ba-panel-cap-label {
    font-size: 0.55rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.3rem;
    display: block;
}

.ba-panel-cap-title {
    font-family: var(--f-serif);
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--cream);
}

/* ============================================================
           MARQUEE
        ============================================================ */
.marquee-section {
    padding: 4rem 0;
    border-top: 1px solid rgba(201,169,122,.1);
    border-bottom: 1px solid rgba(201,169,122,.1);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 4rem;
    white-space: nowrap;
    animation: marquee 28s linear infinite;
    width: max-content;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-item {
    font-family: var(--f-serif);
    font-size: 1.1rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(201,169,122,.35);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

    .marquee-item::after {
        content: '✦';
        color: var(--rose-2);
        font-style: normal;
        font-size: 0.6rem;
    }

/* ============================================================
           PROMO
        ============================================================ */
.promo-section {
    background: linear-gradient(135deg, #110c0d 0%, #1a0e11 50%, #110c0d 100%);
    position: relative;
    overflow: hidden;
}

    .promo-section::before {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(156,82,100,.15) 0%, transparent 65%);
        top: -200px;
        left: -200px;
        pointer-events: none;
    }

.promo-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

    .promo-inner .section-label {
        justify-content: center;
    }

        .promo-inner .section-label::before {
            display: none;
        }

.promo-quote {
    font-family: var(--f-serif);
    font-size: clamp(1.8rem, 3.5vw, 3.2rem);
    font-weight: 300;
    font-style: italic;
    color: var(--cream);
    line-height: 1.3;
    margin: 2rem 0 3rem;
}

    .promo-quote span {
        color: var(--rose-2);
    }

.promo-sig {
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

    .promo-sig::before, .promo-sig::after {
        content: '';
        display: block;
        width: 60px;
        height: 1px;
        background: var(--gold);
        opacity: .4;
    }

/* ============================================================
           FOOTER
        ============================================================ */
footer {
    background: var(--ink);
    border-top: 1px solid rgba(201,169,122,.1);
    padding: 5rem 5% 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.footer-brand {
}

.footer-logo {
    font-family: var(--f-serif);
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

.footer-desc {
    font-size: 0.75rem;
    color: rgba(245,237,230,.4);
    line-height: 2;
    letter-spacing: 0.5px;
    max-width: 300px;
}

.footer-copy {
    margin-top: 2rem;
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: rgba(245,237,230,.2);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
    justify-content: space-between;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-end;
}

.footer-link {
    font-size: 0.65rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(245,237,230,.4);
    text-decoration: none;
    transition: color 0.3s;
}

    .footer-link:hover {
        color: var(--gold);
    }

.footer-dev {
    font-size: 0.55rem;
    letter-spacing: 2px;
    color: rgba(245,237,230,.2);
}

/* ============================================================
           LIGHTBOX
        ============================================================ */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(7,5,6,.97);
    z-index: 99997;
    backdrop-filter: blur(30px);
    justify-content: center;
    align-items: center;
}

    #lightbox.open {
        display: flex;
        animation: lb-in 0.4s var(--ease-expo);
    }

@keyframes lb-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

#lightboxImg {
    max-width: min(90vw, 900px);
    max-height: 85svh;
    object-fit: contain;
    border-radius: 4px;
    animation: lb-zoom 0.5s var(--ease-expo);
}

@keyframes lb-zoom {
    from {
        transform: scale(.88);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

#closeBtn {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: rgba(245,237,230,.4);
    cursor: none;
    transition: color 0.3s, transform 0.3s;
    z-index: 99999;
    line-height: 1;
    padding: 0.5rem;
}

    #closeBtn:hover {
        color: var(--gold);
        transform: rotate(90deg);
    }

#lightbox::after {
    content: 'Kliknite bilo gde da zatvorite';
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(245,237,230,.3);
}

/* ============================================================
           ENTER ANIMATIONS
        ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s var(--ease-expo), transform 0.9s var(--ease-expo);
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-delay-1 {
    transition-delay: 0.15s;
}

.reveal-delay-2 {
    transition-delay: 0.3s;
}

.reveal-delay-3 {
    transition-delay: 0.45s;
}

/* ============================================================
           RESPONSIVE
        ============================================================ */
@media (max-width: 900px) {
    .hero-stage {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-top: 2rem;
        text-align: center
    }

    .hero-ctas {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-visual {
        height: 360px;
    }

    .btn-outline {
        font-size: 0.7rem !important;
    }

    .btn-ghost {
        font-size: 0.7rem !important;
    }

    .hero-strip {
        gap: 2rem;
    }

    .hero-nav {
        display: none;
    }

    .hero-h1 {
        text-align: center;
        font-size: 60px !important;
    }

    .sticky-nav {
        max-width: 430px !important;
        padding: 0px !important;
        margin: 0px !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .sticky-nav-inner {
        margin: 0px !important;
        padding-right: 0px;
        max-width: 430px;
        min-width: 380px;
    }

    .nav-btn {
        min-width: 95px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        font-size: 0.7rem;
    }
    .gallery-section {
        padding-top:30px !important;
        padding-left:0px !important;
        margin-left:0px !important;
    }
    .gallery-header {
        display:flex;
        justify-content:center;
        align-items:center;
    }
    .gallery-counter {
        display:none;
    }

    .gallery-item:nth-child(odd) {
        width: 280px;
        height: 380px;
    }

    .gallery-item:nth-child(even) {
        width: 230px;
        height: 310px;
    }

    .gallery-controls {
        padding-right:0px !important;
        display:flex;
        justify-content:center;
        align-items:center;
    }

    .ba-row {
        grid-template-columns: 1fr;
    }

        .ba-row::before {
            display: none;
        }

    .ba-divider-label {
        display: none;
    }

    .ba-panel img {
        height: 280px;
    }

    footer {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        align-items: flex-start;
    }

    .footer-contact {
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .top-bar {
        padding: 1.5rem;
    }

    .hero-nav {
        gap: 1.2rem;
    }

    .hero-h1 {
        font-size: 3rem;
    }

    .hero-stage {
        padding: 0 1.5rem;
    }

    .hero-visual {
        height: 280px;
    }

    .gallery-section {
        padding-left: 1.5rem;
    }

    .gallery-header {
        padding-right: 1.5rem;
    }

    .gallery-strip {
        padding-right: 1.5rem;
    }

    .gallery-controls {
        padding-right: 1.5rem;
    }

    .section {
        padding: 5rem 1.5rem;
    }

    .hero-strip {
        flex-wrap: wrap;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .ba-panel img {
        height: 220px;
    }

    footer {
        padding: 4rem 1.5rem 2rem;
    }

    body {
        cursor: auto;
    }

    #cursor, #cursor-ring {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}