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

:root {
    --espresso: #29160e;
    --coffee: #4a291a;
    --cream: #f3e7d3;
    --ivory: #fbf5eb;
    --caramel: #b8793f;
    --gold: #e9bf7b;
    --line: rgba(255, 255, 255, .24);
    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Manrope", ui-sans-serif, system-ui, sans-serif
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--espresso);
    color: #fff;
    font-family: var(--sans)
}

body.menu-open {
    overflow: hidden
}

a {
    text-decoration: none;
    color: inherit
}

button,
input {
    font: inherit
}

.site-shell {
    overflow: hidden
}

.header-stack {
    position: absolute;
    inset: 0 0 auto;
    z-index: 40;
    color: #fff
}

.announcement {
    height: 38px;
    background: rgba(30, 17, 10, .64);
    backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4vw;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase
}

.announcement span {
    display: flex;
    align-items: center;
    gap: 8px
}

.announcement-mid {
    opacity: .9
}

.announcement-right {
    opacity: .76
}

.nav {
    height: 80px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 3.5vw;
    background: linear-gradient(to bottom, rgba(22, 12, 8, .3), transparent);
    transition: .35s
}

.nav.scrolled {
    background: rgba(35, 19, 12, .82);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, .12)
}

.brand {
    display: flex;
    align-items: center;
    gap: 18px;
    font-weight: 600;
    letter-spacing: .15em
}

.brand-indus {
    font-size: 12px
}

.brand-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, .42)
}

.brand-icoffee {
    font-family: var(--serif);
    font-size: 30px;
    letter-spacing: .02em
}

.nav-links {
    display: flex;
    gap: 32px;
    font-size: 12px;
    letter-spacing: .05em
}

.nav-links a {
    opacity: .92;
    position: relative
}

.nav-links a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -7px;
    height: 1px;
    background: currentColor;
    transition: .35s
}

.nav-links a:hover:after {
    right: 0
}

.nav-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 14px
}

.icon-btn,
.account-btn,
.cart-btn,
.mobile-toggle {
    border: 0;
    background: transparent;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer
}

.icon-btn {
    font-size: 23px
}

.cart-btn {
    position: relative
}

.cart-count {
    position: absolute;
    top: -7px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--espresso);
    font-size: 9px;
    font-weight: 700
}

.mobile-toggle {
    display: none;
    font-size: 22px
}

.search-panel {
    display: none;
    padding: 22px 7vw;
    background: rgba(28, 15, 10, .96);
    border-top: 1px solid rgba(255, 255, 255, .1)
}

.search-panel.open {
    display: block
}

.search-form label {
    display: block;
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    opacity: .66;
    margin-bottom: 10px
}

.search-form>div {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, .3)
}

.search-form input {
    flex: 1;
    background: transparent;
    border: 0;
    outline: 0;
    color: #fff;
    padding: 12px 0
}

.search-form button {
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer
}

.account-panel {
    position: fixed;
    inset: 0;
    display: none;
    background: rgba(15, 8, 5, .42);
    backdrop-filter: blur(6px);
    align-items: flex-start;
    justify-content: flex-end;
    padding: 118px 3.5vw 40px
}

.account-panel.open {
    display: flex
}

.panel-card {
    position: relative;
    background: var(--ivory);
    color: var(--espresso);
    width: min(390px, 94vw);
    padding: 36px;
    border-radius: 24px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .28)
}

.panel-close {
    position: absolute;
    right: 18px;
    top: 14px;
    border: 0;
    background: transparent;
    font-size: 24px;
    cursor: pointer
}

.panel-eyebrow {
    font-size: 10px;
    letter-spacing: .22em;
    opacity: .56
}

.panel-card h2 {
    font-family: var(--serif);
    font-size: 52px;
    font-weight: 500;
    margin: 12px 0 24px
}

.panel-card form label {
    display: block;
    font-size: 11px;
    margin: 15px 0
}

.panel-card input {
    width: 100%;
    margin-top: 7px;
    background: #fff;
    border: 1px solid rgba(42, 23, 15, .14);
    padding: 12px;
    border-radius: 8px;
    outline: 0
}

.panel-card .btn {
    width: 100%;
    justify-content: center;
    border: 0;
    cursor: pointer
}

.panel-link,
.panel-note {
    font-size: 12px;
    display: block;
    margin-top: 14px;
    opacity: .72
}

.panel-note a {
    font-weight: 700
}

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    isolation: isolate
}

.hero-media {
    position: absolute;
    inset: 0;
    background: url('../assets/images/hero/icoffee-hero.webp') center/cover no-repeat;
    z-index: -3;
    transform: scale(1.02);
    transform-origin: center;
    transition: filter .6s ease, background-size .6s ease;
}

.hero:hover .hero-media {
    filter: brightness(1.08) saturate(1.15);
    background-size: 106% auto;
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(28, 14, 8, .42) 0%, rgba(28, 14, 8, .2) 43%, rgba(28, 14, 8, .05) 68%, rgba(28, 14, 8, .08) 100%), linear-gradient(0deg, rgba(20, 10, 6, .38), transparent 28%);
    z-index: -2
}

.hero-copy {
    width: min(670px, 46vw);
    margin-left: 7vw;
    margin-top: 4vh
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 13px;
    letter-spacing: .24em;
    font-weight: 700
}

.eyebrow i {
    width: 120px;
    height: 1px;
    background: rgba(255, 255, 255, .64)
}

h1,
h2,
h3,
p {
    margin: 0
}

.hero h1 {
    margin-top: 22px;
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(68px, 7vw, 116px);
    line-height: .91;
    letter-spacing: -.04em
}

.hero h1 em,
h2 em {
    font-style: italic;
    font-weight: 500
}

.hero-copy>p {
    margin-top: 24px;
    font-family: var(--serif);
    font-size: 25px;
    line-height: 1.32;
    max-width: 520px
}

.hero-ctas {
    display: flex;
    gap: 14px;
    margin-top: 34px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 25px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: .1em;
    font-weight: 800;
    transition: transform .3s ease, background .3s ease, border-color .3s ease
}

.btn:hover {
    transform: translateY(-2px)
}

.btn-primary {
    background: #f2c77e;
    color: #2b160c
}

.btn-secondary {
    border: 1px solid rgba(255, 238, 211, .68);
    color: #fff
}

.hero-trust {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
    margin-top: 42px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .22);
    font-size: 11px;
    letter-spacing: .02em
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 8px
}

.scroll-cue {
    position: absolute;
    left: 3.6vw;
    bottom: 28px;
    display: flex;
    gap: 16px;
    align-items: flex-end;
    font-size: 9px;
    letter-spacing: .22em;
    line-height: 1.7
}

.scroll-cue:before {
    content: '';
    width: 1px;
    height: 66px;
    background: rgba(255, 255, 255, .46)
}

.scroll-cue strong {
    font-size: 18px;
    font-weight: 400
}

.hero-pagination {
    position: absolute;
    right: 3.6vw;
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    letter-spacing: .16em
}

.hero-pagination i {
    width: 34px;
    height: 1px;
    background: rgba(255, 255, 255, .32)
}

.section {
    padding: 130px 7vw
}

.light-section {
    background: var(--ivory);
    color: var(--espresso)
}

.dark-section {
    background: #1b0f0a
}

.section-heading span,
.ingredient-copy span,
.statement-inner span,
.testimonial-section span,
.shop-copy>span,
.faq-section .section-heading span {
    font-size: 10px;
    letter-spacing: .24em;
    font-weight: 700;
    opacity: .66
}

.section-heading h2,
.ingredient-copy h2,
.statement-inner h2,
.shop-copy h2,
.faq-section h2 {
    font-family: var(--serif);
    font-size: clamp(54px, 6vw, 94px);
    font-weight: 500;
    line-height: .98;
    margin-top: 18px;
    letter-spacing: -.035em
}

.section-heading p {
    max-width: 560px;
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.7;
    opacity: .68
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 70px
}

.product-card {
    border-radius: 26px;
    overflow: hidden;
    background: #efe0c8
}

.product-art {
    height: 620px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: radial-gradient(circle at 50% 30%, #fff9f0, #ddc9af)
}

.product-art.product-dark {
    background: radial-gradient(circle at 50% 25%, #352117, #0d0907)
}

.product-art img {
    height: 86%;
    width: auto;
    max-width: 84%;
    object-fit: contain;
    filter: drop-shadow(0 32px 34px rgba(0, 0, 0, .22));
    transition: transform .65s cubic-bezier(.16, 1, .3, 1)
}

.product-card:hover .product-art img {
    transform: translateY(-9px) scale(1.03)
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 27px 30px
}

.product-meta span {
    font-size: 9px;
    letter-spacing: .2em;
    opacity: .56
}

.product-meta h3 {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 500;
    margin-top: 5px
}

.product-meta p {
    margin-top: 8px;
    opacity: .68
}

.product-meta>a {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 50%;
    display: grid;
    place-items: center
}

.immersive-section {
    min-height: 86vh;
    background: linear-gradient(100deg, rgba(23, 12, 8, .84), rgba(23, 12, 8, .14)), url('../assets/images/hero/icoffee-hero.webp') center 44%/cover fixed;
    display: flex;
    align-items: center
}

.immersive-copy {
    margin-left: 9vw;
    max-width: 540px
}

.immersive-copy>span {
    font-size: 10px;
    letter-spacing: .23em
}

.immersive-copy h2 {
    font-family: var(--serif);
    font-size: clamp(58px, 7vw, 110px);
    font-weight: 500;
    line-height: .91;
    margin-top: 20px
}

.immersive-copy p {
    font-family: var(--serif);
    font-size: 21px;
    line-height: 1.5;
    opacity: .82;
    margin-top: 26px
}

.text-link {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    margin-top: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    padding-bottom: 7px;
    font-size: 12px
}

.dark-copy {
    color: #fff
}

.benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, .15);
    margin-top: 78px
}

.benefit {
    padding: 28px 24px 20px 0;
    border-right: 1px solid rgba(255, 255, 255, .14)
}

.benefit:not(:first-child) {
    padding-left: 24px
}

.benefit:last-child {
    border-right: 0
}

.benefit>span {
    font-size: 11px;
    letter-spacing: .18em;
    opacity: .55
}

.benefit h3 {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 500;
    margin-top: 50px
}

.benefit p {
    margin-top: 13px;
    max-width: 220px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .68)
}

.ingredient-section {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    min-height: 760px;
    background: #eadac2;
    color: var(--espresso)
}

.ingredient-stage {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    background: linear-gradient(145deg, #dbc3a0, #f6ecdc)
}

.ingredient-stage img {
    position: absolute;
    object-fit: contain;
    mix-blend-mode: multiply
}

.ingredient-stage img:nth-child(1) {
    width: 70%;
    left: -10%;
    bottom: -10%
}

.ingredient-stage img:nth-child(2) {
    width: 46%;
    right: -7%;
    top: 8%
}

.ingredient-stage img:nth-child(3) {
    width: 52%;
    left: 8%;
    top: -8%
}

.ingredient-copy {
    padding: 110px 8vw;
    align-self: center
}

.ingredient-copy p {
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.7;
    max-width: 500px;
    opacity: .75
}

.ingredient-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 34px
}

.ingredient-tags span {
    border: 1px solid rgba(42, 23, 15, .22);
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 9px;
    letter-spacing: .16em
}

.brand-banner-section {
    display: block;
    line-height: 0;
}

.banner-frame {
    overflow: hidden;
}

.brand-banner-section img {
    display: block;
    width: 100%;
    height: auto;
    transform: scale(1.06);
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .brand-banner-section img {
        transform: none;
    }
}

.faq-section {
    padding: 120px 7vw;
    background: #efe5d6;
    color: var(--espresso)
}

.faq-list {
    max-width: 900px;
    margin: 60px auto 0
}

.faq-list details {
    border-top: 1px solid rgba(42, 23, 15, .18);
    padding: 24px 0
}

.faq-list details:last-child {
    border-bottom: 1px solid rgba(42, 23, 15, .18)
}

.faq-list summary {
    cursor: pointer;
    list-style: none;
    font-family: var(--serif);
    font-size: 26px
}

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

.faq-list p {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.7;
    opacity: .72;
    max-width: 760px
}

.shop-section {
    background: linear-gradient(130deg, #e9dcc7, #cda777);
    color: #2b170d;
    padding: 120px 7vw
}

.shop-inner {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 60px
}

.shop-copy p {
    max-width: 500px;
    margin-top: 23px;
    font-size: 18px;
    line-height: 1.6;
    opacity: .72
}

.dark-button {
    margin-top: 30px;
    background: #2b170d;
    color: #fff
}

.shop-products {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 20px;
    min-height: 540px
}

.shop-products img {
    height: 520px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 34px 30px rgba(53, 29, 16, .23))
}

.footer {
    background: #120a07;
    color: #fff;
    padding: 70px 7vw 28px
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start
}

.footer-logo {
    font-family: var(--serif);
    font-size: 48px
}

.footer-top p {
    margin-top: 10px;
    opacity: .6
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
    font-size: 12px;
    opacity: .8
}

.newsletter label {
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 13px
}

.newsletter>div {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, .25)
}

.newsletter input {
    flex: 1;
    background: transparent;
    border: 0;
    outline: 0;
    color: #fff;
    padding: 12px 0
}

.newsletter button {
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 20px;
    cursor: pointer
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 80px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: 10px;
    opacity: .45
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s ease, transform .8s cubic-bezier(.16, 1, .3, 1)
}

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

.inner-page {
    padding-top: 0;
    background: var(--ivory);
    color: var(--espresso);
    min-height: 100vh
}

.page-hero {
    min-height: 560px;
    padding: 210px 7vw 90px;
    background: linear-gradient(120deg, #e9dcc7, #b98550);
    display: flex;
    align-items: end
}

.page-eyebrow {
    font-size: 10px;
    letter-spacing: .24em;
    font-weight: 700;
    opacity: .65
}

.page-hero h1 {
    font-family: var(--serif);
    font-size: clamp(60px, 8vw, 120px);
    font-weight: 500;
    line-height: .9;
    max-width: 1000px;
    margin-top: 22px;
    letter-spacing: -.04em
}

.page-hero p {
    max-width: 680px;
    font-family: var(--serif);
    font-size: 22px;
    line-height: 1.45;
    margin-top: 24px;
    opacity: .78
}

.inner-section {
    padding: 120px 7vw
}

.inner-copy {
    max-width: 900px
}

.inner-copy h2,
.detail-copy h2 {
    font-family: var(--serif);
    font-size: clamp(48px, 5vw, 80px);
    font-weight: 500;
    line-height: .98
}

.inner-copy p,
.detail-copy p {
    font-size: 17px;
    line-height: 1.7;
    opacity: .72;
    margin-top: 22px;
    max-width: 720px
}

.benefits-page {
    border-top: 1px solid rgba(42, 23, 15, .18)
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 720px
}

.detail-image {
    display: grid;
    place-items: center;
    background: #eadbc6;
    padding: 70px
}

.detail-image.product-dark {
    background: #160d09
}

.detail-image img {
    height: min(620px, 76vh);
    max-width: 90%;
    object-fit: contain;
    filter: drop-shadow(0 32px 34px rgba(0, 0, 0, .22))
}

.detail-copy {
    align-self: center;
    padding: 90px 8vw
}

.detail-copy>span {
    font-size: 10px;
    letter-spacing: .24em;
    opacity: .6
}

.contact-form {
    max-width: 650px;
    display: grid;
    gap: 18px
}

.contact-form label {
    display: grid;
    gap: 8px;
    font-size: 12px
}

.contact-form input,
.contact-form textarea {
    border: 1px solid rgba(42, 23, 15, .18);
    padding: 14px;
    background: #fffaf2;
    border-radius: 8px;
    outline: 0;
    color: var(--espresso)
}

.contact-form button {
    border: 0;
    cursor: pointer;
    justify-self: start
}

@media(max-width:760px) {
    .page-hero {
        min-height: 520px;
        padding: 180px 24px 70px
    }

    .inner-section {
        padding: 85px 24px
    }

    .product-detail {
        grid-template-columns: 1fr
    }

    .detail-image {
        min-height: 520px;
        padding: 40px
    }

    .detail-copy {
        padding: 70px 24px
    }
}

/* =========================================================
   ICOFFEE COLLECTION
========================================================= */

.icoffee-collection {
    position: relative;
    overflow: hidden;
}


/* ---------------------------------------------------------
   LIGHT INTRO
--------------------------------------------------------- */

.collection-intro {
    position: relative;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: center;

    min-height: 650px;
    padding: 110px 7vw;

    background:
        radial-gradient(circle at 72% 20%,
            rgba(205, 177, 138, 0.20),
            transparent 35%),
        #f4eadb;

    color: #29160e;
}

.collection-intro-copy {
    max-width: 600px;
    z-index: 3;
}

.collection-kicker,
.showcase-header>span {
    display: block;
    margin-bottom: 20px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.collection-intro h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(52px, 6vw, 92px);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: -0.045em;
}

.collection-intro h2 em {
    font-style: italic;
}

.collection-intro p {
    max-width: 490px;
    margin: 32px 0;

    font-size: 16px;
    line-height: 1.8;
    color: rgba(41, 22, 14, 0.72);
}

.collection-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    padding-bottom: 7px;

    color: #29160e;
    border-bottom: 1px solid rgba(41, 22, 14, 0.5);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.17em;

    transition:
        gap 0.35s ease,
        opacity 0.35s ease;
}

.collection-link:hover {
    gap: 20px;
    opacity: 0.7;
}


/* ---------------------------------------------------------
   VISUAL CARDS
--------------------------------------------------------- */

.collection-visuals {
    position: relative;
    min-height: 460px;
}

.collection-visual-card {
    position: absolute;

    width: 235px;
    height: 300px;

    overflow: hidden;

    border-radius: 20px;

    background: #e9dccb;

    box-shadow:
        0 30px 70px rgba(42, 22, 14, 0.15);

    transition:
        transform 0.7s cubic-bezier(.2, .8, .2, 1),
        box-shadow 0.7s ease;
}

.collection-visual-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 24px;

    transition:
        transform 0.8s cubic-bezier(.2, .8, .2, 1);
}

.collection-visual-card::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(to top,
            rgba(37, 19, 12, 0.42),
            transparent 45%);
}

.collection-visual-card span {
    position: absolute;
    left: 24px;
    bottom: 22px;

    z-index: 2;

    color: white;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
}

.card-coffee {
    left: 3%;
    top: 12%;
    transform: rotate(-6deg);
}

.card-mucuna {
    left: 32%;
    top: 0;
    transform: rotate(3deg);
    z-index: 2;
}

.card-salacia {
    left: 60%;
    top: 14%;
    transform: rotate(6deg);
}

.collection-visual-card:hover {
    transform:
        translateY(-15px) rotate(0deg);

    box-shadow:
        0 40px 90px rgba(42, 22, 14, 0.23);
}

.collection-visual-card:hover img {
    transform: scale(1.06);
}


/* ---------------------------------------------------------
   DARK SHOWCASE
--------------------------------------------------------- */

.icoffee-showcase {
    position: relative;

    min-height: 900px;

    padding:
        115px 7vw 80px;

    color: #f7eee2;

    background:
        radial-gradient(circle at 70% 45%,
            rgba(157, 104, 55, 0.18),
            transparent 35%),
        linear-gradient(135deg,
            #1e100a 0%,
            #2d170d 50%,
            #160b07 100%);

    overflow: hidden;
}

/* decorative crema */
.icoffee-showcase::before {
    content: "";
    position: absolute;

    width: 900px;
    height: 900px;

    right: -360px;
    top: 70px;

    border-radius: 50%;

    background:
        radial-gradient(ellipse,
            rgba(225, 190, 143, 0.12),
            transparent 65%);

    pointer-events: none;
}

.showcase-header {
    position: relative;
    z-index: 2;

    max-width: 620px;

    margin-bottom: 50px;
}

.showcase-header h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 5.4vw, 86px);
    font-weight: 400;
    line-height: 0.93;
    letter-spacing: -0.045em;
}

.showcase-header h2 em {
    font-style: italic;
}


/* ---------------------------------------------------------
   MOVING SELECTOR
--------------------------------------------------------- */

.product-selector-wrap {
    width: 100%;
    overflow: hidden;

    margin-bottom: 55px;

    mask-image:
        linear-gradient(to right,
            transparent,
            black 8%,
            black 92%,
            transparent);
}

.product-selector {
    display: flex;
    align-items: center;
    gap: 14px;

    width: max-content;

    animation:
        productTicker 35s linear infinite;
}

.product-selector:hover {
    animation-play-state: paused;
}

.product-selector-item {
    flex: 0 0 auto;

    padding: 12px 25px;

    border: 1px solid rgba(244, 234, 219, 0.35);
    border-radius: 999px;

    background: transparent;

    color: rgba(247, 238, 226, 0.72);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;

    cursor: pointer;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.product-selector-item:hover,
.product-selector-item.active {
    background: #e8c98f;
    border-color: #e8c98f;
    color: #24130c;
}

@keyframes productTicker {
    from {
        transform: translateX(0);
    }

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


/* ---------------------------------------------------------
   PRODUCT STAGE
--------------------------------------------------------- */

.product-showcase {
    position: relative;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    min-height: 570px;
}

.product-showcase-image {
    position: relative;

    display: grid;
    place-items: center;

    min-height: 540px;
}

.product-glow {
    position: absolute;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(226, 196, 151, 0.18),
            transparent 67%);

    filter: blur(12px);
}

.product-showcase-image img {
    position: relative;
    z-index: 2;

    width: min(360px, 70%);

    max-height: 530px;

    object-fit: contain;

    filter:
        drop-shadow(0 35px 35px rgba(0, 0, 0, 0.42));

    transition:
        opacity 0.45s ease,
        transform 0.65s cubic-bezier(.2, .8, .2, 1);
}

.product-showcase-image img.switching {
    opacity: 0;
    transform: translateY(25px) scale(0.96);
}


/* ---------------------------------------------------------
   PRODUCT COPY
--------------------------------------------------------- */

.product-showcase-copy {
    max-width: 570px;
    padding-left: 50px;
}

.product-showcase-label {
    display: block;

    margin-bottom: 22px;

    color: #dcb97e;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
}

.product-showcase-copy h3 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(55px, 5.5vw, 88px);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.045em;
}

.product-showcase-copy h3 em {
    font-style: italic;
}

.product-showcase-copy p {
    max-width: 510px;

    margin: 30px 0;

    color: rgba(247, 238, 226, 0.72);

    font-size: 16px;
    line-height: 1.75;
}

.product-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));

    max-width: 500px;

    margin: 35px 0;

    border-top: 1px solid rgba(247, 238, 226, 0.18);
}

.product-details div {
    padding:
        18px 18px 18px 0;

    border-bottom: 1px solid rgba(247, 238, 226, 0.12);
}

.product-details span {
    display: block;

    margin-bottom: 7px;

    color: rgba(247, 238, 226, 0.45);

    font-size: 9px;
    letter-spacing: 0.18em;
}

.product-details strong {
    font-size: 15px;
    font-weight: 500;
}

.showcase-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;

    padding: 15px 24px;

    border: 1px solid rgba(247, 238, 226, 0.6);
    border-radius: 999px;

    color: #f7eee2;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.17em;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.showcase-btn:hover {
    background: #e8c98f;
    color: #24130c;
    transform: translateY(-3px);
}


/* ---------------------------------------------------------
   SHOWCASE FOOTER
--------------------------------------------------------- */

.showcase-footer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 42px;

    padding-top: 50px;

    border-top: 1px solid rgba(247, 238, 226, 0.12);

    color: rgba(247, 238, 226, 0.52);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.showcase-footer span::before {
    content: "✦";
    margin-right: 10px;
    color: #e8c98f;
}


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

@media (max-width: 900px) {

    .collection-intro {
        grid-template-columns: 1fr;
        gap: 30px;

        padding:
            90px 6vw 110px;
    }

    .collection-visuals {
        min-height: 400px;
    }

    .product-showcase {
        grid-template-columns: 1fr;
    }

    .product-showcase-copy {
        padding-left: 0;
        text-align: center;
        margin: 30px auto 0;
    }

    .product-showcase-copy p,
    .product-details {
        margin-left: auto;
        margin-right: auto;
    }

    .product-showcase-actions {
        display: flex;
        justify-content: center;
    }

    .product-showcase-image {
        min-height: 460px;
    }

    .icoffee-showcase {
        padding:
            90px 6vw 70px;
    }
}


@media (max-width: 560px) {

    .collection-intro {
        padding:
            75px 6vw 80px;
    }

    .collection-visual-card {
        width: 145px;
        height: 190px;
    }

    .collection-visual-card span {
        left: 14px;
        bottom: 13px;

        font-size: 8px;
    }

    .card-coffee {
        left: 0;
    }

    .card-mucuna {
        left: 29%;
    }

    .card-salacia {
        left: 57%;
    }

    .icoffee-showcase {
        min-height: auto;

        padding:
            75px 5vw 60px;
    }

    .product-showcase-image {
        min-height: 390px;
    }

    .product-showcase-image img {
        width: 250px;
    }

    .product-showcase-copy h3 {
        font-size: 58px;
    }

    .product-details {
        grid-template-columns: 1fr 1fr;
    }

    .showcase-footer {
        gap: 18px;
        line-height: 1.7;
    }
}

/* =====================================================
   iCOFFEE — SMARTER CUP SECTION
===================================================== */

.icoffee-smarter-section {
    width: 100%;
    overflow: hidden;
    background: #f5eee4;
    color: #241914;
    box-sizing: border-box;
}


/* =====================================================
   STATIC HEADER
===================================================== */

.icoffee-smarter-header {
    width: 100%;
    text-align: center;
    padding: 85px 30px 70px;
    box-sizing: border-box;
}


.icoffee-smarter-eyebrow {
    margin-bottom: 20px;

    font-family: inherit;
    font-size: 11px;
    font-weight: 500;

    letter-spacing: 5px;
    line-height: 1;

    text-transform: uppercase;
}


.icoffee-smarter-header h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(48px, 5vw, 82px);

    font-weight: 400;

    letter-spacing: -2.5px;

    line-height: 1.05;
}


/* =====================================================
   MARQUEE
===================================================== */

.icoffee-marquee {
    width: 100%;
    overflow: hidden;

    position: relative;

    padding-bottom: 75px;
}


/* =====================================================
   MOVING TRACK
===================================================== */

.icoffee-marquee-track {
    display: flex;
    width: max-content;

    animation: icoffeeInfiniteScroll 42s linear infinite;

    will-change: transform;
}


/* =====================================================
   BENEFIT ITEM
===================================================== */

.icoffee-feature {
    width: 230px;
    min-width: 230px;

    height: 175px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 20px 25px;

    box-sizing: border-box;

    border-right: 1px solid rgba(36, 25, 20, 0.10);

    text-align: center;
}


/* =====================================================
   LARGE ICON
===================================================== */

.icoffee-feature-icon {
    width: 62px;
    height: 62px;

    margin-bottom: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.icoffee-feature-icon svg {
    width: 52px;
    height: 52px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =====================================================
   BENEFIT TEXT
===================================================== */

.icoffee-feature span {
    display: block;

    font-family: inherit;

    font-size: 11px;

    font-weight: 500;

    letter-spacing: 1.8px;

    line-height: 1.6;

    white-space: nowrap;
}


/* =====================================================
   INFINITE ANIMATION
===================================================== */

@keyframes icoffeeInfiniteScroll {

    from {
        transform: translateX(0);
    }

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

}


/* =====================================================
   HOVER PAUSE
===================================================== */

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


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .icoffee-smarter-header {
        padding: 70px 25px 55px;
    }

    .icoffee-smarter-header h2 {
        font-size: 52px;
    }

    .icoffee-feature {
        width: 205px;
        min-width: 205px;
        height: 160px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .icoffee-smarter-header {
        padding: 55px 20px 45px;
    }


    .icoffee-smarter-eyebrow {
        font-size: 8px;
        letter-spacing: 3px;
        margin-bottom: 16px;
    }


    .icoffee-smarter-header h2 {
        font-size: 38px;
        letter-spacing: -1.2px;
        line-height: 1.1;
    }


    .icoffee-marquee {
        padding-bottom: 50px;
    }


    .icoffee-feature {
        width: 175px;
        min-width: 175px;

        height: 145px;

        padding: 15px;
    }


    .icoffee-feature-icon {
        width: 50px;
        height: 50px;

        margin-bottom: 14px;
    }


    .icoffee-feature-icon svg {
        width: 43px;
        height: 43px;
    }


    .icoffee-feature span {
        font-size: 8px;
        letter-spacing: 1.3px;
    }

}

/* =====================================================
   HEADER ANNOUNCEMENT TICKER
   KEEP THIS SEPARATE FROM THE BENEFITS MARQUEE
===================================================== */

.header-stack .announcement {
    width: 100%;
    height: 34px;

    overflow: hidden;

    position: relative;

    display: flex;
    align-items: center;

    white-space: nowrap;

    box-sizing: border-box;
}


.header-stack .announcement-track {
    display: flex;
    align-items: center;

    width: max-content;

    flex-shrink: 0;

    animation: icoffeeHeaderTicker 28s linear infinite;

    will-change: transform;
}


.header-stack .announcement-track span {
    display: block;

    flex-shrink: 0;

    margin-right: 70px;

    white-space: nowrap;
}


/* HEADER LOOP */

@keyframes icoffeeHeaderTicker {

    from {
        transform: translateX(0);
    }

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

}


/* Keep it running */

.header-stack .announcement-track:hover {
    animation-play-state: running;
}

/* =========================================================
   INDUSVIVA iCOFFEE
   TWO PRODUCT SHOWCASE
========================================================= */

.iv-product-showcase {
    width: 100%;
    padding: 70px 5vw;
    background: #f4eee5;
    overflow: hidden;
}


/* =========================================================
   GRID
========================================================= */

.iv-product-grid {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 14px;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.iv-product-card {
    position: relative;

    min-height: 430px;

    overflow: hidden;

    border-radius: 6px;

    display: grid;
    grid-template-columns: 52% 48%;

    isolation: isolate;

    border: 1px solid rgba(87, 60, 43, 0.16);

    transition:
        transform 0.55s cubic-bezier(.22, .61, .36, 1),
        box-shadow 0.55s ease;

    opacity: 0;
    transform: translateY(35px);
}


.iv-product-card.iv-visible {
    opacity: 1;
    transform: translateY(0);
}


.iv-product-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 45px rgba(45, 27, 17, 0.13);
}


/* =========================================================
   BLACK CARD
========================================================= */

.iv-product-black {
    background-image: url('../assets/images/products/icoffeeblackbg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: #f4e8d7;
}

.iv-product-black::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;

    background:
        linear-gradient(90deg,
            rgba(25, 11, 6, 0.72) 0%,
            rgba(25, 11, 6, 0.34) 42%,
            rgba(25, 11, 6, 0.05) 78%);
}


/* =========================================================
   CREAMER CARD
========================================================= */

.iv-product-creamer {
    background-image: url('../assets/images/products/icoffeecreamerbg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: #342117;
}

.iv-product-creamer::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;

    background:
        linear-gradient(90deg,
            rgba(248, 240, 226, 0.72) 0%,
            rgba(248, 240, 226, 0.32) 42%,
            rgba(248, 240, 226, 0.04) 78%);
}


/* =========================================================
   CONTENT
========================================================= */

.iv-product-content {
    position: relative;
    z-index: 5;

    padding: 52px 10px 45px 48px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    justify-content: center;
}


/* =========================================================
   EYEBROW
========================================================= */

.iv-product-eyebrow {
    display: inline-block;

    margin-bottom: 18px;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.18em;

    line-height: 1.4;

    text-transform: uppercase;

    opacity: 0.72;
}


/* =========================================================
   HEADLINE
========================================================= */

.iv-product-content h2 {
    margin: 0;

    max-width: 330px;

    font-family:
        "Cormorant Garamond",
        "Times New Roman",
        Georgia,
        serif;

    font-size: clamp(27px, 2.6vw, 43px);

    font-weight: 500;

    line-height: 0.98;

    letter-spacing: -0.025em;
}


.iv-product-content h2 em {
    font-style: italic;
    font-weight: 400;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.iv-product-content p {
    max-width: 290px;

    margin: 20px 0 25px;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 11px;

    line-height: 1.65;

    letter-spacing: 0.015em;

    opacity: 0.7;
}


/* =========================================================
   BUTTON
========================================================= */

.iv-product-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 14px;

    min-height: 32px;

    padding: 8px 15px;

    border: 1px solid currentColor;

    border-radius: 999px;

    color: inherit;

    text-decoration: none;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 0.13em;

    text-transform: uppercase;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        gap 0.35s ease,
        transform 0.35s ease;
}


.iv-product-button span {
    font-size: 13px;

    line-height: 1;

    transition:
        transform 0.35s ease;
}


.iv-product-button:hover {
    gap: 20px;

    transform: translateY(-2px);
}


.iv-product-black .iv-product-button:hover {
    background: #f3e4d0;
    color: #24150e;
}


.iv-product-creamer .iv-product-button:hover {
    background: #302016;
    color: #f5ecdf;
}


.iv-product-button:hover span {
    transform: translateX(3px);
}


/* =========================================================
   PRODUCT VISUAL AREA
========================================================= */

.iv-product-visual {
    position: relative;

    min-width: 0;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: visible;
}


/* =========================================================
   SOFT PRODUCT LIGHT
========================================================= */

.iv-product-glow {
    position: absolute;

    width: 72%;
    aspect-ratio: 1;

    border-radius: 50%;

    filter: blur(25px);

    opacity: 0.5;

    pointer-events: none;

    transition:
        transform 0.8s cubic-bezier(.22, .61, .36, 1);
}


.iv-product-black .iv-product-glow {
    background:
        radial-gradient(circle,
            rgba(150, 93, 49, 0.35),
            transparent 68%);
}


.iv-product-creamer .iv-product-glow {
    background:
        radial-gradient(circle,
            rgba(196, 146, 91, 0.22),
            transparent 68%);
}


.iv-product-card:hover .iv-product-glow {
    transform: scale(1.18);
}


/* =========================================================
   ACTUAL PRODUCT IMAGE
========================================================= */

.iv-product-image {
    position: relative;

    z-index: 4;

    display: block;

    width: auto;

    height: 76%;

    max-width: 78%;

    object-fit: contain;

    object-position: center;

    filter:
        drop-shadow(0 22px 18px rgba(0, 0, 0, 0.24));

    transform:
        translateY(8px) rotate(0deg);

    transition:
        transform 0.8s cubic-bezier(.22, .61, .36, 1),
        filter 0.8s ease;
}


.iv-product-card:hover .iv-product-image {
    transform:
        translateY(0) scale(1.045);

    filter:
        drop-shadow(0 28px 25px rgba(0, 0, 0, 0.29));
}


/* =========================================================
   BLACK COFFEE BEANS
========================================================= */

.iv-product-beans {
    position: absolute;

    z-index: 3;

    bottom: 12px;
    right: 10%;

    width: 48%;

    height: 65px;

    pointer-events: none;
}


.iv-product-beans span {
    position: absolute;

    width: 25px;
    height: 15px;

    border-radius: 55% 45% 50% 50%;

    background:
        linear-gradient(135deg,
            #6d4123,
            #28140c);

    box-shadow:
        inset -3px -2px 3px rgba(0, 0, 0, .35),
        0 4px 7px rgba(0, 0, 0, .35);

    transform:
        rotate(var(--bean-rotation, 25deg));
}


.iv-product-beans span::after {
    content: "";

    position: absolute;

    left: 48%;
    top: 2px;

    width: 2px;
    height: 11px;

    border-radius: 100%;

    background: rgba(225, 178, 125, 0.35);

    transform: rotate(20deg);
}


.iv-black-beans span:nth-child(1) {
    left: 5%;
    bottom: 8px;
    --bean-rotation: 18deg;
}

.iv-black-beans span:nth-child(2) {
    left: 18%;
    bottom: 22px;
    --bean-rotation: -25deg;
}

.iv-black-beans span:nth-child(3) {
    left: 31%;
    bottom: 5px;
    --bean-rotation: 40deg;
}

.iv-black-beans span:nth-child(4) {
    left: 44%;
    bottom: 27px;
    --bean-rotation: -10deg;
}

.iv-black-beans span:nth-child(5) {
    left: 58%;
    bottom: 8px;
    --bean-rotation: 30deg;
}

.iv-black-beans span:nth-child(6) {
    left: 71%;
    bottom: 22px;
    --bean-rotation: -35deg;
}

.iv-black-beans span:nth-child(7) {
    left: 84%;
    bottom: 4px;
    --bean-rotation: 15deg;
}


/* =========================================================
   CREAMER BOWL
========================================================= */

.iv-creamer-powder {
    position: absolute;

    z-index: 2;

    right: 7%;
    bottom: 8px;

    width: 43%;

    height: 75px;

    pointer-events: none;
}


.iv-powder-bowl {
    position: absolute;

    left: 27%;
    bottom: 3px;

    width: 76px;
    height: 30px;

    border-radius:
        0 0 48% 48% / 0 0 70% 70%;

    background:
        linear-gradient(180deg,
            #d9c5a8 0%,
            #b99c78 100%);

    box-shadow:
        0 7px 8px rgba(70, 48, 31, .18);
}


.iv-powder-bowl::before {
    content: "";

    position: absolute;

    left: 4px;
    right: 4px;
    top: -8px;

    height: 17px;

    border-radius: 50%;

    background:
        radial-gradient(ellipse at center,
            #efe0c7 0%,
            #d4b995 72%,
            #ae8e6a 100%);
}


.iv-powder {
    position: absolute;

    z-index: 2;

    left: 13px;
    right: 13px;
    top: -4px;

    height: 9px;

    border-radius: 50%;

    background:
        radial-gradient(circle at 25% 40%,
            #fff0d7,
            #d8bd98 75%);

    filter: blur(.2px);
}


.iv-powder-piece {
    position: absolute;

    width: 7px;
    height: 5px;

    border-radius: 50%;

    background: #c7a982;

    opacity: .75;
}


.iv-powder-piece.p1 {
    left: 8%;
    bottom: 8px;
}

.iv-powder-piece.p2 {
    left: 17%;
    bottom: 21px;
}

.iv-powder-piece.p3 {
    left: 77%;
    bottom: 14px;
}

.iv-powder-piece.p4 {
    left: 89%;
    bottom: 5px;
}


/* =========================================================
   SUBTLE TEXTURE
========================================================= */

.iv-product-card::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 10;

    pointer-events: none;

    opacity: 0.08;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");

    mix-blend-mode: soft-light;
}


/* =========================================================
   DESKTOP LARGE
========================================================= */

@media (min-width: 1400px) {

    .iv-product-card {
        min-height: 500px;
    }

    .iv-product-content {
        padding-left: 60px;
    }

    .iv-product-content h2 {
        font-size: 46px;
    }

    .iv-product-content p {
        font-size: 12px;
        max-width: 315px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .iv-product-showcase {
        padding: 50px 24px;
    }

    .iv-product-grid {
        gap: 12px;
    }

    .iv-product-card {
        min-height: 360px;

        grid-template-columns:
            55% 45%;
    }

    .iv-product-content {
        padding:
            35px 5px 30px 28px;
    }

    .iv-product-content h2 {
        font-size: 29px;
    }

    .iv-product-content p {
        font-size: 10px;
        max-width: 230px;
    }

    .iv-product-image {
        height: 72%;
        max-width: 86%;
    }

    .iv-product-beans {
        transform: scale(.85);
        transform-origin: right bottom;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 680px) {

    .iv-product-showcase {
        padding:
            35px 16px;
    }

    .iv-product-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .iv-product-card {
        min-height: 330px;

        grid-template-columns:
            55% 45%;
    }

    .iv-product-content {
        padding:
            30px 0 30px 24px;
    }

    .iv-product-eyebrow {
        font-size: 8px;

        margin-bottom: 12px;
    }

    .iv-product-content h2 {
        font-size: 28px;
    }

    .iv-product-content p {
        font-size: 10px;

        line-height: 1.55;

        margin:
            14px 0 18px;

        max-width: 190px;
    }

    .iv-product-button {
        min-height: 30px;

        padding:
            7px 11px;

        font-size: 7px;

        gap: 9px;
    }

    .iv-product-image {
        height: 72%;
        max-width: 92%;
    }

    .iv-product-beans {
        right: 0;

        width: 65%;

        transform: scale(.72);

        transform-origin:
            right bottom;
    }

    .iv-creamer-powder {
        right: -5%;

        transform: scale(.72);

        transform-origin:
            right bottom;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .iv-product-card {
        min-height: 285px;
    }

    .iv-product-content {
        padding-left: 18px;
    }

    .iv-product-content h2 {
        font-size: 24px;
    }

    .iv-product-content p {
        max-width: 165px;

        font-size: 9px;
    }

    .iv-product-image {
        height: 68%;
    }

    .iv-product-eyebrow {
        letter-spacing: .12em;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .iv-product-card,
    .iv-product-image,
    .iv-product-glow,
    .iv-product-button,
    .iv-product-button span {
        transition: none !important;
    }

}

/* =========================================================
   iCOFFEE WHY SECTION
========================================================= */

.why-section {
    padding: 130px 6vw 140px;
    background: var(--ivory);
    color: var(--espresso);
}

.why-heading {
    max-width: 900px;
    margin: 0 auto 65px;
    text-align: center;
}

.why-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;

    margin-bottom: 18px;

    font-family: var(--sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .24em;
    color: var(--caramel);
}

.why-eyebrow span {
    width: 36px;
    height: 1px;
    background: var(--caramel);
    opacity: .5;
}

.why-heading h2 {
    margin: 0;

    font-family: var(--serif);
    font-size: clamp(42px, 5vw, 76px);
    font-weight: 500;
    line-height: 1.03;
    letter-spacing: -1px;
    color: var(--espresso);
}

.why-heading h2 em {
    font-style: italic;
    color: var(--caramel);
}

.why-heading-line {
    width: 70px;
    height: 1px;

    margin: 30px auto 0;

    background: var(--gold);
    opacity: .85;
}

.why-grid {
    max-width: 1300px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    border-top: 1px solid rgba(41, 22, 14, .14);
}

.why-pillar {
    padding: 42px 30px;

    border-right: 1px solid rgba(41, 22, 14, .14);

    transition:
        background .4s ease,
        transform .4s ease;
}

.why-pillar:last-child {
    border-right: none;
}

.why-pillar:nth-child(1) {
    transition-delay: 0s;
}

.why-pillar:nth-child(2) {
    transition-delay: .08s;
}

.why-pillar:nth-child(3) {
    transition-delay: .16s;
}

.why-pillar:nth-child(4) {
    transition-delay: .24s;
}

.why-pillar:hover {
    background: rgba(233, 191, 123, .14);
    transform: translateY(-4px);
}

.why-index {
    font-family: var(--serif);
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--caramel);
}

.why-pillar h3 {
    margin: 16px 0 0;

    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -.3px;
    color: var(--espresso);
}

.why-rule {
    width: 32px;
    height: 1px;

    margin: 16px 0;

    background: var(--gold);
    opacity: .75;
}

.why-pillar p {
    margin: 0;

    font-family: var(--sans);
    font-size: 13.5px;
    line-height: 1.6;
    color: rgba(41, 22, 14, .72);
}

@media (max-width: 900px) {

    .why-section {
        padding: 95px 6vw 100px;
    }

    .why-heading {
        margin-bottom: 45px;
    }

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

    .why-pillar {
        border-bottom: 1px solid rgba(41, 22, 14, .14);
    }

    .why-pillar:nth-child(2n) {
        border-right: none;
    }

    .why-pillar:nth-child(3),
    .why-pillar:nth-child(4) {
        border-bottom: none;
    }
}

@media (max-width: 600px) {

    .why-section {
        padding: 70px 20px 75px;
    }

    .why-heading h2 {
        font-size: 38px;
        letter-spacing: -.5px;
    }

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

    .why-pillar {
        padding: 30px 4px;
        border-right: none !important;
        border-bottom: 1px solid rgba(41, 22, 14, .14);
    }

    .why-pillar:last-child {
        border-bottom: none;
    }
}


/* =========================================================
   iCOFFEE INGREDIENTS SECTION
========================================================= */

.icoffee-ingredients {
    position: relative;
    overflow: hidden;
    padding: 115px 5vw 125px;
    isolation: isolate;
    color: #211812;
}

.ingredients-background {
    position: absolute;
    inset: 0;
    z-index: -2;

    background:
        linear-gradient(rgba(255, 249, 238, 0.35),
            rgba(255, 249, 238, 0.35)),
        url('../assets/images/ingredients/icoffeeingredientbg.webp') center / cover no-repeat;
}

.icoffee-ingredients::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;

    background:
        radial-gradient(circle at 50% 35%,
            rgba(255, 255, 255, .35),
            transparent 48%);
}


/* =========================================================
   HEADING
========================================================= */

.ingredients-heading {
    max-width: 1100px;
    margin: 0 auto 65px;
    text-align: center;
}

.ingredients-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;

    margin-bottom: 18px;

    font-family: Arial, sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 6px;
    color: #74583e;
}

.ingredients-eyebrow span {
    width: 36px;
    height: 1px;
    background: #98795a;
    opacity: .6;
}

.ingredients-heading h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(43px, 5vw, 78px);
    font-weight: 400;
    line-height: .95;
    letter-spacing: -3px;
    color: #17120f;
}

.ingredients-heading h2 em {
    display: block;

    margin-top: 9px;

    font-size: .72em;
    font-weight: 400;
    font-style: italic;
    letter-spacing: -2px;
}

.ingredients-heading-line {
    width: 80px;
    height: 1px;

    margin: 31px auto 0;

    background: #8c6c4c;
    opacity: .55;
}


/* =========================================================
   GRID
========================================================= */

.ingredient-grid {
    width: min(1450px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 20px;
}


/* =========================================================
   PANELS
========================================================= */

.ingredient-panel {
    position: relative;

    min-height: 260px;

    overflow: hidden;

    border-radius: 20px;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    box-shadow:
        0 15px 50px rgba(62, 39, 20, .10);

    transition:
        transform .65s cubic-bezier(.2, .8, .2, 1),
        box-shadow .65s ease;
}

.ingredient-panel:hover {
    transform: translateY(-7px);

    box-shadow:
        0 25px 65px rgba(62, 39, 20, .17);
}


/* =========================================================
   YOUR FOUR BACKGROUNDS
========================================================= */

.panel-kaphi {
    background-image:
        url('../assets/images/ingredients/icoffeeingredientcoffee.webp');
}

.panel-kapikacchu {
    background-image:
        url('../assets/images/ingredients/icoffeeingredientkapikacchu.webp');
}

.panel-saptaranga {
    background-image:
        url('../assets/images/ingredients/icoffeeingredientsaptaranga.webp');
}

.panel-formula {
    background-image:
        url('../assets/images/ingredients/icoffeeingredientmix.webp');
}


/* =========================================================
   PANEL SHADE
========================================================= */

.panel-shade {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(255, 249, 238, .95) 0%,
            rgba(255, 249, 238, .82) 38%,
            rgba(255, 249, 238, .28) 72%,
            rgba(255, 249, 238, .04) 100%);
}

.panel-formula .panel-shade {
    background:
        linear-gradient(90deg,
            rgba(252, 245, 232, .96),
            rgba(252, 245, 232, .84) 46%,
            rgba(252, 245, 232, .24));
}


/* =========================================================
   PANEL INNER
========================================================= */

.panel-inner {
    position: relative;
    z-index: 2;

    min-height: 260px;

    padding: 16px 18px;

    display: flex;
    flex-direction: column;
}

.panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.panel-top span {
    font-family: Georgia, serif;
    font-size: 12px;
    letter-spacing: 3px;
    color: #7c6045;
}

.panel-top small {
    font-family: Arial, sans-serif;
    font-size: 8px;
    letter-spacing: 2.5px;
    color: #806448;
}


/* =========================================================
   INGREDIENT CONTENT
========================================================= */

.panel-main {
    margin-top: auto;
    max-width: 650px;
}

.panel-main h3 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 2.8vw, 38px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -1.5px;
}

.latin-name {
    margin: 4px 0 0;

    font-family: Georgia, serif;
    font-size: 13px;
    font-style: italic;
    color: #6d5641;
}

.panel-rule {
    width: 40px;
    height: 1px;

    margin: 8px 0;

    background: #967653;
    opacity: .7;
}


/* =========================================================
   INFO
========================================================= */
.ingredient-info {
    display: grid;
    grid-template-columns: 0.65fr 1.35fr;
    gap: 5px;

    padding-top: 8px;
    border-top: 1px solid rgba(93, 67, 44, .25);
}

.ingredient-info label,
.ingredient-benefits label,
.formula-main label,
.formula-benefits>label {
    display: block;

    margin-bottom: 4px;

    font-family: Arial, sans-serif;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 2.2px;

    color: #806448;
}

.ingredient-info p {
    margin: 0;

    font-family: Georgia, serif;
    font-size: 12.5px;
    line-height: 1.45;
    color: #382b21;
}

.ingredient-info p+p {
    margin-top: 1px;
}

.ingredient-info strong {
    font-weight: 600;
    color: #1f1712;
}


/* =========================================================
   BENEFITS
========================================================= */

.ingredient-benefits {
    margin-top: 8px;

    padding-top: 8px;

    border-top: 1px solid rgba(93, 67, 44, .18);
}

.ingredient-benefits p {
    margin: 2px 0;

    font-family: Georgia, serif;
    font-size: 12px;
    line-height: 1.4;
    color: #413329;
}


/* =========================================================
   FORMULA CARD
========================================================= */

.formula-main {
    margin-top: auto;
    max-width: 670px;
}

.formula-main h3 {
    margin: 0;

    font-family: Georgia, serif;
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 400;
    line-height: .98;
    letter-spacing: -1px;
}

.formula-main h3 em {
    font-style: italic;
}

.formula-main h4 {
    margin: 6px 0 0;

    font-family: Arial, sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2.2px;
    color: #73583f;
}

.formula-rule {
    width: 40px;
    height: 1px;

    margin: 8px 0;

    background: #967653;
}

.formula-description {
    max-width: 380px;

    margin: 0;

    font-family: Georgia, serif;
    font-size: 13px;
    line-height: 1.5;
    color: #514033;
}


/* =========================================================
   MINI FORMULA
========================================================= */

.formula-mini-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 5px;
    margin-top: 8px;
}

.formula-mini-grid>div {
    padding-top: 7px;

    border-top: 1px solid rgba(93, 67, 44, .25);
}

.formula-mini-grid label {
    margin-bottom: 2px;
}

.formula-mini-grid small {
    display: block;

    margin-bottom: 3px;

    font-family: Georgia, serif;
    font-size: 11px;
    font-style: italic;
    color: #92765a;
}

.formula-mini-grid p {
    margin: 1px 0;

    font-family: Georgia, serif;
    font-size: 11px;
    color: #3e3025;
}


/* =========================================================
   BUTTON
========================================================= */

.formula-open-button {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-top: 10px;
    padding: 7px 14px;

    border: 1px solid #614a35;
    border-radius: 100px;

    background: transparent;

    font-family: Arial, sans-serif;
    font-size: 8px;
    letter-spacing: 2px;

    color: #3e2e22;

    cursor: pointer;

    transition:
        background .3s ease,
        color .3s ease;
}

.formula-open-button span {
    font-size: 17px;

    transition:
        transform .3s ease;
}

.formula-open-button:hover {
    background: #3e2e22;
    color: #fffaf1;
}

.formula-open-button:hover span {
    transform: translateX(5px);
}


/* =========================================================
   MODAL
========================================================= */

.icoffee-formula-modal {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .35s ease,
        visibility .35s ease;
}

.icoffee-formula-modal.active {
    opacity: 1;
    visibility: visible;
}

.formula-modal-overlay {
    position: absolute;
    inset: 0;

    background: rgba(28, 19, 13, .68);

    backdrop-filter: blur(12px);
}

.formula-modal-box {
    position: relative;
    z-index: 2;

    width: min(900px, 100%);
    max-height: 90vh;

    overflow-y: auto;

    padding: 58px;

    border-radius: 28px;

    background:
        linear-gradient(135deg,
            #3c2415,
            #2a160c);

    box-shadow:
        0 35px 100px rgba(0, 0, 0, .32);

    transform:
        translateY(25px) scale(.97);

    transition:
        transform .45s cubic-bezier(.2, .8, .2, 1);
}

.icoffee-formula-modal.active .formula-modal-box {
    transform:
        translateY(0) scale(1);
}


/* Close button */

.formula-modal-close {
    position: absolute;

    top: 20px;
    right: 22px;

    width: 38px;
    height: 38px;

    border: 1px solid rgba(233, 216, 196, .35);
    border-radius: 50%;

    background: transparent;

    font-size: 25px;
    font-weight: 300;

    color: #f1e3cf;

    cursor: pointer;

    transition: .3s ease;
}

.formula-modal-close:hover {
    transform: rotate(90deg);

    background: #f1e3cf;
    color: #2a160c;
}


/* =========================================================
   MODAL HEADING
========================================================= */

.modal-eyebrow {
    margin-bottom: 15px;

    font-family: Arial, sans-serif;
    font-size: 8px;
    letter-spacing: 4px;
    color: #c9a97e;
}

.formula-modal-box>h2 {
    margin: 0;

    font-family: Georgia, serif;
    font-size: clamp(35px, 4vw, 54px);
    font-weight: 400;
    line-height: .98;
    letter-spacing: -1.5px;
    color: #f7ede1;
}

.formula-modal-box>h2 em {
    display: block;

    margin-top: 5px;

    font-style: italic;
    font-weight: 400;
}

.modal-line {
    width: 70px;
    height: 1px;

    margin: 28px 0 35px;

    background: #c9a97e;
}


/* =========================================================
   FORMULA COLUMNS
========================================================= */

.formula-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
}

.formula-column {
    border-top: 1px solid rgba(233, 216, 196, .28);
}

.formula-column-heading {
    padding: 17px 0;
}

.formula-column-heading h3 {
    margin: 0;

    font-family: Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #f1e3cf;
}

.formula-column-heading span {
    display: block;

    margin-top: 5px;

    font-family: Georgia, serif;
    font-size: 11px;
    font-style: italic;
    color: #c9a97e;
}

.formula-row {
    display: flex;
    justify-content: space-between;

    padding: 13px 0;

    border-top: 1px solid rgba(233, 216, 196, .14);

    font-family: Georgia, serif;
    font-size: 13px;
    color: #e9d8c4;
}

.formula-row strong {
    font-weight: 600;
    color: #ffffff;
}


/* =========================================================
   BENEFIT PILLS
========================================================= */

.formula-benefits {
    margin-top: 40px;

    padding-top: 23px;

    border-top: 1px solid rgba(233, 216, 196, .23);
}

.formula-benefits > label {
    color: #c9a97e;
}

.benefit-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;

    margin-top: 15px;
}

.benefit-pills span {
    padding: 8px 13px;

    border: 1px solid rgba(233, 216, 196, .3);
    border-radius: 100px;

    font-family: Georgia, serif;
    font-size: 11px;

    color: #f1e3cf;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .icoffee-ingredients {
        padding: 85px 22px 95px;
    }

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

    .ingredient-panel,
    .panel-inner {
        min-height: 260px;
    }

    .formula-columns {
        gap: 25px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .icoffee-ingredients {
        padding: 70px 15px 80px;
    }

    .ingredients-heading {
        margin-bottom: 40px;
    }

    .ingredients-heading h2 {
        font-size: 43px;
        letter-spacing: -2px;
    }

    .ingredients-eyebrow {
        font-size: 8px;
        letter-spacing: 4px;
    }

    .ingredient-grid {
        gap: 15px;
    }

    .ingredient-panel {
        min-height: 300px;
        border-radius: 16px;
    }

    .panel-inner {
        min-height: 300px;
        padding: 18px;
    }

    .ingredient-info {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .formula-mini-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .formula-mini-grid>div+div {
        margin-top: 12px;
    }

    .formula-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .formula-modal-box {
        padding: 42px 24px;
        border-radius: 22px;
    }

    .formula-modal-box>h2 {
        font-size: 36px;
    }
}


/* =========================================================
   ACCESSIBILITY UTILITY
========================================================= */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* =========================================================
   iCOFFEE — BLACK VS CREAMER COMPARISON
========================================================= */

.compare-section {
    padding: 130px 6vw 140px;
    background: var(--cream);
    color: var(--espresso);
}

.compare-heading {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}

.compare-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;

    margin-bottom: 18px;

    font-family: var(--sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .24em;
    color: var(--caramel);
}

.compare-eyebrow span {
    width: 36px;
    height: 1px;
    background: var(--caramel);
    opacity: .5;
}

.compare-heading h2 {
    margin: 0;

    font-family: var(--serif);
    font-size: clamp(36px, 4.4vw, 62px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -1px;
    color: var(--espresso);
}

.compare-heading h2 em {
    font-style: italic;
    color: var(--caramel);
}

.compare-heading p {
    max-width: 520px;

    margin: 18px auto 0;

    font-family: var(--sans);
    font-size: 14.5px;
    line-height: 1.65;
    color: rgba(41, 22, 14, .68);
}

.compare-heading-line {
    width: 70px;
    height: 1px;

    margin: 28px auto 0;

    background: var(--gold);
    opacity: .85;
}

.compare-table-wrap {
    max-width: 880px;
    margin: 0 auto;

    border-radius: 26px;
    overflow: hidden;

    background: var(--ivory);

    box-shadow: 0 25px 70px rgba(41, 22, 14, .13);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
}

.compare-table thead th {
    padding: 28px 20px 22px;

    text-align: center;
    vertical-align: bottom;

    font-family: var(--serif);
    font-size: 20px;
    font-weight: 500;

    border-bottom: 1px solid rgba(41, 22, 14, .16);
}

.compare-table thead th img {
    display: block;
    width: 46px;
    height: auto;

    margin: 0 auto 12px;
}

.compare-col-eyebrow {
    display: block;

    margin-bottom: 5px;

    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .2em;
}

.compare-row-head {
    background: var(--ivory);
}

.compare-col-black {
    background: var(--espresso);
    color: var(--ivory);
}

.compare-col-black .compare-col-eyebrow {
    color: var(--gold);
}

.compare-col-creamer {
    background: rgba(184, 121, 63, .09);
    color: var(--espresso);
}

.compare-col-creamer .compare-col-eyebrow {
    color: var(--caramel);
}

.compare-table tbody th {
    padding: 17px 22px;

    text-align: left;

    font-family: var(--sans);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .03em;
    color: var(--espresso);

    border-bottom: 1px solid rgba(41, 22, 14, .08);
}

.compare-table tbody th span {
    display: block;

    margin-top: 3px;

    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0;
    font-size: 11px;
    color: rgba(41, 22, 14, .5);
}

.compare-table tbody td {
    padding: 17px 20px;

    text-align: center;

    font-family: var(--serif);
    font-size: 16px;
    color: var(--espresso);

    border-bottom: 1px solid rgba(41, 22, 14, .08);
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
    border-bottom: none;
}

.compare-table tbody tr:nth-child(even) {
    background: rgba(41, 22, 14, .025);
}

.compare-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;

    margin-top: 46px;
}

.outline-button {
    border: 1px solid rgba(41, 22, 14, .4);
    background: transparent;
    color: var(--espresso);
}

.outline-button:hover {
    background: var(--espresso);
    border-color: var(--espresso);
    color: var(--ivory);
}

@media (max-width: 900px) {

    .compare-section {
        padding: 95px 6vw 100px;
    }

    .compare-table-wrap {
        border-radius: 20px;
    }
}

@media (max-width: 640px) {

    .compare-section {
        padding: 75px 20px 80px;
    }

    .compare-heading {
        margin-bottom: 40px;
    }

    .compare-heading h2 {
        font-size: 34px;
    }

    .compare-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .compare-table {
        min-width: 560px;
    }

    .compare-table tbody th {
        position: sticky;
        left: 0;
        z-index: 1;
        background: var(--ivory);
    }

    .compare-table tbody tr:nth-child(even) th {
        background: #f4ece1;
    }

    .compare-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .compare-ctas .btn {
        width: 100%;
    }
}


/* =========================================================
   iCOFFEE — THE RITUAL, STEP BY STEP
========================================================= */

.ritual-steps-section {
    padding: 130px 6vw 150px;
    background: var(--espresso);
    color: var(--ivory);
}

.ritual-steps-heading {
    max-width: 760px;
    margin: 0 auto 70px;
    text-align: center;
}

.ritual-steps-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;

    margin-bottom: 18px;

    font-family: var(--sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .24em;
    color: var(--gold);
}

.ritual-steps-eyebrow span {
    width: 36px;
    height: 1px;
    background: var(--gold);
    opacity: .6;
}

.ritual-steps-heading h2 {
    margin: 0;

    font-family: var(--serif);
    font-size: clamp(38px, 4.6vw, 68px);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -1px;
    color: var(--ivory);
}

.ritual-steps-heading h2 em {
    font-style: italic;
    color: var(--gold);
}

.ritual-steps-heading-line {
    width: 70px;
    height: 1px;

    margin: 28px auto 0;

    background: var(--gold);
    opacity: .7;
}

.ritual-steps-row {
    max-width: 1400px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.ritual-step {
    flex: 1 1 0;
    max-width: 280px;

    text-align: center;

    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.16, 1, .3, 1);
}

.ritual-step:nth-of-type(1) {
    transition-delay: 0s;
}

.ritual-step:nth-of-type(2) {
    transition-delay: .12s;
}

.ritual-step:nth-of-type(3) {
    transition-delay: .24s;
}

.ritual-step:nth-of-type(4) {
    transition-delay: .36s;
}

.ritual-step-frame {
    position: relative;

    aspect-ratio: 3 / 4;

    border-radius: 20px;
    overflow: hidden;

    box-shadow: 0 22px 55px rgba(0, 0, 0, .38);
}

.ritual-step-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;

    transform: scale(1.14);

    transition: transform 1.2s cubic-bezier(.16, 1, .3, 1);
}

.ritual-step.reveal.visible .ritual-step-frame img {
    transform: scale(1);
}

.ritual-step-copy {
    margin-top: 22px;
}

.ritual-step-index {
    display: block;

    margin-bottom: 8px;

    font-family: var(--serif);
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--gold);
}

.ritual-step h3 {
    margin: 0;

    font-family: var(--serif);
    font-size: 25px;
    font-weight: 500;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--ivory);
}

.ritual-step p {
    margin: 9px 0 0;

    font-family: var(--sans);
    font-size: 12.5px;
    line-height: 1.55;
    color: rgba(251, 245, 235, .6);
}

.ritual-step-arrow {
    flex-shrink: 0;

    margin-top: -68px;

    font-family: var(--serif);
    font-size: 22px;
    color: var(--gold);
    opacity: .55;
}

@media (max-width: 900px) {

    .ritual-steps-section {
        padding: 95px 6vw 100px;
    }

    .ritual-steps-heading {
        margin-bottom: 50px;
    }

    .ritual-steps-row {
        flex-direction: column;
        gap: 30px;
    }

    .ritual-step {
        max-width: 320px;
        width: 100%;
    }

    .ritual-step-arrow {
        margin-top: 0;
        transform: rotate(90deg);
    }
}

@media (max-width: 600px) {

    .ritual-steps-section {
        padding: 75px 20px 80px;
    }

    .ritual-steps-heading h2 {
        font-size: 34px;
    }

    .ritual-step {
        max-width: 260px;
    }
}


/* =========================================================
   WHY ICOFFEE — 2x2 GRID + CINEMATIC VIDEO
   ========================================================= */

.iv-why-section {
    width: 100%;
    padding: 110px 5vw;
    background: #f7f0e6;
    overflow: hidden;
}


/* MAIN TWO-COLUMN LAYOUT */

.iv-why-layout {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;

    display: grid;

    /*
       Left = content
       Right = portrait video
    */
    grid-template-columns: minmax(0, 1fr) auto;

    gap: 34px;

    align-items: start;
}


/* =========================================================
   LEFT CONTENT
   ========================================================= */

.iv-why-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
}


/* SECTION LABEL */

.iv-section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;

    margin-bottom: 30px;

    color: #b9783d;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: .24em;
    text-transform: uppercase;
}

.iv-section-label span {
    width: 52px;
    height: 1px;
    background: rgba(157, 105, 59, .45);
}


/* MAIN HEADING */

.iv-why-heading h2 {
    margin: 0;

    color: #28170f;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(42px, 4.2vw, 72px);
    line-height: .98;
    font-weight: 400;
    letter-spacing: -.045em;

    text-align: center;
}

.iv-why-heading h2 em {
    color: #b9783d;
    font-style: italic;
}


/* SMALL LINE UNDER HEADING */

.iv-heading-line {
    width: 72px;
    height: 1px;

    margin: 42px auto 55px;

    background: #c99b70;
}


/* =========================================================
   2 x 2 GRID
   ========================================================= */

.iv-why-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    /* TWO EQUAL ROWS */
    grid-template-rows: 232px 232px;

    border-top: 1px solid rgba(88, 57, 37, .18);
    border-left: 1px solid rgba(88, 57, 37, .18);
}

/* EACH ITEM */

.iv-why-item {
    min-height: 230px;

    padding: 42px 38px;

    border-right: 1px solid rgba(88, 57, 37, .18);
    border-bottom: 1px solid rgba(88, 57, 37, .18);

    transition:
        background .35s ease,
        transform .35s ease;
}


/* NUMBER */

.iv-why-number {
    display: block;

    margin-bottom: 30px;

    color: #b9783d;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 11px;
    letter-spacing: .28em;
}


/* TITLE */

.iv-why-item h3 {
    margin: 0;

    color: #2c1a12;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(22px, 1.7vw, 30px);
    line-height: 1.1;
    font-weight: 400;
}


/* LITTLE GOLD LINE */

.iv-small-line {
    width: 42px;
    height: 1px;

    margin: 23px 0 25px;

    background: #c99b70;
}


/* DESCRIPTION */

.iv-why-item p {
    max-width: 340px;

    margin: 0;

    color: #6d584b;

    font-size: 14px;
    line-height: 1.7;
}


/* HOVER */

.iv-why-item:hover {
    background: rgba(255, 255, 255, .42);
}


/* =========================================================
   RIGHT VIDEO
   ========================================================= */
/* =========================================================
   iCOFFEE WHY — DESKTOP VIDEO
   ========================================================= */

.iv-why-video {
    position: relative;

    /* Align video with the TOP of the 2x2 grid */
    margin-top: 0;

    /* Exactly the height of the two grid rows */
    height: 464px;

    /* True portrait ratio */
    aspect-ratio: 9 / 16;

    /* Let width be determined by the 9:16 ratio */
    width: auto;

    min-height: 0;

    overflow: hidden;

    border-radius: 18px;

    background: #2c1a12;

    box-shadow:
        0 25px 70px rgba(52, 31, 18, .16);

    justify-self: center;
    align-self: start;
}


/* =========================================================
   VIDEO — SHOW FULL 9:16 FRAME
   ========================================================= */

.iv-story-video {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    /* IMPORTANT:
       Don't zoom/crop the portrait video */
    object-fit: contain;

    object-position: center;

    background: #2c1a12;
}/* DARK CINEMATIC OVERLAY */

.iv-video-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(20, 10, 5, .18) 0%,
            rgba(20, 10, 5, .02) 40%,
            rgba(20, 10, 5, .72) 100%);

    pointer-events: none;
}


/* TOP LABEL */

.iv-video-top {
    position: absolute;

    top: 32px;
    left: 34px;
    right: 34px;

    display: flex;
    align-items: center;
    gap: 16px;

    color: rgba(255, 255, 255, .9);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .22em;
}

.iv-video-top-line {
    width: 45px;
    height: 1px;

    background: rgba(255, 255, 255, .55);
}


/* BOTTOM COPY */

.iv-video-bottom {
    position: absolute;

    left: 34px;
    right: 34px;
    bottom: 34px;

    color: #fff;
}

.iv-video-kicker {
    display: block;

    margin-bottom: 10px;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .22em;
}

.iv-video-bottom h3 {
    margin: 0;

    max-width: 500px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(30px, 3vw, 50px);
    line-height: 1.02;
    font-weight: 400;
    letter-spacing: -.025em;
}

.iv-video-bottom h3 em {
    font-style: italic;
}


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

@media (max-width: 1100px) {

    .iv-why-layout {
        grid-template-columns: 1fr;
    }

    .iv-why-video {
        min-height: 600px;
    }

}


@media (max-width: 700px) {

    .iv-why-section {
        padding: 75px 20px;
    }

    .iv-why-heading h2 {
        font-size: 42px;
    }

    .iv-heading-line {
        margin-bottom: 40px;
    }

    .iv-why-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .iv-why-item {
        min-height: auto;
        padding: 30px 25px;
    }

    .iv-why-item h3 {
        font-size: 24px;
    }

    .iv-why-video {
        min-height: 520px;
        border-radius: 14px;
    }

}


@media (max-width: 480px) {

    .iv-section-label {
        gap: 10px;
        font-size: 9px;
    }

    .iv-section-label span {
        width: 30px;
    }

    .iv-why-heading h2 {
        font-size: 36px;
    }

    .iv-why-item {
        padding: 27px 22px;
    }

    .iv-why-video {
        min-height: 450px;
    }

    .iv-video-top {
        top: 22px;
        left: 22px;
        right: 22px;
    }

    .iv-video-bottom {
        left: 22px;
        right: 22px;
        bottom: 25px;
    }

}
/* =========================================================
   ICOFFEE WHY — FINAL 3-COLUMN LAYOUT
   Desktop: 01 + 03 | VIDEO | 02 + 04
   Mobile: 01 → 03 → VIDEO → 02 → 04
   ========================================================= */

@media (min-width: 1101px) {
    .iv-why-section {
        width: 100%;
        padding: 110px 5vw;
        overflow: hidden;
    }

    .iv-why-layout.iv-why-layout--three {
        width: 100%;
        max-width: 1500px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: minmax(0, 1fr) 300px minmax(0, 1fr);
        grid-template-rows: repeat(2, 205px);
        column-gap: clamp(28px, 3vw, 48px);
        row-gap: 0;
        align-items: stretch;
    }

    .iv-why-column {
        min-width: 0;
        display: grid;
        grid-template-rows: repeat(2, 205px);
    }

    .iv-why-column--left { grid-column: 1; grid-row: 1 / 3; }
    .iv-why-column--right { grid-column: 3; grid-row: 1 / 3; }

    .iv-why-column .iv-why-item {
        width: 100%;
        height: 205px;
        min-height: 0;
        padding: 28px 30px;
        box-sizing: border-box;
    }

    .iv-why-column .iv-why-number {
        margin-bottom: 18px;
    }

    .iv-why-column .iv-small-line {
        margin: 16px 0 18px;
    }

    .iv-why-column .iv-why-item p {
        max-width: 360px;
        font-size: 13.5px;
        line-height: 1.6;
    }

    .iv-why-video {
        grid-column: 2;
        grid-row: 1 / 3;
        width: 300px;
        height: 410px;
        min-height: 0;
        margin: auto;
        aspect-ratio: 9 / 16;
        align-self: center;
        justify-self: center;
        overflow: hidden;
        border-radius: 18px;
    }

    .iv-story-video {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        background: #2c1a12;
    }
}

@media (max-width: 1100px) and (min-width: 721px) {
    .iv-why-section {
        padding: 90px 5vw;
    }

    .iv-why-layout.iv-why-layout--three {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(250px, 300px) minmax(0, 1fr);
        gap: 20px;
        align-items: stretch;
    }

    .iv-why-column {
        min-width: 0;
        display: grid;
        grid-template-rows: repeat(2, minmax(190px, auto));
    }

    .iv-why-column .iv-why-item {
        width: 100%;
        height: auto;
        min-height: 190px;
        padding: 26px 22px;
        box-sizing: border-box;
    }

    .iv-why-column .iv-why-number {
        margin-bottom: 16px;
    }

    .iv-why-column .iv-small-line {
        margin: 14px 0 16px;
    }

    .iv-why-column .iv-why-item p {
        font-size: 13px;
        line-height: 1.55;
    }

    .iv-why-video {
        grid-column: 2;
        grid-row: 1 / 3;
        width: 100%;
        height: auto;
        min-height: 0;
        margin: auto;
        aspect-ratio: 9 / 16;
        align-self: center;
    }

    .iv-story-video {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }
}

@media (max-width: 720px) {
    .iv-why-section {
        padding: 72px 20px;
    }

    .iv-why-layout.iv-why-layout--three {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .iv-why-column {
        display: contents;
    }

    .iv-why-column--left { order: 1; }
    .iv-why-video { order: 2; }
    .iv-why-column--right { order: 3; }

    .iv-why-column--left .iv-why-item:nth-child(1) { order: 1; }
    .iv-why-column--left .iv-why-item:nth-child(2) { order: 2; }
    .iv-why-column--right .iv-why-item:nth-child(1) { order: 3; }
    .iv-why-column--right .iv-why-item:nth-child(2) { order: 4; }

    .iv-why-item,
    .iv-why-column .iv-why-item {
        width: 100%;
        height: auto;
        min-height: 0;
        padding: 26px 22px;
        box-sizing: border-box;
    }

    .iv-why-grid {
        display: block;
    }

    .iv-why-video {
        width: 100%;
        height: auto;
        min-height: 0;
        margin: 32px auto;
        aspect-ratio: 9 / 16;
        border-radius: 14px;
    }

    .iv-story-video {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        background: #2c1a12;
    }
}

@media (max-width: 480px) {
    .iv-why-section {
        padding: 64px 18px;
    }

    .iv-why-heading h2 {
        font-size: 36px;
    }

    .iv-why-column .iv-why-item {
        padding: 24px 20px;
    }

    .iv-why-video {
        margin: 28px auto;
        border-radius: 12px;
    }

    .iv-story-video {
        object-fit: contain;
    }
}
