/* ============================================================
   NUTS ENOUGH — Education Hub
   White-background editorial design (reference: Rylic Studio)
   Brand colors from official NE palette files
   ============================================================ */

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

:root {
    --black:  #231E1F;
    --white:  #ffffff;
    --orange: #FB4F30;
    --rust:   #AE442A;
    --teal:   #007568;
    --green:  #127155;
    --brown:  #592A20;
    --yellow: #FEE8AF;
    --f-disp: 'Bebas Neue', sans-serif;
    --f-body: 'Inter', sans-serif;
    --r:      0;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: var(--f-body);
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
}

p { text-align: justify; }

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

/* ============================================================
   NAV
   ============================================================ */
.nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    padding: 18px 48px;
    background: #fff;
    box-shadow: 0 1px 20px rgba(0,0,0,.08);
}
.nav.scrolled {
    background: #fff;
    box-shadow: 0 1px 20px rgba(0,0,0,.08);
}
.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}
.nav-logo img { height: 77px; width: auto; }
.logo-fallback {
    font-family: var(--f-disp);
    font-size: 1.5rem;
    letter-spacing: .04em;
    color: var(--black);
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
    flex: 1;
}
.nav-links a {
    text-decoration: none;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .03em;
    color: var(--black);
    transition: color .2s;
}
.nav:not(.scrolled) .nav-links a { color: var(--black); }
.nav-links a:hover { color: var(--orange); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-orange {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    padding: 14px 28px;
    border-radius: 0;
    font-weight: 700;
    font-size: .875rem;
    letter-spacing: .04em;
    text-decoration: none;
    transition: background .2s, transform .2s, box-shadow .2s;
    border: none;
    cursor: pointer;
}
.btn-orange:hover {
    background: var(--rust);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(251,79,48,.3);
}
.btn-ghost {
    display: inline-block;
    background: transparent;
    color: var(--black);
    padding: 14px 28px;
    border-radius: 0;
    font-weight: 700;
    font-size: .875rem;
    letter-spacing: .04em;
    text-decoration: none;
    border: 2px solid rgba(35,30,31,.2);
    transition: all .2s;
}
.btn-ghost:hover {
    border-color: var(--black);
    background: var(--black);
    color: #fff;
}
.btn-cta {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    padding: 10px 22px;
    border-radius: 0;
    font-weight: 700;
    font-size: .825rem;
    letter-spacing: .04em;
    text-decoration: none;
    margin-left: auto;
    white-space: nowrap;
    transition: background .2s;
}
.btn-cta:hover { background: var(--rust); }
.btn-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: .875rem;
    letter-spacing: .04em;
    color: var(--black);
    text-decoration: none;
    border-bottom: 2px solid var(--black);
    padding-bottom: 2px;
    transition: color .2s, border-color .2s;
}
.btn-arrow:hover { color: var(--orange); border-color: var(--orange); }
.fc-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .825rem;
    font-weight: 700;
    letter-spacing: .04em;
    color: rgba(35,30,31,.55);
    text-decoration: none;
    transition: color .2s;
}
.fc-link:hover { color: var(--orange); }
.fc-link-dark { color: var(--black); }
.fc-link-dark:hover { color: var(--orange); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    background: var(--white);
    display: flex;
    align-items: center;
    padding: 163px 48px 5px;
    gap: 48px;
    max-width: 1280px;
    margin: 0 auto;
}
.hero-left { flex: 1; max-width: 540px; }
.hero-pill {
    display: inline-block;
    background: rgba(251,79,48,.08);
    border: 1px solid rgba(251,79,48,.2);
    color: var(--orange);
    padding: 6px 16px;
    border-radius: 0;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero-h1 {
    font-family: var(--f-disp);
    font-size: clamp(80px, 12vw, 148px);
    line-height: .88;
    letter-spacing: .01em;
    color: var(--black);
    margin-bottom: 18px;
}
.hero-nut-line {
    position: relative;
    display: inline-block;
}
.hero-nut-char {
    position: absolute;
    left: 100%;
    bottom: 0;
    margin-left: 14px;
    height: 180px;
    width: auto;
    animation: hero-bounce .9s ease-in-out infinite;
    transform-origin: bottom center;
}
@keyframes hero-bounce {
    0%   { transform: translateY(0px)    rotate(-5deg) scale(1);    }
    20%  { transform: translateY(-48px)  rotate( 2deg) scale(1.08); }
    40%  { transform: translateY(-22px)  rotate( 6deg) scale(1.03); }
    60%  { transform: translateY(-56px)  rotate(-2deg) scale(1.10); }
    80%  { transform: translateY(-14px)  rotate(-5deg) scale(1.02); }
    100% { transform: translateY(0px)    rotate(-5deg) scale(1);    }
}
.hero-tag {
    font-family: var(--f-disp);
    font-size: clamp(20px, 3vw, 36px);
    letter-spacing: .12em;
    color: var(--orange);
    margin-bottom: 20px;
}
.hero-desc {
    font-size: .95rem;
    line-height: 1.8;
    color: rgba(35,30,31,.60);
    max-width: 420px;
    margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* 16:9 responsive video wrapper */
.hero-video-wrap {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 16 / 9;
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,.14);
}
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================================
   NUT CHARACTER PARADE (ticker)
   ============================================================ */
.nut-ticker {
    overflow: hidden;
    height: 160px;
    display: flex;
    align-items: flex-end;
    background: var(--white);
    position: relative;
}


.nt-track {
    display: inline-flex;
    align-items: flex-end;
    gap: 56px;
    padding: 0 28px 22px;
    white-space: nowrap;
    /* scroll at exactly half the track width for seamless looping */
    animation: nt-scroll 44s linear infinite;
    will-change: transform;
}

.nt-char {
    flex-shrink: 0;
    width: 90px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    /* each character bounces with its own speed (--s) and phase (--d) */
    animation: nt-bounce var(--s, 1.05s) ease-in-out var(--d, 0s) infinite;
}


.nt-char img {
    height: 110px;
    width: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: opacity .2s;
    display: block;
}

/* walking / bouncing keyframes — up, slight tilt, back down */
@keyframes nt-bounce {
    0%   { transform: translateY(0px)   rotate(-4deg) scale(1);    }
    20%  { transform: translateY(-18px) rotate( 0deg) scale(1.05); }
    40%  { transform: translateY(-10px) rotate( 4deg) scale(1.02); }
    60%  { transform: translateY(-20px) rotate( 0deg) scale(1.06); }
    80%  { transform: translateY(-8px)  rotate(-3deg) scale(1.01); }
    100% { transform: translateY(0px)   rotate(-4deg) scale(1);    }
}

/* horizontal scroll — 50% = exactly one of the two identical halves */
@keyframes nt-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================================================
   SHARED LAYOUT
   ============================================================ */
.wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}
.section { padding: 64px 0; content-visibility: auto; contain-intrinsic-size: 0 600px; }

.eyebrow {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(35,30,31,.45);
    margin-bottom: 8px;
}
.eyebrow-light { color: rgba(35,30,31,.45); }

.h2 {
    font-family: var(--f-disp);
    font-size: clamp(36px, 5vw, 64px);
    letter-spacing: .04em;
    line-height: 1;
    color: var(--black);
}
.h2-large {
    font-family: var(--f-disp);
    font-size: clamp(44px, 6vw, 80px);
    letter-spacing: .03em;
    line-height: .92;
    color: var(--black);
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products-hdr {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 24px;
}

/* 3 big featured cards */
.products-big {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}
.pb-card {
    background: var(--c, #FEE8AF);
    border-radius: var(--r);
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
}
.pb-card:hover {
    transform: translateY(-18px) scale(1.03);
    box-shadow: 0 40px 80px rgba(0,0,0,.18);
}
.pb-img {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.3);
    position: relative;
    overflow: hidden;
}
.pb-img::after { content: none; }
.pb-img img {
    max-height: 240px;
    width: auto;
    object-fit: contain;
    padding: 20px;
    position: relative;
    z-index: 1;
}
/* ─── PRODUCT CAROUSEL ─── */
.prod-car {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.prod-car img {
    max-height: 110px;
    max-width: 86%;
    object-fit: contain;
    display: block;
    transition: opacity .2s;
}
.pb-img .prod-car img {
    max-height: 220px;
    max-width: 82%;
}
.prod-dots {
    position: absolute;
    bottom: 4px;
    left: 0; right: 0;
    display: flex;
    justify-content: center;
    gap: 4px;
    z-index: 10;
}
.prod-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(35,30,31,.25);
    cursor: pointer;
    border: none;
    padding: 0;
    flex-shrink: 0;
    transition: background .2s;
}
.prod-dot.on { background: rgba(35,30,31,.8); }
.prod-arr {
    position: absolute;
    top: 0; bottom: 0;
    width: 26px;
    background: transparent;
    color: var(--black);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 900;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .2s, background .2s;
}
.prod-car:hover .prod-arr { opacity: 1; background: rgba(35,30,31,.1); }
.prod-arr.prev { left: 0; }
.prod-arr.next { right: 0; }

.pb-info { padding: 22px 24px 28px; }
.pb-info h3 {
    font-family: var(--f-disp);
    font-size: 1.4rem;
    letter-spacing: .04em;
    color: var(--black);
    margin-bottom: 4px;
    line-height: 1.1;
}
.pb-info p {
    font-size: .825rem;
    font-weight: 500;
    color: rgba(35,30,31,.50);
    margin-top: 5px;
}
.ingredients {
    font-size: .72rem !important;
    font-weight: 600 !important;
    color: var(--rust) !important;
    letter-spacing: .02em;
    text-transform: uppercase;
    margin-top: 6px !important;
}

/* All 9 smaller grid */
.products-all {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.pa-card {
    background: var(--c, #FEE8AF);
    border-radius: 0;
    overflow: hidden;
    transition: transform .25s;
}
.pa-card:hover { transform: translateY(-12px) scale(1.04); box-shadow: 0 24px 48px rgba(0,0,0,.15); }
.pa-img {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.25);
    position: relative;
    overflow: hidden;
}
.pa-img::after { content: none; }
.pa-img img {
    max-height: 120px;
    width: auto;
    object-fit: contain;
    padding: 10px;
    position: relative;
    z-index: 1;
}
.pa-card h4 {
    font-family: var(--f-disp);
    font-size: 1rem;
    letter-spacing: .04em;
    color: var(--black);
    padding: 12px 14px 2px;
    line-height: 1.1;
}
.pa-card p {
    font-size: .72rem;
    color: rgba(35,30,31,.50);
    font-weight: 500;
    padding: 0 14px 14px;
}

/* ============================================================
   CLEAN INGREDIENTS
   ============================================================ */
.clean {
    padding: 96px 0;
    background: var(--white);
}
.clean-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
    margin-bottom: 56px;
}
.clean-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-shrink: 0;
    margin-top: 8px;
}
.cstat { text-align: center; }
.cstat-n {
    display: block;
    font-family: var(--f-disp);
    font-size: clamp(40px, 5vw, 72px);
    letter-spacing: .02em;
    line-height: 1;
    color: var(--black);
}
.cstat-l {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(35,30,31,.45);
    margin-top: 6px;
    white-space: nowrap;
}
.cstat-div {
    width: 1px;
    height: 60px;
    background: rgba(35,30,31,.12);
}

/* 3 feature cards */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.fc {
    border-radius: var(--r);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 340px;
    position: relative;
    overflow: hidden;
}
.fc-yellow { background: var(--yellow); }
.fc-green  { background: var(--green); }
.fc-white  { background: var(--white); border: 1.5px solid rgba(35,30,31,.10); }
.fc-brown  { background: #D4A87A; }

.fc-eyebrow {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(35,30,31,.45);
}
.fc-green .fc-eyebrow { color: rgba(255,255,255,.55); }

.fc h3 {
    font-family: var(--f-disp);
    font-size: clamp(22px, 2.5vw, 32px);
    letter-spacing: .04em;
    line-height: 1.0;
    color: var(--black);
}
.fc-green h3 { color: #fff; }

.fc-body {
    font-size: .875rem;
    line-height: 1.75;
    color: rgba(35,30,31,.62);
    flex: 1;
}
.fc-green .fc-body { color: rgba(255,255,255,.70); }

.fc-img {
    max-height: 140px;
    width: auto;
    object-fit: contain;
    margin: auto 0 0;
    align-self: center;
}
.fc .fc-link { margin-top: auto; }

/* ============================================================
   BIG STATEMENT
   ============================================================ */
.statement {
    padding: 96px 0;
    text-align: center;
    background: var(--white);
}
.statement-h2 {
    font-family: var(--f-disp);
    font-size: clamp(36px, 6vw, 80px);
    letter-spacing: .03em;
    line-height: 1;
    color: var(--black);
    margin-bottom: 40px;
}
.statement-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
    margin-bottom: 40px;
    text-align: left;
}
.statement-sub {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(35,30,31,.60);
    max-width: 360px;
}
.statement-right {
    font-family: var(--f-disp);
    font-size: clamp(20px, 2.5vw, 32px);
    letter-spacing: .04em;
    line-height: 1.1;
    color: var(--black);
    text-align: right;
    max-width: 400px;
}

/* ============================================================
   MISSION & VISION — PURPOSE SECTION
   ============================================================ */
.purpose {
    background: var(--white);
    padding: 88px 0 80px;
    text-align: left;
}
.purpose-head {
    max-width: 620px;
    margin: 0 0 56px;
}
.purpose-h2-wrap {
    margin: 12px 0 0;
}
.purpose-h2 {
    font-family: var(--f-disp);
    font-size: clamp(44px, 6vw, 80px);
    letter-spacing: .04em;
    line-height: 1;
    color: var(--black);
    margin: 0 0 20px;
}
.purpose-body {
    font-size: .88rem;
    line-height: 1.80;
    color: rgba(35,30,31,.52);
    max-width: 520px;
    margin: 0;
}
.brand-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(35,30,31,.10);
    border-bottom: 1px solid rgba(35,30,31,.10);
    margin-bottom: 56px;
}
.bv {
    padding: 36px 32px 36px 0;
    border-right: 1px solid rgba(35,30,31,.10);
    padding-right: 40px;
}
.bv:first-child { padding-left: 0; }
.bv:last-child { border-right: none; padding-right: 0; padding-left: 40px; }
.bv:nth-child(2) { padding-left: 40px; }
.bv-num {
    display: block;
    font-family: var(--f-disp);
    font-size: 2rem;
    letter-spacing: .04em;
    color: rgba(35,30,31,.12);
    line-height: 1;
    margin-bottom: 8px;
}
.bv-title {
    display: block;
    font-family: var(--f-disp);
    font-size: 1.5rem;
    letter-spacing: .06em;
    color: var(--black);
    margin-bottom: 10px;
    line-height: 1;
}
.bv-body {
    font-size: .85rem;
    line-height: 1.75;
    color: rgba(35,30,31,.55);
    margin: 0;
}

.purpose-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: flex-start;
    margin-bottom: 52px;
}
.pp {
    background: var(--pc, #FEE8AF);
    border-radius: 0;
    padding: 28px 24px 24px;
    width: calc(33.333% - 14px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    transition: transform .25s, box-shadow .25s;
    cursor: default;
}
.pp:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 48px rgba(35,30,31,.10);
}
.pp-name {
    font-family: var(--f-disp);
    font-size: 1.15rem;
    letter-spacing: .06em;
    color: var(--black);
    display: block;
    line-height: 1.1;
}
.pp-line {
    font-size: .68rem;
    color: rgba(35,30,31,.55);
    font-weight: 500;
    line-height: 1.55;
    display: block;
}
.purpose-close {
    font-family: var(--f-disp);
    font-size: clamp(17px, 2vw, 24px);
    letter-spacing: .08em;
    color: var(--orange);
    text-align: left;
}

/* ============================================================
   ZERO TRICKS
   ============================================================ */
.zero {
    display: grid;
    grid-template-columns: 1fr 1.8fr 1fr;
    min-height: 560px;
}
.zero-left {
    background: var(--yellow);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 48px 40px;
    gap: 16px;
}
.zt-pill {
    display: inline-block;
    background: rgba(35,30,31,.12);
    color: var(--black);
    padding: 5px 14px;
    border-radius: 0;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
    align-self: flex-start;
}
.zt-h2 {
    font-family: var(--f-disp);
    font-size: clamp(40px, 4.5vw, 72px);
    letter-spacing: .03em;
    line-height: .90;
    color: var(--black);
}
.zero-center {
    position: relative;
    overflow: hidden;
    background: #f0ebe5;
}
.zero-img-wrap {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.zero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.zero-fallback {
    background: linear-gradient(135deg, #FEE8AF 0%, #FFDEC5 50%, #CAE8D0 100%);
}
.zt-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    background: linear-gradient(to top, rgba(35,30,31,.6) 0%, transparent 50%);
}
.zt-big {
    font-family: var(--f-disp);
    font-size: clamp(28px, 3.5vw, 52px);
    letter-spacing: .04em;
    line-height: .92;
    color: #fff;
}
.zero-right {
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 40px;
    gap: 20px;
    border-left: 1px solid rgba(35,30,31,.08);
}
.zero-right h3 {
    font-family: var(--f-disp);
    font-size: clamp(20px, 2vw, 28px);
    letter-spacing: .04em;
    line-height: 1.1;
    color: var(--black);
}
.zr-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.zr-item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(35,30,31,.08);
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.zr-item:first-child { border-top: 1px solid rgba(35,30,31,.08); }
.zr-item strong {
    font-family: var(--f-disp);
    font-size: 1rem;
    letter-spacing: .06em;
    color: var(--black);
}
.zr-item span {
    font-size: .8rem;
    color: rgba(35,30,31,.50);
}
.zr-body {
    font-size: .85rem;
    line-height: 1.7;
    color: rgba(35,30,31,.55);
}

/* ============================================================
   MEET YOUR NUTS
   ============================================================ */
/* ============================================================
   EDUCATION HUB
   ============================================================ */
.edu-hub { background: #FFFDF8; padding: 80px 0; }

.edu-hero { text-align: center; margin-bottom: 80px; }
.edu-title {
    font-family: var(--f-disp);
    font-size: clamp(64px, 10vw, 120px);
    letter-spacing: .02em;
    color: var(--black);
    line-height: .88;
    margin: 10px 0 20px;
}
.edu-lead {
    font-size: 1rem;
    color: rgba(35,30,31,.55);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.75;
}

.edu-chapter { margin-bottom: 80px; }
.edu-chapter--dark {
    background: var(--black);
    border-radius: 0;
    padding: 52px 48px;
    margin-left: -48px;
    margin-right: -48px;
}

.edu-ch-hdr { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 40px; }
.edu-num {
    font-family: var(--f-disp);
    font-size: 6rem;
    color: rgba(35,30,31,.07);
    line-height: 1;
    flex-shrink: 0;
    margin-top: -8px;
}
.edu-num--light { color: rgba(255,255,255,.12); }
.edu-ch-title {
    font-family: var(--f-disp);
    font-size: clamp(28px, 3.5vw, 48px);
    letter-spacing: .06em;
    color: var(--black);
    line-height: 1;
    margin-top: 6px;
}

/* ORIGINS GRID */
.origin-card {
    flex: 0 0 calc(33.333% - 14px);
    scroll-snap-align: start;
    background: var(--oc, #FEE8AF);
    border-radius: 0;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.origin-top { display: flex; flex-direction: column; gap: 4px; }
.origin-emoji { font-size: 2rem; line-height: 1; }
.origin-nut {
    font-family: var(--f-disp);
    font-size: 2rem;
    letter-spacing: .08em;
    color: var(--black);
    line-height: 1;
}
.origin-region {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .10em;
    color: rgba(35,30,31,.45);
}
.origin-countries { display: flex; flex-wrap: wrap; gap: 6px; }
.origin-stat {
    font-size: .72rem;
    font-weight: 600;
    color: rgba(35,30,31,.60);
    line-height: 1.6;
    border-left: 3px solid rgba(35,30,31,.18);
    padding-left: 10px;
    margin-top: 4px;
}
.ob-label {
    font-size: .58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .10em;
    color: rgba(35,30,31,.35);
    margin-bottom: 8px;
}
.origin-bars { display: flex; flex-direction: column; gap: 7px; }
.ob-row { display: flex; align-items: center; gap: 7px; }
.ob-flag { font-size: .82rem; flex-shrink: 0; line-height: 1; }
.ob-country {
    font-size: .63rem;
    font-weight: 700;
    color: rgba(35,30,31,.60);
    width: 72px;
    flex-shrink: 0;
}
.ob-bar {
    flex: 1;
    height: 7px;
    background: rgba(35,30,31,.12);
    border-radius: 0;
    overflow: hidden;
}
.ob-fill {
    height: 100%;
    border-radius: 0;
    background: rgba(35,30,31,.40);
}
.ob-pct {
    font-size: .60rem;
    font-weight: 700;
    color: rgba(35,30,31,.45);
    width: 26px;
    text-align: right;
    flex-shrink: 0;
}
.origin-fact {
    font-size: .78rem;
    line-height: 1.65;
    color: rgba(35,30,31,.60);
    border-top: 1px solid rgba(35,30,31,.12);
    padding-top: 14px;
    margin-top: auto;
}

/* SEED TO JAR TIMELINE */
/* BLOG GRID */
/* NEWSPAPER DISPATCH CARDS */
.np-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    border: 1.5px solid rgba(35,30,31,.10);
}
.np-masthead {
    background: var(--nm, #FEE8AF);
    padding: 10px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(35,30,31,.10);
}
.np-masthead-title {
    font-family: var(--f-disp);
    font-size: .95rem;
    letter-spacing: .14em;
    color: var(--black);
}
.np-masthead-issue {
    font-size: .60rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(35,30,31,.50);
}
.np-body {
    display: grid;
    grid-template-columns: 220px 1fr 220px;
    min-height: 440px;
}
.np-col {
    padding: 32px 28px;
}
.np-col + .np-col {
    border-left: 1px solid rgba(35,30,31,.08);
}
.np-col-label {
    font-size: .55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: rgba(35,30,31,.35);
    border-bottom: 1px solid rgba(35,30,31,.08);
    padding-bottom: 8px;
    margin-bottom: 14px;
}
.np-col--portrait {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: rgba(35,30,31,.02);
}
.np-char {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 170px;
}
.np-char img {
    max-height: 160px;
    width: auto;
    object-fit: contain;
}
.np-nut-name {
    font-family: var(--f-disp);
    font-size: 3.2rem;
    letter-spacing: .08em;
    color: var(--black);
    line-height: .95;
    text-align: center;
}
.np-pullquote {
    font-size: .78rem;
    font-weight: 700;
    line-height: 1.55;
    color: var(--black);
    border-left: 3px solid var(--nm, #FEE8AF);
    padding-left: 14px;
    margin-bottom: 18px;
}
.np-fact {
    font-size: .69rem;
    line-height: 1.80;
    color: rgba(35,30,31,.55);
    margin-bottom: 0;
}
.np-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.np-benefits li {
    font-size: .72rem;
    font-weight: 600;
    color: var(--black);
    padding-left: 20px;
    position: relative;
    line-height: 1.4;
}
.np-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 800;
}

/* BLOG CAROUSEL */
.blog-ch-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.blog-ch-left {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.blog-arrows {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.blog-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(35,30,31,.18);
    background: #fff;
    color: var(--black);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, border-color .2s, transform .15s;
}
.blog-arrow:hover:not(:disabled) {
    background: var(--black);
    border-color: var(--black);
    color: #fff;
    transform: scale(1.08);
}
.blog-arrow:disabled {
    opacity: .28;
    cursor: default;
}
.blog-track-wrap {
    overflow: hidden;
}
.blog-track {
    display: flex;
    gap: 24px;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}
.blog-track::-webkit-scrollbar { display: none; }
.blog-card {
    flex: 0 0 calc(33.333% - 16px);
    scroll-snap-align: start;
    background: #fff;
    border-radius: 0;
    padding: 28px 26px 24px;
    border: 1.5px solid rgba(35,30,31,.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow .25s, transform .25s;
    cursor: pointer;
}
.blog-card:hover {
    box-shadow: 0 16px 40px rgba(35,30,31,.12);
    transform: translateY(-6px);
}
.blog-tag {
    display: inline-block;
    font-size: .58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--orange);
    background: rgba(251,79,48,.10);
    border-radius: 0;
    padding: 4px 12px;
    align-self: flex-start;
}
.blog-title {
    font-family: var(--f-disp);
    font-size: 1.30rem;
    letter-spacing: .02em;
    color: var(--black);
    line-height: 1.15;
    margin: 0;
}
.blog-excerpt {
    font-size: .72rem;
    line-height: 1.65;
    color: rgba(35,30,31,.55);
    flex: 1;
}
.blog-source {
    font-size: .6rem;
    font-style: italic;
    color: rgba(35,30,31,.38);
    line-height: 1.5;
    padding-bottom: 8px;
}
.blog-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid rgba(35,30,31,.07);
    margin-top: auto;
}
.blog-date, .blog-read {
    font-size: .62rem;
    font-weight: 600;
    color: rgba(35,30,31,.35);
    text-transform: uppercase;
    letter-spacing: .06em;
}
.blog-date::after { content: "·"; margin-left: 12px; }

.nuts-section { background: var(--white); }
.nuts-sub {
    font-size: 1rem;
    color: rgba(35,30,31,.55);
    max-width: 540px;
    line-height: 1.75;
    margin-bottom: 48px;
}
.nut {
    flex: 0 0 calc(33.333% - 14px);
    scroll-snap-align: start;
    background: var(--nb, #FEE8AF);
    border-radius: var(--r);
    padding: 32px 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: transform .25s;
}
.nut:hover { transform: translateY(-4px); }
.nut-char {
    width: 120px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 120px;
}
.nut-char::after {
    content: attr(data-e);
    font-size: 3.5rem;
    opacity: .25;
    position: absolute;
}
.nut-char img {
    max-height: 110px;
    width: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
}
.nut-body h3 {
    font-family: var(--f-disp);
    font-size: 1.8rem;
    letter-spacing: .08em;
    color: var(--black);
    margin-bottom: 12px;
    line-height: 1;
}
.nut-body ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.nut-body ul li {
    font-size: .825rem;
    line-height: 1.5;
    color: rgba(35,30,31,.70);
    padding-left: 18px;
    position: relative;
}
.nut-body ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}

/* ============================================================
   PROTEIN CALLOUT
   ============================================================ */
.protein {
    background: linear-gradient(135deg, #FEE8AF 0%, #FFDEC5 50%, #CAE8D0 100%);
    padding: 96px 0;
}
.protein-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 72px;
    align-items: center;
}
.protein-h2 {
    font-family: var(--f-disp);
    font-size: clamp(52px, 7vw, 96px);
    letter-spacing: .03em;
    line-height: .88;
    color: var(--black);
    margin-bottom: 20px;
}
.protein-sub {
    font-size: .95rem;
    line-height: 1.75;
    color: rgba(35,30,31,.55);
    margin-bottom: 36px;
}
.use-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 24px;
}
.uc {
    background: var(--uc, #FEE8AF);
    border-radius: 0;
    padding: 22px 20px;
}
.uc-n {
    display: block;
    font-family: var(--f-disp);
    font-size: 2.4rem;
    letter-spacing: .02em;
    line-height: 1;
    color: rgba(35,30,31,.15);
    margin-bottom: 4px;
}
.uc h4 {
    font-family: var(--f-disp);
    font-size: 1rem;
    letter-spacing: .06em;
    color: var(--black);
    margin-bottom: 6px;
}
.uc p {
    font-size: .78rem;
    line-height: 1.6;
    color: rgba(35,30,31,.60);
}
.protein-stat {
    background: rgba(255,255,255,.45);
    border: 1px solid rgba(35,30,31,.10);
    border-radius: 0;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.ps-n {
    font-family: var(--f-disp);
    font-size: 3.6rem;
    letter-spacing: .02em;
    line-height: 1;
    color: var(--orange);
}
.ps-l {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: rgba(35,30,31,.55);
    line-height: 1.5;
}

/* ============================================================
   CERTIFICATIONS
   ============================================================ */
.certs { background: var(--white); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
    background: var(--cream, #FFEFDC);
    padding: 96px 0;
}
.faq-head {
    margin-bottom: 56px;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(35,30,31,.12);
}
.faq-item {
    border-bottom: 1px solid rgba(35,30,31,.12);
}
.faq-item[open] .faq-q::after {
    transform: rotate(45deg);
}
.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 4px;
    font-family: var(--f-disp);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    letter-spacing: .04em;
    color: var(--black);
    cursor: pointer;
    list-style: none;
    gap: 24px;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
    content: '+';
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--orange);
    flex-shrink: 0;
    transition: transform .25s;
    line-height: 1;
}
.faq-a {
    padding: 0 4px 24px;
}
.faq-a p {
    font-size: .9rem;
    line-height: 1.85;
    color: rgba(35,30,31,.60);
    max-width: 760px;
}
.faq-a a {
    color: var(--orange);
    text-decoration: underline;
}
.faq-cta-wrap {
    margin-top: 40px;
}
.faq-cta-link {
    font-family: var(--f-disp);
    font-size: 1rem;
    letter-spacing: .06em;
    color: var(--orange);
    text-decoration: none;
    border-bottom: 2px solid var(--orange);
    padding-bottom: 2px;
    transition: opacity .2s;
}
.faq-cta-link:hover { opacity: .7; }
.cert-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}
.cert {
    border: 2px solid #B8963E;
    border-radius: 0;
    padding: 36px 20px;
    text-align: center;
    background: #FFFDF8;
    /* double-line certificate border: outer gold → white gap → inner gold */
    box-shadow:
        inset 0 0 0 5px #FFFDF8,
        inset 0 0 0 7px #B8963E,
        0 4px 18px rgba(184,150,62,.10);
    transition: box-shadow .25s, transform .25s;
    position: relative;
}
.cert:hover {
    box-shadow:
        inset 0 0 0 5px #FFFDF8,
        inset 0 0 0 7px #C9A84C,
        0 20px 48px rgba(184,150,62,.28),
        0 6px 16px rgba(0,0,0,.12);
    transform: translateY(-10px) scale(1.04);
}
.cert-mark {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.cert-mark img {
    max-height: 110px;
    max-width: 140px;
    width: auto;
    object-fit: contain;
}
.cert h4 {
    font-family: var(--f-disp);
    font-size: 2rem;
    letter-spacing: .10em;
    color: var(--black);
    margin-bottom: 12px;
}
.cert p {
    font-size: .825rem;
    line-height: 1.7;
    color: rgba(35,30,31,.60);
    margin-bottom: 16px;
}
.cert span {
    display: inline-block;
    background: rgba(35,30,31,.06);
    color: rgba(35,30,31,.60);
    padding: 4px 14px;
    border-radius: 0;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
}

/* B2B */
.b2b {
    background: var(--black);
    border-radius: var(--r);
    padding: 48px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.b2b .eyebrow { color: rgba(255,255,255,.45); }
.b2b h3 {
    font-family: var(--f-disp);
    font-size: 1.8rem;
    letter-spacing: .06em;
    color: #fff;
    margin-bottom: 8px;
}
.b2b p { font-size: .875rem; color: rgba(255,255,255,.50); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #fff;
    padding: 72px 0 36px;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
    padding-bottom: 48px;
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(35,30,31,.10);
}
.footer-logo {
    height: 64px;
    width: auto;
    margin-bottom: 16px;
}
.footer-logo-fallback {
    font-family: var(--f-disp);
    font-size: 1.6rem;
    letter-spacing: .04em;
    color: var(--black);
    display: block;
    margin-bottom: 16px;
}
.footer-brand p {
    font-size: .875rem;
    line-height: 1.7;
    color: rgba(35,30,31,.55);
}
.footer-addr { margin-top: 12px; font-size: .8rem !important; }
.footer-reg  { margin-top: 6px; font-size: .75rem !important; color: rgba(35,30,31,.35) !important; }
.footer-col h4 {
    font-family: var(--f-disp);
    font-size: 1.1rem;
    letter-spacing: .10em;
    color: var(--black);
    margin-bottom: 18px;
}
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-col a {
    font-size: .85rem;
    color: rgba(35,30,31,.50);
    text-decoration: none;
    transition: color .2s;
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom { text-align: center; }
.footer-bottom p { font-size: .78rem; color: rgba(35,30,31,.35); }

/* Social icons */
.footer-socials {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(35,30,31,.08);
    color: rgba(35,30,31,.60);
    transition: background .2s, color .2s;
}
.social-icon:hover { background: var(--orange); color: #fff; }

/* QR code */
.footer-qr { display: flex; flex-direction: column; gap: 8px; }
.qr-img { width: 100px; height: 100px; border-radius: 0; background: #fff; padding: 4px; object-fit: contain; }
.qr-caption { font-size: .68rem; color: rgba(35,30,31,.40); letter-spacing: .05em; text-transform: uppercase; }

/* Floating WhatsApp button */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,.45);
    transition: transform .2s, box-shadow .2s;
}
.wa-float:hover {
    transform: scale(1.10);
    box-shadow: 0 8px 28px rgba(37,211,102,.55);
}

/* ============================================================
   CLEAN INGREDIENTS — EXTENDED PRODUCTION STORY
   ============================================================ */
.clean-editorial {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 56px;
    border-top: 1.5px solid var(--black);
}
.ce-col {
    padding: 32px 36px 32px 0;
    border-right: 1px solid rgba(35,30,31,.15);
    padding-right: 36px;
}
.ce-col:first-child { padding-left: 0; }
.ce-col:not(:first-child) { padding-left: 36px; }
.ce-col:last-child { border-right: none; padding-right: 0; }
.ce-label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--orange);
    margin: 0 0 16px;
    display: block;
}
.ce-h {
    font-family: var(--f-disp);
    font-size: clamp(1.2rem, 2vw, 1.65rem);
    letter-spacing: .03em;
    color: var(--black);
    margin: 0 0 16px;
    line-height: 1.2;
}
.ce-body {
    font-size: .88rem;
    line-height: 1.8;
    color: rgba(35,30,31,.72);
    margin: 0;
}

.custom-order-band {
    padding: 0 0 64px;
}
.clean-custom {
    margin-top: 0;
    background: #C8DDB0;
    border-radius: 0;
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.clean-custom-h {
    font-family: var(--f-disp);
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    letter-spacing: .04em;
    color: var(--black);
    margin: 0 0 14px;
    line-height: 1.1;
}
.clean-custom-body {
    font-size: .9rem;
    line-height: 1.75;
    color: rgba(35,30,31,.72);
    margin: 0;
    max-width: 580px;
}

/* ============================================================
   RECIPE SECTION — LET THE NUTS SHINE
   ============================================================ */
.protein { background: linear-gradient(135deg, #FEE8AF 0%, #FFDEC5 50%, #CAE8D0 100%); }

.recipe-hdr {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 48px;
}
.recipe-hdr-left { flex: 1; }
.recipe-hdr-right {
    flex-shrink: 0;
    background: rgba(255,255,255,.55);
    border-radius: 0;
    padding: 24px 32px;
    text-align: center;
    backdrop-filter: blur(6px);
}
.recipe-stat-num {
    font-family: var(--f-disp);
    font-size: clamp(48px, 6vw, 80px);
    color: var(--orange);
    line-height: 1;
    display: block;
}
.recipe-stat-label {
    font-size: .85rem;
    color: var(--black);
    opacity: .7;
    display: block;
    margin-top: 4px;
}

/* TABS */
.recipe-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.rtab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border: 2px solid rgba(35,30,31,.15);
    border-radius: 0;
    background: rgba(255,255,255,.5);
    font-family: var(--f-disp);
    font-size: 1.1rem;
    letter-spacing: .04em;
    color: var(--black);
    cursor: pointer;
    transition: background .2s, border-color .2s, transform .15s;
}
.rtab:hover { background: rgba(255,255,255,.8); transform: translateY(-2px); }
.rtab-on {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}
.rtab-char {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
}

/* CATEGORY PANELS */
.recipe-cat { display: none; }
.rcat-on { display: block; }

/* RECIPE GRID */
.rc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.rc-grid-wide { grid-template-columns: repeat(3, 1fr); }

/* RECIPE CARD */
.rc {
    background: rgba(255,255,255,.7);
    border-radius: 0;
    border: 1.5px solid rgba(35,30,31,.08);
    overflow: hidden;
    backdrop-filter: blur(4px);
    transition: box-shadow .2s, transform .2s;
}
.rc:hover { box-shadow: 0 8px 32px rgba(35,30,31,.12); transform: translateY(-3px); }
.rc[open] { box-shadow: 0 10px 40px rgba(35,30,31,.15); }

/* card accent strip — uses --rc CSS var set inline */
.rc::before {
    content: '';
    display: block;
    height: 5px;
    background: var(--rc, #FEE8AF);
}

.rc-sum {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 22px;
    cursor: pointer;
    list-style: none;
}
.rc-sum::-webkit-details-marker { display: none; }

.rc-top { flex: 1; }
.rc-time {
    font-size: .75rem;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: .06em;
    display: block;
    margin-bottom: 6px;
}
.rc-name {
    font-family: var(--f-disp);
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    letter-spacing: .04em;
    color: var(--black);
    margin: 0 0 6px;
    line-height: 1.2;
}
.rc-tag {
    font-size: .82rem;
    color: rgba(35,30,31,.65);
    margin: 0;
    line-height: 1.5;
}
.rc-arrow {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--rc, #FEE8AF);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    transition: transform .25s, background .2s;
    margin-top: 2px;
}
.rc[open] .rc-arrow { transform: rotate(45deg); background: var(--orange); color: #fff; }

/* EXPANDED CONTENT */
.rc-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0 24px;
    padding: 0 22px 6px;
    border-top: 1px solid rgba(35,30,31,.07);
}
.rc-col { padding: 16px 8px 16px 0; grid-column: 2; grid-row: 1; }
.rc-col + .rc-col { padding: 16px 8px 16px 0; grid-column: 1 / -1; grid-row: 2; border-left: none; border-top: 1px solid rgba(35,30,31,.08); }
.rc-label {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--orange);
    margin: 0 0 8px;
}
.rc-body ul { margin: 0; padding-left: 16px; }
.rc-body li { font-size: .84rem; line-height: 1.7; color: var(--black); }
.rc-body ol { margin: 0; padding-left: 18px; }

.rc-boost {
    margin: 0 22px 20px;
    padding: 12px 16px;
    background: rgba(255,255,255,.6);
    border-radius: 0;
    border-left: 3px solid var(--teal);
    font-size: .82rem;
    color: var(--black);
    line-height: 1.6;
}


/* ============================================================
   PURPOSE INTRO — two-column layout with editorial photo
   ============================================================ */
.purpose-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 56px;
}
.purpose-intro .purpose-head {
    max-width: none;
    margin: 0;
}
.purpose-head-img .img-ph { min-height: 420px; }

/* ── purpose pills — person photo at top ── */
.pp .img-ph {
    min-height: 150px;
    margin: -28px -24px 0;
    width: calc(100% + 48px);
}

/* ============================================================
   ENQUIRY SECTIONS
   ============================================================ */

/* ── B2B ── */
.enq-b2b {
    background: var(--black);
    padding: 96px 0;
}
.enq-b2b-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}
.enq-b2b-h {
    font-family: var(--f-disp);
    font-size: clamp(44px, 5.5vw, 80px);
    letter-spacing: .04em;
    color: var(--white);
    line-height: 1;
    margin: 16px 0 20px;
}
.enq-b2b-sub {
    font-size: .85rem;
    line-height: 1.80;
    color: rgba(255,255,255,.42);
    max-width: 360px;
}
.enq-b2b-facts {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.10);
}
.enq-fact-n {
    display: block;
    font-family: var(--f-disp);
    font-size: 2rem;
    letter-spacing: .06em;
    color: var(--orange);
    line-height: 1;
}
.enq-fact-l {
    display: block;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.30);
    margin-top: 6px;
}

/* ── Shared form card ── */
.enq-form {
    background: #fff;
    padding: 40px 44px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 0;
}
.enq-form-hdr { margin-bottom: 4px; }
.enq-form-title {
    font-family: var(--f-disp);
    font-size: 1.5rem;
    letter-spacing: .06em;
    color: var(--black);
    margin-bottom: 6px;
}
.enq-form-note {
    font-size: .70rem;
    color: rgba(35,30,31,.40);
    text-align: left;
    margin: 0;
}
.enq-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.enq-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.enq-label {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(35,30,31,.45);
}
.enq-label-dark { color: rgba(35,30,31,.55); }
.enq-input {
    border: 1.5px solid rgba(35,30,31,.16);
    border-radius: 0;
    padding: 11px 14px;
    font-family: var(--f-body);
    font-size: .88rem;
    color: var(--black);
    background: #fff;
    outline: none;
    transition: border-color .2s;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    box-sizing: border-box;
}
.enq-input:focus { border-color: var(--orange); }
.enq-input::placeholder { color: rgba(35,30,31,.28); }
.enq-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='none' stroke='%23231E1F' stroke-width='1.5' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.enq-textarea {
    min-height: 110px;
    resize: vertical;
    font-family: var(--f-body);
    line-height: 1.6;
}
.enq-err {
    font-size: .68rem;
    color: #d32f2f;
    font-weight: 600;
    min-height: 16px;
    display: block;
}
.enq-submit-row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 4px;
}
.enq-btn {
    font-size: .88rem;
    padding: 13px 28px;
    cursor: pointer;
    border: none;
    line-height: 1;
}
.enq-or { font-size: .75rem; color: rgba(255,255,255,.32); margin: 0; }
.enq-wa { color: var(--orange); font-weight: 600; text-decoration: none; }
.enq-wa:hover { text-decoration: underline; }
.enq-success {
    background: rgba(0,117,104,.08);
    border: 1.5px solid var(--teal);
    padding: 14px 18px;
    font-size: .80rem;
    color: var(--teal);
    line-height: 1.55;
    margin-top: 4px;
}
.enq-success strong { display: block; margin-bottom: 4px; }
.enq-success a { color: var(--teal); font-weight: 600; }

/* ── Public enquiry ── */
.enq-pub {
    background: var(--yellow);
    padding: 96px 0;
}
.enq-pub-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}
.enq-pub-h {
    font-family: var(--f-disp);
    font-size: clamp(40px, 5vw, 68px);
    letter-spacing: .04em;
    color: var(--black);
    line-height: 1;
    margin: 16px 0 20px;
}
.enq-pub-sub {
    font-size: .85rem;
    line-height: 1.80;
    color: rgba(35,30,31,.55);
    max-width: 360px;
    margin-bottom: 36px;
}
.enq-pub-contact { display: flex; flex-direction: column; gap: 0; }
.enq-contact-row {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(35,30,31,.10);
}
.enq-contact-row:first-child { padding-top: 0; }
.enq-contact-row:last-child { border-bottom: none; }
.enq-contact-label {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(35,30,31,.38);
}
.enq-contact-val {
    font-size: .88rem;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    line-height: 1.5;
}
.enq-contact-val:hover { color: var(--orange); }
.enq-form-light {
    box-shadow: 0 8px 40px rgba(35,30,31,.09);
}

/* ── IMAGE PLACEHOLDERS (dev reference — remove data-file attr after real photo is uploaded) ── */
.img-ph {
    width: 100%;
    min-height: 180px;
    flex-shrink: 0;
    background:
        repeating-linear-gradient(
            -45deg,
            #FEE8AF 0px,
            #FEE8AF 8px,
            #FFFDF8 8px,
            #FFFDF8 18px
        );
    border: 2px dashed #B8963E;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 12px;
    color: #592A20;
    font-family: var(--f-body);
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-sizing: border-box;
}
.img-ph::before {
    content: "PHOTO GOES HERE";
    font-size: 11px;
    letter-spacing: 0.12em;
    opacity: 0.6;
}
.img-ph::after {
    content: attr(data-file);
    font-family: monospace;
    font-size: 10px;
    font-weight: 600;
    color: #AE442A;
    word-break: break-all;
    max-width: 240px;
    line-height: 1.4;
    margin-top: 2px;
    background: rgba(255,255,255,0.85);
    padding: 3px 8px;
    letter-spacing: 0;
    text-transform: none;
}
/* Context overrides */
.pb-img .img-ph { min-height: 240px; }
.pa-img .img-ph { min-height: 140px; }
.fc .img-ph    { min-height: 160px; margin: -36px -32px 0; width: calc(100% + 64px); }
.blog-card .img-ph { min-height: 180px; margin: -28px -26px 0; width: calc(100% + 52px); }
.rc-body .img-ph { min-height: 200px; margin-bottom: 0; grid-column: 1; grid-row: 1; }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1100px) {
    .wrap { padding: 0 32px; }
    .products-all { grid-template-columns: repeat(3, 1fr); }
    .zero { grid-template-columns: 1fr 1.4fr; }
    .zero-center { display: none; }
    .cert-row { grid-template-columns: repeat(3, 1fr); }
    .protein-inner { grid-template-columns: 1fr; gap: 48px; }
    .brand-values { grid-template-columns: 1fr 1fr; }
    .np-body { grid-template-columns: 1fr 1fr; }
    .blog-card { flex: 0 0 calc(50% - 12px); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand { grid-column: 1 / -1; }
    .clean-top { flex-direction: column; gap: 36px; }
    .clean-stats { justify-content: flex-start; }
    .recipe-hdr { flex-direction: column; gap: 24px; }
    .rc-grid { grid-template-columns: 1fr 1fr; }
    .rc-grid-wide { grid-template-columns: 1fr 1fr; }
    .clean-editorial { grid-template-columns: 1fr; }
    .ce-col { border-right: none; padding-left: 0; padding-right: 0; border-bottom: 1px solid rgba(35,30,31,.15); }
    .ce-col:last-child { border-bottom: none; }
    .clean-custom { flex-direction: column; align-items: flex-start; gap: 24px; }
    /* enquiry — tablet */
    .purpose-intro { grid-template-columns: 1fr; gap: 32px; }
    .purpose-head-img { display: none; }
    .enq-b2b-inner  { grid-template-columns: 1fr; gap: 48px; }
    .enq-pub-inner  { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
    .nav { padding: 14px 24px; }
    .nav-links { display: none; }
    .wrap { padding: 0 24px; }
    .section { padding: 64px 0; content-visibility: auto; contain-intrinsic-size: 0 600px; }

    .hero {
        flex-direction: column;
        padding: 100px 24px 56px;
        gap: 40px;
        text-align: center;
        max-width: 100%;
    }
    .hero-left { max-width: 100%; }
    .hero-desc { max-width: 100%; }
    .hero-actions { justify-content: center; }
    .hero-right { width: 100%; }
    .hero-video-wrap { max-width: 100%; }

    .nav-logo img { height: 52px; }
    .products-big { grid-template-columns: repeat(2, 1fr); }
    .products-all { grid-template-columns: repeat(2, 1fr); }

    .feature-cards { grid-template-columns: 1fr; }
    .fc { min-height: auto; }

    .statement-split { flex-direction: column; gap: 24px; }
    .statement-right { text-align: left; max-width: 100%; }

    .zero { grid-template-columns: 1fr; }
    .zero-center { display: none; }
    .zero-left { min-height: 280px; }
    .zero-right { padding: 40px 24px; }

    .nut { flex-direction: column; }
    .nut-char { width: 100px; height: 100px; }

    .brand-values { grid-template-columns: 1fr; }
    .bv { border-right: none; padding: 24px 0; border-bottom: 1px solid rgba(35,30,31,.10); }
    .bv:last-child { border-bottom: none; }

    .use-cards { grid-template-columns: 1fr; }
    .cert-row { grid-template-columns: 1fr 1fr; }
    .b2b { flex-direction: column; text-align: center; padding: 36px 28px; }
    .footer-top { grid-template-columns: 1fr; gap: 36px; }
    .footer-brand { grid-column: auto; }

    .products-hdr { flex-direction: column; align-items: flex-start; }
    .rc-grid { grid-template-columns: 1fr; }
    .rc-grid-wide { grid-template-columns: 1fr; }
    .recipe-tabs { gap: 8px; }
    .rtab { font-size: .95rem; padding: 8px 14px; }
    .rc-body { grid-template-columns: 1fr; grid-template-rows: auto; }
    .rc-body .img-ph { grid-column: 1; grid-row: auto; }
    .rc-col { grid-column: 1; grid-row: auto; }
    .rc-col + .rc-col { grid-column: 1; grid-row: auto; padding-left: 0; border-left: none; border-top: 1px solid rgba(35,30,31,.07); }

    .np-body { grid-template-columns: 1fr; }
    .np-col + .np-col { border-left: none; border-top: 1px solid rgba(35,30,31,.08); }

    .blog-card { flex: 0 0 calc(85% - 12px); }
    .origin-card { flex: 0 0 calc(85% - 14px); }

    .prod-dot { width: 10px; height: 10px; }

    .clean-editorial { grid-template-columns: 1fr; }
    .ce-col { border-right: none; padding-left: 0; padding-right: 0; border-bottom: 1px solid rgba(35,30,31,.15); }
    .ce-col:last-child { border-bottom: none; }
    .clean-custom { flex-direction: column; align-items: flex-start; padding: 28px 24px; gap: 24px; }
    /* enquiry — mobile */
    .enq-b2b { padding: 64px 0; }
    .enq-pub  { padding: 64px 0; }
    .enq-form { padding: 28px 24px; }
    .enq-row  { grid-template-columns: 1fr; }
    .enq-b2b-facts { flex-wrap: wrap; gap: 24px; }
    .enq-submit-row { flex-direction: column; align-items: flex-start; gap: 16px; }
    .pp .img-ph { min-height: 120px; }
}
