/* --- CAVAA NATURALS LUXE BRAND PALETTE --- */
:root {
    --cream-bg: #FAF3EA;
    --warm-cream: #F5EBDD;
    --soft-ivory: #FFFDF8; scroll-margin-top: 110px;
    --chocolate-text: #2B1B12;
    --deep-cocoa: #1F120C;
    --mocha: #5B3A2E;
    --accent-gold: #C5A059;
    --soft-gold: #E2C98F;
    --blush-cream: #F7EDE8;
    --card-shadow: 0 18px 45px rgba(43, 27, 18, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--cream-bg);
    color: var(--chocolate-text);
    line-height: 1.75;
}
/* =========================================
   HOMEPAGE — FINAL HEADER
========================================= */

.main-header {
    position: sticky;
    top: 0;
    z-index: 20;

    display: flex;
    align-items: center;

    min-height: 122px;
    padding: 8px 6%;

    background: var(--soft-ivory);
    border-bottom: 1px solid rgba(43, 27, 18, 0.06);
}

.logo-container {
    flex: 0 0 255px;
    overflow: visible;
}

.logo-container img {
    display: block;
    width: 245px;
    height: auto;
    max-width: none;

    object-fit: contain;
    mix-blend-mode: multiply;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    margin-left: auto;
    padding: 0;
    gap: 44px;
}

.nav-links a {
    margin: 0;
    white-space: nowrap;

    color: var(--chocolate-text);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-decoration: none;
    text-transform: uppercase;
}

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

@media (max-width: 900px) {
    .main-header {
        position: relative;
        flex-direction: column;
        gap: 4px;
        min-height: auto;
        padding: 8px 5% 14px;
    }

    .logo-container img {
        height: 82px;
    }

    .nav-links {
        justify-content: center;
        gap: 8px 18px;
        padding-top: 0;
    }

    .nav-links a {
        font-size: 0.66rem;
    }
}
/* ---------- HOMEPAGE HERO ---------- */

.hero-box {
    position: relative;

    display: grid;
    grid-template-columns: 40% 60%;
    align-items: center;

    width: 100%;
    max-width: 1260px;
    min-height: 470px;
    margin: 0 auto;

    overflow: hidden;
    background: #f3eadf;
}

.hero-background-image {
    position: relative;
    z-index: 1;

    grid-column: 2;
    grid-row: 1;
    justify-self: end;

    width: 100%;
    height: 470px;
    margin: 0;

    object-fit: cover;
    object-position: center 38%;
    border-radius: 0;
}

.hero-box::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;

    background: linear-gradient(
        90deg,
        rgba(250, 246, 240, 0.98) 0%,
        rgba(250, 246, 240, 0.94) 36%,
        rgba(250, 246, 240, 0.62) 50%,
        rgba(250, 246, 240, 0.08) 72%,
        rgba(250, 246, 240, 0) 100%
    );

    pointer-events: none;
}

.hero-overlay-card {
    position: relative;
    z-index: 3;

    grid-column: 1;
    grid-row: 1;

    width: 100%;
    max-width: 500px;
    margin-left: 8%;
    padding: 28px 20px 28px 0;

    text-align: left;
}

.hero-overlay-card h1 {
    margin: 14px 0 16px;

    color: #2b1b12;
    font-family: "Playfair Display", serif;
    font-size: clamp(2.65rem, 3.6vw, 3.75rem);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.035em;
}

.hero-overlay-card p {
    max-width: 500px;
    margin-bottom: 25px;

    color: #6a4b3b;
    font-size: 0.94rem;
    line-height: 1.7;
}
.hero-subtext {
    max-width: 470px;
    margin-top: -10px;
    margin-bottom: 24px;

    color: #8a6a58;
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: 0.02em;
}
.hero-box .decorative-line {
    width: 76px;
    height: 1px;
    margin: 22px 0;
    background: #c5a059;
}

.hero-cta {
    display: inline-block;

    padding: 16px 38px;
    border: 1px solid #2b1b12;

    color: #2b1b12;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-decoration: none;
    text-transform: uppercase;

    transition: 0.25s;
}

.hero-cta:hover {
    background: #2b1b12;
    color: #ffffff;
}

@media (max-width: 900px) {
    .hero-box {
        display: flex;
        flex-direction: column-reverse;
        min-height: 0;
    }

    .hero-background-image {
        width: 100%;
        height: 340px;
    }

    .hero-box::before {
        display: none;
    }

    .hero-overlay-card {
        max-width: none;
        margin: 0;
        padding: 44px 7%;
        background: #f3eadf;
    }

    .hero-overlay-card h1 {
        font-size: clamp(2.6rem, 10vw, 3.5rem);
    }
}
/* --- STORY SECTIONS --- */
.story-box-section {
    padding: 95px 5%;
    background-color: var(--cream-bg);
}

.story-box-section:nth-of-type(even) {
    background-color: var(--warm-cream);
}

.story-container {
    display: grid;
    grid-template-columns: 58% 42%;
    align-items: center;
    gap: 40px;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}
.story-image-placeholder {

    background: transparent;
    min-height: auto;

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

    border:none;
    box-shadow:none;

    overflow:hidden;
    border-radius:8px;
}
.section-image{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}
.welcome-card-box {
    width: 100%;
    max-width: 760px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
}

.section-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.welcome-card-image {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    border-radius: 0;
    display: block;
}

.story-text-card {
    background-color: var(--soft-ivory);
    padding: 40px;
    max-width: 620px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(197, 160, 89, 0.12);
}

.story-text-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    line-height: 1.12;
    letter-spacing: -0.04em;
    font-weight: 400;
    margin-bottom: 26px;
    color: var(--deep-cocoa);
}

.headline-line {
    display: block;
    white-space: nowrap;
}

.story-text-card p {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--mocha);
}

.text-link {
    margin-top: 10px;
    color: var(--chocolate-text);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.78rem;
    font-weight: 600;
    border-bottom: 1px solid var(--accent-gold);
    width: fit-content;
    padding-bottom: 4px;
}

.section-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
/* =========================================
   HOMEPAGE — CAVAA PHILOSOPHY
========================================= */

#story.story-box-section {
    padding: 62px 6%;
    background: var(--cream-bg);
}

#story .story-container {
    display: grid;
    grid-template-columns: 52% 48%;
    align-items: center;
    gap: 46px;

    max-width: 1180px;
    margin: 0 auto;
    padding: 0;
}

#story .welcome-card-box {
    width: 100%;
    max-width: 610px;
    margin: 0 auto;
}

#story .welcome-card-image {
    width: 100%;
    height: 390px;
    object-fit: contain;
}

#story .story-text-card {
    width: 100%;
    max-width: 520px;
    padding: 34px 36px;

    background: var(--soft-ivory);
    border: 1px solid rgba(197, 160, 89, 0.12);
    box-shadow: 0 14px 34px rgba(43, 27, 18, 0.07);
}

#story .story-text-card .section-tag {
    margin-bottom: 12px;
}

#story .story-text-card h2 {
    margin-bottom: 18px;

    font-size: clamp(2.5rem, 3.4vw, 3.25rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
}

#story .story-text-card p {
    margin-bottom: 13px;

    font-size: 0.91rem;
    line-height: 1.65;
}

#story .text-link {
    margin-top: 7px;
}

@media (max-width: 900px) {
    #story.story-box-section {
        padding: 52px 6%;
    }

    #story .story-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    #story .welcome-card-image {
        height: auto;
    }

    #story .story-text-card {
        max-width: 620px;
        margin: 0 auto;
    }
}

/* --- PRODUCT COLLECTION --- */

.products-section {
    padding: 60px 6%;
    background-color: var(--soft-ivory);
}

.section-header {
    max-width: 760px;
    margin: 0 auto 16px;
    text-align: center;
}

.section-header h2 {
    margin-bottom: 14px;

    color: var(--deep-cocoa);
    font-family: "Playfair Display", serif;
    font-size: clamp(2.4rem, 3.8vw, 3.4rem);
    font-weight: 400;
    line-height: 1.08;
}

.section-header p {
    max-width: 680px;
    margin: 0 auto;

    color: var(--mocha);
    font-size: 0.94rem;
    font-style: italic;
    line-height: 1.65;
}

.products-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 28px;

    max-width: 1260px;
    margin: 0 auto;
}
.jar-visual-box {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 230px;
    margin-bottom: 22px;

    overflow: hidden;

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

    color: transparent;
    font-size: 0;
    line-height: 0;
    text-indent: -9999px;
}
.sprinkles-bg {
    background-image: url("images/fancy-sprinkles.png");
}

.chocolate-bg {
    background-image: url("images/chocolate-sprinkles.png");
}

.butterscotch-bg {
    background-image: url("images/butterscotch-nuts.png");
}

.cocoa-bg {
    background-image: url("images/cocoa-powder.png");
}

.drinking-bg {
    background-image: url("images/drinking-chocolate.png");
}
.gourmet-product-card {
    padding: 28px 22px 30px;

    background-color: var(--cream-bg);
    border: 1px solid rgba(197, 160, 89, 0.1);
    box-shadow: 0 8px 22px rgba(43, 27, 18, 0.04);

    text-align: center;
}

.sprinkles-bg {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 230px;
    margin-bottom: 22px;

    overflow: hidden;
    background-color: transparent;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    color: transparent;
    font-size: 0;
    text-indent: -9999px;
}

.gourmet-product-card h3 {
    margin-bottom: 8px;
    color: #2b1b12;
    font-family: "Playfair Display", serif;
    font-size: 1.48rem;
    font-weight: 500;
    line-height: 1.22;
    min-height: 76px;
    margin-top: 24px;
margin-bottom: 12px;
display: flex;
align-items: center;
justify-content: center;
}
.product-tagline {
    min-height: 10px;
    margin: 8px 0 5px;
    color: #8A623F;
    font-family: "Montserrat", sans-serif;
    font-size: 0.68rem;      /* smaller */
    font-weight: 700;        /* bold */
    letter-spacing: 0.05em;
    line-height: 1;
    text-transform: uppercase;
    
}
.product-weight {
    display: block;
    margin-bottom: 16px;
    min-height: 24px;
    margin: 0 0 20px;
    color: #b88942;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.gourmet-product-card p {
    margin: 0;

    color: #4a3026;
    font-size: 0.88rem;
    font-weight: 400;
    line-height: 1.65;
}

.gourmet-product-card > p:not(.product-tagline) {
    margin-top: 0;
}

/* --- BRAND VALUES --- */
.video-section-box {
    padding: 70px 7%;
    background:
        linear-gradient(180deg, var(--cream-bg) 0%, var(--warm-cream) 100%);
}

.video-section-box .gourmet-product-card {
    background-color: var(--soft-ivory);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.discover-product-link {
    display: inline-block;
    margin-top: 22px;
    padding-bottom: 3px;

    color: #2b1b12;
    border-bottom: 1px solid #c5a059;

    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.discover-product-link:hover {
    color: #b88942;
}


/* --- FOOTER --- */
.premium-footer-box {
    background-color: var(--deep-cocoa);
    color: var(--cream-bg);
    padding: 86px 7% 42px 7%;
}

.footer-content-layout {
    display: flex;
    justify-content: space-between;
    max-width: 1220px;
    margin: 0 auto;
    gap: 50px;
}

.footer-brand-column h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.footer-brand-column p,
.footer-community-column p {
    font-weight: 300;
    opacity: 0.75;
}

.email-contact {
    margin-top: 20px;
    font-size: 0.95rem;
}

.email-contact a {
    color: var(--cream-bg);
    text-decoration: underline;
}

.footer-community-column h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2.6px;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.social-links-box a {
    display: inline-block;
    margin-right: 25px;
    margin-top: 15px;
    color: var(--cream-bg);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    border-bottom: 1px solid rgba(250, 243, 234, 0.3);
    padding-bottom: 2px;
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1220px;
    margin: 46px auto 0 auto;
    padding-top: 26px;
    border-top: 1px solid rgba(250, 243, 234, 0.1);
    font-size: 0.78rem;
    opacity: 0.55;
    letter-spacing: 0.5px;
}

.fssai-badge {
    letter-spacing: 1px;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 900px) {
    .main-header {
        flex-direction: column;
        gap: 0;
        padding: 16px 5%;
    }

    .logo-container img {
        height: 135px;
    }

    .nav-links {
        margin-top: 8px;
        text-align: center;    
    }

    .nav-links a {
        display: inline-block;
        margin: 8px 10px;
        font-size: 0.7rem;
    }

    .hero-box {
        min-height: auto;
        padding: 75px 20px;
    }

    .hero-section-tag {
        font-size: 0.78rem;
        letter-spacing: 3px;
    }

    .philosophy-section-tag {
        font-size: 0.78rem;
        letter-spacing: 3px;
    }

    .story-box-section {
        padding: 70px 6%;
    }

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

    .welcome-card-box {
        max-width: 560px;
        width: 100%;
    }

    .story-text-card {
        padding: 42px 28px;
    }

    .story-text-card h2 {
        font-size: 2.55rem;
    }

    .headline-line {
        white-space: normal;
    }

    .jar-visual-box {
        height: 240px;
    }

    .footer-content-layout,
    .footer-bottom-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* =========================================
   DRINKING CHOCOLATE PAGE — BASE STYLES
========================================= */

.product-page {
    margin: 0;
    background: #faf6f0;
    color: #2b1b12;
    font-family: "Montserrat", sans-serif;
}

.product-page * {
    box-sizing: border-box;
}

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

.product-page h1,
.product-page h2,
.product-page h3,
.product-page p {
    margin-top: 0;
}

.product-page h1,
.product-page h2,
.product-page h3 {
    font-family: "Playfair Display", serif;
    font-weight: 500;
}

.product-page p {
    font-size: 1rem;
    line-height: 1.8;
    color: #5f4a3f;
}

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

.section-tag {
    display: inline-block;
    margin-bottom: 18px;
    color: #c5a059;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.product-primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 30px;
    border: 1px solid #c5a059;
    background: #c5a059;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.product-primary-button:hover {
    background: transparent;
    color: #2b1b12;
    transform: translateY(-2px);
}
/* =========================================
   DRINKING CHOCOLATE — COMPACT HEADER
========================================= */

.product-page .main-header {
    position: sticky;
    top: 0;
    z-index: 50;

    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 72px;

    min-height: 84px;
    padding: 0px max(6%, calc((100% - 1260px) / 2));

    background: #fffdf8;
    border-bottom: 1px solid rgba(43, 27, 18, 0.06);
}

.product-page .logo-container img {
    display: block;
    width: 225px;
    height: auto;
    max-width: none;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.product-page .nav-links {
    display: flex;
    align-items: center;
    gap: 42px;
    padding: 0;
}

.product-page .nav-links a {
    margin: 0;
    white-space: nowrap;
    color: #2b1b12;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
/* =========================================
   DRINKING CHOCOLATE — COMPACT LUXE HERO
========================================= */

.drinking-hero {
    display: grid;
    grid-template-columns: 36% 64%;
    align-items: stretch;

    width: 100%;
    max-width: 1260px;
    height: 450px;
    min-height: 450px;
    margin: 0 auto;

    overflow: hidden;
    background: #f5ebdd;
}

.drinking-hero-image {
    position: relative;
    inset: auto;

    grid-column: 2;
    grid-row: 1;

    width: 100%;
    height: 450px;
    max-width: none;

    object-fit: cover;
    object-position: center 75%;
}

.drinking-hero-shade {
    display: none;
}

.drinking-hero-content {
    grid-column: 1;
    grid-row: 1;

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

    width: 100%;
    margin: 0;
    padding: 32px 34px 30px 46px;

    background: #f5ebdd;
    color: #2b1b12;
}

.drinking-hero-content .section-tag {
    margin-bottom: 11px;
    font-size: 0.69rem;
}

.drinking-hero-content h1 {
    margin-bottom: 14px;
    color: #1f120c;
    font-size: clamp(2.65rem, 3.25vw, 3.45rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.035em;
}

.drinking-hero-content .decorative-line {
    width: 70px;
    margin: 2px 0 17px;
}

.drinking-hero-content h2 {
    margin-bottom: 12px;
    color: #5b3a2e;
    font-size: 1.25rem;
    font-weight: 400;
    font-style: italic;
}

.drinking-hero-content p {
    max-width: 430px;
    margin-bottom: 18px;
    color: #5b3a2e;
    font-size: 0.91rem;
    line-height: 1.65;
}

.product-hero-meta {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin: 0 0 18px;
}

.product-hero-meta span {
    min-height: auto;
    padding: 7px 11px;

    border: 1px solid rgba(197, 160, 89, 0.55);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.45);

    color: #2b1b12;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.drinking-hero-content .product-primary-button {
    align-self: center;

    width: auto;
    min-width: 250px;
    min-height: 46px;
    padding: 12px 24px;

    border: 1px solid #2b1b12;
    background: transparent;
    color: #2b1b12;

    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.13em;
}

.drinking-hero-content .product-primary-button:hover {
    background: #2b1b12;
    color: #fffdf8;
}
/* =========================================
   PRODUCT STORY
========================================= */

.product-story-section {
    padding: 72px 7%;
    background: #faf6f0;
}

.product-story-layout {
    display: grid;
    grid-template-columns: 46% 54%;
    align-items: center;
    gap: 64px;

    max-width: 1180px;
    margin: 0 auto;
}

.product-jar-showcase {
    width: 100%;
    max-width: 440px;
    justify-self: center;
}

.product-image-frame {
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 20px 48px rgba(43, 27, 18, 0.1);
}

.product-image-frame img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    object-position: center;
}

.image-caption {
    margin-top: 14px;
    text-align: center;
    color: #7d6254;
    font-size: 0.92rem;
    font-style: italic;
}

.product-story-copy {
    max-width: 570px;
}

.product-story-copy .section-tag {
    margin-bottom: 14px;
}

.product-story-copy h2 {
    margin-bottom: 18px;
    color: #1f120c;
    font-size: clamp(2.6rem, 3.5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.product-story-lead {
    margin-bottom: 20px;
    color: #5b3a2e;
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
    font-weight: 400;
}

.product-story-copy p {
    margin-bottom: 16px;
    color: #5b3a2e;
    font-size: 0.98rem;
    line-height: 1.75;
}

.product-story-copy blockquote {
    margin-top: 26px;
    padding: 12px 0 12px 22px;

    border-left: 2px solid #c5a059;

    color: #2b1b12;
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.45;
}

@media (max-width: 900px) {
    .product-story-section {
        padding: 60px 6%;
    }

    .product-story-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-story-copy {
        max-width: 650px;
        margin: 0 auto;
    }

    .product-image-frame img {
        height: auto;
    }
}
/* =========================================
   PREPARATION SECTION
========================================= */

.preparation-section {
    scroll-margin-top: 140px;
    padding: 58px 7%;
    background: #fffdf8;
}

.preparation-heading {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.preparation-heading .section-tag {
    margin-bottom: 10px;
}

.preparation-heading h2 {
    margin-bottom: 12px;

    color: #1f120c;
    font-size: clamp(2.4rem, 3.3vw, 3.2rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.preparation-heading p {
    max-width: 680px;
    margin: 0 auto;

    font-size: 0.96rem;
    line-height: 1.65;
}

.preparation-layout {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    gap: 48px;

    max-width: 1080px;
    margin: 0 auto;
}

.preparation-image {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 16px 38px rgba(43, 27, 18, 0.1);
}

.preparation-image img {
    width: 100%;
    height: 345px;
    object-fit: cover;
    object-position: center;
}

.preparation-steps {
    display: grid;
    gap: 0;
}

.preparation-step {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;

    padding: 11px 0;
    border-bottom: 1px solid rgba(43, 27, 18, 0.12);
}

.preparation-step:last-child {
    border-bottom: none;
}

.step-number {
    padding-top: 3px;

    color: #c5a059;
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    line-height: 1;
}

.step-copy h3 {
    margin-bottom: 3px;

    color: #2b1b12;
    font-size: 1.2rem;
    font-weight: 400;
}

.step-copy p {
    margin: 0;

    color: #5b3a2e;
    font-size: 0.84rem;
    line-height: 1.5;
}

.preparation-tip {
    position: relative;

    max-width: 760px;
    margin: 30px auto 0;
    padding: 20px 28px 20px 78px;

    border: 1px solid rgba(197, 160, 89, 0.55);
    background: #f5ebdd;
    text-align: left;
}

.preparation-tip::before {
    content: "TIP";

    position: absolute;
    top: 50%;
    left: 24px;
    transform: translateY(-50%);

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

    width: 38px;
    height: 38px;

    border: 1px solid #c5a059;
    border-radius: 50%;

    color: #b88942;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.preparation-tip span {
    display: block;
    margin-bottom: 4px;

    color: #b88942;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.preparation-tip p {
    margin: 0;

    color: #5b3a2e;
    font-size: 0.86rem;
    line-height: 1.55;
}

@media (max-width: 900px) {
    .preparation-section {
        padding: 52px 6%;
    }

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

    .preparation-image {
        max-width: 620px;
        margin: 0 auto;
    }

    .preparation-image img {
        height: auto;
    }
}

@media (max-width: 600px) {
    .preparation-tip {
        padding: 64px 20px 20px;
        text-align: center;
    }

    .preparation-tip::before {
        top: 18px;
        left: 50%;
        transform: translateX(-50%);
    }
}
/* =========================================
   WAYS TO ENJOY
========================================= */

.ways-section {
    padding: 62px 7%;
    background: #faf6f0;
}

.ways-header {
    max-width: 720px;
    margin: 0 auto 36px;
    text-align: center;
}

.ways-header .section-tag {
    margin-bottom: 10px;
}

.ways-header h2 {
    margin-bottom: 12px;

    color: #1f120c;
    font-size: clamp(2.5rem, 3.4vw, 3.3rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.ways-header p {
    max-width: 650px;
    margin: 0 auto;

    font-size: 0.94rem;
    line-height: 1.65;
}

.ways-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;

    max-width: 1120px;
    margin: 0 auto;
}

.way-card {
    overflow: hidden;

    background: #fffdf8;
    border: 1px solid rgba(197, 160, 89, 0.14);
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(43, 27, 18, 0.08);

    text-align: center;
}

.way-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.way-card h3 {
    margin: 18px 18px 6px;

    color: #2b1b12;
    font-size: 1.45rem;
    font-weight: 400;
}

.way-card p {
    margin: 0;
    padding: 0 20px 22px;

    font-size: 0.84rem;
    line-height: 1.55;
}

@media (max-width: 900px) {
    .ways-grid {
        grid-template-columns: 1fr;
        max-width: 620px;
    }

    .way-card img {
        height: 320px;
    }
}

@media (max-width: 600px) {
    .ways-section {
        padding: 52px 6%;
    }

    .way-card img {
        height: 250px;
    }
}
/* =========================================
   PRODUCT DETAILS
========================================= */

.product-details-section {
    padding: 78px 7%;
    background: #f5ebdd;
}

.product-details-header {
    max-width: 720px;
    margin: 0 auto 46px;
    text-align: center;
}

.product-details-header h2 {
    color: #1f120c;
    font-size: clamp(2.6rem, 3.6vw, 3.5rem);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.025em;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;

    max-width: 1160px;
    margin: 0 auto;
}

.detail-card {
    min-height: 190px;
    padding: 30px 28px;

    background: #fffdf8;
    border: 1px solid rgba(197, 160, 89, 0.18);
    box-shadow: 0 12px 30px rgba(43, 27, 18, 0.05);
}

.detail-card h3 {
    margin-bottom: 12px;
    color: #2b1b12;
    font-size: 1.45rem;
    font-weight: 400;
}

.detail-card p {
    margin: 0;
    color: #5b3a2e;
    font-size: 0.92rem;
    line-height: 1.7;
}

.product-closing-message {
    max-width: 850px;
    margin: 55px auto 0;
    padding-top: 42px;

    border-top: 1px solid rgba(197, 160, 89, 0.45);
    text-align: center;
}

.product-closing-message h3 {
    margin-bottom: 12px;
    color: #1f120c;
    font-size: 2rem;
    font-weight: 400;
}

.product-closing-message p {
    margin-bottom: 24px;
}
.product-closing-message .product-primary-button {
    min-height: 52px;
    padding: 15px 32px;

    background: transparent;
    border: 1px solid #2b1b12;
    color: #2b1b12;

    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.14em;
}

.product-closing-message .product-primary-button:hover {
    background: #2b1b12;
    border-color: #2b1b12;
    color: #fffdf8;
}
@media (max-width: 900px) {
    .details-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .product-details-section {
        padding: 60px 6%;
    }

    .details-grid {
    
        grid-template-columns: 1fr;
    }
}
/* =========================================
   DRINKING CHOCOLATE FOOTER
========================================= */

.site-footer {
    padding: 52px 7% 42px;
    background: #1f120c;
    color: #faf3ea;
    text-align: center;
}

.footer-logo {
    width: 190px;
    margin: 0 auto 18px;
}

.footer-logo img {
    width: 100%;
    height: auto;
    mix-blend-mode: normal;
    filter: brightness(0) invert(1);
}

.site-footer p {
    margin: 5px 0;
    color: rgba(250, 243, 234, 0.76);
    font-size: 0.88rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 26px;
    margin-top: 24px;
}

.footer-links a {
    color: #faf3ea;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-links a:hover {
    color: #c5a059;
}
/* =========================================
   DRINKING CHOCOLATE — COMPACT SECTION SPACING
========================================= */

.product-page .product-story-section,
.product-page .preparation-section,
.product-page .ways-section,
.product-page .product-details-section {
    padding-top: 54px;
    padding-bottom: 54px;
}

.product-page .product-story-layout,
.product-page .preparation-layout {
    gap: 42px;
}

.product-page .product-image-frame img,
.product-page .preparation-image img {
    height: 330px;
}

.product-page .preparation-heading,
.product-page .ways-header,
.product-page .product-details-header {
    margin-bottom: 30px;
}
/* =========================================
   HOMEPAGE — OUR STORY
========================================= */

#about-preview.story-box-section {
    padding: 38px 6% 48px;
}

#about-preview .story-container {
    display: grid;
    grid-template-columns: 53% 47%;
    align-items: center;

    max-width: 1180px;
    margin: 0 auto;
    padding: 0;
    gap: 40px;
}

#about-preview .story-text-card {
    max-width: 620px;
    padding: 34px 38px;
}

#about-preview .story-text-card h2 {
    margin-bottom: 20px;

    font-size: clamp(2.65rem, 3.7vw, 3.65rem);
    line-height: 1.06;
    letter-spacing: -0.035em;
}

#about-preview .story-text-card p {
    margin-bottom: 14px;

    font-size: 0.92rem;
    line-height: 1.65;
}

/* =========================================
   HOMEPAGE — FINAL ANCHOR LANDING
========================================= */

#hero,
#story,
#products,
#ingredients,
#about-preview,
#community {
    scroll-margin-top: 145px;
}
/* =========================================
   DRINKING CHOCOLATE — QUICK BENEFITS
========================================= */

.product-benefits-section{

    padding:42px 7%;

    background:#fffdf8;

}

.product-benefits-grid{

    max-width:1120px;

    margin:0 auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:24px;

}

.product-benefit-card{

    padding:34px 30px;

    background:white;

    border:1px solid rgba(197,160,89,.18);

    box-shadow:0 12px 30px rgba(43,27,18,.06);

    transition:.28s;

}

.product-benefit-card:hover{

    transform:translateY(-6px);

    box-shadow:0 22px 42px rgba(43,27,18,.12);

}

.benefit-kicker{

    display:inline-block;

    margin-bottom:14px;

    color:#c5a059;

    font-size:.72rem;

    font-weight:600;

    letter-spacing:.18em;

}

.product-benefit-card h3{

    margin-bottom:10px;

    font-size:1.45rem;

    font-family:"Playfair Display",serif;

}

.product-benefit-card p{

    font-size:.9rem;

    line-height:1.65;

}

@media(max-width:900px){

.product-benefits-grid{

grid-template-columns:1fr;

}

}
/* Product-page anchor landing position */

.product-page #preparation,
.product-page #ways-to-enjoy,
.product-page #product-details {
    scroll-margin-top: 105px;
    }
/* =========================================
   DRINKING CHOCOLATE — PRODUCT DETAILS LAYOUT
========================================= */

.product-details-layout {
    display: grid;
    grid-template-columns: 38% 62%;
    align-items: center;
    gap: 42px;

    max-width: 1160px;
    margin: 0 auto;
}

.product-details-image {
    width: 100%;
    overflow: hidden;

    border-radius: 16px;
    box-shadow: 0 16px 38px rgba(43, 27, 18, 0.09);
}

.product-details-image img {
    display: block;
    width: 100%;
    height: 430px;

    object-fit: cover;
    object-position: center;
}

.product-details-layout .details-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    max-width: none;
    margin: 0;
    gap: 18px;
}

.product-details-layout .detail-card {
    min-height: 145px;
    padding: 22px 24px;
}

.product-details-layout .detail-card h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.product-details-layout .detail-card p {
    font-size: 0.84rem;
    line-height: 1.55;
}

@media (max-width: 900px) {
    .product-details-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-details-image {
        max-width: 620px;
        margin: 0 auto;
    }

    .product-details-image img {
        height: auto;
    }
}

@media (max-width: 600px) {
    .product-details-layout .details-grid {
        grid-template-columns: 1fr;
    }
}
.footer-brand-name {
    margin: 0 0 12px;

    color: #faf3ea;
    font-family: "Playfair Display", serif;
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}
/* =========================================
   WAYS TO ENJOY — SUBTLE INTERACTION
========================================= */

.way-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.way-card img {
    transition: transform 0.45s ease;
}

.way-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 46px rgba(43, 27, 18, 0.13);
}

.way-card:hover img {
    transform: scale(1.035);
}
.gourmet-product-card p.product-tagline {
    min-height: 10px;
    margin: 8px 0 5px;

    color: #8a623f;
    font-family: "Montserrat", sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
/* =========================================
   PRODUCT CARD LINKS
========================================= */

.product-image-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.gourmet-product-card h3 a {
    color: inherit;
    text-decoration: none;
}

.product-image-link .jar-visual-box {
    transition: transform 0.3s ease;
}

.product-image-link:hover .jar-visual-box {
    transform: scale(1.02);
}
.product-image-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.product-image-link .jar-visual-box {
    transition: transform 0.3s ease;
}

.product-image-link:hover .jar-visual-box {
    transform: translateY(-4px);
}
