/*
   Yaxché — Home editorial
   Este archivo se carga después de css/global.css y moderniza únicamente la portada.
*/

:root {
    --y-forest: #1d332c;
    --y-deep: #10231f;
    --y-clay: #c46b4e;
    --y-sand: #e8dfcf;
    --y-cream: #f8f5ef;
    --y-lime: #b9c886;
    --y-line: rgba(33, 52, 45, .14);
}

.home-main {
    background: var(--y-cream);
    overflow: hidden;
}

.home-main h1,
.home-main h2,
.home-main h3,
.home-main p { margin-top: 0; }

.home-main h2 { letter-spacing: -.035em; }

.home-main .eyebrow {
    align-items: center;
    color: #8d6335;
    display: flex;
    font-size: .66rem;
    gap: 9px;
    letter-spacing: .2em;
    margin-bottom: 15px;
}

.home-main .eyebrow::before {
    background: currentColor;
    content: '';
    height: 1px;
    opacity: .7;
    width: 22px;
}

.line-link {
    align-items: center;
    border-bottom: 1px solid currentColor;
    color: var(--y-forest);
    display: inline-flex;
    font-size: .69rem;
    font-weight: 700;
    gap: 16px;
    letter-spacing: .12em;
    padding-bottom: 7px;
    text-transform: uppercase;
    transition: gap .25s ease, color .25s ease;
}

.line-link:hover { color: var(--y-clay); gap: 22px; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
    background: var(--y-deep);
    isolation: isolate;
    min-height: clamp(580px, 48vw, 730px);
    overflow: hidden;
    position: relative;
}

.hero-slides {
    display: grid;
    min-height: inherit;
}

.hero-slide {
    grid-area: 1 / 1;
    min-height: inherit;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    position: relative;
    transition: opacity .75s ease, visibility .75s ease;
    visibility: hidden;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.hero-media,
.hero-wash {
    inset: 0;
    position: absolute;
}

.hero-media {
    background-color: #526758;
    background-image:
        radial-gradient(circle at 74% 24%, rgba(206, 188, 126, .72) 0 5%, transparent 26%),
        radial-gradient(circle at 32% 72%, rgba(53, 83, 66, .96) 0 8%, transparent 39%),
        linear-gradient(120deg, #1d332c, #708069 48%, #d3c795);
    background-position: center;
    background-size: cover;
    transform: scale(1.035);
    transition: transform 8s cubic-bezier(.2, .7, .2, 1);
}

.hero-media.has-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-slide.is-active .hero-media { transform: scale(1); }

.hero-wash {
    background:
        linear-gradient(90deg, rgba(15, 34, 28, .93) 0%, rgba(19, 42, 34, .74) 37%, rgba(19, 42, 34, .15) 72%, rgba(19, 42, 34, .22) 100%),
        linear-gradient(0deg, rgba(9, 24, 20, .48), transparent 48%);
    z-index: 1;
}

.hero-orb {
    border: 1px solid rgba(243, 232, 207, .38);
    border-radius: 50%;
    filter: blur(.1px);
    opacity: .48;
    pointer-events: none;
    position: absolute;
    z-index: 2;
}

.hero-orb-one {
    height: clamp(260px, 35vw, 510px);
    right: -9%;
    top: 9%;
    width: clamp(260px, 35vw, 510px);
}

.hero-orb-two {
    border-color: rgba(185, 200, 134, .58);
    bottom: -23%;
    height: clamp(240px, 27vw, 390px);
    right: 24%;
    width: clamp(240px, 27vw, 390px);
}

.hero-copy {
    color: #fffdf7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: inherit;
    padding-bottom: 138px;
    padding-top: 74px;
    position: relative;
    z-index: 3;
}

.hero-copy > * { max-width: 580px; }

.hero-kicker {
    align-items: center;
    color: #dde2c6;
    display: flex;
    font-size: .67rem;
    font-weight: 700;
    gap: 12px;
    letter-spacing: .2em;
    margin-bottom: 21px;
    text-transform: uppercase;
}

.hero-kicker span {
    background: var(--y-lime);
    display: block;
    height: 1px;
    width: 37px;
}

.hero h1 {
    font-size: clamp(3.25rem, 5.7vw, 6.4rem);
    font-weight: 400;
    letter-spacing: -.065em;
    line-height: .94;
    margin-bottom: 24px;
    text-wrap: balance;
}

.hero-description {
    color: rgba(255, 253, 247, .84);
    font-size: clamp(.98rem, 1.3vw, 1.13rem);
    line-height: 1.65;
    margin-bottom: 31px;
    max-width: 480px;
}

.hero-button,
.journey-button {
    align-items: center;
    background: #f6f0e3;
    color: var(--y-deep);
    display: inline-flex;
    font-size: .69rem;
    font-weight: 800;
    gap: 25px;
    justify-content: space-between;
    letter-spacing: .13em;
    padding: 7px 8px 7px 18px;
    text-transform: uppercase;
    transition: background .25s ease, color .25s ease, transform .25s ease;
    width: max-content;
}

.hero-button b,
.journey-button b {
    align-items: center;
    background: var(--y-forest);
    color: #f7f2e7;
    display: inline-flex;
    font-size: 1rem;
    font-weight: 400;
    height: 34px;
    justify-content: center;
    transition: background .25s ease, transform .25s ease;
    width: 34px;
}

.hero-button:hover,
.journey-button:hover {
    background: var(--y-lime);
    transform: translateY(-2px);
}

.hero-button:hover b,
.journey-button:hover b { background: var(--y-deep); transform: rotate(45deg); }

.hero-edition {
    bottom: 36px;
    color: rgba(255, 253, 247, .68);
    font-family: var(--serif);
    font-size: .93rem;
    left: max(24px, calc((100vw - 1180px) / 2));
    letter-spacing: .05em;
    margin: 0;
    position: absolute;
    z-index: 3;
}

.hero-edition span { color: var(--y-lime); padding-inline: 5px; }

.hero-controls {
    align-items: end;
    bottom: 34px;
    display: flex;
    justify-content: flex-end;
    left: 0;
    position: absolute;
    right: 0;
    z-index: 5;
}

.hero-pagination { display: flex; gap: 10px; margin-right: 22px; }

.hero-dot {
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, .58);
    font-family: var(--serif);
    font-size: .78rem;
    padding: 7px 1px 10px;
    position: relative;
}

.hero-dot::after {
    background: #f8f2e3;
    bottom: 0;
    content: '';
    height: 1px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
    width: 28px;
}

.hero-dot.is-active { color: #fffdf7; }
.hero-dot.is-active::after { transform: scaleX(1); }

.hero-arrows { display: flex; gap: 5px; }

.hero-arrow {
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .27);
    color: #fffdf7;
    font-size: 1.12rem;
    height: 37px;
    line-height: 1;
    transition: background .2s ease, transform .2s ease;
    width: 37px;
}

.hero-arrow:hover { background: var(--y-clay); transform: translateY(-2px); }

/* --------------------------------------------------------------------------
   Manifesto y destacados
   -------------------------------------------------------------------------- */
.manifesto { padding-block: clamp(80px, 10vw, 142px); }

.manifesto-layout {
    align-items: end;
    display: grid;
    gap: 8vw;
    grid-template-columns: minmax(0, 1.25fr) minmax(250px, .5fr);
}

.manifesto h2 {
    color: var(--y-forest);
    font-size: clamp(2.85rem, 5.2vw, 5.4rem);
    line-height: .96;
    margin: 0;
    max-width: 780px;
}

.manifesto-layout > div { padding-bottom: 8px; }

.manifesto-layout > div > p {
    color: #56635b;
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.spotlight-section {
    background: #eee8dc;
    padding-block: clamp(74px, 9vw, 125px);
    position: relative;
}

.spotlight-section::before {
    border: 1px solid rgba(46, 72, 59, .14);
    border-radius: 50%;
    content: '';
    height: min(60vw, 850px);
    position: absolute;
    right: -26vw;
    top: -30vw;
    width: min(60vw, 850px);
}

.section-intro {
    align-items: end;
    display: grid;
    gap: 45px;
    grid-template-columns: 1fr minmax(260px, .42fr);
    margin-bottom: 45px;
    position: relative;
}

.section-intro h2,
.wellbeing-head h2 {
    color: var(--y-forest);
    font-size: clamp(2.6rem, 4.1vw, 4.25rem);
    margin: 0;
}

.section-intro > p {
    color: #536057;
    line-height: 1.7;
    margin: 0 0 7px;
}

.spotlight-grid {
    display: grid;
    gap: clamp(16px, 2vw, 28px);
    grid-template-columns: repeat(3, 1fr);
    position: relative;
}

.spotlight-link { display: block; }

.spotlight-visual {
    background:
        radial-gradient(circle at 72% 28%, rgba(255,255,255,.8) 0 1%, transparent 21%),
        linear-gradient(145deg, #acb697, #d9d2bf 52%, #b8c5af);
    background-color: #c6cbb5;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: clamp(300px, 31vw, 430px);
    overflow: hidden;
    position: relative;
}

.spotlight-card:nth-child(2) .spotlight-visual { background-color: #c9ae8c; background-image: linear-gradient(145deg, #d9c0a0, #9a7761 51%, #eee0c8); }
.spotlight-card:nth-child(3) .spotlight-visual { background-color: #97a59b; background-image: linear-gradient(145deg, #6f8777, #d8d7c6 51%, #889887); }
.spotlight-visual.has-image { background-size: cover; }

.spotlight-visual::after {
    background: linear-gradient(0deg, rgba(15, 39, 31, .18), transparent 42%);
    content: '';
    inset: 0;
    position: absolute;
    transition: opacity .45s ease;
}

.spotlight-number {
    color: rgba(250, 248, 241, .86);
    font-family: var(--serif);
    font-size: 1.1rem;
    left: 21px;
    position: absolute;
    top: 18px;
    z-index: 1;
}

.spotlight-ring {
    border: 1px solid rgba(255, 253, 246, .55);
    border-radius: 50%;
    height: 58%;
    position: absolute;
    right: -15%;
    top: 18%;
    transition: transform .75s cubic-bezier(.2,.75,.2,1);
    width: 58%;
    z-index: 1;
}

.spotlight-copy {
    align-items: end;
    border-bottom: 1px solid var(--y-line);
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr auto;
    padding: 18px 0 15px;
}

.spotlight-copy p {
    color: #8c6337;
    font-size: .64rem;
    font-weight: 700;
    grid-column: 1 / -1;
    letter-spacing: .13em;
    margin-bottom: -4px;
    text-transform: uppercase;
}

.spotlight-copy h3 {
    color: var(--y-forest);
    font-size: clamp(1.4rem, 2vw, 1.85rem);
    font-weight: 400;
    line-height: 1.08;
    margin: 0;
}

.spotlight-arrow {
    align-items: center;
    border: 1px solid rgba(33, 52, 45, .35);
    border-radius: 50%;
    color: var(--y-forest);
    display: flex;
    font-size: 1.05rem;
    height: 34px;
    justify-content: center;
    transition: background .25s ease, color .25s ease, transform .25s ease;
    width: 34px;
}

.spotlight-description {
    color: #616a62;
    font-size: .88rem;
    line-height: 1.62;
    margin: 13px 0 0;
}

.spotlight-card:hover .spotlight-ring { transform: scale(1.3) rotate(22deg); }
.spotlight-card:hover .spotlight-visual::after { opacity: .55; }
.spotlight-card:hover .spotlight-arrow { background: var(--y-forest); color: #fff; transform: rotate(45deg); }

/* --------------------------------------------------------------------------
   Categorías y productos
   -------------------------------------------------------------------------- */
.wellbeing-section {
    background: var(--y-cream);
    padding-block: clamp(78px, 10vw, 140px);
}

.wellbeing-head {
    align-items: end;
    display: flex;
    justify-content: space-between;
    margin-bottom: 46px;
}

.category-tabs {
    border-bottom: 1px solid var(--y-line);
    display: flex;
    gap: 6px;
    margin-bottom: 38px;
    overflow-x: auto;
    scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar { display: none; }

.category-tab {
    background: transparent;
    border: 0;
    border-bottom: 2px solid transparent;
    color: #677169;
    flex: 0 0 auto;
    font-size: .69rem;
    font-weight: 700;
    letter-spacing: .08em;
    padding: 14px 13px 15px;
    text-transform: uppercase;
    transition: color .22s ease, border-color .22s ease;
}

.category-tab:hover,
.category-tab.is-active { border-color: var(--y-clay); color: var(--y-forest); }

.product-row {
    animation: panel-in .42s ease both;
    display: grid;
    gap: clamp(14px, 2vw, 25px);
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-row[hidden] { display: none; }

.product-card { min-width: 0; }
.product-card a { display: block; }

.product-visual {
    background:
        radial-gradient(circle at 51% 48%, #fffdfa 0 7%, transparent 44%),
        linear-gradient(135deg, #e6e0d4, #c9d0c0);
    background-color: #e2ddd1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: clamp(210px, 21.6vw, 286px);
    overflow: hidden;
    position: relative;
    transition: transform .45s cubic-bezier(.2,.75,.2,1), box-shadow .45s ease;
}

.product-card:nth-child(2) .product-visual { background-color: #e8d7c1; background-image: radial-gradient(circle at 51% 48%, #fffdf9 0 7%, transparent 44%), linear-gradient(135deg, #e6d1bc, #c7b19b); }
.product-card:nth-child(3) .product-visual { background-color: #d4d8c1; background-image: radial-gradient(circle at 51% 48%, #fffdf8 0 7%, transparent 44%), linear-gradient(135deg, #d5dabc, #a8b99d); }
.product-card:nth-child(4) .product-visual { background-color: #d6c9ba; background-image: radial-gradient(circle at 51% 48%, #fffdf8 0 7%, transparent 44%), linear-gradient(135deg, #ddcab5, #b69e88); }
.product-visual.has-image { background-size: contain; }

.product-visual::before {
    border: 1px solid rgba(39, 61, 51, .16);
    border-radius: 50%;
    content: '';
    height: 70%;
    left: 15%;
    position: absolute;
    top: 15%;
    transition: transform .6s ease;
    width: 70%;
}

.product-visual-glow {
    background: radial-gradient(circle, rgba(255,255,255,.75), transparent 66%);
    inset: 0;
    opacity: .55;
    position: absolute;
}

.product-info { padding: 15px 3px 0; }

.product-type {
    color: #95673d;
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: .13em;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.product-name-row { align-items: baseline; display: flex; gap: 8px; justify-content: space-between; }

.product-name-row h3 {
    color: var(--y-forest);
    font-size: clamp(1.22rem, 1.55vw, 1.52rem);
    font-weight: 400;
    line-height: 1.14;
    margin: 0;
}

.product-name-row > span { color: #8b6542; font-size: 1.1rem; transition: transform .25s ease; }

.price { color: #57645a; font-size: .85rem; margin: 6px 0 0; }
.price small { font-size: .62rem; font-weight: 700; letter-spacing: .08em; }

.product-card:hover .product-visual { box-shadow: 0 13px 23px rgba(43, 58, 48, .13); transform: translateY(-6px); }
.product-card:hover .product-visual::before { transform: scale(1.12) rotate(25deg); }
.product-card:hover .product-name-row > span { transform: translate(3px, -3px); }

.empty-products { color: #5e6a61; grid-column: 1 / -1; margin: 12px 0; }

/* --------------------------------------------------------------------------
   Dos tarjetas de acceso
   -------------------------------------------------------------------------- */
.journey-section {
    display: grid;
    gap: clamp(18px, 2vw, 30px);
    grid-template-columns: 1fr 1fr;
    padding-block: clamp(76px, 10vw, 135px);
}

.journey-card {
    color: #fffdf7;
    min-height: 470px;
    overflow: hidden;
    position: relative;
}

.journey-card-catalog { background: #8a8463; }
.journey-card-benefits { background: #567368; }

.journey-image {
    background:
        radial-gradient(circle at 73% 30%, rgba(247,236,201,.6), transparent 19%),
        linear-gradient(135deg, #777c56, #cec7a7);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    inset: 0 0 0 41%;
    position: absolute;
    transition: transform .8s cubic-bezier(.2,.75,.2,1);
}

.journey-card-benefits .journey-image { background-image: radial-gradient(circle at 73% 30%, rgba(245,244,221,.7), transparent 19%), linear-gradient(135deg, #788f7e, #d6d6bd); }
.journey-image.has-image { background-size: cover; }

.journey-image::after {
    background: linear-gradient(90deg, currentColor 0%, transparent 36%);
    content: '';
    inset: 0;
    opacity: .5;
    position: absolute;
}

.journey-copy {
    max-width: 65%;
    padding: clamp(31px, 4vw, 50px);
    position: relative;
    z-index: 1;
}

.journey-copy .eyebrow { color: #f7deb1; }

.journey-copy h2 {
    color: #fffdf7;
    font-size: clamp(2.1rem, 3.4vw, 3.45rem);
    line-height: .98;
    margin-bottom: 16px;
}

.journey-copy > p:not(.eyebrow) {
    color: rgba(255,253,247,.83);
    font-size: .91rem;
    line-height: 1.66;
    margin-bottom: 24px;
}

.journey-card:hover .journey-image { transform: scale(1.07); }

/* --------------------------------------------------------------------------
   Infusiones
   -------------------------------------------------------------------------- */
.infusions-section {
    background: var(--y-deep);
    color: #fffdf7;
    overflow: hidden;
    padding-block: clamp(76px, 10vw, 128px);
    position: relative;
}

.infusion-backdrop {
    border: 1px solid rgba(211, 217, 174, .25);
    border-radius: 50%;
    height: min(68vw, 880px);
    pointer-events: none;
    position: absolute;
    right: -19vw;
    top: -28vw;
    width: min(68vw, 880px);
}

.infusion-backdrop::after {
    border: 1px solid rgba(211, 217, 174, .18);
    border-radius: 50%;
    content: '';
    inset: 9%;
    position: absolute;
}

.infusion-content { position: relative; }

.infusion-header {
    align-items: end;
    display: flex;
    justify-content: space-between;
    margin-bottom: 47px;
}

.infusion-header .eyebrow { color: #d5ddaa; }
.infusion-header h2 { color: #fffdf7; font-size: clamp(3rem, 5vw, 5.1rem); line-height: .91; margin: 0; }
.line-link-light { color: #f8f2e4; }
.line-link-light:hover { color: var(--y-lime); }

.infusions-grid {
    display: grid;
    gap: clamp(13px, 1.8vw, 24px);
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.infusion-card { min-width: 0; }
.infusion-card a { display: block; }

.infusion-visual {
    background:
        radial-gradient(circle at 50% 42%, rgba(255,252,238,.8) 0 5%, transparent 42%),
        linear-gradient(140deg, #b5b881, #637660);
    background-color: #819274;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: clamp(205px, 22vw, 290px);
    overflow: hidden;
    position: relative;
    transition: transform .45s cubic-bezier(.2,.75,.2,1);
}

.infusion-card:nth-child(2) .infusion-visual { background-color: #b29979; background-image: radial-gradient(circle at 50% 42%, rgba(255,252,238,.8) 0 5%, transparent 42%), linear-gradient(140deg, #d4bd91, #937759); }
.infusion-card:nth-child(3) .infusion-visual { background-color: #849782; background-image: radial-gradient(circle at 50% 42%, rgba(255,252,238,.8) 0 5%, transparent 42%), linear-gradient(140deg, #aac29c, #607c66); }
.infusion-card:nth-child(4) .infusion-visual { background-color: #9e927b; background-image: radial-gradient(circle at 50% 42%, rgba(255,252,238,.8) 0 5%, transparent 42%), linear-gradient(140deg, #b3a98e, #766e5c); }
.infusion-visual.has-image { background-size: contain; }

.infusion-visual::after {
    background: linear-gradient(0deg, rgba(12,31,25,.32), transparent 40%);
    content: '';
    inset: 0;
    position: absolute;
}

.infusion-card-copy {
    align-items: center;
    border-bottom: 1px solid rgba(255, 253, 247, .27);
    display: flex;
    gap: 8px;
    justify-content: space-between;
    padding: 14px 2px 13px;
}

.infusion-card-copy h3 { color: #fffdf7; font-size: clamp(1.15rem, 1.65vw, 1.45rem); font-weight: 400; line-height: 1.13; margin: 0; }
.infusion-card-copy span { color: #d4dba6; font-size: 1.1rem; transition: transform .25s ease; }
.infusion-card:hover .infusion-visual { transform: translateY(-6px) scale(1.015); }
.infusion-card:hover .infusion-card-copy span { transform: rotate(45deg); }
.infusion-empty { color: rgba(255,255,255,.76); }

.word-ribbon {
    background: var(--y-clay);
    color: #fff9ed;
    font-family: var(--serif);
    font-size: clamp(1.75rem, 3.6vw, 3.9rem);
    letter-spacing: -.03em;
    line-height: 1;
    overflow: hidden;
    padding-block: 17px 21px;
    white-space: nowrap;
}

.word-ribbon > div { animation: marquee 28s linear infinite; width: max-content; }
.word-ribbon span { color: #d9dfab; font-family: var(--sans); font-size: .47em; padding-inline: .36em; vertical-align: middle; }

/* --------------------------------------------------------------------------
   Microinteracciones y accesibilidad de movimiento
   -------------------------------------------------------------------------- */
@keyframes panel-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes orbital-drift { 0%, 100% { transform: translate3d(0, 0, 0) rotate(0); } 50% { transform: translate3d(-10px, 16px, 0) rotate(9deg); } }
@keyframes orbital-drift-reverse { 0%, 100% { transform: translate3d(0, 0, 0) rotate(0); } 50% { transform: translate3d(13px, -13px, 0) rotate(-10deg); } }
@keyframes marquee { to { transform: translateX(-33.333%); } }

.hero-slide.is-active .hero-orb-one { animation: orbital-drift 13s ease-in-out infinite; }
.hero-slide.is-active .hero-orb-two { animation: orbital-drift-reverse 16s ease-in-out infinite; }

.reveal-ready [data-reveal] {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2,.75,.2,1);
    transition-delay: calc(var(--card-index, 0) * 80ms);
}

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

:focus-visible {
    outline: 3px solid var(--y-clay);
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

/* --------------------------------------------------------------------------
   Ajustes responsivos
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
    .spotlight-grid { grid-template-columns: repeat(3, 1fr); }
    .product-row, .infusions-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .journey-copy { max-width: 72%; }
}

@media (max-width: 700px) {
    .header-inner { min-height: 63px !important; }
    .header-mini-logo { height: 40px !important; }
    .main-nav { min-height: auto !important; }
    .hero { min-height: 610px; }
    .hero-media { background-position: 62% center; }
    .hero-wash { background: linear-gradient(90deg, rgba(15, 34, 28, .91), rgba(19, 42, 34, .56) 74%, rgba(19, 42, 34, .24)); }
    .hero-copy { justify-content: end; padding-bottom: 123px; padding-top: 84px; }
    .hero h1 { font-size: clamp(3rem, 15vw, 4.4rem); max-width: 480px; }
    .hero-description { font-size: .96rem; max-width: 380px; }
    .hero-edition { bottom: 34px; font-size: .81rem; left: 16px; }
    .hero-controls { bottom: 24px; justify-content: flex-end; }
    .hero-pagination { margin-right: 10px; }
    .hero-dot { font-size: .7rem; }
    .hero-orb-one { right: -28%; top: 7%; }
    .hero-orb-two { bottom: 17%; right: -16%; }
    .manifesto-layout, .section-intro, .journey-section { grid-template-columns: 1fr; }
    .manifesto-layout { gap: 25px; }
    .manifesto h2 { font-size: clamp(2.7rem, 13vw, 4.2rem); }
    .section-intro { gap: 15px; }
    .section-intro > p { max-width: 500px; }
    .spotlight-grid { gap: 36px 15px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .spotlight-visual { height: 39vw; min-height: 145px; }
    .spotlight-number { font-size: .8rem; left: 12px; top: 9px; }
    .spotlight-copy { padding-top: 11px; }
    .spotlight-copy p, .spotlight-description { display: none; }
    .spotlight-copy h3 { font-size: clamp(1.12rem, 4.8vw, 1.5rem); }
    .spotlight-arrow { font-size: .85rem; height: 27px; width: 27px; }
    .wellbeing-head, .infusion-header { align-items: start; flex-direction: column; gap: 20px; }
    .category-tabs { margin-inline: -16px; padding-inline: 16px; }
    .category-tab { padding-inline: 12px; }
    .product-row { gap: 26px 12px; }
    .product-visual { height: 41vw; min-height: 155px; }
    .product-name-row h3 { font-size: 1.17rem; }
    .journey-section { padding-block: 76px; }
    .journey-card { min-height: 395px; }
    .journey-image { inset: 0 0 0 34%; }
    .journey-copy { max-width: 75%; padding: 31px; }
    .journey-copy h2 { font-size: 2.45rem; }
    .journey-copy > p:not(.eyebrow) { font-size: .85rem; }
    .infusion-header h2 { font-size: clamp(3rem, 15vw, 4.6rem); }
    .infusions-grid { gap: 27px 12px; }
    .infusion-visual { height: 43vw; min-height: 165px; }
    .infusion-card-copy h3 { font-size: 1.1rem; }
    .word-ribbon { font-size: 2.1rem; }
}

@media (max-width: 390px) {
    .hero h1 { font-size: 2.82rem; }
    .hero-button { gap: 15px; }
    .journey-copy { max-width: 82%; padding: 25px; }
    .journey-copy h2 { font-size: 2.16rem; }
}
