:root {
    --ink: #241a10;
    --ink-soft: #4a3a26;
    --cream: #fbf6ec;
    --parchment: #f2e6cc;
    --parchment-2: #eadcbe;
    --honey: #c9852b;
    --honey-deep: #8a5a1e;
    --honey-light: #f3c473;
    --honey-glow: #ffd98a;
    --bark: #241a10;
    --bark-2: #33241484;
    --line: rgba(36, 26, 16, .14);
    --line-light: rgba(251, 246, 236, .18);
    --shadow: 0 30px 60px -25px rgba(36, 26, 16, .35);
    --ease: cubic-bezier(.22, 1, .36, 1);
    --serif: 'Fraunces', serif;
    --sans: 'Manrope', sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    margin: 0;
    font-family: var(--sans);
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

h1,
h2,
h3,
h4 {
    font-family: var(--serif);
    font-weight: 500;
    margin: 0;
    letter-spacing: -0.01em;
}

p {
    margin: 0;
    line-height: 1.7;
}

.wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

@media(max-width:640px) {
    .wrap {
        padding: 0 20px;
    }
}

/* ============ UTIL ============ */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--honey-deep);
}

.eyebrow::before {
    content: '';
    width: 26px;
    height: 1px;
    background: var(--honey-deep);
    display: inline-block;
}

.eyebrow.on-dark {
    color: var(--honey-light);
}

.eyebrow.on-dark::before {
    background: var(--honey-light);
}

.section {
    position: relative;
    padding: 120px 0;
}

@media(max-width:900px) {
    .section {
        padding: 80px 0;
    }
}

.section-head {
    max-width: 640px;
    margin-bottom: 64px;
}

.section-head h2 {
    font-size: clamp(32px, 4.4vw, 54px);
    line-height: 1.08;
    margin-top: 14px;
}

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger>* {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal-stagger.in>* {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.in>*:nth-child(1) {
    transition-delay: .02s
}

.reveal-stagger.in>*:nth-child(2) {
    transition-delay: .10s
}

.reveal-stagger.in>*:nth-child(3) {
    transition-delay: .18s
}

.reveal-stagger.in>*:nth-child(4) {
    transition-delay: .26s
}

.reveal-stagger.in>*:nth-child(5) {
    transition-delay: .34s
}

.reveal-stagger.in>*:nth-child(6) {
    transition-delay: .42s
}

.reveal-stagger.in>*:nth-child(7) {
    transition-delay: .5s
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    border-radius: 100px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    transition: transform .5s var(--ease), box-shadow .5s var(--ease), background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
    white-space: nowrap;
}

.btn svg {
    transition: transform .45s var(--ease);
}

.btn:hover svg {
    transform: translateX(5px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--honey-light), var(--honey));
    color: #241a10;
    box-shadow: 0 14px 30px -12px rgba(140, 90, 20, .55);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 38px -12px rgba(140, 90, 20, .6);
}

.btn-ghost {
    border-color: var(--line);
    color: var(--ink);
    background: transparent;
}

.btn-ghost:hover {
    border-color: var(--honey-deep);
    color: var(--honey-deep);
    transform: translateY(-3px);
}

.btn-ghost.on-dark {
    border-color: var(--line-light);
    color: var(--cream);
}

.btn-ghost.on-dark:hover {
    border-color: var(--honey-light);
    color: var(--honey-light);
}

.link-u {
    position: relative;
    padding-bottom: 2px;
}

.link-u::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .45s var(--ease);
}

.link-u:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ============ BEE LAYER ============ */
#page {
    position: relative;
}

#beeSvgLayer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 30;
    overflow: visible;
}

#bee {
    filter: drop-shadow(0 6px 10px rgba(36, 26, 16, .25));
}

.wing {
    transform-box: fill-box;
    transform-origin: 8% 60%;
    animation: flap .16s ease-in-out infinite alternate;
}

.wing-right {
    animation-delay: .03s;
}

@keyframes flap {
    from {
        transform: scaleY(1) skewX(0deg);
    }

    to {
        transform: scaleY(.32) skewX(-8deg);
    }
}

@media(prefers-reduced-motion:reduce) {
    .wing {
        animation: none;
    }

    #beeSvgLayer {
        display: none;
    }
}

/* ============ NAV ============ */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 26px 0;
    transition: padding .5s var(--ease), background .5s var(--ease), box-shadow .5s var(--ease);
}

#nav .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#nav.scrolled {
    padding: 12px 0;
    background: rgba(251, 246, 236, .86);
    backdrop-filter: blur(14px) saturate(160%);
    box-shadow: 0 10px 30px -18px rgba(36, 26, 16, .3);
    border-bottom: 1px solid var(--line);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand img {
    height: 40px;
    width: auto;
    transition: height .5s var(--ease);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .15));
}

#nav.scrolled .brand img {
    height: 32px;
}

.brand-word {
    font-family: var(--serif);
    font-size: 20px;
    letter-spacing: .01em;
    color: var(--cream);
    transition: color .5s var(--ease);
}

#nav.scrolled .brand-word {
    color: var(--ink);
}

.brand-word em {
    font-style: italic;
    color: var(--honey-light);
}

#nav.scrolled .brand-word em {
    color: var(--honey-deep);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 38px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(251, 246, 236, .92);
    transition: color .4s var(--ease);
}

#nav.scrolled .nav-links a {
    color: var(--ink-soft);
}

.nav-links a:hover {
    color: var(--honey-light);
}

#nav.scrolled .nav-links a:hover {
    color: var(--honey-deep);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-contact-btn {
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    border: 1px solid rgba(251, 246, 236, .5);
    color: var(--cream);
    transition: all .4s var(--ease);
}

#nav.scrolled .nav-contact-btn {
    border-color: var(--honey-deep);
    color: var(--honey-deep);
}

.nav-contact-btn:hover {
    background: var(--honey-light);
    border-color: var(--honey-light);
    color: var(--ink);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 26px;
    background: none;
    border: none;
    padding: 6px;
    z-index: 120;
}

.burger span {
    height: 2px;
    width: 100%;
    background: var(--cream);
    border-radius: 2px;
    transition: all .4s var(--ease);
}

#nav.scrolled .burger span {
    background: var(--ink);
}

.burger.open span {
    background: var(--ink);
}

.burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
    opacity: 0;
}

.burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media(max-width:920px) {

    .nav-links,
    .nav-contact-btn {
        display: none;
    }

    .burger {
        display: flex;
    }
}

#mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 110;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 32px;
    transform: translateY(-100%);
    transition: transform .6s var(--ease);
}

#mobile-menu.open {
    transform: translateY(0);
}

#mobile-menu a {
    font-family: var(--serif);
    font-size: 38px;
    color: var(--ink);
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    display: block;
}

#mobile-menu .mm-contact {
    margin-top: 30px;
    font-family: var(--sans);
    font-size: 14px;
    color: var(--ink-soft);
}

/* ============ HERO ============ */
#hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    background: var(--bark);
    overflow: hidden;
}

#hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 110%;
    object-fit: cover;
    opacity: .62;
    filter: saturate(1.05) contrast(1.02);
}

.hero-scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(20, 14, 8, .72) 0%, rgba(20, 14, 8, .32) 32%, rgba(20, 14, 8, .5) 68%, var(--bark) 100%),
        radial-gradient(80% 60% at 20% 20%, rgba(201, 133, 43, .28), transparent 60%);
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .35;
    pointer-events: none;
    background: radial-gradient(circle, var(--honey-glow), transparent 70%);
}

.hero-blob.b1 {
    width: 520px;
    height: 520px;
    top: -140px;
    right: -120px;
}

.hero-blob.b2 {
    width: 380px;
    height: 380px;
    bottom: -120px;
    left: -80px;
    opacity: .2;
}

.hero-inner {
    position: relative;
    z-index: 5;
    width: 100%;
    padding-bottom: 96px;
    padding-top: 180px;
}

.hero-eyebrow-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 26px;
}

.hero-tag {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--honey-light);
}

.hero-tag .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--honey-light);
    display: inline-block;
    margin: 0 12px;
    vertical-align: middle;
}

h1.hero-h {
    font-size: clamp(52px, 9vw, 132px);
    line-height: .94;
    color: var(--cream);
    font-weight: 400;
    margin: 0;
}

h1.hero-h .i {
    font-style: italic;
    font-weight: 400;
    color: var(--honey-light);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: flex-end;
    margin-top: 38px;
}

.hero-copy {
    max-width: 420px;
    color: rgba(251, 246, 236, .82);
    font-size: 16px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.hero-scroll-cue {
    position: absolute;
    right: 32px;
    bottom: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(251, 246, 236, .65);
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    z-index: 5;
}

.hero-scroll-cue .line {
    width: 1px;
    height: 46px;
    background: linear-gradient(var(--honey-light), transparent);
    position: relative;
    overflow: hidden;
}

.hero-scroll-cue .line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--honey-light);
    animation: cueDrip 2.2s ease-in-out infinite;
}

@keyframes cueDrip {
    0% {
        top: -100%;
    }

    60%,
    100% {
        top: 100%;
    }
}

@media(max-width:900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .hero-scroll-cue {
        display: none;
    }
}

/* ============ MARQUEE ============ */
.marquee-band {
    background: var(--ink);
    border-top: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
    overflow: hidden;
    padding: 18px 0;
    position: relative;
    z-index: 4;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    width: max-content;
    animation: marquee 32s linear infinite;
}

.marquee-track span {
    font-family: var(--serif);
    font-style: italic;
    font-size: 19px;
    color: var(--honey-light);
    padding: 0 34px;
    display: inline-flex;
    align-items: center;
    gap: 34px;
}

.marquee-track span::after {
    content: '✦';
    font-style: normal;
    color: var(--line-light);
    font-size: 13px;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media(prefers-reduced-motion:reduce) {
    .marquee-track {
        animation-duration: 90s;
    }
}

/* ============ ABOUT ============ */
#about {
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 76px;
    align-items: center;
}

.about-media {
    position: relative;
}

.about-media .frame {
    position: relative;
    border-radius: 6px 6px 120px 6px;
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4/5;
}

.about-media .frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.4s var(--ease);
}

.about-media:hover .frame img {
    transform: scale(1.06);
}

.about-media .float-card {
    position: absolute;
    bottom: -34px;
    left: -34px;
    background: var(--cream);
    border-radius: 16px;
    padding: 22px 24px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--line);
    max-width: 230px;
}

.about-media .float-card img {
    width: 52px;
    height: auto;
}

.about-media .float-card p {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.5;
}

@media(max-width:900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-media .float-card {
        position: static;
        margin-top: 20px;
        max-width: none;
    }
}

.about-text p {
    color: var(--ink-soft);
    font-size: 16px;
    margin-bottom: 20px;
}

.about-quote {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(20px, 2.4vw, 27px);
    color: var(--ink);
    border-left: 2px solid var(--honey);
    padding-left: 24px;
    margin: 30px 0;
    line-height: 1.5;
}

/* ============ FACTS STRIP ============ */
#facts {
    background: linear-gradient(120deg, var(--bark) 0%, #3a2716 100%);
    position: relative;
    overflow: hidden;
    padding: 78px 0;
}

#facts::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 90% at 90% 10%, rgba(201, 133, 43, .25), transparent 60%);
}

.facts-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

@media(max-width:900px) {
    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 44px;
    }
}

.fact h3 {
    color: var(--honey-light);
    font-size: clamp(32px, 3.6vw, 46px);
    font-weight: 400;
}

.fact p {
    color: rgba(251, 246, 236, .68);
    font-size: 13px;
    margin-top: 8px;
    letter-spacing: .02em;
    line-height: 1.55;
}

/* ============ DIVIDER ============ */
.divider {
    display: block;
    width: 100%;
    line-height: 0;
    position: relative;
    z-index: 3;
}

.divider svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ============ PRODUCTS ============ */
#products {
    background: var(--cream);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

@media(max-width:940px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:620px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

.p-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: var(--parchment);
    box-shadow: 0 18px 40px -28px rgba(36, 26, 16, .4);
    transition: transform .55s var(--ease), box-shadow .55s var(--ease);
}

.p-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 60px -24px rgba(36, 26, 16, .45);
}

.p-card .img-wrap {
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
}

.p-card .img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(36, 26, 16, .55), transparent 45%);
}

.p-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}

.p-card:hover img {
    transform: scale(1.09);
}

.p-card .p-body {
    padding: 22px 22px 26px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
}

.p-card h4 {
    font-size: 20px;
    color: var(--ink);
}

.p-card .p-tag {
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--honey-deep);
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
}

.p-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .4s var(--ease), transform .4s var(--ease);
}

.p-card:hover .p-arrow {
    background: var(--honey);
    transform: rotate(45deg);
}

.p-featured {
    grid-column: span 1;
}

.product-lead {
    background: var(--ink);
    color: var(--cream);
    border-radius: 22px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
}

.product-lead h3 {
    color: var(--honey-light);
    font-size: clamp(22px, 2.6vw, 28px);
    line-height: 1.3;
}

.product-lead p {
    color: rgba(251, 246, 236, .68);
    font-size: 14px;
    margin-top: 16px;
}

/* ============ HORECA ============ */
#horeca {
    background: var(--parchment);
    position: relative;
    overflow: hidden;
}

.horeca-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

@media(max-width:800px) {
    .horeca-grid {
        grid-template-columns: 1fr;
    }
}

.h-card {
    background: var(--cream);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--line);
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}

.h-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.h-card .img-wrap {
    aspect-ratio: 5/4;
    overflow: hidden;
}

.h-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}

.h-card:hover img {
    transform: scale(1.07);
}

.h-card .h-body {
    padding: 24px;
}

.h-card h4 {
    font-size: 19px;
}

.h-card p {
    font-size: 13px;
    color: var(--ink-soft);
    margin-top: 8px;
}

/* ============ QUALITY / SELECTION ============ */
#quality {
    background: var(--bark);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

#quality::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(50% 60% at 10% 90%, rgba(201, 133, 43, .22), transparent 60%);
}

.quality-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

@media(max-width:900px) {
    .quality-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }
}

#quality .section-head h2 {
    color: var(--cream);
}

#quality .section-head p {
    color: rgba(251, 246, 236, .7);
    margin-top: 18px;
    font-size: 16px;
}

.checklist {
    list-style: none;
    margin: 34px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checklist li {
    display: flex;
    gap: 14px;
    font-size: 15px;
    color: rgba(251, 246, 236, .85);
    line-height: 1.55;
}

.checklist .ck {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(243, 196, 115, .14);
    border: 1px solid var(--honey-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.checklist .ck svg {
    width: 11px;
    height: 11px;
}

.quality-media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.quality-media img {
    border-radius: 14px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quality-media a:first-child {
    align-self: end;
    aspect-ratio: 3/4;
}

.quality-media a:last-child {
    align-self: start;
    margin-top: 44px;
    aspect-ratio: 3/4;
}

.quality-media a {
    display: block;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.quality-media img {
    transition: transform 1s var(--ease);
}

.quality-media a:hover img {
    transform: scale(1.08);
}

.lab-note {
    margin-top: 44px;
    padding-top: 34px;
    border-top: 1px solid var(--line-light);
    font-size: 14px;
    color: rgba(251, 246, 236, .6);
    line-height: 1.7;
}

.lab-note b {
    color: var(--honey-light);
    font-weight: 600;
}

/* ============ ORGANIC BAND ============ */
#organic {
    background: linear-gradient(120deg, var(--honey-deep), var(--honey));
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #241a10;
}

#organic::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(115deg, rgba(255, 255, 255, .05) 0 2px, transparent 2px 42px);
}

#organic .wrap {
    position: relative;
    max-width: 760px;
}

#organic h2 {
    font-size: clamp(28px, 3.6vw, 42px);
    color: #241a10;
    margin-top: 16px;
}

#organic p {
    margin-top: 18px;
    font-size: 16px;
    color: rgba(36, 26, 16, .78);
}

#organic .eyebrow {
    color: #241a10;
}

#organic .eyebrow::before {
    background: #241a10;
}

/* ============ PRIVATE LABELS ============ */
#labels {
    background: var(--cream);
}

.labels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media(max-width:900px) {
    .labels-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:560px) {
    .labels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.label-card {
    background: var(--parchment);
    border-radius: 16px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    aspect-ratio: 1/.9;
    transition: transform .5s var(--ease), background .5s var(--ease);
    border: 1px solid transparent;
}

.label-card:hover {
    transform: translateY(-6px);
    background: var(--cream);
    border-color: var(--line);
    box-shadow: var(--shadow);
}

.label-card img {
    max-width: 100%;
    max-height: 52px;
    object-fit: contain;
    filter: grayscale(1) opacity(.65);
    transition: filter .4s var(--ease);
}

.label-card:hover img {
    filter: grayscale(0) opacity(1);
}

.label-card span {
    font-size: 12px;
    letter-spacing: .05em;
    color: var(--ink-soft);
    text-align: center;
}

/* ============ NEWS ============ */
#news {
    background: var(--parchment);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

@media(max-width:860px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

.news-card {
    background: var(--cream);
    border-radius: 18px;
    padding: 30px;
    border: 1px solid var(--line);
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.news-date {
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--honey-deep);
    font-weight: 700;
}

.news-card h4 {
    font-size: 21px;
    margin-top: 14px;
    line-height: 1.3;
}

.news-card p {
    font-size: 14px;
    color: var(--ink-soft);
    margin-top: 12px;
}

.news-card .rm {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ink);
}

/* ============ NEWSLETTER ============ */
#newsletter {
    position: relative;
    background: var(--ink);
    color: var(--cream);
    overflow: hidden;
    padding: 110px 0;
}

#newsletter::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .16;
    background: url('https://www.honey-land.com/wp-content/uploads/2020/05/h1-img-14.png') center/cover no-repeat;
    filter: sepia(.3);
}

#newsletter .nl-inner {
    position: relative;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

#newsletter h2 {
    font-size: clamp(30px, 4vw, 48px);
    color: var(--cream);
}

#newsletter p {
    margin-top: 16px;
    color: rgba(251, 246, 236, .7);
    font-size: 16px;
}

.nl-form {
    display: flex;
    gap: 12px;
    margin-top: 36px;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}

.nl-form input {
    flex: 1;
    padding: 16px 20px;
    border-radius: 100px;
    border: 1px solid rgba(251, 246, 236, .28);
    background: rgba(251, 246, 236, .06);
    color: var(--cream);
    font-size: 14px;
    font-family: var(--sans);
}

.nl-form input::placeholder {
    color: rgba(251, 246, 236, .45);
}

.nl-form input:focus {
    outline: 2px solid var(--honey-light);
    outline-offset: 2px;
}

.nl-form button {
    padding: 16px 28px;
    border-radius: 100px;
    border: none;
    background: linear-gradient(135deg, var(--honey-light), var(--honey));
    color: #241a10;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .05em;
    text-transform: uppercase;
    transition: transform .4s var(--ease);
}

.nl-form button:hover {
    transform: translateY(-2px);
}

.nl-msg {
    margin-top: 16px;
    font-size: 13px;
    color: var(--honey-light);
    height: 18px;
}

@media(max-width:520px) {
    .nl-form {
        flex-direction: column;
    }
}

/* ============ CONTACT ============ */
#contact {
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

@media(max-width:900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 26px;
    margin-top: 34px;
}

.ci-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.ci-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--parchment);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--honey-deep);
}

.ci-row h5 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--ink-soft);
    margin: 0 0 4px;
    font-weight: 700;
}

.ci-row p,
.ci-row a {
    font-size: 15px;
    color: var(--ink);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

@media(max-width:520px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.form-grid .full {
    grid-column: 1/-1;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--ink-soft);
    font-weight: 700;
}

.field input,
.field textarea {
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: var(--parchment);
    font-family: var(--sans);
    font-size: 14px;
    color: var(--ink);
    resize: vertical;
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--honey);
    background: var(--cream);
}

.contact-submit {
    margin-top: 6px;
}

/* ============ FOOTER ============ */
footer {
    background: var(--ink);
    color: rgba(251, 246, 236, .7);
    position: relative;
    overflow: hidden;
}

.footer-top {
    padding: 90px 0 60px;
    position: relative;
}

.footer-top::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 80% at 50% 0%, rgba(201, 133, 43, .16), transparent 60%);
}

.footer-cta {
    position: relative;
    text-align: center;
    max-width: 680px;
    margin: 0 auto 70px;
}

.footer-cta img {
    width: 54px;
    margin: 0 auto 22px;
    opacity: .9;
}

.footer-cta h2 {
    color: var(--cream);
    font-size: clamp(28px, 4.4vw, 52px);
}

.footer-cta .btn {
    margin-top: 30px;
}

.footer-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-top: 60px;
    border-top: 1px solid var(--line-light);
}

@media(max-width:820px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 44px;
    }
}

@media(max-width:520px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-grid h6 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--honey-light);
    margin-bottom: 18px;
    font-weight: 700;
}

.footer-brand-word {
    font-family: var(--serif);
    font-size: 24px;
    color: var(--cream);
    margin-bottom: 14px;
    display: block;
}

.footer-grid p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(251, 246, 236, .55);
}

.footer-grid ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-grid ul a {
    font-size: 14px;
    color: rgba(251, 246, 236, .68);
    transition: color .3s;
}

.footer-grid ul a:hover {
    color: var(--honey-light);
}

.footer-bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    padding: 26px 0;
    border-top: 1px solid var(--line-light);
    font-size: 12px;
    color: rgba(251, 246, 236, .45);
}

.footer-bottom img {
    height: 20px;
    opacity: .7;
}