@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --red: #E30613;
    --red-dark: #B80510;
    --white: #FFFFFF;
    --bg: #F5F5F7;
    --dark: #0A0E1A;
    --navy: #111827;
    --text: #333333;
    --text-light: #666666;
    --font-display: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

/* ═══ INTRO SCREEN ═══ */
#intro {
    position: fixed;
    inset: 0;
    background: var(--red);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity .8s cubic-bezier(.4, 0, .2, 1), transform .8s cubic-bezier(.4, 0, .2, 1);
}

#intro.hide {
    opacity: 0;
    transform: scale(1.1);
    pointer-events: none;
}

.intro-logo {
    font-family: var(--font-display);
    font-size: clamp(60px, 14vw, 140px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -2px;
    text-transform: none;
    opacity: 0;
    animation: introFade 1s .3s ease forwards;
}

.intro-btn {
    margin-top: 40px;
    background: var(--white);
    color: var(--red);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: lowercase;
    padding: 16px 48px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    opacity: 0;
    animation: introFade 1s .8s ease forwards;
    transition: transform .3s, box-shadow .3s;
}

.intro-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .2);
}

@keyframes introFade {
    to {
        opacity: 1;
    }
}

/* ═══ NAV ═══ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 24px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: padding .3s, background .3s, box-shadow .3s;
}

nav.scrolled {
    padding: 14px 48px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .06);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--red);
    text-decoration: none;
    letter-spacing: -1px;
    text-transform: none;
}

.burger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 200;
    padding: 8px;
}

.burger span {
    width: 28px;
    height: 2.5px;
    background: var(--red);
    border-radius: 2px;
    transition: all .3s;
}

.burger.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.burger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ═══ FULLSCREEN MENU ═══ */
.fullmenu {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 150;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s, visibility .4s;
}

.fullmenu.open {
    opacity: 1;
    visibility: visible;
}

.fullmenu a {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 50px);
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    letter-spacing: -1px;
    transition: color .2s;
    text-transform: lowercase;
}

.fullmenu a:hover {
    color: var(--red);
}



/* ═══ HERO ═══ */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(140deg, #fff9e7 0%, #fffdf8 34%, #f1fbff 70%, #f8fff2 100%);
    padding-top: 80px;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero::before {
    background:
        conic-gradient(from 132deg at 12% 6%,
            rgba(255, 255, 255, 0) 0deg,
            rgba(255, 214, 93, .36) 10deg,
            rgba(255, 255, 255, 0) 22deg,
            rgba(255, 232, 148, .30) 34deg,
            rgba(255, 255, 255, 0) 50deg,
            rgba(255, 204, 76, .20) 66deg,
            rgba(255, 255, 255, 0) 88deg),
        linear-gradient(118deg,
            rgba(255, 198, 53, .42) 0%,
            rgba(255, 236, 167, .30) 18%,
            rgba(255, 255, 255, .16) 38%,
            rgba(255, 255, 255, 0) 68%),
        linear-gradient(148deg,
            rgba(255, 255, 255, .62) 0%,
            rgba(255, 255, 255, 0) 42%);
    filter: blur(2px);
}

.hero::after {
    top: auto;
    height: 42%;
    background:
        linear-gradient(180deg, rgba(245, 245, 247, 0) 0%, var(--bg) 100%),
        linear-gradient(90deg, rgba(255, 255, 255, .55) 0%, rgba(255, 255, 255, 0) 34%, rgba(255, 246, 218, .35) 100%);
}

.hero-logo {
    font-family: var(--font-display);
    font-size: clamp(100px, 20vw, 280px);
    font-weight: 800;
    color: var(--red);
    letter-spacing: -6px;
    text-transform: none;
    position: relative;
    z-index: 3;
    opacity: 0;
    animation: heroReveal 1s 1.5s ease forwards;
    text-align: center;
    line-height: .85;
}

@keyframes heroReveal {
    to {
        opacity: 1;
    }
}

/* Floating bottles */
.hero-float {
    position: absolute;
    z-index: 2;
    transition: transform .1s linear;
}

.hero-float img,
.hero-float svg {
    max-width: 100%;
    height: auto;
}

.float-left {
    left: 8%;
    top: 10%;
    width: clamp(260px, 32vw, 480px);
    animation: floatA 6s ease-in-out infinite;
}

.float-right {
    right: 15%;
    top: 15%;
    width: clamp(240px, 30vw, 440px);
    animation: floatB 7s ease-in-out infinite;
}

.float-bottom-left {
    left: 20%;
    bottom: 5%;
    width: clamp(180px, 20vw, 320px);
    animation: floatC 5s ease-in-out infinite;
}

.float-bottom-right {
    right: 10%;
    bottom: 8%;
    width: clamp(200px, 24vw, 360px);
    animation: floatA 8s ease-in-out infinite;
}

/* ═══ MOBILE: bring bottles closer to center ═══ */
@media (max-width: 600px) {
    .float-left {
        left: 2%;
        top: 8%;
        width: clamp(120px, 38vw, 200px);
    }
    .float-right {
        right: 2%;
        top: 8%;
        width: clamp(110px, 36vw, 190px);
    }
    .float-bottom-left {
        left: 5%;
        bottom: 6%;
        width: clamp(100px, 32vw, 170px);
    }
    .float-bottom-right {
        right: 5%;
        bottom: 6%;
        width: clamp(105px, 34vw, 175px);
    }
}

@keyframes floatA {

    0%,
    100% {
        transform: translateY(0) rotate(-3deg);
    }

    50% {
        transform: translateY(-25px) rotate(3deg);
    }
}

@keyframes floatB {

    0%,
    100% {
        transform: translateY(0) rotate(2deg);
    }

    50% {
        transform: translateY(-20px) rotate(-4deg);
    }
}

@keyframes floatC {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

/* Bubbles */
.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 150, 255, .08);
    border: 1px solid rgba(0, 150, 255, .12);
    animation: bubbleUp 8s linear infinite;
    z-index: 1;
}

@keyframes bubbleUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: .6;
    }

    100% {
        transform: translateY(-120vh) scale(.4);
        opacity: 0;
    }
}

/* ═══ WAVE DIVIDER ═══ */
.wave-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    width: 100%;
    height: auto;
    display: block;
}

.wave-divider.flip {
    transform: rotate(180deg);
}

/* ═══ PRODUCT SECTIONS ═══ */
.products-stack {
    position: relative;
}



.product-section {
    position: sticky;
    top: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 48px;
    overflow: hidden;
    z-index: 10;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}

.product-section+.product-section {
    mask-image: linear-gradient(to bottom, transparent 0%, black 150px);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 150px);
}

.product-section:nth-child(even) {
    background: rgba(255, 255, 255, 0.4);
}

.product-section:nth-child(odd) {
    background: rgba(245, 245, 247, 0.4);
}

.product-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    will-change: transform, opacity;
}

.product-inner.reverse {
    direction: rtl;
}

.product-inner.reverse>* {
    direction: ltr;
}

.product-text h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 24px;
}

.product-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 440px;
}

.btn-red {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    transition: background .3s, transform .3s, box-shadow .3s;
}

.btn-red:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(227, 6, 19, .3);
}

.product-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.product-visual .bottle-img {
    width: clamp(200px, 60%, 380px);
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, .12));
    transition: transform .4s;
    position: relative;
    z-index: 2;
}

.product-visual:hover .bottle-img {
    transform: scale(1.04) rotate(2deg);
}

.product-visual .splash {
    position: absolute;
    width: 110%;
    height: 110%;
    top: -5%;
    left: -5%;
    opacity: .5;
    z-index: 1;
    pointer-events: none;
}

/* ═══ RED BRAND SECTION ═══ */
.brand-section {
    background: var(--red);
    padding: 120px 48px;
    position: relative;
    overflow: hidden;
}

.brand-text {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.brand-text h2 {
    font-family: var(--font-display);
    font-size: clamp(40px, 8vw, 100px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -2px;
    opacity: .15;
}

.brand-text h2.revealed {
    opacity: 1;
    transition: opacity 1s ease;
}

.brand-scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, .5);
    border-radius: 20px;
    margin: 40px auto 0;
    position: relative;
    display: flex;
    justify-content: center;
}

.brand-scroll-icon::after {
    content: '';
    width: 4px;
    height: 12px;
    border-radius: 4px;
    background: var(--white);
    margin-top: 8px;
    animation: scrollBounce 1.5s infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(12px);
        opacity: .3;
    }
}

/* ═══ STORY SECTION ═══ */
.story-section {
    padding: 120px 48px;
    background: var(--white);
}

.story-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}

.story-year {
    font-family: var(--font-display);
    font-size: clamp(80px, 15vw, 180px);
    font-weight: 800;
    color: var(--dark);
    line-height: .9;
    letter-spacing: -4px;
}

.story-caption {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-top: 20px;
    max-width: 400px;
}

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

.story-marquee {
    overflow: hidden;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, .06);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    margin-top: 16px;
}

.story-marquee-inner {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: marqueeScroll 20s linear infinite;
}

.story-marquee-inner span {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--red);
    white-space: nowrap;
    letter-spacing: 2px;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ═══ WATER SECTION ═══ */
.water-section {
    padding: 120px 48px;
    background: var(--bg);
}

.water-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.water-section h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
}

.water-section p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 440px;
}

.water-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.stat-box {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 16px;
    padding: 24px;
    transition: transform .3s, box-shadow .3s;
}

.stat-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
}

.stat-num {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    color: var(--red);
}

.stat-label {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
    font-weight: 600;
}

.water-visual {
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(180deg, #dbeeff 0%, #a8d8ff 50%, #5bb8ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.water-drops {
    position: absolute;
    inset: 0;
}

.wdrop {
    position: absolute;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    background: rgba(255, 255, 255, .35);
    animation: wdropFloat 4s ease-in-out infinite;
}

@keyframes wdropFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-15px) scale(1.05);
    }
}

/* ═══ SUSTAIN SECTION ═══ */
.sustain-section {
    padding: 120px 48px;
    background: var(--white);
}

.sustain-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sustain-section h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
}

.sustain-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}

.sustain-card {
    background: var(--bg);
    border-radius: 16px;
    padding: 24px;
    transition: transform .3s, background .3s;
}

.sustain-card:hover {
    transform: translateY(-4px);
    background: #eef2f7;
}

.sustain-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.sustain-card-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.sustain-card-text {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6;
}

.sustain-visual {
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #d4edda 0%, #92d3a0 50%, #4caf50 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
}

/* ═══ MEDIA SECTION ═══ */
.media-section {
    padding: 0;
    background: #000;
    overflow: hidden;
    line-height: 0;
    /* suppress inline-block gap */
}

.media-header {
    text-align: center;
    margin-bottom: 48px;
    padding: 0 48px;
}

.media-header h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--dark);
}

.video-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 0;
    line-height: 0;
}

.video-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: marqueeScroll 24s linear infinite;
    padding: 0;
}

.video-track:hover {
    animation-play-state: paused;
}

.video-item {
    aspect-ratio: 2 / 3;
    height: 420px;
    flex-shrink: 0;
    overflow: hidden;
    background: #111;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-item--wide {
    aspect-ratio: 16 / 9;
}

.video-item:hover {
    cursor: pointer;
}

.video-item video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

@media (max-width: 960px) {
    .video-item {
        height: 320px;
    }
}

@media (max-width: 600px) {
    .video-item {
        height: 240px;
    }
    .video-track {
        gap: 0;
        padding: 0;
    }
}

/* ═══ TESTIMONIALS ═══ */
.testimonials-section {
    padding: 100px 48px;
    background: var(--bg);
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 48px;
}

.testimonials-header h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--dark);
}

.testimonials-track {
    display: flex;
    gap: 24px;
    animation: tSlide 30s linear infinite;
    width: max-content;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes tSlide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.t-card {
    min-width: 320px;
    max-width: 320px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 20px;
    padding: 32px;
}

.t-card-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 16px;
    font-style: italic;
}

.t-card-author {
    font-size: 13px;
    font-weight: 700;
    color: var(--red);
}

.t-card-handle {
    font-size: 11px;
    color: var(--text-light);
}

/* ═══ FOOTER ═══ */
footer {
    background: var(--navy);
    color: var(--white);
    padding: 80px 48px 40px;
}

.footer-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-gallery-item {
    border-radius: 16px;
    overflow: hidden;
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform .4s;
}

.footer-gallery-item:hover {
    transform: scale(1.02);
}

.footer-gallery-item.item-water {
    background: linear-gradient(135deg, #d0eaff, #8ec5fc);
}

.footer-gallery-item.item-juice {
    background: linear-gradient(135deg, #ffecd2, #fcb69f);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    text-transform: lowercase;
    display: block;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.7;
    max-width: 260px;
}

.footer-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    transition: color .2s;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, .4);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
    color: var(--white);
    transition: background .2s;
}

.footer-social a:hover {
    background: var(--red);
    border-color: var(--red);
}

/* ═══ ORDER 19L SECTION ═══ */
.order19-section {
    padding: 120px 48px;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.order19-section::before {
    content: '19L';
    position: absolute;
    font-family: var(--font-display);
    font-size: clamp(180px, 30vw, 380px);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    letter-spacing: -8px;
    white-space: nowrap;
}

.order19-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.order19-header {
    text-align: center;
    margin-bottom: 64px;
}

.order19-badge {
    display: inline-block;
    background: rgba(227, 6, 19, 0.15);
    border: 1px solid rgba(227, 6, 19, 0.4);
    color: #ff4d5e;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.order19-header h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.order19-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto;
}

.order19-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.order19-card {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 32px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                background 0.3s ease,
                border-color 0.3s ease,
                box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
}

.order19-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(227, 6, 19, 0.12) 0%, transparent 65%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
}

.order19-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(227, 6, 19, 0.4);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(227, 6, 19, 0.15);
}

.order19-card:hover::before {
    opacity: 1;
}

.order19-region {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
}

.order19-phone {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
    line-height: 1;
}

.order19-cta {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 8px;
    transition: color 0.2s;
}

.order19-cta span {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.order19-card:hover .order19-cta {
    color: var(--white);
}

.order19-card:hover .order19-cta span {
    transform: translateX(6px);
}

@media (max-width: 960px) {
    .order19-section {
        padding: 80px 24px;
    }
    .order19-cards {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .order19-card {
        padding: 32px 28px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }
    .order19-phone {
        font-size: clamp(20px, 4.5vw, 28px);
    }
}

@media (max-width: 600px) {
    .order19-section {
        padding: 60px 16px;
    }
    .order19-header {
        margin-bottom: 40px;
    }
    .order19-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 24px;
        gap: 10px;
    }
    .order19-phone {
        font-size: clamp(24px, 7vw, 30px);
    }
}

/* ═══ FLOATING CHAT ═══ */
.chat-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 200;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 6px 24px rgba(227, 6, 19, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    color: var(--white);
    font-size: 22px;
    transition: transform .2s, box-shadow .2s;
}

.chat-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 32px rgba(227, 6, 19, .5);
}

/* ═══ ORDER MODAL ═══ */
.order-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 500;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
}

.order-overlay.open {
    display: flex;
}

.order-modal {
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    max-width: 520px;
    width: 90%;
    position: relative;
}

.order-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg);
    border: none;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    color: var(--dark);
}

.order-close:hover {
    background: var(--red);
    color: var(--white);
}

.order-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
}

.order-sub {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 28px;
}

.order-regions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.order-region {
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    padding-bottom: 14px;
}

.order-region-name {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 6px;
}

.order-phones {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.order-phones a {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    transition: color .2s;
}

.order-phones a:hover {
    color: var(--red);
}

/* ═══ SCROLL REVEAL — BASE ═══ */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .22s; }
.reveal-delay-3 { transition-delay: .34s; }
.reveal-delay-4 { transition-delay: .46s; }

/* ═══ PRODUCT SECTION — PREMIUM DIRECTIONAL REVEALS ═══ */

/* Product text: slides in from the left */
.product-inner .product-text.reveal {
    opacity: 0;
    transform: translateX(-72px) translateY(0);
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
                transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Reversed layout: text slides from the right */
.product-inner.reverse .product-text.reveal {
    transform: translateX(72px) translateY(0);
}

/* Product visual: scales up from slightly below */
.product-inner .product-visual.reveal {
    opacity: 0;
    transform: scale(0.84) translateY(36px);
    transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.18s,
                transform 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.18s;
}

/* Visible state — spring back to natural */
.product-inner .product-text.reveal.visible,
.product-inner.reverse .product-text.reveal.visible,
.product-inner .product-visual.reveal.visible {
    opacity: 1;
    transform: scale(1) translateX(0) translateY(0);
}

/* Bottle image: rotate-in when container becomes visible */
.product-inner .product-visual.reveal .bottle-img {
    transition: transform 1.3s cubic-bezier(0.22, 1, 0.36, 1) 0.28s;
    transform: rotate(-6deg) scale(0.9);
}

.product-inner .product-visual.reveal.visible .bottle-img {
    transform: rotate(0deg) scale(1);
}

/* 3D sphere: bloom scale-in */
@keyframes sphereBloom {
    from { transform: scale(0.6); opacity: 0.4; }
    to   { transform: scale(1);   opacity: 1;   }
}

.product-inner .product-visual.reveal.visible > div > div[style*="border-radius: 50%"],
.product-inner .product-visual.reveal.visible > div > div[style*="border-radius:50%"] {
    animation: sphereBloom 1s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}


/* ═══ RESPONSIVE ═══ */
@media (max-width: 960px) {
    nav {
        padding: 16px 24px;
    }

    nav.scrolled {
        padding: 12px 24px;
    }

    .product-section {
        padding: 60px 24px;
        /* Disable sticky stacking on tablet/mobile */
        position: relative;
        top: auto;
    }

    .product-section + .product-section {
        mask-image: none;
        -webkit-mask-image: none;
    }

    .product-inner,
    .story-inner,
    .water-inner,
    .sustain-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-inner.reverse {
        direction: ltr;
    }

    /* Product visual: reduce height on tablet */
    .product-visual {
        min-height: 300px;
    }

    /* Scale down 3D spheres so they don't overflow */
    .product-visual > div[style*="width: 100%"] > div[style*="border-radius: 50%"] {
        width: 260px !important;
        height: 260px !important;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-gallery {
        grid-template-columns: 1fr;
    }

    .side-btn {
        display: none;
    }

    .float-left {
        left: 2%;
        top: 8%;
        width: 130px;
    }

    .float-right {
        right: 2%;
        top: 8%;
        width: 120px;
    }

    .float-bottom-left {
        left: 2%;
        bottom: 5%;
        width: 110px;
        display: block;
    }

    .float-bottom-right {
        right: 2%;
        bottom: 5%;
        width: 115px;
        display: block;
    }

    .brand-section {
        padding: 80px 24px;
    }

    .story-section,
    .water-section,
    .sustain-section {
        padding: 80px 24px;
    }

    .testimonials-section {
        padding: 60px 24px;
    }

    footer {
        padding: 60px 24px 32px;
    }
}

@media (max-width: 600px) {
    /* Disable sticky stacking completely on mobile */
    .product-section {
        position: relative !important;
        top: auto !important;
        padding: 48px 16px;
        min-height: auto;
    }

    .product-section + .product-section {
        mask-image: none !important;
        -webkit-mask-image: none !important;
    }

    .product-inner {
        gap: 20px;
    }

    /* Product visual height on mobile */
    .product-visual {
        min-height: 260px;
    }

    /* Make the inner visual wrapper shorter on mobile */
    .product-visual > div[style*="height: 450px"] {
        height: 300px !important;
    }

    .water-stats {
        grid-template-columns: 1fr 1fr;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
    }

    .hero-logo {
        font-size: clamp(48px, 14vw, 80px);
        letter-spacing: -2px;
    }

    /* Hero floating bottles: all 4 visible, compact corners */
    .float-left {
        left: 1%;
        top: 5%;
        width: 80px;
    }

    .float-right {
        right: 1%;
        top: 5%;
        width: 75px;
    }

    .float-bottom-left {
        left: 1%;
        bottom: 4%;
        width: 75px;
        display: block;
    }

    .float-bottom-right {
        right: 1%;
        bottom: 4%;
        width: 75px;
        display: block;
    }

    .product-text h2 {
        font-size: clamp(26px, 7vw, 40px);
    }

    .story-year {
        font-size: clamp(64px, 18vw, 120px);
    }

    .brand-section {
        padding: 60px 16px;
    }

    .brand-text h2 {
        font-size: clamp(28px, 8vw, 60px);
        letter-spacing: -1px;
    }

    .story-section,
    .water-section,
    .sustain-section {
        padding: 60px 16px;
    }

    nav {
        padding: 14px 16px;
    }

    footer {
        padding: 48px 16px 28px;
    }

    .footer-logo {
        font-size: 32px;
    }
}

@media (max-width: 400px) {
    .water-stats {
        grid-template-columns: 1fr;
    }

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

    .product-section {
        padding: 36px 12px;
    }
}
