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

:root {
    --gold: #FFE297;
    --overlay: #0a140d8e;
    --white: #ffffff;
    --sb-bg: rgba(0, 0, 0, .92);
    --deep-green: #263C38;
    --deeper-green: #17251F;
    --gold-bright: #FFE297B2;
    --cream: #F4EFE3;
    --cream-dim: rgba(244, 239, 227, 0.68);
    --line: rgba(244, 239, 227, 0.22);
    --ease-luxury: cubic-bezier(.22, .61, .36, 1);

    --font-body: "DM Sans", sans-serif;
    --font-main: "Playfair Display", serif;
}

html,
body {
    overflow-x: hidden;
    font-family: var(--font-body);
    font-size: 14px;
    overflow-x: hidden;
}

p {
    color: #777777;
    font-family: var(--font-body);
    font-size: 14px;
}

.section-padding {
    padding: 60px 0;
}

#main {
    width: 100%;
    background: url("../image/bg1.png") center/contain repeat;
    overflow: visible;
    min-height: 100vh;
}

/* ── NAVBAR (floats above swiper) ────────────────────────── */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    transition: top 0.4s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-nav.scrolled {
    top: -20%;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    margin: 0 42px;
    animation: zoomIn .9s ease .25s both;
    position: relative;
}

.logo-badge {
    width: auto;
    height: 112px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin-top: 15px;
}

.logo-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* Hamburger */
.hamburger {
    display: flex;
    background: rgba(0, 0, 0, .55);
    border: none;
    border-radius: 4px;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background .3s;
    margin-bottom: 20px;
}

.hamburger:hover {
    background: rgba(200, 161, 91, .15);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--white);
    border-radius: 2px;
    transition: transform .35s, opacity .35s;
}

/* ── SIDEBAR ─────────────────────────────────────────────── */
.sidebar-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 990;
    opacity: 0;
    transition: opacity .35s;
}

.sidebar-backdrop.visible {
    opacity: 1;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--sb-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-left: 1px solid rgba(200, 161, 91, .3);
    z-index: 995;
    display: flex;
    flex-direction: column;
    padding: 30px 36px 40px;
    transition: right .4s cubic-bezier(.4, 0, .2, 1);
}

.sidebar.open {
    right: 0;
}

.sidebar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-logo img {
    height: 95px;
    width: 100%;
    object-fit: contain;
    object-position: center;
}

.sidebar-close {
    background: none;
    border: 1px solid rgba(200, 161, 91, .35);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--gold);
    font-size: .85rem;
    transition: background .3s;
}

.sidebar-close:hover {
    background: rgba(200, 161, 91, .15);
}

.sidebar-nav {
    list-style: none;
    flex: 1;
    padding: 0;
}

.sidebar-nav li {
    border-bottom: 1px solid rgba(200, 161, 91, .12);
}

.sidebar-nav a {
    display: block;
    padding: 16px 0 16px 4px;
    font-family: "DM Sans", sans-serif;
    ;
    font-size: .78rem;
    font-weight: 400;
    letter-spacing: .22em;
    color: rgba(255, 255, 255, .75);
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    transition: color .3s, padding-left .3s;
}

.sidebar-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 65%;
    background: var(--gold);
    border-radius: 1px;
    transition: width .3s;
}

.sidebar-nav a:hover {
    color: var(--gold);
    padding-left: 14px;
}

.sidebar-nav a:hover::before {
    width: 2px;
}

.sidebar-footer {
    font-family: "DM Sans", sans-serif;
    ;
    font-size: .75rem;
    color: rgba(200, 161, 91, .45);
    letter-spacing: .1em;
    text-align: center;
}

/* ── KEYFRAMES ───────────────────────────────────────────── */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(.7);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1199px) {
    .nav-links {
        gap: 24px;
    }

    .nav-logo {
        margin: 0 26px;
    }
}

@media (max-width: 767px) {
    .site-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .site-nav .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-inner {
        justify-content: flex-start;
        margin: 0;
    }

    .nav-inner .nav-logo {
        margin: 0;
    }

    .sidebar-backdrop {
        display: block;
    }
}

/* ==========================================================================
   HERO — pinned scroll section
   ========================================================================== */
.hero {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(23, 37, 31, 0.55) 0%, rgba(23, 37, 31, 0.35) 40%, rgba(23, 37, 31, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 0 1.5rem;
    transform: translateY(-6vh);
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin: 0 0 1.2rem;
}

.hero-heading {
    font-weight: 500;
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: 1.08;
    color: var(--cream);
    margin: 0 0 2.2rem;
}

.hero-heading em {
    font-style: normal;
    color: var(--gold-bright);
}

.btn-gold {
    display: inline-block;
    padding: 0.95rem 2.6rem;
    border: 1px solid var(--gold);
    border-radius: 2px;
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--deeper-green);
    background: linear-gradient(180deg, var(--gold-bright), var(--gold));
    transition: transform 0.35s var(--ease-luxury), box-shadow 0.35s var(--ease-luxury);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.35);
}

.btn-outline-gold {
    display: inline-block;
    margin-top: 2.2rem;
    padding: 0.9rem 2.4rem;
    border: 1px solid var(--gold);
    border-radius: 2px;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-bright);
    transition: background 0.35s var(--ease-luxury), color 0.35s var(--ease-luxury);
}

.btn-outline-gold:hover {
    background: var(--gold-bright);
    color: var(--deeper-green);
}

.circle-stage {
    position: absolute;
    bottom: -8vw;
    left: 50%;
    transform: translateX(-50%);
    width: 46vw;
    height: 23vw;
    z-index: 1;
    pointer-events: none;
}

.half-circle {
    position: absolute;
    inset: 0;
    border: 6px solid rgba(244, 239, 227, .85);
    border-bottom: none;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    transform-origin: center bottom;
}

.half-circlebg {
    position: absolute;
    inset: 40px;
    background: url("../image/bg.png") center/cover no-repeat;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    transform-origin: center bottom;
}

.bottle-wrap {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 102%;
    height: 100%;
    transform: translateX(-50%);
    transform-origin: center bottom;
}

.bottle {
    position: absolute;
    width: 55%;
    height: auto;
    object-fit: contain;
    will-change: transform;
}

.bottle-back {
    bottom: -40%;
    left: 12%;
    transform: rotate(0deg) translate(10%, -6%);
    z-index: 0;
}

.bottle-front {
    left: 42%;
    transform: rotate(3deg) translate(-9%, 25%);
    z-index: -1;
}

.bottle-glow {
    position: absolute;
    left: 50%;
    bottom: 20%;
    width: 70%;
    height: 70%;
    transform: translateX(-50%);
    background: radial-gradient(circle,
            rgba(255, 226, 151, .45) 0%,
            rgba(255, 226, 151, 0) 70%);
    filter: blur(35px);
    opacity: 0;
    z-index: -1;
}

.reveal {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: url("../image/bg.png") center/cover no-repeat;
    z-index: 55;
}

.reveal-inner {
    position: relative;
    z-index: 2;
    align-items: center;
}

.reveal-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.reveal-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D4AF7A;
    margin-top: 0.6em;
    flex-shrink: 0;
}

.reveal-heading {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    color: #F5F1E8;
    margin: 0 0 0.25rem;
    overflow: hidden;
}

.reveal-heading .gold {
    font-style: normal;
    color: #D4AF7A;
}

.reveal-sub {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    color: rgba(245, 241, 232, 0.75);
    margin: 0;
}

.reveal-visual {
    position: relative;
    min-height: 60vh;
}

.reveal-visual .bottle-wrap {
    position: unset;
    transform: none;
    display: flex;
    justify-content: center;
    align-items: center;

}

.reveal-visual .bottle {
    width: 100%;
    position: unset;
    height: 100%;
}

.reveal-visual .bottle-back {
    transform: rotate(1deg) translate(10%, -6%);
}

.reveal-visual .bottle-front {
    transform: rotate(3deg) translate(-58%, 23%);
}

@media (max-width: 991px) {

    .reveal-visual {
        min-height: 40vh;
    }
}

.curve {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    z-index: 55;
}

.curve-stage {
    position: absolute;
    top: -8vw;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 25vw;
    z-index: 1;
    pointer-events: none;
}

.half-curve {
    position: absolute;
    inset: 0;
    border: 6px solid #C09342;
    background: #0E2724;
    border-top: none;
    border-radius: 0 0 50% 50%/0 0 100% 100%;
    transform-origin: center top;
}

.curve .bottle-wrap {
    position: absolute;
    left: 50%;
    bottom: 18px;
    width: 107%;
    height: 100%;
    transform: translateX(-50%);
    transform-origin: center bottom;
}

.curve .bottle {
    position: absolute;
    width: 30%;
    height: auto;
    object-fit: contain;
    will-change: transform;
}

.curve .bottle-back {
    top: -100%;
    left: 25%;
    transform: rotate(2deg) translate(10%, -6%);
    z-index: 0;
}

.curve .bottle-front {
    top: -40%;
    left: 40%;
    transform: rotate(9deg) translate(-9%, 25%);
    z-index: -1;
}

.features {
    position: absolute;
    inset: 0;
    pointer-events: none;
    /* z-index: 5; */
}

.feature-row {
    position: relative;
    width: 100%;
    height: 100%;
}

.feature {
    position: absolute;
    width: 110px;
    text-align: center;
    transform: translate(-50%, -50%);
    pointer-events: auto;
}

.feature .ring {
    width: 108px;
    height: 108px;
    margin: 0 auto 12px;
    border-radius: 50%;
    font-size: 58px;
    border: 0.72px solid #0D423C;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F2FEFC66;
    transition: all 0.5s;
    color: #0D423C;
}

.feature:hover .ring {
    border-color: #C09342;
    color: #C09342;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
}

.feature span {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: 0.01em;
    text-align: center;
    color: #0D423C;
    transition: all 0.5s;
}

.feature:hover span {
    color: #C09342;
}

.burger-wrap {
    position: absolute;
    bottom: 5%;
    /* left: 35%; */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

@media (max-width:1400px) {
    .feature .ring {
        width: 90px;
        height: 90px;
        font-size: 40px;
    }
}

@media (max-width:1300px) {
    .feature .ring {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }
}

.story {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 5vh 6vw;
}

.story-title {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: clamp(1.7rem, 2.6vw, 2.3rem);
    margin-bottom: 1.1rem;
    letter-spacing: 0.01em;
    color: #0E2724;
}

.story-text {
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.1rem;
}

.story-text strong {
    color: #0E2724;
    font-weight: 600;
}

.visual-col {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.visual-col .burger-wrap {
    bottom: -116px;
}

@media (max-width: 991px) {
    .row-story {
        flex-direction: column-reverse;
    }
}

.gallery-pin {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-color: #0D423C;
    background: #0D423C url("../image/bg2.png") bottom left / contain no-repeat;
}

.gallery-intro {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8%;
}

.gallery-title {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: clamp(1.7rem, 2.6vw, 2.3rem);
    color: var(--gold);
    margin-bottom: 34px;
}

.thumb-row {
    display: flex;
    gap: 22px;
}

.thumb {
    flex: 1 1 0;
    aspect-ratio: 4/3;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

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

.filmstrip {
    position: fixed;
    opacity: 0;
    overflow: hidden;
    border-radius: 6px;
    z-index: 20;
    background: #000;
}

.film-track {
    display: flex;
    width: 100%;
    height: 100%;
    will-change: transform;
}

.film-slide {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
}

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

.film-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0) 45%);
}

.film-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 5% 6%;
    opacity: 0;
    pointer-events: none;
}

.film-overlay.is-active {
    pointer-events: auto;
}

.film-title {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: #fff;
    margin: 0 0 18px;
    text-align: end;
}

.film-nav {
    position: absolute;
    left: 5%;
    bottom: 14%;
    display: flex;
    gap: 14px;
}

.nav-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.25);
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(3px);
    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.nav-btn:hover {
    background: rgba(232, 164, 92, 0.85);
    border-color: var(--gold);
    transform: translateY(-2px);
}

@media (max-width: 700px) {
    .thumb-row {
        gap: 12px;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
    }
}

.menu-section {
    position: relative;
    background: #142823;
}

.menu-title {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--gold);
    margin-bottom: 44px;
}

.menu-item {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    max-width: 490px;
}

.menu-item:last-child {
    margin-bottom: 0;
}

.menu-item h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 8px;
    letter-spacing: 0.01em;
}

.menu-item p {
    font-size: 0.92rem;
    line-height: 1.55;
    color: #CED8D8;
    max-width: 353px;
    margin: 0;
}

.menu-item .price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
    padding-top: 1px;
}

.menu-gallery {
    display: flex;
    gap: 20px;
    height: 100%;
    align-items: stretch;
    min-height: 513px;
}

.menu-gallery .g-img {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.35);
}

.menu-gallery .g-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: center;
}

.menu-gallery .g-img.narrow {
    margin-top: 40px;
}

@media (max-width: 991px) {
    .menu-gallery {
        margin-top: 50px;
        height: 340px;
    }
}

@media (max-width: 576px) {

    .menu-gallery {
        flex-direction: column;
        height: auto;
    }

    .menu-gallery .g-img {
        height: 230px;
    }
}

.site-footer {
    overflow: hidden;
    background: linear-gradient(#131C1AF5, #131C1AF5), url("../image/bg3.jpg") center center / cover no-repeat;
    height: 100%;
    width: 100%;
}

.footer-top {
    border-bottom: 1px solid #FFFFFF24;
}

.info-item {
    text-align: center;
    padding: 0 18px 34px;
    font-size: 54px;
    color: #FFE297;
}

.info-item h3 {
    font-family: var(--font-main);
    font-size: 1.5rem;
    font-weight: 500;
    color: #FFE297;
    margin: 0 0 8px;
}

.info-item p {
    font-size: 1rem;
    color: var(--white);
    margin: 0;
    line-height: 1.5;
}

.info-item .btn-outline-gold {
    display: inline-block;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #FFE297;
    border: 1px solid #FFE297;
    border-radius: 30px;
    padding: 9px 22px;
    text-decoration: none;
    transition: all 0.25s ease;
    margin: 0;
}

.info-item .btn-outline-gold:hover {
    border-color: white;
    color: var(--white);
    background: transparent;
}

@media (min-width: 768px) {
    .info-col {
        position: relative;
    }

    .info-col:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 6px;
        bottom: 34px;
        width: 1px;
        background: rgba(244, 239, 228, 0.12);
    }
}

.footer-copy {
    font-size: 1rem;
    color: var(--white);
    text-align: center;
}

.footer-copy .accent {
    color: #FFE297;
}

.brand-badge {
    width: 110px;
    height: 110px;
    margin: 10px auto;
}

.brand-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.social-row {
    display: flex;
    gap: 12px;
    justify-content: center;
}

@media (min-width: 768px) {
    .social-row {
        justify-content: flex-end;
    }

    .footer-copy {
        text-align: left;
    }
}

.social-row a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-green);
    text-decoration: none;
    font-size: 20px;
    border: 1px solid var(--gold);
    transition: all 0.5s;
}

.social-row a:hover {
    background: transparent;
    color: var(--gold);
}

.footer-credit {
    text-align: center;
    font-size: 1rem;
    color: var(--white);
    padding-top: 26px;
}

.footer-credit a {
    color: var(--white);
    text-decoration: none;
}

.footer-credit a:hover {
    color: #FFE297;
}

.middle-row {
    border-bottom: 1px solid #FFFFFF24;
    padding: 10px 0;
}

.middle-row>div {
    margin-bottom: 26px;
}

@media (min-width: 768px) {
    .middle-row>div {
        margin-bottom: 0;
    }
}

/* ==========================================================================
   TRAVELING BOTTLE / BURGER
   The bottle and burger each still exist once per section above (hero,
   reveal, curve / curve, story) with all their original CSS untouched —
   that IS "their original place in the code." Those instances are simply
   made invisible via .bottle-marker / .burger-marker so their real,
   already-coded rects can still be measured with getBoundingClientRect().
   A single visible duplicate (#bottleFly / #burgerFly) is then moved and
   resized by GSAP + ScrollTrigger in custom.js, interpolating between
   those measured rects as the page is scrolled — so what's actually
   traveling on screen always lands exactly where each section already
   places it.
   ========================================================================== */

.bottle-marker,
.burger-marker {
    visibility: hidden;
}

.bottle-fly {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    z-index: 90;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.bottle-fly.is-ready {
    opacity: 1;
}

.bottle-fly-img {
    position: fixed;
    top: 0;
    left: 0;
    object-fit: contain;
    pointer-events: none;
    will-change: top, left, width, height;
}

#bottleFlyBack {
    z-index: 91;
}

#bottleFlyFront {
    z-index: 90;
}

.burger-fly {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 90;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.burger-fly.is-ready {
    opacity: 1;
}

.burger-fly-img {
    position: fixed;
    top: 0;
    left: 0;
    object-fit: contain;
    pointer-events: none;
    will-change: top, left, width, height;
}

/* ==========================================================
   RESPONSIVE
========================================================== */

/* ---------- Large Laptop ---------- */
@media (max-width:1400px) {

    .circle-stage {
        width: 55vw;
        height: 28vw;
    }

    .feature {
        width: 90px;
    }

    .story {
        padding: 70px 40px;
    }
    .curve .bottle-wrap {
        bottom: 0;
    }

}

/* ---------- Laptop ---------- */
@media (max-width:1200px) {

    .section-padding {
        padding: 70px 0;
    }

    .hero-content {
        transform: none;
    }

    .circle-stage {
        width: 62vw;
        height: 31vw;
        bottom: -10vw;
    }

    .feature span {
        font-size: 14px;
    }

    .menu-gallery {
        min-height: 420px;
    }

}


/* ---------- Tablet ---------- */
@media (max-width:991px) {

    section {
        overflow: hidden;
    }

    .hero {
        min-height: 100vh;
        height: auto;
    }

    .hero-heading {
        font-size: clamp(40px, 6vw, 60px);
    }

    .hero-eyebrow {
        letter-spacing: 4px;
    }

    .circle-stage {
        width: 80vw;
        height: 40vw;
        bottom: -15vw;
    }

    .half-circle {
        border-width: 4px;
    }

    .half-circlebg {
        inset: 20px;
    }

    .bottle {
        width: 60%;
    }

    .reveal {
        min-height: auto;
        padding: 100px 0;
    }

    .reveal-visual {
        order: -1;
        min-height: auto;
    }

    .curve {
        min-height: 900px;
    }

    .feature {
        width: 80px;
    }

    .feature .ring {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .feature span {
        font-size: 13px;
    }

    .story {
        padding: 70px 20px;
    }

    .gallery-title,
    .menu-title,
    .story-title {
        text-align: center;
    }

    .thumb-row {
        gap: 12px;
    }

    .menu-item {
        max-width: 100%;
    }

    .menu-gallery {
        margin-top: 50px;
    }

    .visual-col {
        margin-bottom: 60px;
    }

}


/* ---------- Mobile ---------- */
@media (max-width:767px) {

    .section-padding {
        padding: 60px 0;
    }

    .hero {
        padding-top: 70px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-heading {
        font-size: 38px;
        line-height: 1.2;
    }

    .btn-gold,
    .btn-outline-gold {
        width: 100%;
        text-align: center;
        max-width: 280px;
    }

    .circle-stage {
        width: 95vw;
        height: 48vw;
        bottom: -18vw;
    }

    .half-circlebg {
        inset: 15px;
    }

    .reveal-item {
        gap: 12px;
    }

    .reveal-heading {
        font-size: 26px;
    }

    .reveal-sub {
        font-size: 14px;
    }

    .curve {
        min-height: 760px;
    }

    .curve .bottle {
        width: 45%;
    }

    .feature {
        width: 70px;
    }

    .feature .ring {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }

    .feature span {
        font-size: 11px;
    }

    .story-title,
    .gallery-title,
    .menu-title {
        font-size: 32px;
    }

    .story-text {
        font-size: 15px;
        line-height: 1.8;
    }

    .thumb-row {
        flex-direction: column;
    }

    .thumb {
        aspect-ratio: 16/10;
    }

    .film-title {
        font-size: 28px;
    }

    .film-nav {
        bottom: 8%;
    }

    .menu-item {
        flex-direction: column;
        gap: 10px;
    }

    .menu-item .price {
        padding: 0;
    }

    .menu-gallery {
        flex-direction: column;
        min-height: auto;
    }

    .menu-gallery .g-img,
    .menu-gallery .g-img.narrow {
        margin-top: 0;
        height: 220px;
    }

    .info-item {
        padding-bottom: 40px;
    }

    .brand-badge {
        width: 80px;
        height: 80px;
    }

}


/* ---------- Small Mobile ---------- */
@media (max-width:575px) {

    .hero-heading {
        font-size: 30px;
    }

    .hero-eyebrow {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .circle-stage {
        width: 110vw;
        height: 55vw;
    }

    .curve {
        min-height: 700px;
    }

    .feature {
        width: 60px;
    }

    .feature .ring {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .feature span {
        font-size: 10px;
    }

    .story-title,
    .gallery-title,
    .menu-title {
        font-size: 28px;
    }

    .nav-btn {
        width: 38px;
        height: 38px;
    }

}