:root {
    --product-white: #ffffff;
    --product-ink: #182221;
    --product-ink-soft: #4d5b59;
    --product-muted: #70807d;
    --product-emerald-deep: #004b4f;
    --product-emerald: #006b6f;
    --product-emerald-soft: #e8f4f1;
    --product-gold: #d4af37;
    --product-gold-light: #f2d16b;
    --product-gold-soft: #fff7df;
    --product-line: #e2e8e6;
    --product-surface: #f7faf9;
    --product-shadow-sm: 0 10px 30px rgba(16, 44, 42, 0.08);
    --product-shadow-md: 0 24px 60px rgba(16, 44, 42, 0.13);
    --product-radius-sm: 14px;
    --product-radius-md: 22px;
    --product-radius-lg: 34px;
    --product-shell: 1200px;
    --product-transition: 220ms ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.products-page {
    background: var(--product-white);
    color: var(--product-ink);
    font-family: "DM Sans", Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    overflow-x: hidden;
}

body.products-page,
body.products-page button,
body.products-page a {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.products-page img {
    display: block;
    max-width: 100%;
}

body.products-page a {
    color: inherit;
    text-decoration: none;
}

body.products-page h1,
body.products-page h2,
body.products-page h3,
body.products-page p {
    margin: 0;
}

body.products-page h1,
body.products-page h2 {
    font-family: "Playfair Display", Georgia, serif;
}

.products-shell {
    margin: 0 auto;
    max-width: var(--product-shell);
    padding-left: 28px;
    padding-right: 28px;
    width: 100%;
}

.skip-link {
    background: var(--product-emerald-deep);
    color: var(--product-white);
    left: 16px;
    opacity: 0;
    padding: 10px 16px;
    pointer-events: none;
    position: fixed;
    top: 16px;
    transform: translateY(-150%);
    transition: opacity var(--product-transition), transform var(--product-transition);
    z-index: 999;
}

.skip-link:focus {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* =========================
   NAVIGATION
========================= */

.site-header {
    background: rgba(255, 255, 255, 0);
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    transition:
        background var(--product-transition),
        box-shadow var(--product-transition),
        border-color var(--product-transition);
    z-index: 100;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 75, 79, 0.1);
    box-shadow: 0 8px 28px rgba(10, 35, 34, 0.08);
    backdrop-filter: blur(14px);
}

.site-nav {
    align-items: center;
    display: grid;
    gap: 26px;
    grid-template-columns: auto 1fr auto;
    margin: 0 auto;
    max-width: 1320px;
    min-height: 82px;
    padding: 14px 32px;
    position: relative;
}

.brand-logo,
.footer-logo {
    align-items: center;
    display: inline-flex;
    flex-shrink: 0;
}

.brand-logo img {
    height: 42px;
    object-fit: contain;
    width: auto;
}

.site-nav-links {
    align-items: center;
    display: flex;
    gap: 6px;
    justify-content: center;
}

.site-nav-links a {
    border-radius: 999px;
    color: var(--product-ink-soft);
    font-size: 14px;
    font-weight: 700;
    padding: 9px 13px;
    transition:
        background var(--product-transition),
        color var(--product-transition),
        transform var(--product-transition);
}

.site-nav-links a:hover,
.site-nav-links a:focus-visible,
.site-nav-links a.active {
    background: rgba(0, 107, 111, 0.08);
    color: var(--product-emerald-deep);
    outline: none;
}

.site-nav-links a:hover {
    transform: translateY(-1px);
}

.nav-login-button {
    align-items: center;
    background: var(--product-gold);
    border: 1px solid var(--product-gold);
    border-radius: 999px;
    color: var(--product-emerald-deep);
    display: inline-flex;
    font-size: 14px;
    font-weight: 800;
    justify-content: center;
    min-height: 42px;
    padding: 10px 17px;
    transition:
        background var(--product-transition),
        border-color var(--product-transition),
        transform var(--product-transition),
        box-shadow var(--product-transition);
    white-space: nowrap;
}

.nav-login-button:hover,
.nav-login-button:focus-visible {
    background: var(--product-gold-soft);
    border-color: var(--product-gold-soft);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.28);
    color: var(--product-emerald-deep);
    outline: none;
    transform: translateY(-2px);
}

.mobile-menu-button {
    background: transparent;
    border: 0;
    cursor: pointer;
    display: none;
    height: 42px;
    padding: 8px;
    width: 42px;
}

.mobile-menu-button span {
    background: var(--product-emerald-deep);
    border-radius: 999px;
    display: block;
    height: 2px;
    margin: 5px auto;
    transition: transform var(--product-transition), opacity var(--product-transition);
    width: 22px;
}

/* =========================
   SHARED COMPONENTS
========================= */

.content-section {
    padding: 118px 0;
}

.eyebrow {
    align-items: center;
    color: var(--product-emerald);
    display: inline-flex;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow::before {
    background: var(--product-gold);
    border-radius: 50%;
    content: "";
    height: 7px;
    margin-right: 9px;
    width: 7px;
}

.section-heading {
    max-width: 700px;
}

.centered-heading {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.centered-heading .eyebrow {
    justify-content: center;
}

.section-heading h2,
.product-overview-copy h2,
.functional-copy h2,
.format-copy h2,
.faq-copy h2,
.final-cta-content h2 {
    color: var(--product-ink);
    font-size: clamp(38px, 4.5vw, 62px);
    letter-spacing: -0.045em;
    line-height: 1.08;
    margin-top: 16px;
}

.section-heading > p:last-child,
.product-overview-copy > p,
.functional-copy > p,
.format-copy > p,
.final-cta-content > p:not(.eyebrow) {
    color: var(--product-ink-soft);
    font-size: 17px;
    margin-top: 22px;
}

.button {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 999px;
    display: inline-flex;
    font-size: 15px;
    font-weight: 800;
    justify-content: center;
    min-height: 52px;
    padding: 13px 22px;
    transition:
        transform var(--product-transition),
        box-shadow var(--product-transition),
        background var(--product-transition),
        color var(--product-transition),
        border-color var(--product-transition);
}

.button:hover,
.button:focus-visible {
    outline: none;
    transform: translateY(-3px);
}

.button-primary {
    background: var(--product-gold);
    border-color: var(--product-gold);
    box-shadow: 0 12px 24px rgba(212, 175, 55, 0.28);
    color: var(--product-emerald-deep);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--product-gold-light);
    border-color: var(--product-gold-light);
    box-shadow: 0 16px 32px rgba(212, 175, 55, 0.35);
    color: var(--product-emerald-deep);
}

.button-secondary {
    background: var(--product-white);
    border-color: rgba(0, 75, 79, 0.17);
    color: var(--product-emerald-deep);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    border-color: var(--product-emerald);
    box-shadow: 0 14px 26px rgba(16, 44, 42, 0.1);
}

.text-link {
    align-items: center;
    color: var(--product-emerald-deep);
    display: inline-flex;
    font-size: 15px;
    font-weight: 800;
    gap: 9px;
    margin-top: 27px;
    transition: color var(--product-transition), gap var(--product-transition);
}

.text-link span {
    font-size: 20px;
    line-height: 1;
}

.text-link:hover,
.text-link:focus-visible {
    color: var(--product-gold);
    gap: 13px;
    outline: none;
}

/* =========================
   PRODUCT HERO
========================= */

.products-page--motion {
    --product-hero-scroll-progress: 0;
    --product-hero-shift: 0px;
    --product-copy-shift: 0px;
    --product-pack-scale: 1;
    --product-pack-rotate: -2deg;
    --product-card-offset: 0px;
}

.product-hero {
    background:
        radial-gradient(circle at 12% 25%, rgba(212, 175, 55, 0.17), transparent 30%),
        radial-gradient(circle at 92% 20%, rgba(0, 107, 111, 0.15), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f4faf8 100%);
    min-height: 800px;
    overflow: hidden;
    padding: 158px 0 86px;
    position: relative;
}

.product-hero--cinematic {
    isolation: isolate;
}

.product-grain {
    background-image: radial-gradient(rgba(0, 75, 79, 0.12) 0.65px, transparent 0.65px);
    background-size: 8px 8px;
    inset: 0;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), transparent 80%);
    opacity: 0.2;
    pointer-events: none;
    position: absolute;
    z-index: -1;
}

.product-light {
    border-radius: 50%;
    opacity: 0.6;
    pointer-events: none;
    position: absolute;
    transform: translate3d(0, var(--product-float-y, 0), 0);
    transition: transform 120ms linear;
    z-index: -1;
}

.product-light-one {
    background: radial-gradient(circle, rgba(212, 175, 55, 0.24) 0%, rgba(212, 175, 55, 0) 68%);
    height: min(44vw, 640px);
    left: -13vw;
    top: 10%;
    width: min(44vw, 640px);
}

.product-light-two {
    background: radial-gradient(circle, rgba(0, 107, 111, 0.16) 0%, rgba(0, 107, 111, 0) 70%);
    bottom: -18vw;
    height: min(52vw, 770px);
    right: -14vw;
    width: min(52vw, 770px);
}

.product-orbit {
    border: 1px solid rgba(0, 107, 111, 0.11);
    border-radius: 50%;
    pointer-events: none;
    position: absolute;
    transform: translate3d(0, var(--product-float-y, 0), 0);
    transition: transform 120ms linear;
    z-index: -1;
}

.product-orbit-one {
    height: 610px;
    right: -260px;
    top: 88px;
    width: 610px;
}

.product-orbit-two {
    bottom: -330px;
    height: 600px;
    left: -270px;
    width: 600px;
}

.product-hero-layout {
    align-items: center;
    display: grid;
    gap: 70px;
    grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.96fr);
    min-height: 560px;
    position: relative;
    z-index: 1;
}

.product-hero-copy {
    max-width: 670px;
    transform: translate3d(0, var(--product-copy-shift), 0);
    transition: transform 90ms linear;
    will-change: transform;
}

.product-hero-copy h1 {
    color: var(--product-ink);
    font-size: clamp(54px, 6.5vw, 84px);
    letter-spacing: -0.07em;
    line-height: 0.97;
    margin-top: 18px;
}

.product-hero-copy h1 span {
    color: var(--product-emerald-deep);
}

.product-hero-description {
    color: var(--product-ink-soft);
    font-size: 18px;
    line-height: 1.72;
    margin-top: 28px;
    max-width: 620px;
}

.product-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.product-hero-notes {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 34px;
}

.product-hero-notes span {
    color: var(--product-muted);
    font-size: 13px;
    font-weight: 800;
}

.product-hero-notes span::before {
    color: var(--product-gold);
    content: "•";
    margin-right: 7px;
}

.product-hero-visual {
    min-height: 520px;
    position: relative;
    transform: translate3d(0, var(--product-hero-shift), 0);
    transition: transform 90ms linear;
    will-change: transform;
}

.product-hero-stage {
    align-items: center;
    background:
        radial-gradient(circle at center, rgba(212, 175, 55, 0.26), transparent 56%),
        linear-gradient(145deg, #f7faf9, #edf7f4);
    border: 1px solid rgba(0, 75, 79, 0.1);
    border-radius: var(--product-radius-lg);
    box-shadow: var(--product-shadow-md);
    display: flex;
    height: 100%;
    justify-content: center;
    min-height: 520px;
    overflow: hidden;
    padding: 42px;
    position: relative;
    transform: rotate(1.4deg);
}

.product-hero-stage::before {
    border: 1px solid rgba(0, 107, 111, 0.12);
    border-radius: 50%;
    content: "";
    height: 76%;
    left: 50%;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) scale(calc(0.9 + (var(--product-hero-scroll-progress) * 0.18)));
    transition: transform 90ms linear;
    width: 76%;
}

.product-stage-glow {
    background: rgba(212, 175, 55, 0.25);
    border-radius: 50%;
    filter: blur(40px);
    height: 260px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) scale(calc(1 + (var(--product-hero-scroll-progress) * 0.32)));
    transition: transform 90ms linear;
    width: 260px;
}

.product-hero-pack {
    filter: drop-shadow(0 28px 26px rgba(0, 54, 55, 0.28));
    max-height: 415px;
    object-fit: contain;
    position: relative;
    transform: rotate(var(--product-pack-rotate)) scale(var(--product-pack-scale));
    transform-origin: center bottom;
    transition: transform 90ms linear;
    width: min(100%, 370px);
    will-change: transform;
}

.product-stage-shine {
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.48) 50%, transparent 68%);
    inset: 0;
    opacity: calc(0.05 + (var(--product-hero-scroll-progress) * 0.22));
    pointer-events: none;
    position: absolute;
    transform: translateX(calc(-62% + (var(--product-hero-scroll-progress) * 125%)));
    transition: opacity 90ms linear, transform 90ms linear;
}

.product-format-card,
.product-routine-card {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 75, 79, 0.1);
    border-radius: 18px;
    box-shadow: var(--product-shadow-sm);
    display: grid;
    gap: 3px;
    padding: 16px 18px;
    position: absolute;
    transition: transform 110ms linear;
    will-change: transform;
}

.product-format-card {
    bottom: 28px;
    left: -38px;
    transform: translate3d(calc(-1 * var(--product-card-offset)), calc(var(--product-card-offset) * 0.25), 0);
}

.product-routine-card {
    right: -25px;
    top: 30px;
    transform: translate3d(var(--product-card-offset), calc(-1 * var(--product-card-offset) * 0.25), 0);
}

.product-format-card span,
.product-routine-card span {
    color: var(--product-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-format-card strong,
.product-routine-card strong {
    color: var(--product-emerald-deep);
    font-size: 16px;
    line-height: 1.2;
}

.product-format-card small {
    color: var(--product-muted);
    font-size: 12px;
}

/* =========================
   PRODUCT OVERVIEW
========================= */

.product-overview-section {
    background: var(--product-white);
}

.product-overview-layout {
    align-items: center;
    display: grid;
    gap: 80px;
    grid-template-columns: minmax(310px, 0.95fr) minmax(0, 1.05fr);
}

.product-overview-visual {
    min-height: 470px;
    position: relative;
}

.coffee-image-frame {
    background: var(--product-white);
    border: 1px solid rgba(0, 75, 79, 0.1);
    border-radius: var(--product-radius-lg);
    box-shadow: var(--product-shadow-md);
    min-height: 470px;
    overflow: hidden;
    padding: 10px;
    transform: rotate(-1.1deg);
}

.coffee-lifestyle-image {
    border-radius: 26px;
    height: 450px;
    object-fit: cover;
    width: 100%;
}

.coffee-lifestyle-note {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.93);
    border: 1px solid rgba(0, 75, 79, 0.1);
    border-radius: 18px;
    bottom: 24px;
    box-shadow: var(--product-shadow-sm);
    display: grid;
    gap: 4px;
    max-width: 260px;
    padding: 15px 17px;
    position: absolute;
    right: -24px;
}

.coffee-lifestyle-note span {
    color: var(--product-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.coffee-lifestyle-note strong {
    color: var(--product-emerald-deep);
    font-size: 15px;
    line-height: 1.35;
}

/* =========================
   PRODUCT HIGHLIGHTS
========================= */

.product-highlights-section {
    background: var(--product-surface);
}

.highlight-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 55px;
}

.highlight-card {
    background: var(--product-white);
    border: 1px solid var(--product-line);
    border-radius: var(--product-radius-md);
    min-height: 250px;
    padding: 28px;
    position: relative;
    transition:
        border-color var(--product-transition),
        box-shadow var(--product-transition),
        transform var(--product-transition);
}

.highlight-card:hover {
    border-color: rgba(0, 107, 111, 0.28);
    box-shadow: var(--product-shadow-sm);
    transform: translateY(-6px);
}

.highlight-number {
    color: var(--product-gold);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.09em;
}

.highlight-card h3 {
    color: var(--product-emerald-deep);
    font-size: 22px;
    margin-top: 34px;
}

.highlight-card p {
    color: var(--product-ink-soft);
    font-size: 14px;
    margin-top: 10px;
}

/* =========================
   FUNCTIONAL BLEND
========================= */

.functional-blend-section {
    background: var(--product-white);
}

.functional-blend-layout {
    align-items: center;
    display: grid;
    gap: 74px;
    grid-template-columns: minmax(0, 0.83fr) minmax(0, 1.17fr);
}

.product-disclaimer {
    border-left: 2px solid var(--product-gold);
    color: var(--product-muted) !important;
    font-size: 13px !important;
    line-height: 1.7;
    margin-top: 24px !important;
    padding-left: 13px;
}

.ingredient-grid {
    display: grid;
    gap: 13px;
    grid-template-columns: repeat(2, 1fr);
}

.ingredient-card {
    background: var(--product-white);
    border: 1px solid var(--product-line);
    border-radius: 18px;
    min-height: 178px;
    padding: 22px;
    transition:
        border-color var(--product-transition),
        box-shadow var(--product-transition),
        transform var(--product-transition);
}

.ingredient-card:hover {
    border-color: rgba(0, 107, 111, 0.3);
    box-shadow: var(--product-shadow-sm);
    transform: translateY(-4px);
}

.ingredient-card-featured {
    background: linear-gradient(135deg, rgba(0, 75, 79, 0.96), rgba(0, 107, 111, 0.94));
    border-color: var(--product-emerald-deep);
}

.ingredient-index {
    color: var(--product-gold);
    display: block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.ingredient-card h3 {
    color: var(--product-emerald-deep);
    font-size: 20px;
    margin-top: 27px;
}

.ingredient-card p {
    color: var(--product-ink-soft);
    font-size: 14px;
    margin-top: 8px;
}

.ingredient-card-featured h3,
.ingredient-card-featured p {
    color: var(--product-white);
}

.ingredient-card-featured p {
    opacity: 0.84;
}

/* =========================
   HOW TO ENJOY
========================= */

.enjoy-section {
    background:
        linear-gradient(90deg, rgba(0, 75, 79, 0.03), rgba(212, 175, 55, 0.07)),
        var(--product-surface);
}

.enjoy-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 54px;
}

.enjoy-card {
    align-items: end;
    border-radius: var(--product-radius-lg);
    display: flex;
    min-height: 420px;
    overflow: hidden;
    padding: 34px;
    position: relative;
}

.enjoy-card::before {
    content: "";
    inset: 0;
    position: absolute;
}

.enjoy-card-hot {
    background:
        linear-gradient(180deg, rgba(0, 43, 45, 0.04), rgba(0, 43, 45, 0.68)),
        url("/images/coffee.png") center / cover no-repeat;
}

.enjoy-card-iced {
    background:
        linear-gradient(180deg, rgba(0, 43, 45, 0.04), rgba(0, 43, 45, 0.68)),
        url("/images/coffee.png") center / cover no-repeat;
}

.enjoy-card-iced::after {
    background: rgba(0, 107, 111, 0.12);
    content: "";
    inset: 0;
    mix-blend-mode: multiply;
    pointer-events: none;
    position: absolute;
}

.enjoy-card-content {
    color: var(--product-white);
    max-width: 390px;
    position: relative;
    z-index: 1;
}

.enjoy-label {
    color: var(--product-gold-light);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.enjoy-card h3 {
    font-size: clamp(30px, 3vw, 42px);
    margin-top: 12px;
}

.enjoy-card p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 15px;
    margin-top: 10px;
}

/* =========================
   PRODUCT FORMAT
========================= */

.product-format-section {
    background: var(--product-white);
}

.product-format-layout {
    align-items: center;
    display: grid;
    gap: 78px;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.format-points {
    border-top: 1px solid rgba(0, 75, 79, 0.13);
}

.format-points article {
    align-items: flex-start;
    border-bottom: 1px solid rgba(0, 75, 79, 0.13);
    display: grid;
    gap: 19px;
    grid-template-columns: 42px 1fr;
    padding: 22px 0;
}

.format-points article > span {
    color: var(--product-gold);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    padding-top: 2px;
}

.format-points h3 {
    color: var(--product-emerald-deep);
    font-size: 19px;
}

.format-points p {
    color: var(--product-ink-soft);
    font-size: 15px;
    margin-top: 5px;
}

/* =========================
   FAQ
========================= */

.faq-section {
    background: var(--product-emerald-deep);
    color: var(--product-white);
}

.faq-layout {
    align-items: start;
    display: grid;
    gap: 74px;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
}

.faq-copy .eyebrow {
    color: var(--product-gold-soft);
}

.faq-copy h2 {
    color: var(--product-white);
}

.faq-list {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0;
}

.faq-item summary {
    color: var(--product-white);
    cursor: pointer;
    font-size: 17px;
    font-weight: 700;
    list-style: none;
    padding: 22px 34px 22px 0;
    position: relative;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    color: var(--product-gold);
    content: "+";
    font-size: 25px;
    font-weight: 400;
    line-height: 1;
    position: absolute;
    right: 2px;
    top: 19px;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.72;
    padding: 0 34px 23px 0;
}

/* =========================
   FINAL CTA
========================= */

.final-cta-section {
    background:
        radial-gradient(circle at 19% 30%, rgba(212, 175, 55, 0.19), transparent 30%),
        linear-gradient(135deg, #f2faf7 0%, #ffffff 48%, #fff9e6 100%);
    border-bottom: 1px solid var(--product-line);
    border-top: 1px solid var(--product-line);
    overflow: hidden;
    padding: 128px 0;
}

.final-cta-content {
    margin: 0 auto;
    max-width: 820px;
    text-align: center;
}

.final-cta-content .eyebrow {
    justify-content: center;
}

.final-cta-content h2 {
    margin-left: auto;
    margin-right: auto;
    max-width: 760px;
}

.final-cta-content > p:not(.eyebrow) {
    margin-left: auto;
    margin-right: auto;
    max-width: 690px;
}

.final-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 32px;
}

/* =========================
   FOOTER
========================= */

.site-footer {
    background: #fbfcfc;
    color: var(--product-ink);
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    gap: 54px;
    grid-template-columns: minmax(0, 1.5fr) minmax(160px, 0.7fr) minmax(190px, 0.8fr);
    padding-bottom: 55px;
}

.footer-logo img {
    height: 44px;
    object-fit: contain;
    width: auto;
}

.footer-brand p {
    color: var(--product-ink-soft);
    font-size: 14px;
    line-height: 1.75;
    margin-top: 18px;
    max-width: 370px;
}

.footer-links {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-links h2 {
    color: var(--product-emerald-deep);
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin: 4px 0 9px;
    text-transform: uppercase;
}

.footer-links a {
    color: var(--product-ink-soft);
    font-size: 14px;
    transition: color var(--product-transition);
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--product-emerald);
    outline: none;
}

.footer-bottom {
    align-items: center;
    border-top: 1px solid var(--product-line);
    color: var(--product-muted);
    display: flex;
    font-size: 12px;
    justify-content: space-between;
    padding-bottom: 25px;
    padding-top: 25px;
}

/* =========================
   REVEAL + TILT
========================= */

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 650ms ease,
        transform 650ms ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-tilt] {
    transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translate3d(0, var(--tilt-lift, 0px), 0);
    transform-style: preserve-3d;
    transition:
        transform 180ms ease,
        box-shadow 220ms ease,
        border-color 220ms ease,
        background 220ms ease;
    will-change: transform;
}

[data-tilt].is-tilting {
    transition-duration: 45ms;
}

[data-tilt][data-reveal]:not(.is-visible) {
    transform: translateY(22px);
}

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

@media (max-width: 1080px) {
    .site-nav {
        gap: 16px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .site-nav-links a {
        font-size: 13px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .product-hero-layout,
    .product-overview-layout,
    .functional-blend-layout,
    .product-format-layout,
    .faq-layout {
        gap: 48px;
    }

    .product-hero-layout {
        grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
    }

    .highlight-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-format-card {
        left: -16px;
    }

    .product-routine-card {
        right: -10px;
    }
}

@media (max-width: 860px) {
    .site-nav {
        grid-template-columns: auto auto 1fr;
        min-height: 74px;
    }

    .brand-logo img {
        height: 38px;
    }

    .mobile-menu-button {
        display: block;
        justify-self: end;
    }

    .site-nav-links {
        align-items: stretch;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(0, 75, 79, 0.12);
        border-radius: 18px;
        box-shadow: var(--product-shadow-sm);
        display: none;
        flex-direction: column;
        gap: 4px;
        left: 20px;
        padding: 10px;
        position: absolute;
        right: 20px;
        top: 70px;
    }

    .site-nav-links.is-open {
        display: flex;
    }

    .site-nav-links a {
        border-radius: 10px;
        padding: 12px 13px;
    }

    .nav-login-button {
        font-size: 13px;
        min-height: 39px;
        padding: 8px 13px;
    }

    .product-hero-layout,
    .product-overview-layout,
    .functional-blend-layout,
    .product-format-layout,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .product-hero-layout {
        gap: 48px;
    }

    .product-hero-copy,
    .product-overview-copy,
    .functional-copy,
    .format-copy,
    .faq-copy {
        max-width: 720px;
    }

    .product-hero-visual,
    .product-overview-visual {
        margin-left: auto;
        margin-right: auto;
        max-width: 610px;
        width: 100%;
    }

    .product-format-card {
        left: 16px;
    }

    .product-routine-card {
        right: 16px;
    }

    .coffee-lifestyle-note {
        right: 16px;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .products-shell {
        padding-left: 20px;
        padding-right: 20px;
    }

    .site-nav {
        gap: 8px;
        padding: 12px 18px;
    }

    .brand-logo img {
        height: 32px;
    }

    .nav-login-button {
        display: none;
    }

    .site-nav {
        grid-template-columns: auto 1fr auto;
    }

    .product-hero {
        min-height: auto;
        padding-bottom: 66px;
        padding-top: 128px;
    }

    .product-hero-copy h1 {
        font-size: clamp(48px, 14.5vw, 67px);
    }

    .product-hero-description {
        font-size: 16px;
    }

    .product-hero-actions,
    .final-cta-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .product-hero-actions .button,
    .final-cta-actions .button {
        width: 100%;
    }

    .product-hero-visual,
    .product-hero-stage {
        min-height: 420px;
    }

    .product-hero-stage {
        padding: 28px;
    }

    .product-hero-pack {
        max-height: 320px;
    }

    .product-format-card {
        bottom: 13px;
        left: 10px;
        max-width: 220px;
        padding: 13px 14px;
    }

    .product-routine-card {
        right: 10px;
        top: 15px;
    }

    .content-section {
        padding-bottom: 82px;
        padding-top: 82px;
    }

    .final-cta-section {
        padding-bottom: 85px;
        padding-top: 85px;
    }

    .section-heading h2,
    .product-overview-copy h2,
    .functional-copy h2,
    .format-copy h2,
    .faq-copy h2,
    .final-cta-content h2 {
        font-size: clamp(35px, 10.5vw, 48px);
    }

    .section-heading > p:last-child,
    .product-overview-copy > p,
    .functional-copy > p,
    .format-copy > p,
    .final-cta-content > p:not(.eyebrow) {
        font-size: 16px;
    }

    .coffee-image-frame {
        min-height: 390px;
    }

    .coffee-lifestyle-image {
        height: 370px;
    }

    .coffee-lifestyle-note {
        bottom: 13px;
        max-width: 220px;
        padding: 13px 14px;
        right: 10px;
    }

    .highlight-grid,
    .ingredient-grid,
    .enjoy-grid {
        grid-template-columns: 1fr;
    }

    .highlight-card {
        min-height: 205px;
    }

    .ingredient-card {
        min-height: 155px;
    }

    .enjoy-card {
        min-height: 330px;
        padding: 25px;
    }

    .footer-grid {
        gap: 34px;
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .site-nav-links {
        left: 12px;
        right: 12px;
        top: 66px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
/* =========================================================
   PRODUCTS EXPERIENCE V2
   Preserves the original product page styles and adds only
   progressive enhancement for 3D, ingredient storytelling,
   richer lifestyle media, and package exploration.
========================================================= */

section[id] {
    scroll-margin-top: 96px;
}

.product-hero--v2 {
    min-height: 100svh;
}

.product-hero--v2 .product-hero-layout {
    align-items: center;
}

.product-hero-visual--interactive {
    min-width: 0;
}

.model-stage {
    overflow: hidden;
    position: relative;
}

.model-stage--hero {
    min-height: 570px;
}

.model-fallback-image,
.product-model {
    height: 100%;
    inset: 0;
    position: absolute;
    width: 100%;
}

.model-fallback-image {
    object-fit: contain;
    opacity: 1;
    transition: opacity 420ms ease, transform 520ms ease;
    z-index: 1;
}

.product-model {
    background: transparent;
    opacity: 0;
    transition: opacity 420ms ease;
    z-index: 2;
}

.model-stage.is-model-ready .product-model {
    opacity: 1;
}

.model-stage.is-model-ready .model-fallback-image {
    opacity: 0;
    pointer-events: none;
}

.model-stage.is-model-error .model-fallback-image,
.model-stage.is-model-poster .model-fallback-image {
    opacity: 1;
}

.model-status {
    align-items: center;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(0, 75, 79, 0.12);
    border-radius: 999px;
    bottom: 22px;
    color: var(--product-ink-soft);
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    gap: 8px;
    left: 50%;
    padding: 9px 13px;
    position: absolute;
    transform: translateX(-50%);
    z-index: 5;
}

.model-status-dot {
    background: var(--product-gold);
    border-radius: 50%;
    height: 7px;
    width: 7px;
}

.model-stage.is-model-ready .model-status-dot {
    background: var(--product-emerald);
}

.model-stage.is-model-error .model-status-dot {
    background: #9b6a4b;
}

.model-status--compact {
    bottom: 16px;
    font-size: 11px;
    padding: 8px 11px;
}

.product-format-card--v2,
.product-routine-card--v2 {
    z-index: 7;
}

.coffee-image-frame--product img {
    object-fit: cover;
}

/* Original section restored and refined instead of replaced. */
.highlight-grid--v2 .highlight-card {
    min-height: 250px;
}

.highlight-grid--v2 .highlight-card::after {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), transparent 58%);
    content: "";
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transition: opacity var(--product-transition);
}

.highlight-grid--v2 .highlight-card:hover::after,
.highlight-grid--v2 .highlight-card:focus-within::after {
    opacity: 1;
}

/* =========================
   INTERACTIVE INGREDIENT STORY
========================= */

.functional-blend-section--v2 {
    background:
        radial-gradient(circle at 12% 10%, rgba(212, 175, 55, 0.08), transparent 24%),
        linear-gradient(180deg, #f8fbfa 0%, #ffffff 100%);
    color: var(--product-ink);
    overflow: visible;
}

.functional-copy--intro {
    margin-bottom: 70px;
    max-width: 760px;
}

.functional-copy--intro .product-disclaimer {
    background: rgba(0, 75, 79, 0.04);
    border-left: 3px solid var(--product-gold);
    color: var(--product-ink-soft);
    margin-top: 28px;
    padding: 15px 18px;
}

.ingredient-story-heading {
    margin-bottom: 44px;
    max-width: 780px;
}

.ingredient-story-heading h2 {
    color: var(--product-emerald-deep);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 0.98;
    margin: 10px 0 18px;
}

.ingredient-story-heading > p:last-child {
    color: var(--product-ink-soft);
    font-size: 18px;
    max-width: 640px;
}

.ingredient-story-v2 {
    align-items: start;
    display: grid;
    gap: clamp(42px, 7vw, 100px);
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.ingredient-stage-column {
    align-self: stretch;
}

.ingredient-stage-v2 {
    align-items: center;
    aspect-ratio: 0.92;
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.95), rgba(235, 245, 241, 0.92) 62%, rgba(0, 75, 79, 0.055));
    border: 1px solid rgba(0, 75, 79, 0.12);
    border-radius: 38px;
    box-shadow: var(--product-shadow-md);
    display: flex;
    justify-content: center;
    min-height: 520px;
    overflow: hidden;
    position: sticky;
    top: 116px;
}

.ingredient-stage-orbit,
.ingredient-stage-orbit::before,
.ingredient-stage-orbit::after {
    border: 1px solid rgba(0, 75, 79, 0.11);
    border-radius: 50%;
    content: "";
    inset: 12%;
    pointer-events: none;
    position: absolute;
}

.ingredient-stage-orbit::before {
    inset: 12%;
}

.ingredient-stage-orbit::after {
    border-style: dashed;
    inset: 24%;
}

.ingredient-stage-word {
    color: rgba(0, 75, 79, 0.08);
    font-family: "DM Sans", Arial, sans-serif;
    font-size: clamp(58px, 8vw, 120px);
    font-weight: 800;
    left: 50%;
    letter-spacing: -0.06em;
    line-height: 0.8;
    position: absolute;
    top: 16%;
    transform: translateX(-50%);
    transition: opacity 180ms ease, transform 280ms ease;
    white-space: nowrap;
}

.ingredient-stage-image {
    filter: drop-shadow(0 25px 36px rgba(0, 45, 44, 0.16));
    max-height: 63%;
    max-width: 72%;
    object-fit: contain;
    position: relative;
    transform: translateY(3%) scale(1);
    transition: opacity 180ms ease, transform 320ms ease;
    z-index: 2;
}

.ingredient-stage-v2.is-swapping .ingredient-stage-image,
.ingredient-stage-v2.is-swapping .ingredient-stage-word {
    opacity: 0;
    transform: translateY(3%) scale(0.965);
}

.ingredient-stage-footer {
    align-items: center;
    bottom: 22px;
    display: flex;
    justify-content: space-between;
    left: 24px;
    position: absolute;
    right: 24px;
    z-index: 3;
}

.ingredient-stage-footer span {
    color: var(--product-gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.ingredient-stage-footer strong {
    color: var(--product-emerald-deep);
    font-size: 14px;
}

.ingredient-chapters-v2 {
    display: grid;
}

.ingredient-chapter-v2 {
    border-bottom: 1px solid var(--product-line);
    cursor: pointer;
    min-height: 340px;
    opacity: 0.42;
    outline: none;
    padding: 72px 0 62px;
    transition: opacity 260ms ease, transform 260ms ease;
}

.ingredient-chapter-v2:first-child {
    border-top: 1px solid var(--product-line);
}

.ingredient-chapter-v2.is-active,
.ingredient-chapter-v2:hover,
.ingredient-chapter-v2:focus-visible {
    opacity: 1;
    transform: translateX(8px);
}

.ingredient-chapter-number,
.ingredient-chapter-word {
    color: var(--product-gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.ingredient-chapter-word {
    margin-left: 28px;
}

.ingredient-chapter-v2 h3 {
    color: var(--product-emerald-deep);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1;
    margin: 16px 0 20px;
}

.ingredient-chapter-v2 p {
    color: var(--product-ink-soft);
    font-size: 18px;
    max-width: 610px;
}

/* =========================
   INGREDIENT CONSTELLATION
========================= */

.ingredient-constellation-v2 {
    background: #ffffff;
}

.constellation-v2 {
    min-height: 650px;
    position: relative;
}

.constellation-v2::before {
    border: 1px solid rgba(0, 75, 79, 0.1);
    border-radius: 50%;
    content: "";
    height: 510px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 510px;
}

.constellation-center-v2 {
    align-items: center;
    display: flex;
    height: 390px;
    justify-content: center;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 390px;
}

.constellation-center-v2 img {
    filter: drop-shadow(0 30px 45px rgba(0, 45, 44, 0.16));
    max-height: 100%;
    object-fit: contain;
}

.constellation-item {
    align-items: center;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 75, 79, 0.12);
    border-radius: 22px;
    box-shadow: var(--product-shadow-sm);
    cursor: pointer;
    display: grid;
    gap: 8px;
    justify-items: center;
    padding: 15px;
    position: absolute;
    transition: border-color var(--product-transition), box-shadow var(--product-transition), transform var(--product-transition);
    width: 164px;
}

.constellation-item img {
    height: 90px;
    object-fit: contain;
    width: 110px;
}

.constellation-item span {
    color: var(--product-emerald-deep);
    font-size: 12px;
    font-weight: 800;
    text-align: center;
}

.constellation-item:hover,
.constellation-item:focus-visible {
    border-color: rgba(212, 175, 55, 0.75);
    box-shadow: 0 20px 40px rgba(0, 75, 79, 0.14);
    outline: none;
    transform: translateY(-5px) scale(1.025);
}

.constellation-item--1 { left: 2%; top: 12%; }
.constellation-item--2 { right: 2%; top: 12%; }
.constellation-item--3 { left: 0; bottom: 8%; }
.constellation-item--4 { right: 0; bottom: 8%; }
.constellation-item--5 { left: 50%; bottom: 0; transform: translateX(-50%); }
.constellation-item--5:hover,
.constellation-item--5:focus-visible { transform: translateX(-50%) translateY(-5px) scale(1.025); }

/* =========================
   COFFEE DIFFERENCE
========================= */

.coffee-difference-v2 {
    background: var(--product-surface);
}

.difference-layout-v2 {
    display: grid;
    gap: 56px;
    grid-template-columns: 0.78fr 1.22fr;
}

.difference-copy {
    position: sticky;
    top: 124px;
}

.difference-copy h2 {
    color: var(--product-emerald-deep);
    font-size: clamp(42px, 5vw, 68px);
    line-height: 0.98;
    margin: 12px 0 20px;
}

.difference-copy > p:last-child {
    color: var(--product-ink-soft);
    font-size: 17px;
}

.difference-panels-v2 {
    display: grid;
    gap: 18px;
}

.difference-panel-v2 {
    background: #ffffff;
    border: 1px solid var(--product-line);
    border-radius: 26px;
    min-height: 240px;
    padding: 34px;
    position: relative;
    transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(var(--tilt-lift, 0px));
    transition: border-color var(--product-transition), box-shadow var(--product-transition), transform 180ms ease;
}

.difference-panel-v2:hover {
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: var(--product-shadow-md);
}

.difference-panel-v2 > span {
    color: var(--product-gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.difference-panel-v2 h3 {
    color: var(--product-emerald-deep);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 34px;
    line-height: 1.08;
    margin: 12px 0 16px;
}

.difference-panel-v2 p {
    color: var(--product-ink-soft);
    font-size: 16px;
}

/* =========================
   HOT / ICED VISUALS
========================= */

.enjoy-grid--visual {
    align-items: stretch;
}

.enjoy-card-visual {
    background: #0a3838;
    min-height: 570px;
    overflow: hidden;
    position: relative;
}

.enjoy-card-visual > img {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    transition: transform 650ms cubic-bezier(.2,.7,.2,1), filter 350ms ease;
    width: 100%;
}

.enjoy-card-overlay {
    background: linear-gradient(180deg, rgba(0, 28, 28, 0.02) 18%, rgba(0, 30, 29, 0.78) 100%);
    inset: 0;
    position: absolute;
}

.enjoy-card-visual .enjoy-card-content {
    bottom: 0;
    color: #fff;
    left: 0;
    padding: 34px;
    position: absolute;
    right: 0;
    z-index: 2;
}

.enjoy-card-visual .enjoy-label {
    color: var(--product-gold-light);
}

.enjoy-card-visual h3 {
    color: #fff;
    font-family: "DM Sans", Arial, sans-serif;
    font-size: clamp(48px, 5vw, 76px);
    letter-spacing: -0.05em;
}

.enjoy-card-visual p {
    color: rgba(255, 255, 255, 0.84);
    max-width: 520px;
}

.enjoy-card-visual:hover > img,
.enjoy-card-visual.is-active > img {
    transform: scale(1.045);
}

/* =========================
   PRODUCT FORMAT / SACHET
========================= */

.product-format-section--v2 {
    background: #ffffff;
}

.product-format-v2 {
    align-items: start;
    display: grid;
    gap: clamp(48px, 8vw, 100px);
    grid-template-columns: 0.92fr 1.08fr;
}

.sachet-visual-v2 {
    display: grid;
    gap: 22px;
}

.model-stage--sachet {
    background: linear-gradient(145deg, #fbfbf8, #eef5f2);
    border: 1px solid var(--product-line);
    border-radius: 34px;
    box-shadow: var(--product-shadow-md);
    min-height: 580px;
}

.model-stage--sachet .model-fallback-image {
    object-fit: cover;
}

.sachet-note-v2 {
    background: var(--product-emerald-soft);
    border-radius: 22px;
    padding: 24px;
}

.sachet-note-v2 h3 {
    color: var(--product-emerald-deep);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 36px;
    line-height: 1.02;
    margin: 8px 0 12px;
}

.sachet-note-v2 > p:last-child {
    color: var(--product-ink-soft);
}

.format-facts-v2 {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, 1fr);
    margin: 30px 0;
}

.format-facts-v2 article {
    border: 1px solid var(--product-line);
    border-radius: 18px;
    padding: 20px;
}

.format-facts-v2 strong {
    color: var(--product-gold);
    display: block;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 30px;
}

.format-facts-v2 span {
    color: var(--product-muted);
    font-size: 12px;
    font-weight: 700;
}

.product-info-mini-v2 {
    border-top: 1px solid var(--product-line);
    display: grid;
    gap: 22px;
    grid-template-columns: 150px 1fr;
    padding-top: 28px;
}

.product-info-mini-v2 > img {
    border-radius: 18px;
    height: 150px;
    object-fit: cover;
    width: 150px;
}

.product-info-mini-v2 dl {
    margin: 0;
}

.product-info-mini-v2 dl > div {
    align-items: center;
    border-bottom: 1px solid var(--product-line);
    display: flex;
    gap: 18px;
    justify-content: space-between;
    padding: 10px 0;
}

.product-info-mini-v2 dt {
    color: var(--product-muted);
    font-size: 12px;
    font-weight: 700;
}

.product-info-mini-v2 dd {
    color: var(--product-emerald-deep);
    font-size: 13px;
    font-weight: 800;
    margin: 0;
    text-align: right;
}

/* =========================
   COFFEE RITUAL
========================= */

.ritual-section-v2 {
    background: var(--product-surface);
}

.ritual-layout-v2 {
    align-items: center;
    display: grid;
    gap: clamp(42px, 7vw, 86px);
    grid-template-columns: 1.12fr 0.88fr;
}

.ritual-media-v2 {
    border-radius: 32px;
    box-shadow: var(--product-shadow-md);
    min-height: 480px;
    overflow: hidden;
    position: relative;
}

.ritual-media-v2 > img,
.ritual-video-v2 {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%;
}

.ritual-video-v2 {
    opacity: 0;
    transition: opacity 300ms ease;
}

.ritual-media-v2.is-video-ready .ritual-video-v2 {
    opacity: 1;
}

.ritual-media-badge {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    bottom: 18px;
    color: var(--product-emerald-deep);
    font-size: 10px;
    font-weight: 800;
    left: 18px;
    letter-spacing: 0.12em;
    padding: 9px 12px;
    position: absolute;
    z-index: 3;
}

.ritual-copy h2 {
    color: var(--product-emerald-deep);
    font-size: clamp(44px, 5vw, 68px);
    line-height: 0.98;
    margin: 12px 0 20px;
}

.ritual-copy > p:last-child {
    color: var(--product-ink-soft);
    font-size: 17px;
}

/* =========================
   PACKAGE EXPLORER
========================= */

.package-explorer-v2 {
    background: #ffffff;
}

.package-explorer-layout-v2 {
    align-items: center;
    display: grid;
    gap: clamp(46px, 8vw, 100px);
    grid-template-columns: 0.72fr 1.28fr;
}

.explorer-copy h2 {
    color: var(--product-emerald-deep);
    font-size: clamp(46px, 5.4vw, 72px);
    line-height: 0.96;
    margin: 12px 0 20px;
}

.explorer-copy > p:last-of-type {
    color: var(--product-ink-soft);
    font-size: 17px;
}

.explorer-tabs-v2,
.explorer-controls-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.explorer-tabs-v2 button,
.explorer-controls-v2 button {
    background: #fff;
    border: 1px solid var(--product-line);
    border-radius: 999px;
    color: var(--product-emerald-deep);
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    padding: 10px 15px;
    transition: background var(--product-transition), border-color var(--product-transition), color var(--product-transition), transform var(--product-transition);
}

.explorer-tabs-v2 button:hover,
.explorer-tabs-v2 button:focus-visible,
.explorer-controls-v2 button:hover,
.explorer-controls-v2 button:focus-visible,
.explorer-tabs-v2 button.is-active {
    background: var(--product-emerald-deep);
    border-color: var(--product-emerald-deep);
    color: #fff;
    outline: none;
    transform: translateY(-1px);
}

.model-stage--explorer {
    background: linear-gradient(145deg, #fafbf9, #eff5f2);
    border: 1px solid var(--product-line);
    border-radius: 38px;
    box-shadow: var(--product-shadow-md);
    min-height: 650px;
}

.model-stage--explorer .model-fallback-image {
    object-fit: contain;
    padding: 34px;
}

/* =========================
   QUICK REFERENCE
========================= */

.ingredient-reference-v2 {
    background: var(--product-emerald-deep);
    color: #fff;
}

.reference-layout-v2 {
    display: grid;
    gap: clamp(44px, 7vw, 90px);
    grid-template-columns: 0.76fr 1.24fr;
}

.reference-heading {
    position: sticky;
    top: 124px;
}

.reference-heading .eyebrow {
    color: var(--product-gold-light);
}

.reference-heading h2 {
    color: #fff;
    font-size: clamp(46px, 5vw, 68px);
    line-height: 0.98;
    margin: 12px 0 20px;
}

.reference-heading > p:last-child {
    color: rgba(255, 255, 255, 0.68);
}

.reference-item-v2 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
}

.reference-item-v2:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.reference-item-v2 summary {
    align-items: center;
    cursor: pointer;
    display: grid;
    gap: 20px;
    grid-template-columns: auto 1fr;
    list-style: none;
    padding: 22px 0;
}

.reference-item-v2 summary::-webkit-details-marker {
    display: none;
}

.reference-item-v2 summary span {
    color: var(--product-gold-light);
    font-size: 11px;
    font-weight: 800;
}

.reference-item-v2 summary strong {
    font-size: 20px;
}

.reference-item-v2 p {
    color: rgba(255, 255, 255, 0.7);
    padding: 0 0 24px 40px;
}

.final-cta-section--product {
    position: relative;
}

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

@media (max-width: 1040px) {
    .ingredient-story-v2,
    .difference-layout-v2,
    .product-format-v2,
    .ritual-layout-v2,
    .package-explorer-layout-v2,
    .reference-layout-v2 {
        grid-template-columns: 1fr;
    }

    .ingredient-stage-v2,
    .difference-copy,
    .reference-heading {
        position: relative;
        top: auto;
    }

    .ingredient-stage-v2 {
        aspect-ratio: 1.2;
        min-height: 500px;
    }

    .ingredient-chapter-v2 {
        min-height: auto;
        padding: 42px 0;
    }

    .difference-copy {
        max-width: 760px;
    }

    .constellation-v2 {
        min-height: 760px;
    }

    .product-format-v2,
    .ritual-layout-v2,
    .package-explorer-layout-v2 {
        max-width: 820px;
    }

    .model-stage--sachet,
    .model-stage--explorer {
        min-height: 560px;
    }
}

@media (max-width: 760px) {
    section[id] {
        scroll-margin-top: 82px;
    }

    .model-stage--hero {
        min-height: 430px;
    }

    .model-status {
        bottom: 14px;
        font-size: 10px;
    }

    .ingredient-stage-v2 {
        aspect-ratio: 1;
        border-radius: 28px;
        min-height: 380px;
    }

    .ingredient-stage-image {
        max-height: 58%;
        max-width: 78%;
    }

    .ingredient-stage-word {
        font-size: clamp(48px, 16vw, 78px);
    }

    .ingredient-chapter-v2 h3 {
        font-size: 38px;
    }

    .ingredient-chapter-v2 p {
        font-size: 16px;
    }

    .constellation-v2 {
        display: grid;
        gap: 14px;
        min-height: auto;
    }

    .constellation-v2::before {
        display: none;
    }

    .constellation-center-v2 {
        height: auto;
        left: auto;
        margin: 0 auto 12px;
        order: -1;
        position: relative;
        top: auto;
        transform: none;
        width: min(100%, 360px);
    }

    .constellation-item,
    .constellation-item--1,
    .constellation-item--2,
    .constellation-item--3,
    .constellation-item--4,
    .constellation-item--5 {
        align-items: center;
        display: grid;
        grid-template-columns: 72px 1fr;
        justify-items: start;
        left: auto;
        position: relative;
        right: auto;
        top: auto;
        bottom: auto;
        transform: none;
        width: 100%;
    }

    .constellation-item img {
        height: 60px;
        width: 60px;
    }

    .constellation-item span {
        text-align: left;
    }

    .constellation-item--5:hover,
    .constellation-item--5:focus-visible,
    .constellation-item:hover,
    .constellation-item:focus-visible {
        transform: translateY(-2px);
    }

    .enjoy-card-visual {
        min-height: 470px;
    }

    .format-facts-v2 {
        grid-template-columns: 1fr;
    }

    .product-info-mini-v2 {
        grid-template-columns: 1fr;
    }

    .product-info-mini-v2 > img {
        height: 220px;
        width: 100%;
    }

    .ritual-media-v2 {
        min-height: 380px;
    }

    .model-stage--sachet,
    .model-stage--explorer {
        min-height: 460px;
    }

    .reference-item-v2 p {
        padding-left: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .product-model,
    .model-fallback-image,
    .ingredient-stage-image,
    .ingredient-stage-word,
    .enjoy-card-visual > img,
    .constellation-item,
    .difference-panel-v2 {
        transition: none !important;
    }
}

/* =========================================================
   PRODUCTS EXPERIENCE V3
   Additive visual layer built on top of the validated V2 CSS.
   Existing selectors and CMS hooks remain intact.
========================================================= */

:root {
    --v3-ivory: #fbfaf6;
    --v3-paper: #f4f3ed;
    --v3-emerald: #004b4f;
    --v3-emerald-bright: #006b6f;
    --v3-emerald-ink: #083d3f;
    --v3-gold: #c79a33;
    --v3-gold-soft: #ead59a;
    --v3-ink: #172321;
    --v3-muted: #62706d;
    --v3-line: rgba(6, 72, 73, 0.12);
    --v3-shadow: 0 38px 100px rgba(23, 57, 52, 0.12);
    --v3-shadow-soft: 0 18px 60px rgba(23, 57, 52, 0.08);
    --v3-radius-xl: clamp(30px, 4vw, 64px);
    --v3-hero-progress: 0;
}

body.products-page--v3 {
    background:
        radial-gradient(circle at 12% 8%, rgba(227, 214, 170, 0.16), transparent 28rem),
        var(--v3-ivory);
    color: var(--v3-ink);
}

.products-page--v3 main {
    overflow: clip;
}

.products-page--v3 .content-section {
    padding-bottom: clamp(92px, 11vw, 170px);
    padding-top: clamp(92px, 11vw, 170px);
}

.products-page--v3 section[id] {
    scroll-margin-top: 92px;
}

.products-page--v3 .eyebrow {
    color: var(--v3-emerald-bright);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.products-page--v3 .section-heading h2,
.products-page--v3 .functional-copy h2,
.products-page--v3 .difference-copy h2,
.products-page--v3 .reference-heading h2,
.products-page--v3 .faq-copy h2,
.products-page--v3 .explorer-copy h2,
.products-page--v3 .ritual-copy-v2 h2,
.products-page--v3 .format-copy h2 {
    color: var(--v3-ink);
    font-size: clamp(42px, 5.4vw, 78px);
    letter-spacing: -0.045em;
    line-height: 0.98;
}

.products-page--v3 .section-heading > p:last-child,
.products-page--v3 .functional-copy > p:not(.eyebrow):not(.product-disclaimer),
.products-page--v3 .difference-copy > p:not(.eyebrow),
.products-page--v3 .reference-heading > p:not(.eyebrow),
.products-page--v3 .faq-copy > p:not(.eyebrow),
.products-page--v3 .explorer-copy > p:not(.eyebrow) {
    color: var(--v3-muted);
    font-size: clamp(16px, 1.35vw, 19px);
    line-height: 1.72;
}

/* ---------------------------------------------------------
   V3 JOURNEY INDICATOR
--------------------------------------------------------- */

.product-journey-v3 {
    align-items: center;
    bottom: 36px;
    display: flex;
    gap: 10px;
    left: 32px;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transform: translateY(8px);
    transition: opacity 260ms ease, transform 260ms ease;
    z-index: 80;
}

.products-page--v3.is-journey-visible .product-journey-v3 {
    opacity: 1;
    transform: translateY(0);
}

.product-journey-index,
.product-journey-label {
    color: rgba(15, 55, 53, 0.78);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.product-journey-track {
    background: rgba(0, 75, 79, 0.14);
    border-radius: 999px;
    height: 2px;
    overflow: hidden;
    position: relative;
    width: 72px;
}

.product-journey-track i {
    background: linear-gradient(90deg, var(--v3-gold), var(--v3-emerald-bright));
    display: block;
    height: 100%;
    transform: scaleX(0.08);
    transform-origin: left center;
    transition: transform 420ms cubic-bezier(.2,.75,.25,1);
    width: 100%;
}

/* ---------------------------------------------------------
   HERO — product first, typography second
--------------------------------------------------------- */

.product-hero--v3 {
    align-items: center;
    background:
        radial-gradient(circle at 75% 50%, rgba(203, 171, 86, 0.18), transparent 24rem),
        radial-gradient(circle at 65% 45%, rgba(0, 107, 111, 0.08), transparent 36rem),
        linear-gradient(180deg, #fffefa 0%, #f8f7f1 100%);
    display: flex;
    min-height: max(800px, 100svh);
    overflow: clip;
    padding: 118px 0 70px;
    position: relative;
}

.product-hero--v3::before {
    background-image:
        linear-gradient(rgba(0, 75, 79, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 75, 79, 0.045) 1px, transparent 1px);
    background-size: 72px 72px;
    content: "";
    inset: 0;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 88%);
    opacity: 0.38;
    pointer-events: none;
    position: absolute;
}

.product-hero--v3 .product-grain {
    opacity: 0.1;
}

.product-hero-word-v3 {
    bottom: -0.1em;
    color: rgba(0, 75, 79, 0.035);
    font-family: "DM Sans", Arial, sans-serif;
    font-size: clamp(120px, 20vw, 350px);
    font-weight: 800;
    left: 50%;
    letter-spacing: -0.09em;
    line-height: 0.75;
    pointer-events: none;
    position: absolute;
    transform: translate3d(-50%, calc(var(--v3-hero-progress) * 30px), 0);
    user-select: none;
    white-space: nowrap;
}

.product-hero--v3 .product-hero-layout {
    align-items: center;
    display: grid;
    gap: clamp(36px, 5vw, 74px);
    grid-template-columns: minmax(0, 0.8fr) minmax(460px, 1.2fr);
    max-width: 1370px;
    position: relative;
    z-index: 2;
}

.product-hero--v3 .product-hero-copy {
    max-width: 590px;
    padding: 24px 0 42px;
    position: relative;
    z-index: 4;
}

.product-hero--v3 .product-hero-copy::before {
    background: linear-gradient(180deg, var(--v3-gold), transparent);
    content: "";
    height: 62px;
    left: -30px;
    opacity: 0.68;
    position: absolute;
    top: 23px;
    width: 2px;
}

.product-hero--v3 .product-hero-copy h1 {
    color: var(--v3-ink);
    font-size: clamp(54px, 6.2vw, 92px);
    letter-spacing: -0.06em;
    line-height: 0.94;
    margin-top: 20px;
    max-width: 720px;
}

.product-hero--v3 .product-hero-copy h1 span {
    color: var(--v3-emerald);
    display: inline;
}

.product-hero--v3 .product-hero-description {
    color: var(--v3-muted);
    font-size: clamp(16px, 1.35vw, 19px);
    line-height: 1.75;
    margin-top: 30px;
    max-width: 530px;
}

.product-hero--v3 .product-hero-actions {
    margin-top: 34px;
}

.product-hero--v3 .button {
    min-height: 52px;
    padding-inline: 24px;
}

.product-hero--v3 .product-hero-notes {
    border-top: 1px solid var(--v3-line);
    display: grid;
    gap: 10px 16px;
    grid-template-columns: repeat(2, max-content);
    margin-top: 42px;
    max-width: 520px;
    padding-top: 20px;
}

.product-hero--v3 .product-hero-notes span {
    align-items: center;
    color: rgba(28, 57, 54, 0.74);
    display: inline-flex;
    font-size: 11px;
    font-weight: 800;
    gap: 8px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-hero--v3 .product-hero-notes span::before {
    background: var(--v3-gold);
    border-radius: 50%;
    content: "";
    height: 5px;
    width: 5px;
}

.product-hero--v3 .product-hero-visual--interactive {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 650px;
    position: relative;
    transform: translate3d(0, calc(var(--v3-hero-progress) * -12px), 0);
}

.product-hero--v3 .model-stage--hero {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    height: min(72svh, 720px);
    max-height: 760px;
    min-height: 620px;
    overflow: visible;
    width: min(100%, 700px);
}

.product-hero--v3 .model-stage--hero::before {
    background: radial-gradient(ellipse, rgba(0, 75, 79, 0.14), rgba(0, 75, 79, 0) 68%);
    bottom: 2%;
    content: "";
    filter: blur(12px);
    height: 16%;
    left: 18%;
    position: absolute;
    width: 64%;
    z-index: 0;
}

.product-hero--v3 .product-model--hero,
.product-hero--v3 .model-stage--hero .model-fallback-image {
    filter: drop-shadow(0 36px 34px rgba(10, 48, 44, 0.17));
    transform: scale(1.06);
    transform-origin: center;
}

.product-hero--v3 .model-stage--hero.is-model-ready .product-model--hero {
    animation: product-float-v3 7.5s ease-in-out infinite;
}

@keyframes product-float-v3 {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1.06); }
    50% { transform: translate3d(0, -12px, 0) scale(1.06); }
}

.product-hero--v3 .product-stage-glow {
    background:
        radial-gradient(circle, rgba(234, 213, 154, 0.34), transparent 62%);
    filter: blur(2px);
    height: 560px;
    left: 50%;
    opacity: 0.9;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 560px;
}

.product-hero--v3 .product-format-card--v2,
.product-hero--v3 .product-routine-card--v2 {
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(255,255,255,0.72);
    border-radius: 20px;
    box-shadow: 0 18px 54px rgba(29, 64, 60, 0.09);
    padding: 15px 18px;
}

.product-hero--v3 .product-format-card--v2 {
    left: -18px;
    top: 20%;
}

.product-hero--v3 .product-routine-card--v2 {
    bottom: 18%;
    right: -4px;
}

.product-hero--v3 .model-status {
    background: rgba(255,255,255,0.72);
    bottom: 2px;
    opacity: 0.78;
}

.product-hero-scroll-v3 {
    align-items: center;
    bottom: 26px;
    display: flex;
    gap: 10px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    z-index: 5;
}

.product-hero-scroll-v3 span {
    color: rgba(28, 57, 54, 0.5);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.product-hero-scroll-v3 i {
    border: 1px solid rgba(0, 75, 79, 0.24);
    border-radius: 999px;
    height: 28px;
    position: relative;
    width: 16px;
}

.product-hero-scroll-v3 i::after {
    animation: scroll-dot-v3 1.8s ease-in-out infinite;
    background: var(--v3-gold);
    border-radius: 50%;
    content: "";
    height: 3px;
    left: 50%;
    position: absolute;
    top: 5px;
    transform: translateX(-50%);
    width: 3px;
}

@keyframes scroll-dot-v3 {
    0% { opacity: 0; transform: translate(-50%, 0); }
    25% { opacity: 1; }
    75% { opacity: 1; }
    100% { opacity: 0; transform: translate(-50%, 11px); }
}

/* ---------------------------------------------------------
   OVERVIEW — editorial visual, no card-heavy appearance
--------------------------------------------------------- */

.product-overview-section--v3 {
    background: var(--v3-ivory);
    position: relative;
}

.product-overview-section--v3::before {
    background: var(--v3-line);
    content: "";
    height: 1px;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: min(calc(100% - 56px), 1200px);
}

.product-overview-section--v3 .product-overview-layout {
    align-items: center;
    gap: clamp(54px, 8vw, 118px);
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.product-overview-section--v3 .coffee-image-frame--product {
    background: transparent;
    border: 0;
    border-radius: var(--v3-radius-xl);
    box-shadow: none;
    overflow: hidden;
    position: relative;
}

.product-overview-section--v3 .coffee-image-frame--product::after {
    border: 1px solid rgba(255,255,255,0.66);
    border-radius: inherit;
    content: "";
    inset: 18px;
    pointer-events: none;
    position: absolute;
}

.product-overview-section--v3 .coffee-lifestyle-image {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    transition: transform 900ms cubic-bezier(.2,.7,.2,1);
}

.product-overview-section--v3 .product-overview-visual:hover .coffee-lifestyle-image {
    transform: scale(1.025);
}

.product-overview-section--v3 .coffee-lifestyle-note {
    backdrop-filter: blur(18px);
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(255,255,255,0.75);
    border-radius: 18px;
    bottom: 28px;
    box-shadow: 0 18px 50px rgba(14, 49, 46, 0.09);
    left: 28px;
    max-width: 300px;
    padding: 17px 20px;
    position: absolute;
}

.product-overview-section--v3 .product-overview-copy h2 {
    font-size: clamp(45px, 5vw, 74px);
    letter-spacing: -0.05em;
    line-height: 0.98;
}

.product-overview-section--v3 .product-overview-copy > p:not(.eyebrow) {
    color: var(--v3-muted);
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.76;
}

/* ---------------------------------------------------------
   HIGHLIGHTS — quiet horizontal rhythm instead of cards
--------------------------------------------------------- */

.product-highlights-section--v3 {
    background: #f2f4ef;
    position: relative;
}

.product-highlights-section--v3 .centered-heading {
    margin-bottom: 70px;
    max-width: 920px;
}

.product-highlights-section--v3 .highlight-grid--v2 {
    border-bottom: 1px solid var(--v3-line);
    border-top: 1px solid var(--v3-line);
    gap: 0;
    grid-template-columns: repeat(4, 1fr);
}

.product-highlights-section--v3 .highlight-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    min-height: 260px;
    padding: 38px 30px 34px;
    position: relative;
}

.product-highlights-section--v3 .highlight-card + .highlight-card {
    border-left: 1px solid var(--v3-line);
}

.product-highlights-section--v3 .highlight-card::before {
    background: var(--v3-emerald);
    bottom: -1px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 420ms cubic-bezier(.2,.7,.2,1);
    width: 100%;
}

.product-highlights-section--v3 .highlight-card:hover::before,
.product-highlights-section--v3 .highlight-card:focus-within::before {
    transform: scaleX(1);
}

.product-highlights-section--v3 .highlight-number {
    color: var(--v3-gold);
    font-size: 11px;
    letter-spacing: 0.18em;
}

.product-highlights-section--v3 .highlight-card h3 {
    color: var(--v3-emerald-ink);
    font-size: clamp(20px, 2vw, 28px);
    margin-top: 50px;
}

.product-highlights-section--v3 .highlight-card p {
    color: var(--v3-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-top: 14px;
}

/* ---------------------------------------------------------
   INGREDIENT STORY — cinematic sticky canvas
--------------------------------------------------------- */

.functional-blend-section--v3 {
    background: #f9f7f0;
    padding-bottom: 0 !important;
    position: relative;
}

.functional-blend-section--v3::before {
    background:
        radial-gradient(circle at 18% 35%, rgba(212, 175, 55, 0.14), transparent 26rem),
        radial-gradient(circle at 80% 55%, rgba(0, 107, 111, 0.07), transparent 30rem);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.functional-blend-section--v3 > .products-shell {
    position: relative;
    z-index: 1;
}

.functional-blend-section--v3 .functional-copy--intro {
    margin-bottom: clamp(80px, 10vw, 140px);
    max-width: 820px;
}

.functional-blend-section--v3 .product-disclaimer {
    border-left: 2px solid var(--v3-gold);
    color: rgba(62, 78, 75, 0.76);
    font-size: 12px;
    margin-top: 30px;
    max-width: 690px;
    padding: 5px 0 5px 16px;
}

.functional-blend-section--v3 .ingredient-story-heading {
    margin-bottom: 40px;
    max-width: 900px;
}

.functional-blend-section--v3 .ingredient-story-v2 {
    align-items: start;
    display: grid;
    gap: 0;
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
}

.functional-blend-section--v3 .ingredient-stage-column {
    min-height: 500vh;
    position: relative;
}

.functional-blend-section--v3 .ingredient-stage-v2 {
    background:
        radial-gradient(circle at 50% 46%, rgba(255,255,255,0.94), rgba(238, 239, 229, 0.86) 54%, rgba(229, 232, 218, 0.78));
    border: 0;
    border-radius: 0;
    box-shadow: none;
    height: 100svh;
    min-height: 720px;
    overflow: hidden;
    position: sticky;
    top: 0;
}

.functional-blend-section--v3 .ingredient-stage-v2::before {
    background-image:
        linear-gradient(rgba(0,75,79,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,75,79,0.045) 1px, transparent 1px);
    background-size: 78px 78px;
    content: "";
    inset: 0;
    mask-image: radial-gradient(circle, black, transparent 76%);
    opacity: 0.45;
    pointer-events: none;
    position: absolute;
}

.functional-blend-section--v3 .ingredient-stage-orbit {
    border: 1px solid rgba(0, 75, 79, 0.14);
    border-radius: 50%;
    height: min(60vw, 630px);
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(60vw, 630px);
}

.functional-blend-section--v3 .ingredient-stage-orbit::before,
.functional-blend-section--v3 .ingredient-stage-orbit::after {
    border: 1px solid rgba(199, 154, 51, 0.18);
    border-radius: 50%;
    content: "";
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.functional-blend-section--v3 .ingredient-stage-orbit::before {
    height: 72%;
    width: 72%;
}

.functional-blend-section--v3 .ingredient-stage-orbit::after {
    height: 118%;
    width: 118%;
}

.functional-blend-section--v3 .ingredient-stage-product-v3 {
    filter: drop-shadow(0 36px 42px rgba(10, 50, 46, 0.17));
    height: 62%;
    left: 50%;
    object-fit: contain;
    position: absolute;
    top: 51%;
    transform: translate(-50%, -50%);
    transition: transform 650ms cubic-bezier(.2,.7,.2,1), filter 650ms ease;
    width: 47%;
    z-index: 3;
}

.functional-blend-section--v3 .ingredient-stage-image {
    filter: drop-shadow(0 26px 38px rgba(27, 56, 51, 0.12));
    height: 44%;
    left: 59%;
    max-height: none;
    max-width: none;
    object-fit: contain;
    opacity: 1;
    position: absolute;
    top: 43%;
    transform: translate3d(0, -50%, 0) rotate(2deg) scale(1);
    width: 42%;
    z-index: 4;
}

.functional-blend-section--v3 .ingredient-stage-v2.is-swapping .ingredient-stage-image {
    opacity: 0;
    transform: translate3d(40px, -48%, 0) rotate(5deg) scale(0.92);
}

.functional-blend-section--v3 .ingredient-stage-word {
    bottom: 12%;
    color: rgba(0, 75, 79, 0.065);
    font-family: "DM Sans", Arial, sans-serif;
    font-size: clamp(84px, 12vw, 188px);
    font-weight: 800;
    left: 6%;
    letter-spacing: -0.07em;
    line-height: 0.8;
    max-width: 88%;
    overflow: visible;
    position: absolute;
    text-align: left;
    top: auto;
    transform: none;
    white-space: nowrap;
    z-index: 1;
}

.functional-blend-section--v3 .ingredient-stage-footer {
    bottom: 42px;
    left: 48px;
    position: absolute;
    z-index: 6;
}

.functional-blend-section--v3 .ingredient-stage-footer span {
    color: var(--v3-gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.functional-blend-section--v3 .ingredient-stage-footer strong {
    color: var(--v3-emerald-ink);
    display: block;
    font-size: clamp(18px, 1.6vw, 23px);
    margin-top: 4px;
}

.ingredient-story-rail-v3 {
    bottom: 44px;
    display: flex;
    gap: 6px;
    position: absolute;
    right: 42px;
    z-index: 8;
}

.ingredient-story-rail-v3 span {
    background: rgba(0, 75, 79, 0.14);
    border-radius: 999px;
    height: 3px;
    transition: background 300ms ease, width 300ms ease;
    width: 18px;
}

.ingredient-story-rail-v3 span.is-active {
    background: var(--v3-gold);
    width: 38px;
}

.functional-blend-section--v3 .ingredient-chapters-v2 {
    background: var(--v3-emerald);
    display: block;
    min-width: 0;
}

.functional-blend-section--v3 .ingredient-chapter-v2 {
    align-content: center;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    border-radius: 0;
    color: #fff;
    display: grid;
    min-height: 100svh;
    padding: clamp(80px, 9vw, 140px) clamp(38px, 6vw, 90px);
    position: relative;
    transition: background 500ms ease;
}

.functional-blend-section--v3 .ingredient-chapter-v2::before {
    background: radial-gradient(circle at 12% 50%, rgba(234, 213, 154, 0.12), transparent 30rem);
    content: "";
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transition: opacity 500ms ease;
}

.functional-blend-section--v3 .ingredient-chapter-v2.is-active::before {
    opacity: 1;
}

.functional-blend-section--v3 .ingredient-chapter-number {
    color: rgba(255,255,255,0.44);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.functional-blend-section--v3 .ingredient-chapter-word {
    color: var(--v3-gold-soft);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    margin-top: 40px;
    text-transform: uppercase;
}

.functional-blend-section--v3 .ingredient-chapter-v2 h3 {
    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(46px, 5vw, 78px);
    letter-spacing: -0.045em;
    line-height: 0.98;
    margin-top: 16px;
    max-width: 620px;
}

.functional-blend-section--v3 .ingredient-chapter-v2 p {
    color: rgba(255,255,255,0.72);
    font-size: clamp(16px, 1.35vw, 19px);
    line-height: 1.75;
    margin-top: 24px;
    max-width: 540px;
}

/* ---------------------------------------------------------
   FIVE TOGETHER — constellation without a giant card
--------------------------------------------------------- */

.ingredient-constellation-v3 {
    background: #f3f0e6;
    min-height: 960px;
    overflow: hidden;
    position: relative;
}

.ingredient-constellation-v3::before {
    background: radial-gradient(circle, rgba(199,154,51,0.13), transparent 58%);
    content: "";
    height: 900px;
    left: 50%;
    position: absolute;
    top: 55%;
    transform: translate(-50%, -50%);
    width: 900px;
}

.ingredient-constellation-v3 .centered-heading {
    max-width: 880px;
    position: relative;
    z-index: 2;
}

.ingredient-constellation-v3 .constellation-v2 {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    height: min(720px, 65vw);
    margin-top: 44px;
    min-height: 590px;
    position: relative;
}

.ingredient-constellation-v3 .constellation-center-v2 {
    background: transparent;
    border: 0;
    box-shadow: none;
    height: 70%;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 42%;
}

.ingredient-constellation-v3 .constellation-center-v2::before,
.ingredient-constellation-v3 .constellation-center-v2::after {
    border: 1px solid rgba(0,75,79,0.13);
    border-radius: 50%;
    content: "";
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.ingredient-constellation-v3 .constellation-center-v2::before {
    height: 96%;
    width: 96%;
}

.ingredient-constellation-v3 .constellation-center-v2::after {
    border-color: rgba(199,154,51,0.18);
    height: 125%;
    width: 125%;
}

.ingredient-constellation-v3 .constellation-center-v2 img {
    filter: drop-shadow(0 30px 38px rgba(9,47,43,0.15));
    height: 100%;
    object-fit: contain;
    position: relative;
    width: 100%;
    z-index: 2;
}

.ingredient-constellation-v3 .constellation-item {
    backdrop-filter: blur(14px);
    background: rgba(255,255,255,0.64);
    border: 1px solid rgba(255,255,255,0.82);
    border-radius: 999px;
    box-shadow: var(--v3-shadow-soft);
    display: grid;
    gap: 10px;
    grid-template-columns: 62px auto;
    min-height: 76px;
    padding: 7px 18px 7px 7px;
    position: absolute;
    text-align: left;
    transition: transform 350ms cubic-bezier(.2,.7,.2,1), opacity 350ms ease, box-shadow 350ms ease;
    width: auto;
}

.ingredient-constellation-v3 .constellation-item img {
    background: rgba(255,255,255,0.72);
    border-radius: 50%;
    height: 62px;
    object-fit: contain;
    width: 62px;
}

.ingredient-constellation-v3 .constellation-item span {
    align-self: center;
    color: var(--v3-emerald-ink);
    font-size: 12px;
    font-weight: 800;
    max-width: 150px;
}

.ingredient-constellation-v3 .constellation-item--1 { left: 2%; top: 15%; }
.ingredient-constellation-v3 .constellation-item--2 { right: 2%; top: 18%; }
.ingredient-constellation-v3 .constellation-item--3 { left: 0; top: 58%; }
.ingredient-constellation-v3 .constellation-item--4 { right: 0; top: 61%; }
.ingredient-constellation-v3 .constellation-item--5 { bottom: 2%; left: 50%; transform: translateX(-50%); }

.ingredient-constellation-v3 .constellation-item:hover,
.ingredient-constellation-v3 .constellation-item:focus-visible,
.ingredient-constellation-v3 .constellation-item.is-active {
    box-shadow: 0 24px 70px rgba(19, 58, 54, 0.16);
    transform: translateY(-7px) scale(1.02);
}

.ingredient-constellation-v3 .constellation-item--5:hover,
.ingredient-constellation-v3 .constellation-item--5:focus-visible,
.ingredient-constellation-v3 .constellation-item--5.is-active {
    transform: translate(-50%, -7px) scale(1.02);
}

/* ---------------------------------------------------------
   COFFEE RECONSIDERED — three editorial bands
--------------------------------------------------------- */

.coffee-difference-v3 {
    background: #fff;
}

.coffee-difference-v3 .difference-layout-v2 {
    display: grid;
    gap: clamp(60px, 8vw, 110px);
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
}

.coffee-difference-v3 .difference-copy {
    align-self: start;
    position: sticky;
    top: 150px;
}

.coffee-difference-v3 .difference-panels-v2 {
    border-top: 1px solid var(--v3-line);
    display: block;
}

.coffee-difference-v3 .difference-panel-v2 {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--v3-line);
    border-radius: 0;
    box-shadow: none;
    min-height: 285px;
    padding: 44px 6px;
    position: relative;
}

.coffee-difference-v3 .difference-panel-v2::before {
    background: linear-gradient(90deg, rgba(0,75,79,0.055), transparent 72%);
    content: "";
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transform: scaleX(0.92);
    transform-origin: left;
    transition: opacity 380ms ease, transform 380ms ease;
}

.coffee-difference-v3 .difference-panel-v2:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.coffee-difference-v3 .difference-panel-v2 > * {
    position: relative;
    z-index: 1;
}

.coffee-difference-v3 .difference-panel-v2 > span {
    color: var(--v3-gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.2em;
}

.coffee-difference-v3 .difference-panel-v2 h3 {
    color: var(--v3-emerald-ink);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(34px, 4vw, 58px);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-top: 18px;
    max-width: 700px;
}

.coffee-difference-v3 .difference-panel-v2 p {
    color: var(--v3-muted);
    font-size: 15px;
    line-height: 1.72;
    margin-top: 18px;
    max-width: 620px;
}

/* ---------------------------------------------------------
   HOT / ICED — full cinematic split
--------------------------------------------------------- */

.enjoy-section--v3 {
    background: var(--v3-emerald);
    color: #fff;
    padding-bottom: 0 !important;
    padding-top: clamp(90px, 10vw, 140px) !important;
}

.enjoy-section--v3 .centered-heading {
    margin-bottom: 56px;
    max-width: 900px;
}

.enjoy-section--v3 .centered-heading .eyebrow {
    color: var(--v3-gold-soft);
}

.enjoy-section--v3 .centered-heading h2 {
    color: #fff;
}

.enjoy-section--v3 .centered-heading > p:last-child {
    color: rgba(255,255,255,0.68);
}

.enjoy-section--v3 > .products-shell {
    max-width: none;
    padding: 0;
}

.enjoy-section--v3 .enjoy-grid--visual {
    display: flex;
    gap: 0;
    min-height: min(760px, 78svh);
    overflow: hidden;
}

.enjoy-section--v3 .enjoy-card-visual {
    border: 0;
    border-radius: 0;
    flex: 1 1 50%;
    min-height: 720px;
    overflow: hidden;
    transition: flex-basis 650ms cubic-bezier(.2,.7,.2,1), filter 500ms ease;
}

.enjoy-section--v3 .enjoy-card-visual + .enjoy-card-visual {
    border-left: 1px solid rgba(255,255,255,0.18);
}

.enjoy-section--v3 .enjoy-card-visual > img {
    filter: saturate(0.94) contrast(1.02);
    transform: scale(1.02);
    transition: transform 900ms cubic-bezier(.2,.7,.2,1), filter 600ms ease;
}

.enjoy-section--v3 .enjoy-card-visual:hover > img,
.enjoy-section--v3 .enjoy-card-visual.is-active > img {
    filter: saturate(1.02) contrast(1.03);
    transform: scale(1.075);
}

.enjoy-section--v3 .enjoy-card-overlay {
    background: linear-gradient(180deg, rgba(3,25,23,0.06) 25%, rgba(3,25,23,0.72) 100%);
}

.enjoy-section--v3 .enjoy-card-content {
    bottom: 48px;
    left: clamp(30px, 5vw, 74px);
    max-width: 520px;
}

.enjoy-section--v3 .enjoy-card-content h3 {
    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(58px, 7vw, 102px);
    letter-spacing: -0.05em;
    line-height: 0.86;
}

.enjoy-section--v3 .enjoy-card-content p {
    color: rgba(255,255,255,0.77);
    font-size: 15px;
    line-height: 1.7;
    margin-top: 18px;
    max-width: 390px;
}

.enjoy-section--v3 .enjoy-label {
    color: var(--v3-gold-soft);
    letter-spacing: 0.18em;
}

.enjoy-section--v3 .enjoy-grid--visual[data-v3-active="hot"] .enjoy-card[data-enjoy-card="hot"],
.enjoy-section--v3 .enjoy-grid--visual[data-v3-active="iced"] .enjoy-card[data-enjoy-card="iced"] {
    flex-basis: 62%;
}

.enjoy-section--v3 .enjoy-grid--visual[data-v3-active="hot"] .enjoy-card[data-enjoy-card="iced"],
.enjoy-section--v3 .enjoy-grid--visual[data-v3-active="iced"] .enjoy-card[data-enjoy-card="hot"] {
    flex-basis: 38%;
    filter: brightness(0.8);
}

/* ---------------------------------------------------------
   SACHET — large product reveal
--------------------------------------------------------- */

.product-format-section--v3 {
    background: linear-gradient(180deg, #fbfaf6 0%, #f4f2ea 100%);
}

.product-format-section--v3 .product-format-v2 {
    align-items: center;
    display: grid;
    gap: clamp(60px, 8vw, 110px);
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
}

.product-format-section--v3 .sachet-visual-v2 {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    min-height: 780px;
    position: relative;
}

.product-format-section--v3 .model-stage--sachet {
    background:
        radial-gradient(circle, rgba(255,255,255,0.95) 0%, rgba(236,237,226,0.6) 68%, transparent 69%);
    border: 0;
    border-radius: 50%;
    box-shadow: none;
    height: 660px;
    left: 0;
    min-height: 0;
    overflow: visible;
    position: absolute;
    top: 0;
    width: 660px;
}

.product-format-section--v3 .product-model--sachet,
.product-format-section--v3 .model-stage--sachet .model-fallback-image {
    filter: drop-shadow(0 34px 32px rgba(12, 47, 43, 0.16));
    transform: scale(0.96) rotate(-3deg);
}

.product-format-section--v3 .model-stage--sachet.is-model-ready .product-model--sachet {
    animation: sachet-float-v3 7s ease-in-out infinite;
}

@keyframes sachet-float-v3 {
    0%, 100% { transform: translateY(0) scale(0.96) rotate(-3deg); }
    50% { transform: translateY(-14px) scale(0.96) rotate(-1deg); }
}

.product-format-section--v3 .sachet-note-v2 {
    backdrop-filter: blur(18px);
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(255,255,255,0.84);
    border-radius: 24px;
    bottom: 24px;
    box-shadow: var(--v3-shadow-soft);
    max-width: 430px;
    padding: 28px 30px;
    position: absolute;
    right: 0;
    z-index: 6;
}

.product-format-section--v3 .sachet-note-v2 h3 {
    color: var(--v3-emerald-ink);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(32px, 3.4vw, 48px);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-top: 12px;
}

.product-format-section--v3 .sachet-note-v2 > p:last-child {
    color: var(--v3-muted);
    font-size: 14px;
    line-height: 1.65;
    margin-top: 16px;
}

.product-format-section--v3 .format-copy {
    max-width: 560px;
}

.product-format-section--v3 .format-facts-v2 {
    border-bottom: 1px solid var(--v3-line);
    border-top: 1px solid var(--v3-line);
    gap: 0;
    margin-top: 34px;
}

.product-format-section--v3 .format-facts-v2 article {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 24px 14px 22px 0;
}

.product-format-section--v3 .format-facts-v2 article + article {
    border-left: 1px solid var(--v3-line);
    padding-left: 22px;
}

.product-format-section--v3 .product-info-mini-v2 {
    background: rgba(255,255,255,0.65);
    border: 1px solid rgba(0,75,79,0.09);
    border-radius: 24px;
    box-shadow: none;
    margin-top: 28px;
}

/* ---------------------------------------------------------
   RITUAL — cinematic frame, video ready
--------------------------------------------------------- */

.ritual-section-v3 {
    background: #111d1b;
    color: #fff;
    padding: 0 !important;
}

.ritual-section-v3 .ritual-layout-v2 {
    display: grid;
    max-width: none;
    min-height: min(820px, 88svh);
    padding: 0;
    position: relative;
}

.ritual-section-v3 .ritual-media-v2 {
    grid-area: 1 / 1;
    min-height: inherit;
}

.ritual-section-v3 .ritual-media-v2::after {
    background:
        linear-gradient(90deg, rgba(9,26,23,0.78) 0%, rgba(9,26,23,0.35) 48%, rgba(9,26,23,0.05) 100%),
        linear-gradient(180deg, rgba(9,26,23,0.12), rgba(9,26,23,0.44));
    content: "";
    inset: 0;
    position: absolute;
    z-index: 3;
}

.ritual-section-v3 .ritual-media-v2 img,
.ritual-section-v3 .ritual-media-v2 video {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.ritual-section-v3 .ritual-copy-v2 {
    align-self: center;
    grid-area: 1 / 1;
    margin-left: max(28px, calc((100vw - 1200px) / 2 + 28px));
    max-width: 630px;
    padding: 100px 0;
    position: relative;
    z-index: 5;
}

.ritual-section-v3 .ritual-copy-v2 .eyebrow {
    color: var(--v3-gold-soft);
}

.ritual-section-v3 .ritual-copy-v2 h2 {
    color: #fff;
    font-size: clamp(48px, 6vw, 86px);
}

.ritual-section-v3 .ritual-copy-v2 > p:not(.eyebrow) {
    color: rgba(255,255,255,0.72);
    font-size: 17px;
    line-height: 1.75;
    margin-top: 24px;
    max-width: 540px;
}

.ritual-section-v3 .video-status-v2 {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.8);
}

/* ---------------------------------------------------------
   PACKAGE EXPLORER — studio stage
--------------------------------------------------------- */

.package-explorer-v3 {
    background: #f7f6f0;
}

.package-explorer-v3 .package-explorer-layout-v2 {
    align-items: center;
    gap: clamp(60px, 8vw, 110px);
    grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
    max-width: 1320px;
}

.package-explorer-v3 .explorer-copy {
    max-width: 520px;
}

.package-explorer-v3 .explorer-tabs-v2,
.package-explorer-v3 .explorer-controls-v2 {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--v3-line);
    border-radius: 0;
    display: flex;
    gap: 4px;
    padding: 0;
}

.package-explorer-v3 .explorer-tabs-v2 {
    margin-top: 34px;
}

.package-explorer-v3 .explorer-tabs-v2 button,
.package-explorer-v3 .explorer-controls-v2 button {
    background: transparent;
    border: 0;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    color: var(--v3-muted);
    padding: 13px 16px 11px;
}

.package-explorer-v3 .explorer-tabs-v2 button.is-active,
.package-explorer-v3 .explorer-tabs-v2 button:hover,
.package-explorer-v3 .explorer-controls-v2 button:hover {
    background: transparent;
    border-bottom-color: var(--v3-gold);
    color: var(--v3-emerald);
}

.package-explorer-v3 .explorer-stage-v2 {
    min-width: 0;
}

.package-explorer-v3 .model-stage--explorer {
    background:
        radial-gradient(circle, rgba(255,255,255,0.98), rgba(235,238,229,0.88) 60%, rgba(228,232,220,0.8) 100%);
    border: 0;
    border-radius: var(--v3-radius-xl);
    box-shadow: var(--v3-shadow);
    min-height: 720px;
    overflow: hidden;
}

.package-explorer-v3 .model-stage--explorer::before {
    background: linear-gradient(120deg, rgba(255,255,255,0.62), transparent 35%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.package-explorer-v3 .product-model--explorer,
.package-explorer-v3 .model-stage--explorer .model-fallback-image {
    filter: drop-shadow(0 36px 40px rgba(12, 47, 43, 0.16));
    transform: scale(0.92);
}

/* ---------------------------------------------------------
   REFERENCE + FAQ — quiet information architecture
--------------------------------------------------------- */

.ingredient-reference-v3 {
    background: #fff;
}

.ingredient-reference-v3 .reference-layout-v2,
.faq-section--v3 .faq-layout {
    gap: clamp(56px, 8vw, 108px);
    grid-template-columns: minmax(270px, 0.68fr) minmax(0, 1.32fr);
}

.ingredient-reference-v3 .reference-heading,
.faq-section--v3 .faq-copy {
    align-self: start;
    position: sticky;
    top: 140px;
}

.ingredient-reference-v3 .reference-list-v2,
.faq-section--v3 .faq-list {
    border-top: 1px solid var(--v3-line);
}

.ingredient-reference-v3 .reference-item-v2,
.faq-section--v3 .faq-item {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--v3-line);
    border-radius: 0;
    box-shadow: none;
}

.ingredient-reference-v3 .reference-item-v2 summary,
.faq-section--v3 .faq-item summary {
    padding: 26px 4px;
}

.ingredient-reference-v3 .reference-item-v2 p,
.faq-section--v3 .faq-item p {
    color: var(--v3-muted);
    line-height: 1.75;
    padding-bottom: 30px;
}

.faq-section--v3 {
    background: #f3f4ee;
}

/* ---------------------------------------------------------
   FINAL CTA — premium light close
--------------------------------------------------------- */

.final-cta-section--v3 {
    background:
        radial-gradient(circle at 82% 35%, rgba(234, 213, 154, 0.35), transparent 28rem),
        linear-gradient(135deg, #fbfaf6, #eef2e9);
    overflow: hidden;
    padding: clamp(110px, 13vw, 190px) 0;
    position: relative;
}

.final-cta-section--v3::before {
    border: 1px solid rgba(0,75,79,0.1);
    border-radius: 50%;
    content: "";
    height: 520px;
    position: absolute;
    right: -120px;
    top: -180px;
    width: 520px;
}

.final-cta-section--v3 .final-cta-content {
    max-width: 940px;
    position: relative;
    text-align: left;
    z-index: 2;
}

.final-cta-section--v3 .final-cta-content h2 {
    color: var(--v3-emerald-ink);
    font-size: clamp(52px, 6.8vw, 94px);
    letter-spacing: -0.055em;
    line-height: 0.94;
    max-width: 940px;
}

.final-cta-section--v3 .final-cta-content > p:not(.eyebrow) {
    color: var(--v3-muted);
    font-size: 17px;
    line-height: 1.75;
    max-width: 650px;
}

.final-cta-section--v3 .final-cta-actions {
    justify-content: flex-start;
}

/* ---------------------------------------------------------
   V3 REVEAL CHOREOGRAPHY
--------------------------------------------------------- */

.products-page--v3 [data-reveal] {
    transform: translateY(28px);
}

.products-page--v3 [data-reveal].is-visible {
    transform: translateY(0);
}

.products-page--v3 .is-v3-entered .highlight-card,
.products-page--v3 .is-v3-entered .difference-panel-v2 {
    opacity: 1;
}

/* ---------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------- */

@media (max-width: 1120px) {
    .product-hero--v3 .product-hero-layout {
        gap: 24px;
        grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    }

    .product-hero--v3 .product-format-card--v2 {
        left: 0;
    }

    .functional-blend-section--v3 .ingredient-story-v2 {
        grid-template-columns: minmax(0, 1fr) minmax(330px, 0.8fr);
    }

    .product-format-section--v3 .model-stage--sachet {
        height: 560px;
        width: 560px;
    }

    .product-format-section--v3 .sachet-visual-v2 {
        min-height: 700px;
    }
}

@media (max-width: 920px) {
    .product-journey-v3 {
        display: none;
    }

    .product-hero--v3 {
        min-height: auto;
        padding-bottom: 90px;
    }

    .product-hero--v3 .product-hero-layout {
        gap: 10px;
        grid-template-columns: 1fr;
    }

    .product-hero--v3 .product-hero-copy {
        max-width: 760px;
        padding-bottom: 10px;
        padding-top: 30px;
        text-align: center;
    }

    .product-hero--v3 .product-hero-copy::before {
        display: none;
    }

    .product-hero--v3 .product-hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .product-hero--v3 .product-hero-actions,
    .product-hero--v3 .product-hero-notes {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .product-hero--v3 .product-hero-visual--interactive {
        min-height: 560px;
    }

    .product-hero--v3 .model-stage--hero {
        height: 570px;
        min-height: 520px;
        width: min(100%, 620px);
    }

    .product-hero-scroll-v3 {
        display: none;
    }

    .product-overview-section--v3 .product-overview-layout,
    .coffee-difference-v3 .difference-layout-v2,
    .product-format-section--v3 .product-format-v2,
    .package-explorer-v3 .package-explorer-layout-v2,
    .ingredient-reference-v3 .reference-layout-v2,
    .faq-section--v3 .faq-layout {
        grid-template-columns: 1fr;
    }

    .product-highlights-section--v3 .highlight-grid--v2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-highlights-section--v3 .highlight-card:nth-child(3) {
        border-left: 0;
        border-top: 1px solid var(--v3-line);
    }

    .product-highlights-section--v3 .highlight-card:nth-child(4) {
        border-top: 1px solid var(--v3-line);
    }

    .coffee-difference-v3 .difference-copy,
    .ingredient-reference-v3 .reference-heading,
    .faq-section--v3 .faq-copy {
        position: static;
    }

    .functional-blend-section--v3 .ingredient-story-v2 {
        display: block;
        margin: 0;
        width: auto;
    }

    .functional-blend-section--v3 .ingredient-stage-column {
        min-height: auto;
    }

    .functional-blend-section--v3 .ingredient-stage-v2 {
        border-radius: 32px;
        height: min(76svh, 680px);
        min-height: 580px;
        position: sticky;
        top: 88px;
        z-index: 3;
    }

    .functional-blend-section--v3 .ingredient-chapters-v2 {
        background: transparent;
        padding-top: 30px;
    }

    .functional-blend-section--v3 .ingredient-chapter-v2 {
        background: var(--v3-emerald);
        border: 0;
        border-radius: 28px;
        min-height: auto;
        margin-bottom: 18px;
        padding: 38px 34px;
    }

    .functional-blend-section--v3 .ingredient-chapter-v2 h3 {
        font-size: clamp(36px, 7vw, 58px);
    }

    .ingredient-constellation-v3 {
        min-height: auto;
    }

    .ingredient-constellation-v3 .constellation-v2 {
        height: auto;
        min-height: 0;
        padding-top: 0;
    }

    .ingredient-constellation-v3 .constellation-center-v2 {
        height: 520px;
        left: auto;
        margin: 0 auto 28px;
        position: relative;
        top: auto;
        transform: none;
        width: min(100%, 560px);
    }

    .ingredient-constellation-v3 .constellation-item,
    .ingredient-constellation-v3 .constellation-item--1,
    .ingredient-constellation-v3 .constellation-item--2,
    .ingredient-constellation-v3 .constellation-item--3,
    .ingredient-constellation-v3 .constellation-item--4,
    .ingredient-constellation-v3 .constellation-item--5 {
        display: inline-grid;
        left: auto;
        margin: 6px;
        position: relative;
        right: auto;
        top: auto;
        bottom: auto;
        transform: none;
    }

    .ingredient-constellation-v3 .constellation-item--5:hover,
    .ingredient-constellation-v3 .constellation-item--5:focus-visible,
    .ingredient-constellation-v3 .constellation-item--5.is-active {
        transform: translateY(-7px) scale(1.02);
    }

    .enjoy-section--v3 .enjoy-card-visual {
        min-height: 620px;
    }

    .product-format-section--v3 .sachet-visual-v2 {
        margin: 0 auto;
        min-height: 700px;
        width: min(100%, 680px);
    }

    .package-explorer-v3 .model-stage--explorer {
        min-height: 620px;
    }
}

@media (max-width: 680px) {
    .products-page--v3 .content-section {
        padding-bottom: 88px;
        padding-top: 88px;
    }

    .product-hero--v3 {
        padding-top: 106px;
    }

    .product-hero--v3 .product-hero-copy h1 {
        font-size: clamp(48px, 14vw, 68px);
    }

    .product-hero--v3 .product-hero-notes {
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .product-hero--v3 .product-hero-visual--interactive {
        min-height: 470px;
    }

    .product-hero--v3 .model-stage--hero {
        height: 470px;
        min-height: 450px;
    }

    .product-hero--v3 .product-format-card--v2,
    .product-hero--v3 .product-routine-card--v2 {
        display: none;
    }

    .product-hero-word-v3 {
        bottom: 2%;
        font-size: 36vw;
    }

    .product-highlights-section--v3 .highlight-grid--v2 {
        grid-template-columns: 1fr;
    }

    .product-highlights-section--v3 .highlight-card,
    .product-highlights-section--v3 .highlight-card:nth-child(3),
    .product-highlights-section--v3 .highlight-card:nth-child(4) {
        border-left: 0;
        border-top: 1px solid var(--v3-line);
        min-height: 220px;
    }

    .product-highlights-section--v3 .highlight-card:first-child {
        border-top: 0;
    }

    .functional-blend-section--v3 .ingredient-stage-v2 {
        border-radius: 24px;
        height: 540px;
        min-height: 540px;
        top: 76px;
    }

    .functional-blend-section--v3 .ingredient-stage-product-v3 {
        height: 53%;
        left: 46%;
        width: 54%;
    }

    .functional-blend-section--v3 .ingredient-stage-image {
        height: 34%;
        left: 54%;
        top: 38%;
        width: 50%;
    }

    .functional-blend-section--v3 .ingredient-stage-word {
        bottom: 18%;
        font-size: 18vw;
        left: 7%;
    }

    .functional-blend-section--v3 .ingredient-stage-footer {
        bottom: 24px;
        left: 24px;
    }

    .ingredient-story-rail-v3 {
        bottom: 26px;
        right: 22px;
    }

    .functional-blend-section--v3 .ingredient-chapter-v2 {
        padding: 32px 26px;
    }

    .ingredient-constellation-v3 .constellation-center-v2 {
        height: 400px;
    }

    .ingredient-constellation-v3 .constellation-item {
        grid-template-columns: 50px auto;
        min-height: 64px;
        padding-right: 14px;
    }

    .ingredient-constellation-v3 .constellation-item img {
        height: 50px;
        width: 50px;
    }

    .enjoy-section--v3 .enjoy-grid--visual {
        display: block;
    }

    .enjoy-section--v3 .enjoy-card-visual,
    .enjoy-section--v3 .enjoy-grid--visual[data-v3-active] .enjoy-card-visual {
        min-height: 520px;
        width: 100%;
    }

    .enjoy-section--v3 .enjoy-card-visual + .enjoy-card-visual {
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,0.18);
    }

    .enjoy-section--v3 .enjoy-card-content {
        bottom: 34px;
        left: 28px;
        right: 28px;
    }

    .product-format-section--v3 .sachet-visual-v2 {
        min-height: 600px;
    }

    .product-format-section--v3 .model-stage--sachet {
        height: 480px;
        left: 50%;
        transform: translateX(-50%);
        width: 480px;
    }

    .product-format-section--v3 .sachet-note-v2 {
        bottom: 0;
        left: 12px;
        max-width: none;
        right: 12px;
    }

    .product-format-section--v3 .format-facts-v2 {
        grid-template-columns: 1fr;
    }

    .product-format-section--v3 .format-facts-v2 article + article {
        border-left: 0;
        border-top: 1px solid var(--v3-line);
        padding-left: 0;
    }

    .ritual-section-v3 .ritual-layout-v2 {
        min-height: 720px;
    }

    .ritual-section-v3 .ritual-copy-v2 {
        align-self: end;
        margin: 0;
        padding: 54px 28px;
    }

    .package-explorer-v3 .model-stage--explorer {
        border-radius: 28px;
        min-height: 500px;
    }

    .final-cta-section--v3 .final-cta-content h2 {
        font-size: clamp(48px, 13vw, 68px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .product-hero--v3 .model-stage--hero.is-model-ready .product-model--hero,
    .product-format-section--v3 .model-stage--sachet.is-model-ready .product-model--sachet,
    .product-hero-scroll-v3 i::after {
        animation: none !important;
    }

    .product-hero-word-v3,
    .product-hero--v3 .product-hero-visual--interactive {
        transform: none !important;
    }
}

/* =========================================================
   V3.2 REFINEMENTS — user feedback pass
========================================================= */

/* HERO */
.product-hero--v3 .product-hero-layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
}

.product-hero-word-v3 {
    color: rgba(0, 75, 79, 0.052);
}

.product-hero--v3 .product-format-card--v2,
.product-hero--v3 .product-routine-card--v2 {
    border-radius: 18px;
    max-width: 220px;
    min-width: 0;
    padding: 14px 16px;
    width: fit-content;
}

.product-hero--v3 .product-format-card--v2 span,
.product-hero--v3 .product-routine-card--v2 span {
    display: block;
    font-size: 11px;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.product-hero--v3 .product-format-card--v2 strong,
.product-hero--v3 .product-routine-card--v2 strong {
    display: block;
    font-size: 14px;
    line-height: 1.35;
}

.product-hero--v3 .product-format-card--v2 {
    left: 8px;
    top: 22%;
}

.product-hero--v3 .product-routine-card--v2 {
    bottom: 21%;
    right: 10px;
}

/* FUNCTIONAL BLEND */
.functional-blend-section--v3 .functional-copy--intro {
    margin-bottom: clamp(48px, 6vw, 84px);
}

.functional-blend-section--v3 .ingredient-story-heading {
    margin-bottom: 22px;
    max-width: 760px;
}

.functional-blend-section--v3 .ingredient-story-v2 {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.84fr);
}

.functional-blend-section--v3 .ingredient-stage-column {
    min-height: 440vh;
}

.functional-blend-section--v3 .ingredient-stage-v2 {
    min-height: min(100svh, 900px);
}

.functional-blend-section--v3 .ingredient-stage-product-v3 {
    height: 58%;
    width: 45%;
}

.functional-blend-section--v3 .ingredient-stage-image {
    height: 41%;
    left: 58%;
    top: 43%;
    width: 39%;
}

.functional-blend-section--v3 .ingredient-chapter-v2 {
    min-height: min(100svh, 900px);
    padding: clamp(72px, 8vw, 120px) clamp(34px, 5vw, 82px);
}

.functional-blend-section--v3 .ingredient-chapter-v2 h3 {
    font-size: clamp(42px, 4.4vw, 70px);
}

/* FIVE TOGETHER */
.ingredient-constellation-v3 {
    min-height: auto;
    padding: clamp(84px, 9vw, 112px) 0 clamp(56px, 7vw, 80px);
}

.ingredient-constellation-v3 .centered-heading {
    max-width: 760px;
}

.ingredient-constellation-v3 .centered-heading h2 {
    font-size: clamp(42px, 4.9vw, 72px);
    line-height: 0.98;
}

.ingredient-constellation-v3 .constellation-v2 {
    height: min(600px, 50vw);
    margin-top: 28px;
    min-height: 480px;
}

.ingredient-constellation-v3 .constellation-v2[data-reveal] {
    opacity: 0;
    transform: scale(0.93);
    transition:
        opacity 650ms ease,
        transform 900ms cubic-bezier(.2,.7,.2,1);
}

.ingredient-constellation-v3 .constellation-v2[data-reveal].is-visible {
    opacity: 1;
    transform: scale(1);
}

.ingredient-constellation-v3 .constellation-center-v2 {
    height: 66%;
    width: 38%;
}

.ingredient-constellation-v3 .constellation-item {
    grid-template-columns: 54px auto;
    min-height: 68px;
    padding: 7px 16px 7px 7px;
}

.ingredient-constellation-v3 .constellation-item img {
    height: 54px;
    width: 54px;
}

.ingredient-constellation-v3 .constellation-item span {
    font-size: 11px;
    max-width: 138px;
}

.ingredient-constellation-v3 .constellation-item--1 { left: 4%; top: 17%; }
.ingredient-constellation-v3 .constellation-item--2 { right: 4%; top: 17%; }
.ingredient-constellation-v3 .constellation-item--3 { left: 2%; top: 60%; }
.ingredient-constellation-v3 .constellation-item--4 { right: 2%; top: 60%; }
.ingredient-constellation-v3 .constellation-item--5 { bottom: 4%; left: 50%; transform: translateX(-50%); }

/* RITUAL */
.ritual-section-v3 .ritual-layout-v2 {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
}

.ritual-section-v3 .ritual-media-v2::after {
    background:
        linear-gradient(90deg, rgba(9,26,23,0.72) 0%, rgba(9,26,23,0.48) 42%, rgba(9,26,23,0.14) 100%),
        linear-gradient(180deg, rgba(9,26,23,0.12), rgba(9,26,23,0.44));
}

.ritual-section-v3 .ritual-copy-v2 {
    margin-left: 0;
    max-width: 560px;
    padding: clamp(64px, 8vw, 96px) clamp(36px, 4vw, 64px);
    justify-self: start;
}

.ritual-section-v3 .ritual-copy-v2 h2 {
    color: rgba(250, 251, 247, 0.96);
    font-size: clamp(42px, 5vw, 74px);
    line-height: 1.02;
    text-shadow: 0 1px 0 rgba(0,0,0,0.22), 0 12px 32px rgba(0,0,0,0.22);
}

.ritual-section-v3 .ritual-copy-v2 > p:not(.eyebrow) {
    color: rgba(255,255,255,0.82);
    font-size: 16px;
    max-width: 520px;
}

/* FINAL CTA + FOOTER */
.final-cta-section--v3 {
    padding: clamp(96px, 10vw, 150px) 0;
}

.final-cta-section--v3 .final-cta-content h2 {
    font-size: clamp(48px, 5.8vw, 84px);
}

.site-footer {
    padding-top: 52px;
}

.footer-grid {
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand p,
.footer-links a {
    font-size: 13px;
}

.footer-bottom {
    font-size: 11px;
    padding-bottom: 18px;
    padding-top: 18px;
}

@media (max-width: 1200px) {
    .product-hero--v3 .product-format-card--v2,
    .product-hero--v3 .product-routine-card--v2 {
        max-width: 190px;
    }

    .ingredient-constellation-v3 .constellation-v2 {
        height: min(560px, 58vw);
    }
}

@media (max-width: 1024px) {
    .functional-blend-section--v3 .ingredient-story-v2,
    .ritual-section-v3 .ritual-layout-v2 {
        grid-template-columns: 1fr;
    }

    .ingredient-constellation-v3 {
        padding-bottom: 48px;
    }

    .ingredient-constellation-v3 .constellation-v2 {
        height: auto;
        min-height: 0;
    }

    .ingredient-constellation-v3 .constellation-center-v2 {
        width: min(420px, 70vw);
    }
}

/* =========================================================
   PRODUCTS EXPERIENCE V3.3
   Desktop viewport-fit + interaction refinement pass
========================================================= */

:root {
    --v33-header-height: 82px;
}

/* Hero floating facts: true content-fit badges */
.product-hero--v3 .product-format-card--v2,
.product-hero--v3 .product-routine-card--v2 {
    border-radius: 15px;
    max-width: 182px;
    min-height: 0;
    padding: 10px 12px;
    width: max-content;
}

.product-hero--v3 .product-format-card--v2 span,
.product-hero--v3 .product-routine-card--v2 span {
    font-size: 9px;
    line-height: 1.25;
    margin-bottom: 3px;
}

.product-hero--v3 .product-format-card--v2 strong,
.product-hero--v3 .product-routine-card--v2 strong {
    font-size: 12px;
    line-height: 1.3;
}

.product-hero--v3 .product-format-card--v2 {
    left: 5%;
    top: 27%;
}

.product-hero--v3 .product-routine-card--v2 {
    bottom: 29%;
    right: 4%;
}

/* Combined Better Routines + Functional Blend frame */
.product-highlights-section--v3 .functional-copy--merged {
    border-top: 1px solid var(--v3-line);
    margin-top: 24px;
    max-width: none;
    padding-top: 22px;
}

.product-highlights-section--v3 .functional-copy--merged h2 {
    color: var(--v3-emerald-ink);
    font-size: clamp(30px, 3.2vw, 46px);
    letter-spacing: -0.045em;
    line-height: 1;
    margin-top: 8px;
}

.product-highlights-section--v3 .functional-copy--merged > p:not(.eyebrow):not(.product-disclaimer) {
    color: var(--v3-muted);
    font-size: 14px;
    line-height: 1.55;
    margin-top: 10px;
    max-width: 760px;
}

.product-highlights-section--v3 .functional-copy--merged .product-disclaimer {
    border-left: 2px solid var(--v3-gold);
    color: rgba(62, 78, 75, 0.76);
    font-size: 11px;
    margin-top: 12px;
    max-width: 760px;
    padding: 3px 0 3px 12px;
}

/* Ingredient story: ingredient image only on left */
.functional-blend-section--v3 .ingredient-stage-image {
    height: 64%;
    left: 50%;
    max-height: 520px;
    max-width: 78%;
    top: 48%;
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
    width: 68%;
}

.functional-blend-section--v3 .ingredient-stage-v2.is-swapping .ingredient-stage-image {
    opacity: 0;
    transform: translate(-44%, -50%) rotate(2deg) scale(0.92);
}

.functional-blend-section--v3 .ingredient-stage-v2.is-v3-ingredient-change .ingredient-stage-image {
    animation: ingredient-focus-v33 520ms cubic-bezier(.2,.72,.2,1);
}

@keyframes ingredient-focus-v33 {
    0% { opacity: 0.35; transform: translate(-50%, -48%) scale(0.91); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

/* Five Together: zoom from center then radiate outward */
.ingredient-constellation-v3 .constellation-center-v2,
.ingredient-constellation-v3 .constellation-item {
    will-change: transform, opacity;
}

.ingredient-constellation-v3:not(.is-constellation-activated) .constellation-center-v2 {
    opacity: 0.45;
    transform: translate(-50%, -50%) scale(0.72);
}

.ingredient-constellation-v3.is-constellation-activated .constellation-center-v2 {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    transition: opacity 650ms ease, transform 950ms cubic-bezier(.16,.76,.22,1);
}

.ingredient-constellation-v3:not(.is-constellation-activated) .constellation-item--1 {
    opacity: 0;
    transform: translate(300px, 150px) scale(0.58);
}

.ingredient-constellation-v3:not(.is-constellation-activated) .constellation-item--2 {
    opacity: 0;
    transform: translate(-300px, 150px) scale(0.58);
}

.ingredient-constellation-v3:not(.is-constellation-activated) .constellation-item--3 {
    opacity: 0;
    transform: translate(320px, -120px) scale(0.58);
}

.ingredient-constellation-v3:not(.is-constellation-activated) .constellation-item--4 {
    opacity: 0;
    transform: translate(-320px, -120px) scale(0.58);
}

.ingredient-constellation-v3:not(.is-constellation-activated) .constellation-item--5 {
    opacity: 0;
    transform: translate(-50%, -210px) scale(0.58);
}

.ingredient-constellation-v3.is-constellation-activated .constellation-item {
    opacity: 1;
    transition:
        opacity 520ms ease,
        transform 920ms cubic-bezier(.16,.76,.22,1),
        box-shadow 300ms ease;
}

.ingredient-constellation-v3.is-constellation-activated .constellation-item--1 { transition-delay: 140ms; }
.ingredient-constellation-v3.is-constellation-activated .constellation-item--2 { transition-delay: 220ms; }
.ingredient-constellation-v3.is-constellation-activated .constellation-item--3 { transition-delay: 300ms; }
.ingredient-constellation-v3.is-constellation-activated .constellation-item--4 { transition-delay: 380ms; }
.ingredient-constellation-v3.is-constellation-activated .constellation-item--5 { transition-delay: 460ms; }

.ingredient-constellation-v3.is-constellation-activated .constellation-item--1,
.ingredient-constellation-v3.is-constellation-activated .constellation-item--2,
.ingredient-constellation-v3.is-constellation-activated .constellation-item--3,
.ingredient-constellation-v3.is-constellation-activated .constellation-item--4 {
    transform: translate(0, 0) scale(1);
}

.ingredient-constellation-v3.is-constellation-activated .constellation-item--5 {
    transform: translateX(-50%) scale(1);
}

/* Coffee ritual: visual left, readable copy right */
.ritual-section-v3 .ritual-layout-v2 {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
    max-width: 1320px;
    padding: 0 28px;
}

.ritual-section-v3 .ritual-media-v2 {
    grid-area: auto;
    min-height: 0;
    position: relative;
}

.ritual-section-v3 .ritual-media-v2::after {
    background: linear-gradient(180deg, rgba(9,26,23,0.04), rgba(9,26,23,0.28));
}

.ritual-section-v3 .ritual-copy-v2 {
    align-self: center;
    grid-area: auto;
    justify-self: stretch;
    margin-left: 0;
    max-width: none;
    padding: clamp(46px, 6vw, 80px);
}

.ritual-section-v3 .ritual-copy-v2 h2 {
    color: #fff;
    font-family: "DM Sans", Arial, sans-serif;
    font-size: clamp(38px, 4.2vw, 62px);
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 1.04;
    text-shadow: none;
}

.ritual-section-v3 .ritual-copy-v2 > p:not(.eyebrow) {
    color: rgba(255,255,255,0.78);
    font-size: 15px;
    line-height: 1.65;
}

/* Compact footer block: preserve readable type, reduce white area */
.site-footer {
    padding-top: 26px;
}

.footer-grid {
    gap: 34px;
    padding-bottom: 22px;
}

.footer-logo img {
    height: 34px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.55;
    margin-top: 10px;
    max-width: 350px;
}

.footer-links {
    gap: 7px;
}

.footer-links h2 {
    margin: 2px 0 5px;
}

.footer-links a {
    font-size: 14px;
}

.footer-bottom {
    font-size: 12px;
    padding-bottom: 10px;
    padding-top: 10px;
}

/* Desktop viewport-fit system */
@media (min-width: 1025px) and (min-height: 700px) {
    .product-overview-section--v3,
    .product-highlights-section--v3,
    .coffee-difference-v3,
    .enjoy-section--v3,
    .product-format-section--v3,
    .ritual-section-v3,
    .package-explorer-v3,
    .final-cta-section--v3 {
        min-height: calc(100svh - var(--v33-header-height));
        scroll-margin-top: var(--v33-header-height);
    }

    /* Overview */
    .product-overview-section--v3 {
        align-items: center;
        display: flex;
        padding: 54px 0;
    }

    .product-overview-section--v3 .coffee-image-frame--product {
        max-height: 610px;
    }

    .product-overview-section--v3 .coffee-lifestyle-image {
        max-height: 610px;
    }

    /* Better Routines + Functional Blend in one frame */
    .product-highlights-section--v3 {
        align-items: center;
        display: flex;
        padding: 38px 0 34px;
    }

    .product-highlights-section--v3 .centered-heading {
        margin-bottom: 22px;
        max-width: 820px;
    }

    .product-highlights-section--v3 .centered-heading h2 {
        font-size: clamp(36px, 4.2vw, 58px);
        line-height: 0.98;
    }

    .product-highlights-section--v3 .centered-heading > p:last-child {
        font-size: 14px;
        margin-top: 12px;
    }

    .product-highlights-section--v3 .highlight-card {
        min-height: 178px;
        padding: 22px 24px 20px;
    }

    .product-highlights-section--v3 .highlight-card h3 {
        font-size: clamp(19px, 1.55vw, 24px);
        margin-top: 22px;
    }

    .product-highlights-section--v3 .highlight-card p {
        font-size: 12px;
        line-height: 1.55;
        margin-top: 9px;
    }

    .product-highlights-section--v3 .functional-copy--merged {
        display: grid;
        gap: 6px 34px;
        grid-template-columns: minmax(300px, 0.8fr) minmax(420px, 1.2fr);
        margin-top: 18px;
        padding-top: 18px;
    }

    .product-highlights-section--v3 .functional-copy--merged .eyebrow,
    .product-highlights-section--v3 .functional-copy--merged h2 {
        grid-column: 1;
    }

    .product-highlights-section--v3 .functional-copy--merged h2 {
        grid-row: 2 / span 2;
        margin-top: 2px;
    }

    .product-highlights-section--v3 .functional-copy--merged > p:not(.eyebrow):not(.product-disclaimer) {
        align-self: end;
        grid-column: 2;
        grid-row: 1 / span 2;
        margin-top: 0;
    }

    .product-highlights-section--v3 .functional-copy--merged .product-disclaimer {
        align-self: start;
        grid-column: 2;
        grid-row: 3;
        margin-top: 5px;
    }

    /* Inside the Blend: heading + active ingredient state fit viewport */
    .functional-blend-section--v3 {
        padding-top: 30px !important;
    }

    .functional-blend-section--v3 .ingredient-story-heading {
        margin-bottom: 16px;
        max-width: 800px;
    }

    .functional-blend-section--v3 .ingredient-story-heading h2 {
        font-size: clamp(38px, 4.1vw, 60px);
        line-height: 0.98;
    }

    .functional-blend-section--v3 .ingredient-story-heading > p:last-child {
        font-size: 14px;
        line-height: 1.5;
        margin-top: 10px;
    }

    .functional-blend-section--v3 .ingredient-story-v2 {
        grid-template-columns: minmax(0, 1fr) minmax(380px, 0.88fr);
    }

    .functional-blend-section--v3 .ingredient-stage-column {
        height: 100%;
        min-height: 0;
    }

    .functional-blend-section--v3 .ingredient-stage-v2,
    .functional-blend-section--v3 .ingredient-chapter-v2 {
        height: calc(100svh - var(--v33-header-height) - 205px);
        min-height: 500px;
    }

    .functional-blend-section--v3 .ingredient-stage-v2 {
        top: var(--v33-header-height);
    }

    .functional-blend-section--v3 .ingredient-chapter-v2 {
        min-height: max(500px, calc(100svh - var(--v33-header-height) - 205px));
        padding: clamp(44px, 5vw, 72px) clamp(34px, 4.4vw, 68px);
    }

    .functional-blend-section--v3 .ingredient-chapter-word {
        margin-top: 24px;
    }

    .functional-blend-section--v3 .ingredient-chapter-v2 h3 {
        font-size: clamp(40px, 4.3vw, 64px);
    }

    .functional-blend-section--v3 .ingredient-chapter-v2 p {
        font-size: 15px;
        line-height: 1.62;
        margin-top: 18px;
    }

    .functional-blend-section--v3 .ingredient-stage-footer {
        bottom: 26px;
        left: 34px;
    }

    .ingredient-story-rail-v3 {
        bottom: 28px;
        right: 30px;
    }

    /* Five Together */
    .ingredient-constellation-v3 {
        height: calc(100svh - var(--v33-header-height));
        min-height: 650px;
        padding: 34px 0 24px;
        scroll-margin-top: var(--v33-header-height);
    }

    .ingredient-constellation-v3 .centered-heading {
        max-width: 720px;
    }

    .ingredient-constellation-v3 .centered-heading h2 {
        font-size: clamp(36px, 4vw, 56px);
    }

    .ingredient-constellation-v3 .centered-heading > p:last-child {
        font-size: 14px;
        margin-top: 10px;
    }

    .ingredient-constellation-v3 .constellation-v2 {
        height: calc(100% - 165px);
        margin-top: 12px;
        min-height: 430px;
    }

    .ingredient-constellation-v3 .constellation-center-v2 {
        height: 70%;
        width: 38%;
    }

    /* Coffee Reconsidered */
    .coffee-difference-v3 {
        align-items: center;
        display: flex;
        padding: 42px 0;
    }

    .coffee-difference-v3 .difference-panel-v2 {
        min-height: 0;
        padding: 24px 6px;
    }

    .coffee-difference-v3 .difference-panel-v2 h3 {
        font-size: clamp(28px, 3vw, 44px);
        margin-top: 10px;
    }

    .coffee-difference-v3 .difference-panel-v2 p {
        font-size: 13px;
        line-height: 1.55;
        margin-top: 10px;
    }

    /* Hot / Iced */
    .enjoy-section--v3 {
        display: flex;
        flex-direction: column;
        padding-top: 30px !important;
    }

    .enjoy-section--v3 .centered-heading {
        margin-bottom: 20px;
        max-width: 760px;
    }

    .enjoy-section--v3 .centered-heading h2 {
        font-size: clamp(36px, 4vw, 56px);
        line-height: 0.98;
    }

    .enjoy-section--v3 .centered-heading > p:last-child {
        font-size: 14px;
        margin-top: 10px;
    }

    .enjoy-section--v3 > .products-shell {
        flex: 1;
        width: 100%;
    }

    .enjoy-section--v3 .enjoy-grid--visual {
        height: calc(100svh - var(--v33-header-height) - 175px);
        min-height: 430px;
    }

    .enjoy-section--v3 .enjoy-card-visual {
        height: 100%;
        min-height: 0;
    }

    .enjoy-section--v3 .enjoy-card-content {
        bottom: 28px;
    }

    .enjoy-section--v3 .enjoy-card-content h3 {
        font-size: clamp(48px, 6vw, 82px);
    }

    /* Sachet */
    .product-format-section--v3 {
        align-items: center;
        display: flex;
        padding: 44px 0;
    }

    .product-format-section--v3 .sachet-visual-v2 {
        min-height: 590px;
    }

    .product-format-section--v3 .model-stage--sachet {
        min-height: 570px;
    }

    /* Ritual */
    .ritual-section-v3 .ritual-layout-v2 {
        min-height: calc(100svh - var(--v33-header-height));
    }

    .ritual-section-v3 .ritual-media-v2 {
        height: calc(100svh - var(--v33-header-height));
    }

    /* Package explorer */
    .package-explorer-v3 {
        align-items: center;
        display: flex;
        padding: 44px 0;
    }

    .package-explorer-v3 .model-stage--explorer {
        min-height: 600px;
    }

    /* Final CTA */
    .final-cta-section--v3 {
        align-items: center;
        display: flex;
        padding: 64px 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ingredient-constellation-v3 .constellation-center-v2,
    .ingredient-constellation-v3 .constellation-item {
        opacity: 1 !important;
        transition: none !important;
    }

    .ingredient-constellation-v3 .constellation-center-v2 {
        transform: translate(-50%, -50%) scale(1) !important;
    }

    .ingredient-constellation-v3 .constellation-item--1,
    .ingredient-constellation-v3 .constellation-item--2,
    .ingredient-constellation-v3 .constellation-item--3,
    .ingredient-constellation-v3 .constellation-item--4 {
        transform: none !important;
    }

    .ingredient-constellation-v3 .constellation-item--5 {
        transform: translateX(-50%) !important;
    }
}

@media (min-width: 1025px) and (min-height: 700px) {
    .functional-blend-section--v3 .ingredient-stage-column {
        align-self: stretch;
        height: auto;
        min-height: 100%;
    }
}

/* =========================================================
   PRODUCTS EXPERIENCE V3.4
   V2-scale typography + viewport-fit desktop refinement
========================================================= */

:root {
    --v34-header-height: 82px;
}

/* Keep the V3 storytelling system, but return typography to the
   disciplined V2 scale on desktop. */
@media (min-width: 1025px) {
    .products-page--v3 .section-heading h2,
    .products-page--v3 .product-overview-copy h2,
    .products-page--v3 .functional-copy h2,
    .products-page--v3 .format-copy h2,
    .products-page--v3 .explorer-copy h2,
    .products-page--v3 .final-cta-content h2 {
        font-size: clamp(38px, 4.2vw, 62px);
        line-height: 1.04;
    }

    .products-page--v3 .section-heading > p:last-child,
    .products-page--v3 .product-overview-copy > p:not(.eyebrow),
    .products-page--v3 .functional-copy > p:not(.eyebrow):not(.product-disclaimer),
    .products-page--v3 .format-copy > p:not(.eyebrow),
    .products-page--v3 .explorer-copy > p:not(.eyebrow),
    .products-page--v3 .final-cta-content > p:not(.eyebrow) {
        font-size: 16px;
        line-height: 1.65;
    }

    /* HERO: preserve composition, fit it cleanly in one desktop viewport. */
    .product-hero--v3 {
        height: calc(100svh - var(--v34-header-height));
        min-height: 650px;
        max-height: 830px;
        padding: 24px 0 22px;
    }

    .product-hero--v3 .product-hero-layout {
        gap: clamp(30px, 4vw, 58px);
        grid-template-columns: minmax(0, 0.84fr) minmax(440px, 1.16fr);
        height: 100%;
        max-width: 1370px;
    }

    .product-hero--v3 .product-hero-copy {
        max-width: 560px;
        padding: 10px 0 20px;
    }

    .product-hero--v3 .product-hero-copy h1 {
        font-size: clamp(48px, 5.2vw, 72px);
        line-height: 0.96;
        margin-top: 12px;
    }

    .product-hero--v3 .product-hero-description {
        font-size: 16px;
        line-height: 1.62;
        margin-top: 20px;
        max-width: 510px;
    }

    .product-hero--v3 .product-hero-actions {
        margin-top: 24px;
    }

    .product-hero--v3 .product-hero-notes {
        margin-top: 28px;
        padding-top: 14px;
    }

    .product-hero--v3 .product-hero-visual--interactive {
        height: 100%;
        min-height: 0;
    }

    .product-hero--v3 .model-stage--hero {
        height: min(67svh, 570px);
        max-height: 590px;
        min-height: 500px;
        width: min(100%, 620px);
    }

    .product-hero-word-v3 {
        bottom: -0.05em;
        color: rgba(0, 75, 79, 0.055);
        font-size: clamp(120px, 18vw, 285px);
    }

    /* True content-fit hero badges. Override every legacy block dimension. */
    .product-hero--v3 .product-format-card--v2,
    .product-hero--v3 .product-routine-card--v2 {
        align-content: start;
        align-items: start;
        block-size: auto !important;
        display: inline-flex !important;
        flex-direction: column;
        gap: 3px;
        height: auto !important;
        inline-size: max-content !important;
        justify-content: flex-start;
        max-height: none !important;
        max-width: 205px;
        min-height: 0 !important;
        min-width: 0 !important;
        padding: 10px 13px;
        width: max-content !important;
    }

    .product-hero--v3 .product-format-card--v2 span,
    .product-hero--v3 .product-routine-card--v2 span {
        font-size: 9px;
        line-height: 1.2;
        margin: 0;
    }

    .product-hero--v3 .product-format-card--v2 strong,
    .product-hero--v3 .product-routine-card--v2 strong {
        font-size: 12px;
        line-height: 1.25;
        white-space: nowrap;
    }

    .product-hero--v3 .product-format-card--v2 {
        bottom: auto;
        left: 4%;
        top: 28%;
    }

    .product-hero--v3 .product-routine-card--v2 {
        bottom: auto;
        right: 3%;
        top: 23%;
    }

    /* PRODUCT OVERVIEW */
    .product-overview-section--v3 {
        min-height: calc(100svh - var(--v34-header-height));
        padding: 44px 0;
    }

    .product-overview-section--v3 .product-overview-copy h2 {
        font-size: clamp(38px, 4.4vw, 62px);
    }

    .product-overview-section--v3 .coffee-lifestyle-image,
    .product-overview-section--v3 .coffee-image-frame--product {
        max-height: 560px;
    }

    /* BETTER ROUTINES: restore as its own section, not merged with Functional Blend. */
    .product-highlights-section--v3 {
        align-items: center;
        display: flex;
        min-height: calc(100svh - var(--v34-header-height));
        padding: 42px 0;
    }

    .product-highlights-section--v3 .centered-heading {
        margin-bottom: 30px;
        max-width: 820px;
    }

    .product-highlights-section--v3 .centered-heading h2 {
        font-size: clamp(38px, 4.4vw, 60px);
    }

    .product-highlights-section--v3 .highlight-card {
        min-height: 205px;
        padding: 26px 26px 22px;
    }

    .product-highlights-section--v3 .highlight-card h3 {
        font-size: clamp(20px, 1.7vw, 26px);
        margin-top: 26px;
    }

    .product-highlights-section--v3 .highlight-card p {
        font-size: 13px;
        line-height: 1.55;
        margin-top: 10px;
    }

    /* FUNCTIONAL BLEND INTRO: restored as a separate V2-style frame. */
    .functional-blend-section--v3 .functional-copy--intro {
        align-items: flex-start;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 0;
        min-height: calc(100svh - var(--v34-header-height));
        max-width: 780px;
        padding: 54px 0;
    }

    .functional-blend-section--v3 .functional-copy--intro h2 {
        font-size: clamp(38px, 4.4vw, 62px);
        line-height: 1.02;
        margin-top: 12px;
    }

    .functional-blend-section--v3 .functional-copy--intro > p:not(.eyebrow):not(.product-disclaimer) {
        font-size: 16px;
        line-height: 1.65;
        margin-top: 18px;
        max-width: 700px;
    }

    .functional-blend-section--v3 .functional-copy--intro .product-disclaimer {
        font-size: 12px;
        margin-top: 24px;
        max-width: 690px;
        padding: 8px 0 8px 15px;
    }

    /* INSIDE THE BLEND: V2 proportions, ingredient-only visual, emerald story panel.
       Heading remains sticky while the five ingredient states scroll. */
    .functional-blend-section--v3 {
        padding-top: 0 !important;
    }

    .functional-blend-section--v3 .ingredient-story-heading {
        background: rgba(249, 247, 240, 0.97);
        margin: 0;
        max-width: none;
        padding: 16px 0 14px;
        position: sticky;
        top: var(--v34-header-height);
        z-index: 20;
    }

    .functional-blend-section--v3 .ingredient-story-heading h2 {
        font-size: clamp(34px, 3.7vw, 52px);
        line-height: 1;
        margin: 8px 0 10px;
        max-width: 760px;
    }

    .functional-blend-section--v3 .ingredient-story-heading > p:last-child {
        font-size: 14px;
        line-height: 1.5;
        margin-top: 0;
        max-width: 660px;
    }

    .functional-blend-section--v3 .ingredient-story-v2 {
        gap: 0;
        grid-template-columns: minmax(0, 0.92fr) minmax(400px, 1.08fr);
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        width: 100vw;
    }

    .functional-blend-section--v3 .ingredient-stage-column {
        min-height: 2700px;
        position: relative;
    }

    .functional-blend-section--v3 .ingredient-stage-v2 {
        background: radial-gradient(circle at 50% 45%, rgba(255,255,255,0.97), rgba(239,241,232,0.92) 66%, rgba(230,233,220,0.82));
        border: 0;
        border-radius: 0;
        box-shadow: none;
        height: calc(100svh - var(--v34-header-height) - 145px);
        min-height: 505px;
        position: sticky;
        top: calc(var(--v34-header-height) + 145px);
    }

    .functional-blend-section--v3 .ingredient-stage-orbit {
        height: min(48vw, 510px);
        width: min(48vw, 510px);
    }

    .functional-blend-section--v3 .ingredient-stage-image {
        height: 62%;
        left: 50%;
        max-height: 390px;
        max-width: 72%;
        top: 46%;
        transform: translate(-50%, -50%) scale(1);
        width: 66%;
    }

    .functional-blend-section--v3 .ingredient-stage-v2.is-swapping .ingredient-stage-image {
        transform: translate(-46%, -50%) scale(0.94);
    }

    .functional-blend-section--v3 .ingredient-stage-word {
        bottom: 9%;
        font-size: clamp(66px, 8vw, 116px);
        left: 5%;
    }

    .functional-blend-section--v3 .ingredient-stage-footer {
        bottom: 20px;
        left: 28px;
    }

    .ingredient-story-rail-v3 {
        bottom: 22px;
        right: 28px;
    }

    .functional-blend-section--v3 .ingredient-chapters-v2 {
        background: var(--v3-emerald);
    }

    .functional-blend-section--v3 .ingredient-chapter-v2 {
        min-height: calc(100svh - var(--v34-header-height) - 145px);
        padding: clamp(42px, 5vw, 70px) clamp(38px, 5vw, 76px);
    }

    .functional-blend-section--v3 .ingredient-chapter-word {
        margin-top: 22px;
    }

    .functional-blend-section--v3 .ingredient-chapter-v2 h3 {
        font-size: clamp(34px, 3.8vw, 54px);
        line-height: 1;
        margin-top: 12px;
    }

    .functional-blend-section--v3 .ingredient-chapter-v2 p {
        font-size: 15px;
        line-height: 1.62;
        margin-top: 16px;
        max-width: 560px;
    }

    /* FIVE TOGETHER: one viewport, composition raised, reversible in/out zoom handled by JS. */
    .ingredient-constellation-v3 {
        height: calc(100svh - var(--v34-header-height));
        min-height: 650px;
        padding: 28px 0 18px;
    }

    .ingredient-constellation-v3 .centered-heading {
        max-width: 700px;
    }

    .ingredient-constellation-v3 .centered-heading h2 {
        font-size: clamp(34px, 3.8vw, 52px);
        line-height: 1;
    }

    .ingredient-constellation-v3 .centered-heading > p:last-child {
        font-size: 14px;
        margin-top: 8px;
    }

    .ingredient-constellation-v3 .constellation-v2,
    .ingredient-constellation-v3 .constellation-v2[data-reveal],
    .ingredient-constellation-v3 .constellation-v2[data-reveal].is-visible {
        height: calc(100% - 138px);
        margin-top: 4px;
        min-height: 430px;
        opacity: 1;
        transform: none;
        transition: none;
    }

    .ingredient-constellation-v3 .constellation-center-v2 {
        height: 66%;
        top: 46%;
        transition: opacity 520ms ease, transform 820ms cubic-bezier(.16,.76,.22,1);
        width: 36%;
    }

    .ingredient-constellation-v3 .constellation-item {
        min-height: 64px;
        transition:
            opacity 460ms ease,
            transform 760ms cubic-bezier(.16,.76,.22,1),
            box-shadow 300ms ease;
    }

    .ingredient-constellation-v3 .constellation-item--1 { left: 5%; top: 12%; }
    .ingredient-constellation-v3 .constellation-item--2 { right: 5%; top: 12%; }
    .ingredient-constellation-v3 .constellation-item--3 { left: 3%; top: 55%; }
    .ingredient-constellation-v3 .constellation-item--4 { right: 3%; top: 55%; }
    .ingredient-constellation-v3 .constellation-item--5 { bottom: 9%; left: 50%; }

    /* COFFEE, RECONSIDERED: V2-scale editorial typography. */
    .coffee-difference-v3 {
        min-height: calc(100svh - var(--v34-header-height));
        padding: 46px 0;
    }

    .coffee-difference-v3 .difference-copy h2 {
        font-size: clamp(38px, 4.3vw, 60px);
        line-height: 1;
    }

    .coffee-difference-v3 .difference-copy > p:last-child {
        font-size: 16px;
        line-height: 1.6;
    }

    .coffee-difference-v3 .difference-panel-v2 {
        padding: 24px 8px;
    }

    .coffee-difference-v3 .difference-panel-v2 h3 {
        font-size: clamp(26px, 2.6vw, 36px);
        line-height: 1.06;
        margin: 10px 0 10px;
    }

    .coffee-difference-v3 .difference-panel-v2 p {
        font-size: 14px;
        line-height: 1.55;
    }

    /* HOT / ICED: complete composition in one viewport. */
    .enjoy-section--v3 {
        height: calc(100svh - var(--v34-header-height));
        min-height: 650px;
        padding: 24px 0 20px !important;
    }

    .enjoy-section--v3 .centered-heading {
        margin-bottom: 18px;
        max-width: 720px;
    }

    .enjoy-section--v3 .centered-heading h2 {
        font-size: clamp(34px, 3.8vw, 52px);
    }

    .enjoy-section--v3 > .products-shell {
        min-height: 0;
    }

    .enjoy-section--v3 .enjoy-grid--visual {
        height: calc(100% - 128px);
        min-height: 430px;
    }

    .enjoy-section--v3 .enjoy-card-visual {
        height: 100%;
        min-height: 0;
    }

    .enjoy-section--v3 .enjoy-card-content {
        bottom: 24px;
    }

    .enjoy-section--v3 .enjoy-card-content h3 {
        font-size: clamp(44px, 5vw, 70px);
    }

    .enjoy-section--v3 .enjoy-card-content p {
        font-size: 14px;
        line-height: 1.55;
    }

    /* SACHET: smaller overlay, more visible GLB, V2-like typography. */
    .product-format-section--v3 {
        min-height: calc(100svh - var(--v34-header-height));
        padding: 40px 0;
    }

    .product-format-section--v3 .product-format-v2 {
        gap: clamp(46px, 6vw, 78px);
        grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    }

    .product-format-section--v3 .sachet-visual-v2 {
        min-height: 555px;
    }

    .product-format-section--v3 .model-stage--sachet {
        height: 535px;
        width: 535px;
    }

    .product-format-section--v3 .sachet-note-v2 {
        bottom: 30px;
        max-width: 310px;
        padding: 16px 18px;
        right: -12px;
    }

    .product-format-section--v3 .sachet-note-v2 .eyebrow {
        font-size: 9px;
    }

    .product-format-section--v3 .sachet-note-v2 h3 {
        font-size: clamp(26px, 2.6vw, 34px);
        line-height: 1.02;
        margin-top: 7px;
    }

    .product-format-section--v3 .sachet-note-v2 > p:last-child {
        font-size: 12px;
        line-height: 1.55;
        margin-top: 10px;
    }

    .product-format-section--v3 .format-copy h2 {
        font-size: clamp(38px, 4vw, 56px);
    }

    .product-format-section--v3 .format-copy > p:not(.eyebrow) {
        font-size: 15px;
        line-height: 1.6;
    }

    .product-format-section--v3 .format-facts-v2 {
        margin-top: 24px;
    }

    .product-format-section--v3 .format-facts-v2 article {
        padding: 18px 12px 17px 0;
    }

    .product-format-section--v3 .product-info-mini-v2 {
        margin-top: 20px;
    }

    /* COFFEE RITUAL: smaller split frame and smaller heading. */
    .ritual-section-v3 {
        min-height: 0;
    }

    .ritual-section-v3 .ritual-layout-v2 {
        height: min(620px, calc(100svh - 135px));
        min-height: 540px;
        max-width: 1320px;
    }

    .ritual-section-v3 .ritual-media-v2 {
        height: 100%;
        min-height: 0;
    }

    .ritual-section-v3 .ritual-copy-v2 {
        padding: 42px 52px;
    }

    .ritual-section-v3 .ritual-copy-v2 h2 {
        font-size: clamp(34px, 3.6vw, 50px);
        line-height: 1.04;
    }

    .ritual-section-v3 .ritual-copy-v2 > p:not(.eyebrow) {
        font-size: 14px;
        line-height: 1.6;
        margin-top: 18px;
    }

    /* EXPLORER + FINAL CTA */
    .package-explorer-v3 .explorer-copy h2 {
        font-size: clamp(38px, 4.2vw, 58px);
    }

    .final-cta-section--v3 .final-cta-content h2 {
        font-size: clamp(42px, 4.8vw, 68px);
    }

    /* FOOTER: reduce the white division itself, keep readable type. */
    .site-footer {
        padding-top: 18px;
    }

    .footer-grid {
        gap: 32px;
        padding-bottom: 14px;
    }

    .footer-logo img {
        height: 32px;
    }

    .footer-brand p {
        font-size: 14px;
        line-height: 1.5;
        margin-top: 8px;
    }

    .footer-links {
        gap: 6px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-bottom {
        font-size: 12px;
        padding-bottom: 7px;
        padding-top: 7px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ingredient-constellation-v3 .constellation-center-v2,
    .ingredient-constellation-v3 .constellation-item {
        transition: none !important;
    }
}

@media (min-width: 1025px) {
    .functional-blend-section--v3 .ingredient-stage-column {
        min-height: calc(500svh - 1135px);
    }
}


/* =========================================================
   PRODUCTS EXPERIENCE V3.5
   Final compact Functional Blend + overlap-safe ingredient story
   Only addresses the user's final two refinement comments.
========================================================= */

@media (min-width: 1025px) {
    :root {
        --v35-story-heading-height: 162px;
    }

    /* -----------------------------------------------------
       THE FUNCTIONAL BLEND
       Compact transitional section; centered because the
       content is intentionally short.
    ----------------------------------------------------- */
    .functional-blend-section--v3 .functional-copy--intro {
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        max-width: 880px;
        min-height: 0;
        padding: 54px 24px 50px;
        text-align: center;
    }

    .functional-blend-section--v3 .functional-copy--intro .eyebrow {
        text-align: center;
    }

    .functional-blend-section--v3 .functional-copy--intro h2 {
        font-size: clamp(36px, 3.8vw, 54px);
        line-height: 1.03;
        margin-top: 10px;
        max-width: 760px;
    }

    .functional-blend-section--v3 .functional-copy--intro > p:not(.eyebrow):not(.product-disclaimer) {
        font-size: 15px;
        line-height: 1.58;
        margin-top: 15px;
        max-width: 690px;
        text-align: center;
    }

    .functional-blend-section--v3 .functional-copy--intro .product-disclaimer {
        border-left: 0;
        border-top: 2px solid var(--v3-gold);
        font-size: 11px;
        line-height: 1.5;
        margin: 20px auto 0;
        max-width: 690px;
        padding: 10px 14px 0;
        text-align: center;
    }

    /* -----------------------------------------------------
       INSIDE THE BLEND
       One full-width sticky heading cap. The previous
       heading lived only inside products-shell, so the
       full-width emerald panel could visually pass behind it.
       This creates one continuous opaque header layer and
       reserves exactly the same height for the split stage.
    ----------------------------------------------------- */
    .functional-blend-section--v3 .ingredient-story-heading {
        align-content: center;
        background: #f9f7f0;
        box-sizing: border-box;
        height: var(--v35-story-heading-height);
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        max-width: none;
        padding:
            14px
            max(28px, calc((100vw - 1200px) / 2))
            12px;
        position: sticky;
        top: var(--v34-header-height);
        width: 100vw;
        z-index: 50;
    }

    .functional-blend-section--v3 .ingredient-story-heading::after {
        background: rgba(0, 75, 79, 0.08);
        bottom: 0;
        content: "";
        height: 1px;
        left: 0;
        position: absolute;
        width: 100%;
    }

    .functional-blend-section--v3 .ingredient-story-heading h2 {
        font-size: clamp(32px, 3.3vw, 46px);
        line-height: 0.98;
        margin: 7px 0 7px;
        max-width: 720px;
    }

    .functional-blend-section--v3 .ingredient-story-heading > p:last-child {
        font-size: 13px;
        line-height: 1.42;
        max-width: 680px;
    }

    .functional-blend-section--v3 .ingredient-story-v2 {
        isolation: isolate;
        position: relative;
        z-index: 1;
    }

    .functional-blend-section--v3 .ingredient-stage-v2 {
        height: calc(100svh - var(--v34-header-height) - var(--v35-story-heading-height));
        min-height: 470px;
        top: calc(var(--v34-header-height) + var(--v35-story-heading-height));
    }

    .functional-blend-section--v3 .ingredient-chapter-v2 {
        min-height: calc(100svh - var(--v34-header-height) - var(--v35-story-heading-height));
    }

    /* Keep the V2-like ingredient stage compact and clearly
       separated below the sticky heading. */
    .functional-blend-section--v3 .ingredient-stage-orbit {
        height: min(43vw, 470px);
        width: min(43vw, 470px);
    }

    .functional-blend-section--v3 .ingredient-stage-image {
        height: 58%;
        max-height: 350px;
        max-width: 70%;
        top: 46%;
        width: 62%;
    }

    .functional-blend-section--v3 .ingredient-stage-word {
        bottom: 8%;
        font-size: clamp(58px, 7vw, 102px);
    }

    .functional-blend-section--v3 .ingredient-chapter-v2 {
        padding: clamp(36px, 4.5vw, 62px) clamp(34px, 4.6vw, 68px);
    }

    .functional-blend-section--v3 .ingredient-chapter-v2 h3 {
        font-size: clamp(32px, 3.4vw, 48px);
    }

    .functional-blend-section--v3 .ingredient-chapter-v2 p {
        font-size: 14px;
        line-height: 1.58;
        max-width: 530px;
    }
}

/* Tablet/mobile keep the existing responsive V3.4 structure.
   The desktop-only sticky geometry above must not leak into it. */
@media (max-width: 1024px) {
    .functional-blend-section--v3 .functional-copy--intro {
        text-align: left;
    }
}


/* =========================================================
   PRODUCTS EXPERIENCE V3.6
   Final ingredient-story refinement:
   - V2-style light layout
   - unified background
   - no emerald right panel
   - no disclaimer/gold rule
   - no heading/panel overlap
========================================================= */

@media (min-width: 1025px) {

    /* Functional Blend remains the compact centered transition
       from V3.5, now without the disclaimer. */
    .functional-blend-section--v3 .functional-copy--intro {
        padding-bottom: 46px;
    }

    .functional-blend-section--v3 .functional-copy--intro > p:not(.eyebrow) {
        margin-bottom: 0;
    }

    /* -----------------------------------------------------
       INSIDE THE BLEND — restore V2 layout philosophy.
       The heading is part of normal flow again so no sticky
       layer can overlap the ingredient stage.
    ----------------------------------------------------- */
    .functional-blend-section--v3 .ingredient-story-heading {
        background: transparent;
        height: auto;
        margin: 0 0 34px;
        max-width: 780px;
        padding: 18px 0 0;
        position: relative;
        top: auto;
        width: auto;
        z-index: 2;
    }

    .functional-blend-section--v3 .ingredient-story-heading::after {
        display: none;
    }

    .functional-blend-section--v3 .ingredient-story-heading h2 {
        font-size: clamp(34px, 3.5vw, 48px);
        line-height: 1;
        margin: 8px 0 10px;
        max-width: 730px;
    }

    .functional-blend-section--v3 .ingredient-story-heading > p:last-child {
        font-size: 14px;
        line-height: 1.5;
        max-width: 640px;
    }

    /* No full-viewport split; keep everything inside the
       normal content shell just like V2. */
    .functional-blend-section--v3 .ingredient-story-v2 {
        align-items: start;
        display: grid;
        gap: clamp(42px, 6vw, 88px);
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        isolation: auto;
        margin-left: 0;
        margin-right: 0;
        position: relative;
        width: auto;
        z-index: 1;
    }

    .functional-blend-section--v3 .ingredient-stage-column {
        align-self: stretch;
        min-height: 0;
        position: relative;
    }

    /* Left visual blends into the page background instead of
       reading as a separate panel. */
    .functional-blend-section--v3 .ingredient-stage-v2 {
        align-items: center;
        aspect-ratio: 0.92;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        display: flex;
        height: auto;
        justify-content: center;
        min-height: 500px;
        overflow: hidden;
        position: sticky;
        top: calc(var(--v34-header-height) + 22px);
    }

    .functional-blend-section--v3 .ingredient-stage-v2::before {
        display: none;
    }

    .functional-blend-section--v3 .ingredient-stage-orbit {
        height: min(39vw, 470px);
        width: min(39vw, 470px);
    }

    .functional-blend-section--v3 .ingredient-stage-image {
        filter: drop-shadow(0 22px 32px rgba(0, 45, 44, 0.11));
        height: auto;
        left: 50%;
        max-height: 62%;
        max-width: 72%;
        position: absolute;
        top: 48%;
        transform: translate(-50%, -50%) scale(1);
        width: auto;
    }

    .functional-blend-section--v3 .ingredient-stage-v2.is-swapping .ingredient-stage-image {
        opacity: 0;
        transform: translate(-50%, -48%) scale(0.96);
    }

    .functional-blend-section--v3 .ingredient-stage-word {
        bottom: auto;
        color: rgba(0, 75, 79, 0.07);
        font-size: clamp(58px, 7vw, 106px);
        left: 50%;
        line-height: 0.82;
        top: 15%;
        transform: translateX(-50%);
        white-space: nowrap;
    }

    .functional-blend-section--v3 .ingredient-stage-footer {
        align-items: center;
        bottom: 18px;
        display: flex;
        justify-content: space-between;
        left: 22px;
        position: absolute;
        right: 22px;
    }

    .functional-blend-section--v3 .ingredient-stage-footer strong {
        display: block;
        font-size: 15px;
        margin-top: 0;
    }

    .functional-blend-section--v3 .ingredient-stage-footer span {
        font-size: 11px;
    }

    /* V2 did not use the extra rail. */
    .ingredient-story-rail-v3 {
        display: none;
    }

    /* -----------------------------------------------------
       RIGHT STORY COLUMN — light V2 treatment.
       No emerald fill, no inverted white text.
    ----------------------------------------------------- */
    .functional-blend-section--v3 .ingredient-chapters-v2 {
        background: transparent;
        display: grid;
    }

    .functional-blend-section--v3 .ingredient-chapter-v2 {
        background: transparent;
        border: 0;
        border-bottom: 1px solid var(--product-line);
        color: var(--product-ink);
        cursor: pointer;
        min-height: 270px;
        opacity: 0.42;
        padding: 48px 0 42px;
        position: relative;
        transform: none;
        transition:
            opacity 260ms ease,
            transform 260ms ease;
    }

    .functional-blend-section--v3 .ingredient-chapter-v2:first-child {
        border-top: 1px solid var(--product-line);
    }

    .functional-blend-section--v3 .ingredient-chapter-v2::before {
        display: none;
    }

    .functional-blend-section--v3 .ingredient-chapter-v2.is-active,
    .functional-blend-section--v3 .ingredient-chapter-v2:hover,
    .functional-blend-section--v3 .ingredient-chapter-v2:focus-visible {
        background: transparent;
        opacity: 1;
        transform: translateX(7px);
    }

    .functional-blend-section--v3 .ingredient-chapter-number,
    .functional-blend-section--v3 .ingredient-chapter-word {
        color: var(--product-gold);
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.16em;
    }

    .functional-blend-section--v3 .ingredient-chapter-word {
        margin-left: 24px;
        margin-top: 0;
    }

    .functional-blend-section--v3 .ingredient-chapter-v2 h3 {
        color: var(--product-emerald-deep);
        font-size: clamp(32px, 3.2vw, 46px);
        line-height: 1;
        margin: 14px 0 16px;
    }

    .functional-blend-section--v3 .ingredient-chapter-v2 p {
        color: var(--product-ink-soft);
        font-size: 15px;
        line-height: 1.58;
        margin-top: 0;
        max-width: 590px;
    }
}

/* Keep mobile/tablet responsive behavior from V3.5, but make
   sure the ingredient story also remains light when stacked. */
@media (max-width: 1024px) {
    .functional-blend-section--v3 .ingredient-chapters-v2,
    .functional-blend-section--v3 .ingredient-chapter-v2 {
        background: transparent;
        color: var(--product-ink);
    }

    .functional-blend-section--v3 .ingredient-chapter-v2 h3 {
        color: var(--product-emerald-deep);
    }

    .functional-blend-section--v3 .ingredient-chapter-v2 p {
        color: var(--product-ink-soft);
    }
}