@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --primary-color: #0A0A0A;
    /* Rich Black */
    --secondary-color: #FFFFFF;
    /* Pure White */
    --accent-color: #D4A373;
    /* Amber/Copper glow */
    --text-color: #FFFFFF;
    --text-muted: #A0A0A0;
    --bg-color: #0A0A0A;
    --header-font: 'Playfair Display', serif;
    /* Simulating Editorial New */
    --body-font: 'Inter', sans-serif;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition-slow: all 0.8s cubic-bezier(0.2, 0, 0.2, 1);
    --transition-fast: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: default;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-color);
    scroll-padding-top: 100px;
    /* Increased offset for higher landing */
}

body {
    font-family: var(--body-font);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: var(--header-font);
    font-weight: 400;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    z-index: 1000;
}

.logo img {
    height: 40px;
}

.nav-right-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Section Templates */
section {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5rem 10%;
    position: relative;
    overflow: hidden;
}

/* 1. Tropic 23 Hero */
.hero-section {
    background: url('hero2.png') no-repeat center center;
    background-size: cover;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40vh;
    /* Taller gradient for smoother fade */
    background: linear-gradient(to bottom, transparent, #000);
    pointer-events: none;
}

.bio-tags {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
}

.bio-tags span {
    padding: 8px 20px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    color: var(--accent-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.bio-tags span:hover {
    background: rgba(212, 163, 115, 0.1);
    border-color: var(--accent-color);
}

/* 2. Brand Introduction Restyle */
.reveal-section {
    background: #000;
    padding: 8rem 10% 4rem;
    /* Tightened bottom gap */
    position: relative;
    overflow: hidden;
}

/* Seamless Bottom Gradient - Fading to pure black to meet the next section */
.reveal-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15vh;
    background: linear-gradient(to bottom, transparent, #000);
    z-index: 5;
    pointer-events: none;
}

/* Subtle grain overlay for premium feel */
.reveal-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.03;
    pointer-events: none;
    z-index: 2;
}

.intro-split-layout {
    display: flex;
    align-items: center;
    gap: 8rem;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    z-index: 3;
    position: relative;
}

.product-reveal-side {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    min-height: 500px;
    /* Ensure space for the bottle */
}

.reveal-image-wrapper {
    position: relative;
    padding: 2rem;
    z-index: 4;
}

#reveal-bottle {
    max-height: 70vh;
    min-height: 400px;
    width: auto;
    position: relative;
    z-index: 5;
    display: block;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.15) 0%, transparent 70%);
    z-index: -1;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0;
    /* Animated by GSAP */
}

.text-reveal-side {
    flex: 1;
    text-align: left;
}

.intro-eyebrow {
    font-size: 0.8rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--accent-color);
    transform-origin: left;
}

.reveal-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.reveal-divider {
    width: 80px;
    height: 2px;
    background: var(--accent-color);
    margin-bottom: 3rem;
}

.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2.5rem 0;
}

.pill {
    padding: 10px 25px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    color: var(--secondary-color);
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.pill:hover {
    background: rgba(212, 163, 115, 0.1);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.brand-text.secondary {
    font-size: 1.1rem;
    opacity: 0.6;
}

/* Botanical shadows */
.botanical-shadow {
    position: absolute;
    background: rgba(10, 40, 10, 0.05);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.leaf-1 {
    width: 600px;
    height: 600px;
    bottom: -100px;
    left: -200px;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.05) 0%, transparent 70%);
}

.leaf-2 {
    width: 400px;
    height: 400px;
    top: -50px;
    right: -100px;
    background: radial-gradient(circle, rgba(16, 32, 16, 0.1) 0%, transparent 70%);
}

/* 3. Corporate Section - Immersive Redesign */
.corporate-section {
    position: relative;
    padding: 8rem 10% 12rem;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

/* Seamless Transition Gradient */
.corporate-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30vh;
    background: linear-gradient(to bottom, #000, transparent);
    z-index: 5;
    /* Higher than background but lower than content */
    pointer-events: none;
}

.corporate-bg-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    /* Taller for parallax room */
    z-index: 1;
}

.corporate-bg-parallax img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) saturate(0.8);
}

.corporate-bg-parallax .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, #000 90%);
}

.corporate-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
}

.corporate-glass-card {
    background: rgba(10, 10, 10, 0.4);
    /* Darker base for better text contrast */
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 5rem;
    display: flex;
    gap: 5rem;
    align-items: center;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    width: 100%;
    position: relative;
}

.card-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.corporate-logo-large {
    max-width: 250px;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.1));
}

.card-right {
    flex: 2;
}

.corporate-title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
}

.corporate-tagline {
    font-size: 1.2rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    margin-bottom: 2rem;
}

.corporate-divider {
    width: 60px;
    height: 2px;
    background: var(--accent-color);
    margin-bottom: 2rem;
}

.corporate-description {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.corporate-stats {
    display: flex;
    gap: 4rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-family: var(--header-font);
    color: var(--accent-color);
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* 4. About Us & Science Section - Premium Redesign */
.science-section {
    background: #000;
    padding: 4rem 10% 0;
    /* Tightened top gap */
    position: relative;
    overflow: hidden;
}

/* Subtle top glow with a black header to ensure seamlessness */
.science-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to bottom, #000 0%, transparent 20%),
        radial-gradient(circle at 50% 15%, rgba(212, 163, 115, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.centered {
    text-align: center;
}

.about-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6rem;
}

.about-main-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.8;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.mv-flex-container {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.mv-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 3rem;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mv-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--accent-color);
    transform: translateY(-10px);
}

.card-icon {
    width: 60px;
    height: 60px;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.mv-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.mv-card p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.03) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: var(--transition-slow);
}

.mv-card:hover .card-glow {
    opacity: 1;
}

/* Aesthetic Vertical Connector */
.section-connector-wrapper {
    display: flex;
    justify-content: center;
    padding: 4rem 0;
    /* Increased gap for better hierarchy */
}

.section-connector {
    width: 1px;
    height: 100px;
    /* Reduced height */
    background: linear-gradient(to bottom, transparent, var(--accent-color), transparent);
    opacity: 0.8;
    /* Increased intensity */
    position: relative;
}

.section-connector::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-color);
    box-shadow: 0 0 15px 2px var(--accent-color);
    /* Stronger glow */
}

/* Layout Utilities */
.split-container {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 4rem;
}

.text-side {
    flex: 4;
}

.text-side h1 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1rem;
}

.text-side h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.text-side p {
    font-size: 1.35rem;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 500px;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

.visual-side {
    flex: 6;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bottle-tilt-container {
    perspective: 1500px;
}

#hero-bottle {
    max-height: 75vh;
    width: auto;
    transition: transform 0.1s ease-out;
}

.accent-text {
    background: linear-gradient(to right, #fff, var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Modal Layout */
.modal-flex {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.modal-text {
    flex: 1;
}

/* Corporate Section Specifics */
#eidos-logo-card-container {
    perspective: 1000px;
    margin-bottom: 4rem;
    display: flex;
    justify-content: center;
    width: 100%;
}

#eidos-3d-card {
    max-width: 400px;
    width: 70%;
    transform-style: preserve-3d;
    transition: var(--transition-slow);
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* Product Section Specifics */
.gallery-section {
    background: #000;
    padding: 0 10% 8rem;
    /* No top padding, connector handles the transition */
}

.section-title {
    font-size: 3rem;
    margin-bottom: 4rem;
    text-align: center;
}

.section-title.centered {
    margin-bottom: 2rem;
}

.about-header-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 5rem;
}

.about-main-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.9;
}

.product-grid-landscape {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.product-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 30px;
    text-align: center;
    transition: var(--transition-slow);
    cursor: pointer;
}

.product-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.product-img-wrapper {
    height: 300px;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-img-wrapper img {
    max-height: 100%;
    width: auto;
}

.product-info h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.product-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1100px;
    background: #0a0a0a;
    border: 1px solid var(--glass-border);
    padding: 5rem;
    border-radius: 40px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: 3rem;
    right: 4rem;
    color: var(--text-muted);
    font-size: 4rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.close-modal:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

/* Footer */
footer {
    background: #050505;
    padding: 6rem 10% 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-info p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links ul li a:hover {
    color: var(--accent-color);
}

.footer-contact p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.contact-link {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-link:hover {
    color: var(--accent-color);
}

.social-icon {
    width: 24px;
    height: 24px;
    filter: invert(1);
    margin-right: 1.5rem;
    transition: var(--transition-fast);
}

.social-icon:hover {
    transform: translateY(-3px);
    filter: invert(1) sepia(1) saturate(5) hue-rotate(15deg);
}

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

/* =============================================
   HAMBURGER MENU (hidden on desktop)
   ============================================= */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    flex-direction: column;
    gap: 5px;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-color);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* Hamburger → X animation */
.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   RESPONSIVE – TABLET (≤ 1024px)
   ============================================= */
@media (max-width: 1024px) {

    /* --- Navbar --- */
    .hamburger {
        display: flex;
    }

    .navbar {
        border-radius: 20px;
        padding: 0.8rem 1.5rem;
        top: 1rem;
        width: 94%;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 75%;
        max-width: 360px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.97);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transform: translateX(100%);
        transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        border-left: 1px solid var(--glass-border);
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1rem;
        letter-spacing: 3px;
    }

    /* --- General Sections --- */
    section {
        padding: 4rem 6%;
    }

    /* --- Hero --- */
    .text-side h1 {
        font-size: 3.5rem;
    }

    .text-side h2 {
        font-size: 1.8rem;
    }

    .text-side p {
        font-size: 1.15rem;
        margin: 0 auto;
    }

    .split-container {
        flex-direction: column;
        text-align: center;
    }

    .bio-tags {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* --- Brand Intro --- */
    .intro-split-layout {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .product-reveal-side {
        min-height: auto;
        justify-content: center;
    }

    #reveal-bottle {
        max-height: 50vh;
        min-height: 280px;
    }

    .intro-eyebrow {
        justify-content: center;
    }

    .reveal-title {
        font-size: 3rem;
    }

    .feature-pills {
        justify-content: center;
    }

    .reveal-section {
        padding: 5rem 6% 3rem;
    }

    /* --- About / Science --- */
    .science-section {
        padding: 3rem 6% 0;
    }

    .mv-flex-container {
        flex-direction: column;
    }

    .mv-card {
        padding: 3rem 2rem;
    }

    .section-title {
        font-size: 2.4rem;
    }

    /* --- Product Gallery --- */
    .gallery-section {
        padding: 0 6% 5rem;
    }

    .product-grid-landscape {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .product-img-wrapper {
        height: 220px;
    }

    .product-info h4 {
        font-size: 1.4rem;
    }

    /* --- Corporate --- */
    .corporate-section {
        padding: 6rem 6% 8rem;
    }

    .corporate-glass-card {
        flex-direction: column;
        padding: 3rem;
        gap: 2.5rem;
        border-radius: 30px;
        text-align: center;
    }

    .corporate-logo-large {
        max-width: 180px;
    }

    .corporate-title {
        font-size: 2.2rem;
    }

    .corporate-stats {
        justify-content: center;
    }

    /* --- Modal --- */
    .modal-content {
        padding: 3rem;
        border-radius: 24px;
        width: 94%;
    }

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

    .close-modal {
        top: 1.5rem;
        right: 2rem;
        font-size: 2.5rem;
    }

    /* --- Footer --- */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
        display: flex;
    }

    .social-icon {
        margin: 0 0.75rem;
    }

    footer {
        padding: 4rem 6% 2rem;
    }
}

/* =============================================
   RESPONSIVE – PHONE (≤ 640px)
   ============================================= */
@media (max-width: 640px) {

    html {
        scroll-padding-top: 70px;
    }

    /* --- Navbar --- */
    .navbar {
        top: 0.6rem;
        width: 96%;
        padding: 0.6rem 1rem;
        border-radius: 16px;
    }

    .logo img {
        height: 30px;
    }

    .nav-links {
        width: 100%;
        max-width: none;
        border-left: none;
    }

    /* --- General Sections --- */
    section {
        padding: 3rem 5%;
        min-height: auto;
    }

    /* --- Hero --- */
    .hero-section {
        min-height: 85vh;
    }

    .text-side h1 {
        font-size: 2.6rem;
    }

    .text-side h2 {
        font-size: 1.35rem;
        margin-bottom: 1.2rem;
    }

    .text-side p {
        font-size: 1rem;
    }

    .bio-tags {
        gap: 0.5rem;
        margin-top: 1.5rem;
    }

    .bio-tags span {
        padding: 6px 14px;
        font-size: 0.65rem;
        letter-spacing: 1px;
    }

    /* --- Brand Intro --- */
    .reveal-section {
        padding: 3rem 5% 2rem;
    }

    .intro-split-layout {
        gap: 2rem;
    }

    #reveal-bottle {
        max-height: 40vh;
        min-height: 220px;
    }

    .reveal-title {
        font-size: 2rem;
    }

    .intro-eyebrow {
        font-size: 0.7rem;
        letter-spacing: 3px;
        margin-bottom: 1rem;
    }

    .reveal-divider {
        margin-bottom: 1.5rem;
    }

    .brand-text {
        font-size: 0.95rem;
    }

    .brand-text.secondary {
        font-size: 0.9rem;
    }

    .pill {
        padding: 8px 16px;
        font-size: 0.75rem;
    }

    .feature-pills {
        gap: 0.6rem;
        margin: 1.5rem 0;
    }

    /* --- About / Science --- */
    .science-section {
        padding: 2rem 5% 0;
    }

    .about-header-content {
        margin-bottom: 3rem;
    }

    .about-main-text {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .mv-card {
        padding: 2.5rem 1.5rem;
        border-radius: 24px;
    }

    .mv-card h3 {
        font-size: 1.5rem;
    }

    .mv-card p {
        font-size: 0.95rem;
    }

    .card-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 1.5rem;
    }

    .section-connector-wrapper {
        padding: 2rem 0;
    }

    .section-connector {
        height: 60px;
    }

    /* --- Product Gallery --- */
    .gallery-section {
        padding: 0 5% 4rem;
    }

    .product-grid-landscape {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .product-item {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .product-img-wrapper {
        height: 200px;
        margin-bottom: 1.5rem;
    }

    .product-info h4 {
        font-size: 1.3rem;
    }

    .product-info p {
        font-size: 0.8rem;
    }

    /* --- Corporate --- */
    .corporate-section {
        padding: 4rem 5% 6rem;
    }

    .corporate-glass-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
        gap: 1.5rem;
    }

    .corporate-logo-large {
        max-width: 140px;
    }

    .corporate-title {
        font-size: 1.6rem;
    }

    .corporate-tagline {
        font-size: 0.9rem;
        letter-spacing: 2px;
        margin-bottom: 1.2rem;
    }

    .corporate-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .corporate-stats {
        gap: 2rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    /* --- Modal --- */
    .modal-content {
        padding: 2rem 1.5rem;
        border-radius: 20px;
        width: 96%;
    }

    .modal-flex {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .modal-flex img {
        max-height: 280px !important;
    }

    .close-modal {
        top: 1rem;
        right: 1.2rem;
        font-size: 2rem;
    }

    /* --- Footer --- */
    footer {
        padding: 3rem 5% 1.5rem;
    }

    .footer-grid {
        gap: 2rem;
    }

    .footer-info h3 {
        font-size: 1.2rem;
    }

    .footer-contact p {
        font-size: 0.8rem;
        word-break: break-word;
    }

    .footer-bottom {
        font-size: 0.7rem;
        padding-top: 1.5rem;
    }

    /* --- Hero content (corporate hero text) --- */
    .hero-content h2 {
        font-size: 2rem;
    }
}

/* =============================================
   RESPONSIVE – SMALL PHONE (≤ 380px)
   ============================================= */
@media (max-width: 380px) {

    .text-side h1 {
        font-size: 2rem;
    }

    .text-side h2 {
        font-size: 1.1rem;
    }

    .reveal-title {
        font-size: 1.7rem;
    }

    .corporate-title {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .mv-card {
        padding: 2rem 1rem;
    }
}

/* Mobile nav overlay background */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}