/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cream: #FAF8F0;
    --dark: #1A1A1A;
    --ginger: #D4A843;
    --honey: #D4943A;
    --lemon: #E8D44D;
    --cinnamon: #8B4513;
    --cardamom: #5A7247;
    --clove: #4A2C2A;
    --pepper: #2C2C2C;
    --warm-gray: #B8B0A0;
    --light-gray: #E8E4DC;
    --text: #2A2A2A;
    --text-light: #6B6560;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
}

/* ===== TYPOGRAPHY ===== */
h2, h3, h4 {
    font-weight: 400;
    letter-spacing: 0.02em;
}

.jp, .title-jp, .product-jp {
    font-family: 'Noto Serif JP', serif;
    font-weight: 300;
}

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

.section-title .title-jp {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    letter-spacing: 0.3em;
    margin-bottom: 0.5rem;
}

.section-title .title-en {
    display: block;
    font-size: 2.8rem;
    font-weight: 300;
    letter-spacing: 0.08em;
}

.large-text {
    font-size: 1.35rem;
    line-height: 1.9;
    font-weight: 300;
    max-width: 720px;
}

/* ===== SECTIONS ===== */
.section {
    min-height: 100vh;
    padding: 8rem 6rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-content {
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-content.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== FLOATING INGREDIENTS (paper cutout style) ===== */
.floating-ingredients {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.ingredient-piece {
    position: absolute;
    transition: transform 0.3s ease-out;
}

.piece-ginger {
    top: 10%;
    left: -2%;
    width: 120px;
    transform: rotate(-15deg);
}

.piece-lemon {
    top: 25%;
    right: -1%;
    width: 100px;
    transform: rotate(10deg);
}

.piece-honey {
    top: 50%;
    left: 2%;
    width: 80px;
    transform: rotate(5deg);
}

.piece-cinnamon {
    top: 40%;
    right: 3%;
    width: 120px;
    transform: rotate(-8deg);
}

.piece-pepper {
    top: 65%;
    right: 5%;
    width: 60px;
}

.piece-cardamom {
    top: 75%;
    left: 4%;
    width: 50px;
    transform: rotate(12deg);
}

.piece-clove {
    top: 85%;
    right: 8%;
    width: 40px;
    transform: rotate(-5deg);
}

.piece-leaf {
    top: 15%;
    right: 6%;
    width: 80px;
    transform: rotate(20deg);
}

/* Subtle idle animation for ingredient pieces */
@keyframes floatSubtle {
    0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
    50% { transform: translateY(-8px) rotate(calc(var(--rot, 0deg) + 2deg)); }
}

.piece-ginger { --rot: -15deg; animation: floatSubtle 6s ease-in-out infinite; }
.piece-lemon { --rot: 10deg; animation: floatSubtle 7s ease-in-out infinite 0.5s; }
.piece-honey { --rot: 5deg; animation: floatSubtle 8s ease-in-out infinite 1s; }
.piece-cinnamon { --rot: -8deg; animation: floatSubtle 7.5s ease-in-out infinite 1.5s; }
.piece-pepper { --rot: 0deg; animation: floatSubtle 6.5s ease-in-out infinite 0.8s; }
.piece-cardamom { --rot: 12deg; animation: floatSubtle 8.5s ease-in-out infinite 2s; }
.piece-clove { --rot: -5deg; animation: floatSubtle 7s ease-in-out infinite 1.2s; }
.piece-leaf { --rot: 20deg; animation: floatSubtle 9s ease-in-out infinite 0.3s; }

/* ===== FLOURISH OVERLAY ===== */
.flourish-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.flourish-overlay.active {
    opacity: 1;
}

.flourish-piece {
    position: absolute;
    border-radius: 40% 60% 50% 50%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.flourish-overlay.active .flourish-piece {
    opacity: 1;
}

.f1 {
    width: 300px;
    height: 400px;
    background: linear-gradient(135deg, rgba(212, 168, 67, 0.15), rgba(212, 148, 58, 0.08));
    top: -10%;
    left: -5%;
    transform: rotate(-20deg) scale(0.3);
}
.flourish-overlay.active .f1 {
    transform: rotate(-20deg) scale(1);
    top: -5%;
    left: -2%;
}

.f2 {
    width: 250px;
    height: 350px;
    background: linear-gradient(135deg, rgba(232, 212, 77, 0.12), rgba(212, 168, 67, 0.06));
    top: 10%;
    right: -8%;
    transform: rotate(15deg) scale(0.3);
    border-radius: 50% 40% 60% 50%;
}
.flourish-overlay.active .f2 {
    transform: rotate(15deg) scale(1);
    right: -3%;
}

.f3 {
    width: 200px;
    height: 300px;
    background: linear-gradient(135deg, rgba(90, 114, 71, 0.1), rgba(107, 143, 78, 0.05));
    bottom: 5%;
    left: 10%;
    transform: rotate(30deg) scale(0.3);
    border-radius: 60% 40% 50% 50%;
}
.flourish-overlay.active .f3 {
    transform: rotate(30deg) scale(1);
}

.f4 {
    width: 180px;
    height: 250px;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.08), rgba(74, 44, 42, 0.04));
    bottom: -5%;
    right: 15%;
    transform: rotate(-25deg) scale(0.3);
}
.flourish-overlay.active .f4 {
    transform: rotate(-25deg) scale(1);
}

.f5 {
    width: 150px;
    height: 200px;
    background: linear-gradient(135deg, rgba(212, 168, 67, 0.1), transparent);
    top: 40%;
    left: -5%;
    transform: rotate(45deg) scale(0.3);
    border-radius: 50%;
}
.flourish-overlay.active .f5 {
    transform: rotate(45deg) scale(1);
    left: 2%;
}

.f6 {
    width: 220px;
    height: 280px;
    background: linear-gradient(135deg, rgba(232, 212, 77, 0.08), transparent);
    top: 30%;
    right: -5%;
    transform: rotate(-35deg) scale(0.3);
    border-radius: 45% 55% 50% 50%;
}
.flourish-overlay.active .f6 {
    transform: rotate(-35deg) scale(1);
    right: 0%;
}

.f7 {
    width: 160px;
    height: 220px;
    background: linear-gradient(135deg, rgba(90, 114, 71, 0.06), transparent);
    top: -5%;
    left: 40%;
    transform: rotate(10deg) scale(0.3);
    border-radius: 55% 45% 50% 50%;
}
.flourish-overlay.active .f7 {
    transform: rotate(10deg) scale(1);
}

.f8 {
    width: 200px;
    height: 260px;
    background: linear-gradient(135deg, rgba(212, 148, 58, 0.08), transparent);
    bottom: 10%;
    right: 35%;
    transform: rotate(-15deg) scale(0.3);
    border-radius: 50% 50% 40% 60%;
}
.flourish-overlay.active .f8 {
    transform: rotate(-15deg) scale(1);
}

/* ===== HERO SECTION ===== */
.hero {
    background: var(--cream);
    flex-direction: column;
    padding: 0;
    min-height: 100vh;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.logo-container {
    margin-bottom: 3rem;
}

.logo-img {
    width: 320px;
    height: auto;
    filter: none;
}

.hero-tagline {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.hero-tagline-en {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-light);
    letter-spacing: 0.1em;
    font-style: italic;
}

.hero-side-ingredients {
    position: absolute;
    top: 0;
    height: 100%;
    width: 200px;
    z-index: 1;
    opacity: 0.6;
}

.hero-side-ingredients.left {
    left: 2%;
}

.hero-side-ingredients.right {
    right: 2%;
}

.hero-side-ingredients svg {
    width: 100%;
    height: 100%;
}

.scroll-indicator {
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--warm-gray);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--warm-gray);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ===== MISSION SECTION ===== */
.mission {
    background: var(--cream);
}

.mission-text > p {
    margin-bottom: 1.5rem;
    max-width: 720px;
}

.mission-text > p:last-of-type {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 2;
}

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

.pillar {
    text-align: center;
}

.pillar-icon {
    width: 60px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--ginger);
}

.pillar-icon--wide {
    width: 110px;
    height: 70px;
}

.pillar h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.pillar h3 .jp {
    font-size: 0.8rem;
    color: var(--text-light);
}

.pillar p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== PRODUCTS SECTION ===== */
.products {
    background: var(--dark);
    color: var(--cream);
    min-height: auto;
    padding: 8rem 6rem;
}

.products .section-title .title-jp {
    color: var(--warm-gray);
}

.products .section-title .title-en {
    color: var(--cream);
}

.product-grid {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    overflow: visible;
}

.product-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    overflow: visible;
    align-items: center;
}

.product-card:nth-child(even) {
    direction: rtl;
}

.product-card:nth-child(even) > * {
    direction: ltr;
}

.product-visual {
    position: relative;
    height: 975px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

/* Layered bottle display */
.product-visual--layered {
    background: var(--dark);
    border-radius: 8px;
    overflow: visible;
    padding: 2rem 3rem;
}

.bottle-layer {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.layer-img {
    object-fit: contain;
    filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.5));
    transition: transform 0.6s ease, opacity 0.6s ease;
}

/* Hero bottle — large, centered, in front */
.layer-hero {
    position: relative;
    z-index: 3;
    max-height: 870px;
    width: auto;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.product-card.visible .layer-hero {
    animation: heroBottleIn 0.9s ease 0.3s forwards;
}

@keyframes heroBottleIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.layer-hero:hover {
    transform: scale(1.02);
}

/* Back bottles — smaller, offset, behind */
.layer-back {
    position: absolute;
    z-index: 1;
    max-height: 660px;
    width: auto;
    opacity: 0;
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.4)) brightness(0.65);
}

.product-card.visible .layer-back {
    animation: backBottleIn 0.8s ease forwards;
}

@keyframes backBottleIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.85);
    }
    100% {
        opacity: 1;
    }
}

/* Left back bottle */
.layer-left {
    transform: translateX(-55%) rotate(-4deg) scale(0.78);
}

.product-card.visible .layer-left {
    animation: backLeftIn 0.8s ease 0.05s forwards;
}

@keyframes backLeftIn {
    0% {
        opacity: 0;
        transform: translateX(-45%) rotate(-2deg) scale(0.7);
    }
    100% {
        opacity: 1;
        transform: translateX(-55%) rotate(-4deg) scale(0.78);
    }
}

/* Right back bottle */
.layer-right {
    transform: translateX(55%) rotate(4deg) scale(0.78);
}

.product-card.visible .layer-right {
    animation: backRightIn 0.8s ease 0.1s forwards;
}

@keyframes backRightIn {
    0% {
        opacity: 0;
        transform: translateX(45%) rotate(2deg) scale(0.7);
    }
    100% {
        opacity: 1;
        transform: translateX(55%) rotate(4deg) scale(0.78);
    }
}

.product-info h3 {
    font-size: 2rem;
    margin-bottom: 0.3rem;
    color: var(--cream);
}

.product-jp {
    font-size: 0.9rem;
    color: var(--warm-gray);
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.product-desc {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(250, 248, 240, 0.8);
    margin-bottom: 2rem;
}

.ingredient-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.ingredient-list span {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(250, 248, 240, 0.2);
    border-radius: 20px;
    color: var(--warm-gray);
    letter-spacing: 0.05em;
    font-family: 'Noto Sans JP', sans-serif;
}

/* ===== BOTTLE SECTION ===== */
.bottle-section {
    background: var(--cream);
    min-height: auto;
}

.bottle-showcase {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.bottle-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    min-height: 500px;
}

.bottle-img {
    max-height: 450px;
    width: auto;
    object-fit: contain;
}

/* Trio bottle display in packaging section */
.bottle-image--trio {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 2rem 0;
    min-height: 650px;
    overflow: visible;
    background: none;
    border-radius: 0;
}

.trio-img {
    object-fit: contain;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.15));
    transition: transform 0.5s ease, filter 0.5s ease;
}

/* GHL bottle — hero, front and center */
.trio-center {
    position: relative;
    z-index: 3;
    max-height: 546px;
    width: auto;
}

/* Can and Shot — behind, overlapping */
.trio-left,
.trio-right {
    position: absolute;
    z-index: 1;
    max-height: 442px;
    width: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.12)) brightness(0.85);
}

.trio-left {
    left: -5%;
    transform: rotate(-4deg);
}

.trio-right {
    right: -5%;
    transform: rotate(4deg);
}

.trio-center:hover {
    transform: scale(1.03);
}

.trio-left:hover,
.trio-right:hover {
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15)) brightness(0.95);
    transform: rotate(0deg) scale(1.02);
}

.bottle-details h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.bottle-details h3 .jp {
    font-size: 1rem;
    color: var(--text-light);
    display: block;
    margin-top: 0.3rem;
}

.bottle-details p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    max-width: 560px;
}

.packaging-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--light-gray);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--ginger);
    margin-bottom: 0.5rem;
}

.stat-number--icon {
    font-size: 0;
}

.stat-icon-svg {
    width: 48px;
    height: 48px;
    color: var(--ginger);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.6;
    font-family: 'Noto Sans JP', sans-serif;
}

/* ===== STRATEGY SECTION ===== */
.strategy {
    background: #F5F2EA;
    min-height: auto;
}

.strategy-intro {
    margin-bottom: 4rem;
}

.strategy-intro .large-text {
    color: var(--text);
}

.strategy-phases {
    position: relative;
    padding-left: 4rem;
}

.strategy-phases::before {
    content: '';
    position: absolute;
    left: 29px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--light-gray);
}

.phase {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
}

.phase:last-child {
    margin-bottom: 0;
}

.phase-marker {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    color: var(--ginger);
    position: relative;
    z-index: 2;
    background: #F5F2EA;
    padding: 0;
}

.phase-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.phase-content h3 .jp {
    font-size: 0.85rem;
    color: var(--text-light);
}

.phase-content p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.phase-content ul {
    list-style: none;
    padding: 0;
}

.phase-content ul li {
    font-size: 0.95rem;
    color: var(--text-light);
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.phase-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ginger);
    transform: translateY(-50%);
}

/* ===== TARGET SECTION ===== */
.target {
    background: var(--cream);
    min-height: auto;
}

.target-persona {
    margin-bottom: 4rem;
    max-width: 720px;
}

.target-persona h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.target-persona h3 .jp {
    font-size: 0.9rem;
    color: var(--text-light);
}

.target-persona p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.target-item {
    padding: 2rem;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.target-item:hover {
    border-color: var(--ginger);
}

.target-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--text);
}

.target-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== FINANCIALS SECTION ===== */
.financials {
    background: var(--dark);
    color: var(--cream);
    min-height: auto;
}

.financials .section-title .title-jp {
    color: var(--warm-gray);
}

.financials .section-title .title-en {
    color: var(--cream);
}

.financial-intro {
    margin-bottom: 4rem;
}

.financial-intro .large-text {
    color: rgba(250, 248, 240, 0.85);
}

.financial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.financial-card {
    padding: 2.5rem;
    border: 1px solid rgba(250, 248, 240, 0.1);
    border-radius: 4px;
}

.financial-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--cream);
    line-height: 1.4;
}

.financial-card h3 .jp {
    font-size: 0.8rem;
    color: var(--warm-gray);
}

.financial-card ul {
    list-style: none;
    padding: 0;
}

.financial-card ul li {
    font-size: 0.95rem;
    color: rgba(250, 248, 240, 0.7);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(250, 248, 240, 0.05);
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
}

.financial-card ul li:last-child {
    border-bottom: none;
}

/* ===== CLOSING SECTION ===== */
.closing {
    background: var(--cream);
    min-height: 60vh;
    text-align: center;
}

.closing-content {
    z-index: 2;
    position: relative;
}

.logo-container.small .logo-img {
    width: 200px;
}

.closing-text {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    margin-top: 2rem;
    color: var(--text);
}

.closing-text-en {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-light);
    margin-top: 0.5rem;
    margin-bottom: 3rem;
}

.closing-cta a {
    color: var(--ginger);
    text-decoration: none;
    border-bottom: 1px solid var(--ginger);
    padding-bottom: 2px;
    transition: opacity 0.3s;
}

.closing-cta a:hover {
    opacity: 0.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .section {
        padding: 6rem 3rem;
    }

    .products {
        padding: 6rem 3rem;
    }

    .mission-pillars {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-card:nth-child(even) {
        direction: ltr;
    }

    .product-visual {
        height: 750px;
    }

    .layer-hero {
        max-height: 660px;
    }

    .layer-back {
        max-height: 510px;
    }

    .layer-left {
        transform: translateX(-45%) rotate(-3deg) scale(0.75);
    }

    .product-card.visible .layer-left {
        animation-name: backLeftInTablet;
    }

    @keyframes backLeftInTablet {
        0% { opacity: 0; transform: translateX(-35%) rotate(-1deg) scale(0.65); }
        100% { opacity: 1; transform: translateX(-45%) rotate(-3deg) scale(0.75); }
    }

    .layer-right {
        transform: translateX(45%) rotate(3deg) scale(0.75);
    }

    .product-card.visible .layer-right {
        animation-name: backRightInTablet;
    }

    @keyframes backRightInTablet {
        0% { opacity: 0; transform: translateX(35%) rotate(1deg) scale(0.65); }
        100% { opacity: 1; transform: translateX(45%) rotate(3deg) scale(0.75); }
    }

    .bottle-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .bottle-image {
        min-height: 350px;
    }

    .bottle-image--trio {
        min-height: 500px;
    }

    .trio-center {
        max-height: 440px;
    }

    .trio-left,
    .trio-right {
        max-height: 350px;
    }

    .packaging-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .financial-grid {
        grid-template-columns: 1fr;
    }

    .target-grid {
        grid-template-columns: 1fr;
    }

    .hero-side-ingredients {
        display: none;
    }
}

@media (max-width: 600px) {
    .section {
        padding: 4rem 1.5rem;
    }

    .products {
        padding: 4rem 1.5rem;
    }

    .section-title .title-en {
        font-size: 2rem;
    }

    .logo-img {
        width: 220px;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .strategy-phases {
        padding-left: 2rem;
    }

    .strategy-phases::before {
        left: 9px;
    }

    .phase-marker {
        width: 40px;
        height: 40px;
    }

    .product-visual {
        height: 600px;
    }

    .layer-hero {
        max-height: 525px;
    }

    .layer-back {
        max-height: 390px;
    }

    .layer-left {
        transform: translateX(-40%) rotate(-3deg) scale(0.72);
    }

    .layer-right {
        transform: translateX(40%) rotate(3deg) scale(0.72);
    }

    .packaging-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .floating-ingredients {
        display: none;
    }
}
