/* Fam Farmer — public marketing homepage */
:root {
    --ff-ink: #0c0c0c;
    --ff-charcoal: #161616;
    --ff-cream: #f7f5ef;
    --ff-cream-deep: #ede9df;
    --ff-white: #ffffff;
    --ff-lime: #8fd400;
    --ff-lime-soft: #e8f7c8;
    --ff-lime-glow: rgba(143, 212, 0, 0.35);
    --ff-green-deep: #174a2e;
    --ff-green-mid: #2a7a45;
    --ff-green-light: #e6f2e8;
    --ff-green-glow: rgba(42, 122, 69, 0.22);
    --ff-orange: #f29f35;
    --ff-orange-deep: #d97b12;
    --ff-orange-soft: #fff3e3;
    --ff-orange-glow: rgba(242, 159, 53, 0.38);
    --ff-muted: #5e5e58;
    --ff-line: rgba(12, 12, 12, 0.08);
    --ff-container: min(1160px, 90vw);
    --ff-radius-lg: 28px;
    --ff-radius-md: 18px;
    --ff-radius-sm: 12px;
    --ff-shadow: 0 24px 60px rgba(12, 12, 12, 0.08);
    --ff-shadow-soft: 0 8px 30px rgba(12, 12, 12, 0.06);
    --ff-font-display: "Marcellus", Georgia, serif;
    --ff-font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body.ff-home {
    margin: 0;
    font-family: var(--ff-font-body);
    color: var(--ff-ink);
    background: var(--ff-cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.ff-home img { max-width: 100%; display: block; }

body.ff-home a { color: inherit; text-decoration: none; }

body.ff-home h1,
body.ff-home h2,
body.ff-home h3 {
    font-family: var(--ff-font-display);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.01em;
    margin: 0;
}

.ff-container {
    width: var(--ff-container);
    margin-inline: auto;
}

/* ── Header ── */
.ff-header {
    position: relative;
    z-index: 50;
    width: 100%;
    background: var(--ff-white);
    border-bottom: 1px solid rgba(42, 122, 69, 0.14);
    box-shadow: 0 4px 24px rgba(23, 74, 46, 0.06);
}

.ff-header__bar {
    width: 100%;
    border-top: 3px solid var(--ff-green-mid);
}

.ff-header__inner {
    width: var(--ff-container);
    margin-inline: auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem 1.5rem;
    padding: 0.85rem clamp(1rem, 3vw, 1.5rem);
    min-height: 5.5rem;
}

.ff-header__brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.ff-header__brand img {
    height: auto;
    max-height: clamp(52px, 8vw, 72px);
    max-width: min(240px, 48vw);
    width: auto;
    object-fit: contain;
}

.ff-header__nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.15rem;
    min-width: 0;
}

.ff-header__nav a {
    position: relative;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--ff-green-deep);
    padding: 0.65rem 1.1rem;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.ff-header__nav a:hover {
    color: var(--ff-ink);
    background: var(--ff-green-light);
}

.ff-header__nav a.is-active {
    color: var(--ff-green-deep);
    border-bottom-color: var(--ff-lime);
    background: transparent;
}

.ff-header__actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-shrink: 0;
}

.ff-header__actions .ff-btn--install {
    font-size: 0.82rem;
    padding: 0.62rem 0.95rem;
    color: var(--ff-green-deep);
    border-color: rgba(42, 122, 69, 0.22);
    background: var(--ff-white);
    border-radius: 8px;
}

.ff-header__actions .ff-btn--install:hover {
    background: var(--ff-green-light);
    border-color: rgba(42, 122, 69, 0.35);
}

.ff-header__actions .ff-btn--cta-header {
    font-size: 0.82rem;
    padding: 0.62rem 1.1rem;
    border-radius: 8px;
    background: linear-gradient(145deg, var(--ff-orange) 0%, var(--ff-orange-deep) 100%);
    color: var(--ff-white);
    border: 0;
    box-shadow: 0 6px 18px var(--ff-orange-glow);
}

.ff-header__actions .ff-btn--cta-header:hover {
    box-shadow: 0 10px 24px var(--ff-orange-glow);
}

.ff-header__menu {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    border: 1px solid rgba(42, 122, 69, 0.18);
    background: var(--ff-white);
    color: var(--ff-green-deep);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    flex-shrink: 0;
}

.ff-header__menu span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.ff-header.is-menu-open .ff-header__menu span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.ff-header.is-menu-open .ff-header__menu span:nth-child(2) {
    opacity: 0;
}

.ff-header.is-menu-open .ff-header__menu span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.ff-header__drawer {
    width: 100%;
    padding: 0.75rem clamp(1rem, 3vw, 1.5rem) 1rem;
    background: var(--ff-white);
    border-top: 1px solid rgba(42, 122, 69, 0.1);
    border-bottom: 1px solid rgba(42, 122, 69, 0.14);
    box-shadow: inset 0 8px 16px rgba(23, 74, 46, 0.04);
}

.ff-header__drawer[hidden] {
    display: none !important;
}

.ff-header.is-menu-open .ff-header__drawer:not([hidden]) {
    display: grid;
    gap: 0.25rem;
}

.ff-header__drawer a,
.ff-header__drawer button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.85rem 0.75rem;
    border-radius: 0;
    font-family: var(--ff-font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ff-green-deep);
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--ff-line);
    cursor: pointer;
    text-align: left;
}

.ff-header__drawer a:last-of-type,
.ff-header__drawer button:not(.ff-btn--cta-header) {
    border-bottom: 1px solid var(--ff-line);
}

.ff-header__drawer a:hover,
.ff-header__drawer button:hover {
    background: var(--ff-green-light);
}

.ff-header__drawer .ff-btn--cta-header {
    justify-content: center;
    margin-top: 0.5rem;
    border-bottom: 0;
    border-radius: 8px;
}

/* ── Buttons ── */
.ff-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.72rem 1.25rem;
    border-radius: 999px;
    font-family: var(--ff-font-body);
    font-size: 0.88rem;
    font-weight: 700;
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

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

.ff-btn--primary {
    background: var(--ff-ink);
    color: var(--ff-white);
    box-shadow: 0 10px 28px rgba(12, 12, 12, 0.18);
}

.ff-btn--primary:hover {
    background: #222;
    box-shadow: 0 14px 36px rgba(12, 12, 12, 0.22);
}

.ff-btn--lime {
    background: var(--ff-lime);
    color: var(--ff-ink);
    box-shadow: 0 10px 28px var(--ff-lime-glow);
}

.ff-btn--ghost {
    background: transparent;
    color: var(--ff-ink);
    border-color: rgba(12, 12, 12, 0.14);
}

.ff-btn--ghost:hover {
    background: rgba(12, 12, 12, 0.04);
}

.ff-btn--orange {
    background: linear-gradient(145deg, var(--ff-orange) 0%, var(--ff-orange-deep) 100%);
    color: var(--ff-white);
    box-shadow: 0 10px 28px var(--ff-orange-glow);
}

.ff-btn--orange:hover {
    box-shadow: 0 14px 34px var(--ff-orange-glow);
}

.ff-btn[hidden] { display: none !important; }

/* ── Hero ── */
/* ── Hero ── */
.ff-hero {
    padding: clamp(2rem, 4vw, 3rem) 0 clamp(2.5rem, 5vw, 4rem);
    position: relative;
    overflow: hidden;
}

.ff-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.ff-hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.55;
}

.ff-hero__blob--lime {
    width: min(55vw, 520px);
    height: min(55vw, 520px);
    top: -8%;
    right: -6%;
    background: var(--ff-lime-glow);
    animation: ffBlobDrift 14s ease-in-out infinite alternate;
}

.ff-hero__blob--orange {
    width: min(40vw, 380px);
    height: min(40vw, 380px);
    bottom: 8%;
    left: -8%;
    background: var(--ff-orange-glow);
    animation: ffBlobDrift 18s ease-in-out infinite alternate-reverse;
}

.ff-hero__blob--green {
    width: min(32vw, 300px);
    height: min(32vw, 300px);
    top: 42%;
    left: 38%;
    background: var(--ff-green-glow);
    animation: ffBlobDrift 16s ease-in-out 2s infinite alternate;
}

@keyframes ffBlobDrift {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(24px, -18px) scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
    .ff-hero__blob,
    .ff-hero__eyebrow::before {
        animation: none;
    }
}

.ff-hero__intro {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 52rem;
    margin-inline: auto;
    padding-bottom: clamp(2rem, 4vw, 3rem);
}

.ff-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ff-green-deep);
    margin: 0 0 1.15rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(42, 122, 69, 0.16);
    box-shadow: var(--ff-shadow-soft);
}

.ff-hero__eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ff-lime);
    box-shadow: 0 0 0 4px rgba(143, 212, 0, 0.25);
    animation: ffPulse 2.4s ease-in-out infinite;
}

@keyframes ffPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.15); opacity: 0.85; }
}

.ff-hero h1 {
    font-size: clamp(2.6rem, 6.5vw, 4.75rem);
    max-width: none;
    margin-bottom: 1.15rem;
    color: var(--ff-ink);
    line-height: 1.02;
}

.ff-hero__title-accent {
    display: block;
    margin-top: 0.12em;
    background: linear-gradient(120deg, var(--ff-green-mid) 0%, var(--ff-green-deep) 55%, var(--ff-orange-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ff-hero__lead {
    font-size: clamp(1.02rem, 1.8vw, 1.2rem);
    line-height: 1.65;
    color: var(--ff-muted);
    max-width: 42rem;
    margin: 0 auto 1.5rem;
}

.ff-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    margin-bottom: 0;
}

.ff-hero__tags .ff-tag {
    font-size: clamp(0.78rem, 1.4vw, 0.88rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.58rem 1.15rem;
    border-width: 1.5px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ff-hero__tags .ff-tag:hover {
    transform: translateY(-2px) scale(1.03);
}

.ff-hero__tags .ff-tag--lime {
    color: #2f4d00;
    background: linear-gradient(135deg, #f0ffd4 0%, var(--ff-lime-soft) 55%, #d4f5a0 100%);
    border-color: rgba(143, 212, 0, 0.65);
    box-shadow:
        0 0 22px rgba(143, 212, 0, 0.5),
        0 0 44px rgba(143, 212, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    animation: ffTagGlowLime 3s ease-in-out infinite;
}

.ff-hero__tags .ff-tag--green {
    color: var(--ff-green-deep);
    background: linear-gradient(135deg, #f4fbf6 0%, var(--ff-green-light) 55%, #dceee2 100%);
    border-color: rgba(42, 122, 69, 0.45);
    box-shadow:
        0 0 22px rgba(42, 122, 69, 0.35),
        0 0 40px rgba(42, 122, 69, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    animation: ffTagGlowGreen 3s ease-in-out 0.4s infinite;
}

.ff-hero__tags .ff-tag--orange {
    color: var(--ff-orange-deep);
    background: linear-gradient(135deg, #fff8ee 0%, var(--ff-orange-soft) 55%, #ffe4c4 100%);
    border-color: rgba(242, 159, 53, 0.55);
    box-shadow:
        0 0 22px rgba(242, 159, 53, 0.45),
        0 0 40px rgba(242, 159, 53, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    animation: ffTagGlowOrange 3s ease-in-out 0.8s infinite;
}

.ff-hero__tags .ff-tag--door {
    color: #1a4d6e;
    background: linear-gradient(135deg, #eef8ff 0%, #d9eef9 55%, #c5e4f5 100%);
    border-color: rgba(52, 152, 219, 0.45);
    box-shadow:
        0 0 22px rgba(52, 152, 219, 0.4),
        0 0 40px rgba(52, 152, 219, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    animation: ffTagGlowDoor 3s ease-in-out 1.2s infinite;
}

@keyframes ffTagGlowLime {
    0%, 100% { box-shadow: 0 0 18px rgba(143, 212, 0, 0.4), 0 0 36px rgba(143, 212, 0, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.85); }
    50%      { box-shadow: 0 0 28px rgba(143, 212, 0, 0.65), 0 0 56px rgba(143, 212, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.95); }
}

@keyframes ffTagGlowGreen {
    0%, 100% { box-shadow: 0 0 18px rgba(42, 122, 69, 0.3), 0 0 36px rgba(42, 122, 69, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9); }
    50%      { box-shadow: 0 0 28px rgba(42, 122, 69, 0.5), 0 0 52px rgba(42, 122, 69, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.95); }
}

@keyframes ffTagGlowOrange {
    0%, 100% { box-shadow: 0 0 18px rgba(242, 159, 53, 0.38), 0 0 36px rgba(242, 159, 53, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9); }
    50%      { box-shadow: 0 0 28px rgba(242, 159, 53, 0.6), 0 0 52px rgba(242, 159, 53, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.95); }
}

@keyframes ffTagGlowDoor {
    0%, 100% { box-shadow: 0 0 18px rgba(52, 152, 219, 0.35), 0 0 36px rgba(52, 152, 219, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9); }
    50%      { box-shadow: 0 0 28px rgba(52, 152, 219, 0.55), 0 0 52px rgba(52, 152, 219, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.95); }
}

@media (prefers-reduced-motion: reduce) {
    .ff-hero__tags .ff-tag {
        animation: none;
    }
}

.ff-tag--green {
    background: var(--ff-green-light);
    border-color: rgba(42, 122, 69, 0.22);
    color: var(--ff-green-deep);
}

.ff-tag--orange {
    background: var(--ff-orange-soft);
    border-color: rgba(242, 159, 53, 0.35);
    color: var(--ff-orange-deep);
}

.ff-hero__showcase {
    position: relative;
    z-index: 1;
    width: min(1320px, 96vw);
    margin-inline: auto;
    padding-inline: clamp(0.5rem, 2vw, 1rem);
}

.ff-hero__story {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.75rem, 2vw, 1.35rem);
    align-items: end;
}

.ff-hero__story-step {
    margin: 0;
    min-width: 0;
    transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.ff-hero__story-step--featured {
    transform: translateY(-1.25rem);
    z-index: 2;
}

.ff-hero__story-step:hover {
    transform: translateY(-0.5rem);
}

.ff-hero__story-step--featured:hover {
    transform: translateY(-1.75rem);
}

.ff-hero__story-media {
    position: relative;
    border-radius: clamp(18px, 2.5vw, 26px);
    overflow: hidden;
    background: var(--ff-charcoal);
    box-shadow:
        0 20px 50px rgba(12, 12, 12, 0.14),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    aspect-ratio: 3 / 4;
    min-height: clamp(340px, 38vw, 560px);
}

.ff-hero__story-step--featured .ff-hero__story-media {
    min-height: clamp(380px, 42vw, 620px);
    box-shadow:
        0 28px 70px rgba(23, 74, 46, 0.2),
        0 0 0 3px rgba(143, 212, 0, 0.35);
}

.ff-hero__story-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ff-hero__story-step:hover .ff-hero__story-media img {
    transform: scale(1.06);
}

.ff-hero__story-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1rem, 2vw, 1.35rem) clamp(1rem, 2vw, 1.35rem);
    display: grid;
    gap: 0.15rem;
    background: linear-gradient(180deg, transparent 0%, rgba(12, 12, 12, 0.55) 38%, rgba(12, 12, 12, 0.88) 100%);
    color: var(--ff-white);
}

.ff-hero__story-num {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--ff-lime);
}

.ff-hero__story-caption strong {
    font-family: var(--ff-font-display);
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--ff-white);
}

.ff-hero__story-caption span:last-child {
    font-size: clamp(0.78rem, 1.2vw, 0.88rem);
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.82);
}

@media (prefers-reduced-motion: no-preference) {
    .ff-hero__story-step {
        opacity: 0;
        transform: translateY(28px);
        animation: ffHeroStepIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    .ff-hero__story-step:nth-child(1) { animation-delay: 0.15s; }
    .ff-hero__story-step:nth-child(2) { animation-delay: 0.3s; }
    .ff-hero__story-step:nth-child(3) { animation-delay: 0.45s; }

    .ff-hero__story-step--featured {
        animation-name: ffHeroStepInFeatured;
    }

    @keyframes ffHeroStepIn {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes ffHeroStepInFeatured {
        to {
            opacity: 1;
            transform: translateY(-1.25rem);
        }
    }
}

.ff-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ff-muted);
    margin-bottom: 1.1rem;
}

.ff-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--ff-lime);
    border-radius: 2px;
}

.ff-tag {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.42rem 0.78rem;
    border-radius: 999px;
    background: var(--ff-white);
    border: 1px solid var(--ff-line);
    color: var(--ff-ink);
    box-shadow: var(--ff-shadow-soft);
}

.ff-tag--lime {
    background: var(--ff-lime-soft);
    border-color: rgba(143, 212, 0, 0.35);
}

/* legacy hero slider — kept if reused elsewhere */
.ff-hero__frame {
    position: relative;
    border-radius: var(--ff-radius-lg);
    overflow: hidden;
    background: var(--ff-charcoal);
    box-shadow: var(--ff-shadow);
    aspect-ratio: 4 / 5;
    max-height: min(72vh, 640px);
}

.ff-hero__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ff-hero__slides {
    display: flex;
    height: 100%;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.ff-hero__slide {
    min-width: 100%;
    height: 100%;
}

.ff-hero__slide img {
    animation: ffHeroZoom 16s ease-in-out infinite alternate;
}

@keyframes ffHeroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.06); }
}

.ff-hero__controls {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    z-index: 3;
}

.ff-hero__dots {
    display: flex;
    gap: 0.35rem;
}

.ff-hero__dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.ff-hero__dots button.active {
    background: var(--ff-lime);
    transform: scale(1.25);
}

.ff-hero__arrows {
    display: flex;
    gap: 0.35rem;
}

.ff-hero__arrows button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(12, 12, 12, 0.55);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background 0.2s ease;
}

.ff-hero__arrows button:hover {
    background: rgba(12, 12, 12, 0.75);
}

.ff-hero__badge {
    position: absolute;
    top: 1.25rem;
    left: -1rem;
    background: var(--ff-ink);
    color: var(--ff-white);
    padding: 0.85rem 1rem;
    border-radius: var(--ff-radius-sm);
    box-shadow: var(--ff-shadow);
    max-width: 11rem;
    z-index: 4;
}

.ff-hero__badge strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--ff-lime);
}

.ff-hero__badge span {
    font-size: 0.78rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.78);
}

/* ── Trust strip ── */
.ff-trust {
    border-block: 1px solid var(--ff-line);
    background: var(--ff-white);
}

.ff-trust__inner {
    width: var(--ff-container);
    margin-inline: auto;
    padding: 1.35rem 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}

.ff-trust__item strong {
    display: block;
    font-family: var(--ff-font-display);
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    color: var(--ff-ink);
    margin-bottom: 0.2rem;
}

.ff-trust__item span {
    font-size: 0.8rem;
    color: var(--ff-muted);
    font-weight: 500;
}

/* ── Sections ── */
.ff-section {
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.ff-section--dark {
    background: var(--ff-charcoal);
    color: var(--ff-white);
}

.ff-section--dark .ff-eyebrow { color: rgba(255, 255, 255, 0.55); }
.ff-section--dark .ff-section__head h2 { color: var(--ff-white); }
.ff-section--dark .ff-section__sub { color: rgba(255, 255, 255, 0.65); }

.ff-section__head {
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.ff-section__head--center {
    text-align: center;
    max-width: 52rem;
    margin-inline: auto;
}

.ff-section__head h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 0.85rem;
}

.ff-section__sub {
    font-size: clamp(0.98rem, 1.4vw, 1.1rem);
    line-height: 1.68;
    color: var(--ff-muted);
    max-width: 58ch;
}

.ff-section__head--center .ff-section__sub {
    margin-inline: auto;
}

/* ── Journey / steps ── */
.ff-journey {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.ff-journey__card {
    position: relative;
    background: var(--ff-white);
    border-radius: var(--ff-radius-md);
    overflow: hidden;
    border: 1px solid var(--ff-line);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 220px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ff-journey__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ff-shadow);
}

.ff-journey__card:nth-child(1) { grid-column: span 2; grid-template-columns: 1.1fr 0.9fr; }

.ff-journey__media {
    position: relative;
    overflow: hidden;
    min-height: 180px;
}

.ff-journey__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ff-journey__card:hover .ff-journey__media img {
    transform: scale(1.04);
}

.ff-journey__body {
    padding: 1.5rem 1.35rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ff-journey__step {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ff-lime);
    margin-bottom: 0.5rem;
}

.ff-journey__body h3 {
    font-size: 1.35rem;
    margin-bottom: 0.55rem;
}

.ff-journey__body p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.58;
    color: var(--ff-muted);
}

/* ── Farm standards ── */
.ff-standards {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 12%, rgba(143, 212, 0, 0.12) 0%, transparent 42%),
        radial-gradient(circle at 92% 88%, rgba(242, 159, 53, 0.1) 0%, transparent 40%),
        linear-gradient(180deg, var(--ff-white) 0%, var(--ff-green-light) 100%);
    border-block: 1px solid rgba(42, 122, 69, 0.1);
}

.ff-standards__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1rem, 2.5vw, 1.75rem);
    align-items: stretch;
}

.ff-standard {
    display: flex;
    flex-direction: column;
    border-radius: clamp(20px, 2.5vw, 28px);
    overflow: hidden;
    background: var(--ff-white);
    border: 1px solid rgba(42, 122, 69, 0.12);
    box-shadow: 0 18px 48px rgba(23, 74, 46, 0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ff-standard:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(23, 74, 46, 0.14);
}

.ff-standard--fresh {
    border-top: 4px solid var(--ff-orange);
}

.ff-standard--natural {
    border-top: 4px solid var(--ff-green-mid);
}

.ff-standard__visual {
    position: relative;
    aspect-ratio: 16 / 10;
    min-height: clamp(200px, 24vw, 280px);
    overflow: hidden;
    background: var(--ff-charcoal);
}

.ff-standard__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.ff-standard:hover .ff-standard__visual img {
    transform: scale(1.05);
}

.ff-standard__visual-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.35rem;
    padding: clamp(1rem, 2.5vw, 1.5rem);
    background: linear-gradient(180deg, transparent 20%, rgba(12, 12, 12, 0.72) 68%, rgba(12, 12, 12, 0.92) 100%);
    color: var(--ff-white);
}

.ff-standard__badge {
    align-self: flex-start;
    display: inline-flex;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ff-standard--fresh .ff-standard__badge {
    background: var(--ff-orange-soft);
    color: var(--ff-orange-deep);
    box-shadow: 0 0 20px rgba(242, 159, 53, 0.45);
}

.ff-standard--natural .ff-standard__badge {
    background: var(--ff-lime-soft);
    color: var(--ff-green-deep);
    box-shadow: 0 0 20px rgba(143, 212, 0, 0.4);
}

.ff-standard__visual-overlay h3 {
    font-family: var(--ff-font-display);
    font-size: clamp(1.2rem, 2.2vw, 1.55rem);
    font-weight: 400;
    line-height: 1.15;
    margin: 0;
    color: var(--ff-white);
}

.ff-standard__visual-overlay p {
    margin: 0;
    font-size: clamp(0.82rem, 1.3vw, 0.92rem);
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.82);
    max-width: 36ch;
}

.ff-standard__body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: clamp(1.1rem, 2vw, 1.5rem);
    flex: 1;
}

.ff-standard__checks-title {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ff-green-deep);
}

.ff-standard__checks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    flex: 1;
}

.ff-check-tile {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.75rem 0.8rem;
    border-radius: var(--ff-radius-sm);
    background: var(--ff-cream);
    border: 1px solid var(--ff-line);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ff-check-tile:hover {
    transform: translateY(-2px);
    border-color: rgba(42, 122, 69, 0.22);
    box-shadow: 0 8px 24px rgba(23, 74, 46, 0.08);
}

.ff-standard--fresh .ff-check-tile:hover {
    border-color: rgba(242, 159, 53, 0.35);
    box-shadow: 0 8px 24px rgba(242, 159, 53, 0.12);
}

.ff-check-tile__icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 10px;
    background: var(--ff-white);
    color: var(--ff-green-mid);
    box-shadow: inset 0 0 0 1px rgba(42, 122, 69, 0.12);
}

.ff-standard--fresh .ff-check-tile__icon {
    color: var(--ff-orange-deep);
    box-shadow: inset 0 0 0 1px rgba(242, 159, 53, 0.2);
}

.ff-check-tile__icon svg {
    width: 1.2rem;
    height: 1.2rem;
}

.ff-check-tile__copy strong {
    display: block;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--ff-ink);
    line-height: 1.25;
    margin-bottom: 0.12rem;
}

.ff-check-tile__copy span {
    display: block;
    font-size: 0.76rem;
    line-height: 1.4;
    color: var(--ff-muted);
}

.ff-standard__best {
    margin: 0;
    padding: 0.75rem 0.9rem;
    border-radius: var(--ff-radius-sm);
    font-size: 0.84rem;
    line-height: 1.45;
    color: var(--ff-green-deep);
    background: rgba(42, 122, 69, 0.06);
    border: 1px dashed rgba(42, 122, 69, 0.18);
}

.ff-standard__best span {
    display: block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ff-green-mid);
    margin-bottom: 0.15rem;
}

.ff-standard--fresh .ff-standard__best {
    color: #8a4d0a;
    background: rgba(242, 159, 53, 0.08);
    border-color: rgba(242, 159, 53, 0.22);
}

.ff-standard--fresh .ff-standard__best span {
    color: var(--ff-orange-deep);
}

.ff-standards__shared {
    margin-top: clamp(1.75rem, 3vw, 2.5rem);
    padding: clamp(1.1rem, 2vw, 1.5rem);
    border-radius: var(--ff-radius-lg);
    text-align: center;
    background: var(--ff-white);
    border: 1px solid rgba(42, 122, 69, 0.14);
    box-shadow:
        0 12px 36px rgba(23, 74, 46, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.ff-standards__shared-title {
    margin: 0 0 0.85rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ff-green-mid);
}

.ff-standards__shared-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
}

.ff-standards__shared-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ff-green-deep);
    background: linear-gradient(135deg, var(--ff-green-light) 0%, #eef8f0 100%);
    border: 1px solid rgba(42, 122, 69, 0.18);
    box-shadow: 0 0 18px rgba(42, 122, 69, 0.12);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.ff-standards__shared-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(143, 212, 0, 0.35);
}

.ff-standards__shared-pill .ff-check-tile__icon {
    width: 1.65rem;
    height: 1.65rem;
    border-radius: 50%;
    background: var(--ff-white);
}

.ff-standards__shared-pill .ff-check-tile__icon svg {
    width: 0.95rem;
    height: 0.95rem;
}

.ff-section__sub strong {
    color: var(--ff-green-deep);
    font-weight: 700;
}

/* ── Shop section ── */
.ff-shop {
    background:
        radial-gradient(circle at 0% 0%, rgba(242, 159, 53, 0.08) 0%, transparent 38%),
        radial-gradient(circle at 100% 40%, rgba(42, 122, 69, 0.08) 0%, transparent 42%),
        linear-gradient(180deg, var(--ff-cream-deep) 0%, var(--ff-cream) 55%, var(--ff-white) 100%);
}

.ff-shop__modes {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3rem);
}

.ff-shop__mode-head {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.35rem;
}

.ff-shop__mode-num {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 12px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--ff-green-deep);
    background: var(--ff-white);
    border: 1px solid rgba(42, 122, 69, 0.16);
    box-shadow: 0 6px 18px rgba(23, 74, 46, 0.08);
}

.ff-shop__mode--baskets .ff-shop__mode-num {
    color: var(--ff-orange-deep);
    border-color: rgba(242, 159, 53, 0.28);
    box-shadow: 0 6px 18px rgba(242, 159, 53, 0.12);
}

.ff-shop__mode-head h3 {
    font-family: var(--ff-font-display);
    font-size: clamp(1.45rem, 2.8vw, 1.85rem);
    font-weight: 400;
    margin: 0 0 0.2rem;
    line-height: 1.1;
}

.ff-shop__mode-head p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--ff-muted);
}

.ff-shop__divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--ff-muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ff-shop__divider::before,
.ff-shop__divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(42, 122, 69, 0.22), transparent);
}

.ff-shop__divider span {
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: var(--ff-white);
    border: 1px solid var(--ff-line);
}

/* ── Basket product cards ── */
.ff-shop__baskets {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.85rem, 2vw, 1.25rem);
    align-items: stretch;
}

.ff-shop-basket {
    display: flex;
    flex-direction: column;
    border-radius: clamp(18px, 2vw, 24px);
    overflow: hidden;
    background: var(--ff-white);
    border: 1px solid rgba(12, 12, 12, 0.06);
    box-shadow: 0 16px 40px rgba(12, 12, 12, 0.07);
    transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.35s ease;
    color: inherit;
    text-decoration: none;
}

.ff-shop-basket:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 56px rgba(12, 12, 12, 0.12);
}

.ff-shop-basket--featured {
    transform: translateY(-10px);
    border-color: rgba(242, 159, 53, 0.35);
    box-shadow:
        0 24px 52px rgba(242, 159, 53, 0.15),
        0 0 0 1px rgba(242, 159, 53, 0.12);
}

.ff-shop-basket--featured:hover {
    transform: translateY(-14px);
}

.ff-shop-basket__media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--ff-charcoal);
}

.ff-shop-basket__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.ff-shop-basket:hover .ff-shop-basket__media img {
    transform: scale(1.06);
}

.ff-shop-basket__info {
    padding: clamp(0.9rem, 2vw, 1.1rem) clamp(1rem, 2vw, 1.15rem) clamp(1rem, 2vw, 1.2rem);
    text-align: center;
}

.ff-shop-basket__info h4 {
    font-family: var(--ff-font-display);
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-weight: 400;
    margin: 0 0 0.35rem;
    line-height: 1.2;
    color: var(--ff-ink);
}

.ff-shop-basket__price {
    margin: 0;
    font-family: var(--ff-font-display);
    font-size: clamp(1.25rem, 2.2vw, 1.5rem);
    font-weight: 400;
    color: var(--ff-orange-deep);
    line-height: 1;
}

/* ── Per-kg produce scroller ── */
.ff-shop-produce-scroll-wrap {
    margin-inline: calc(50% - 50vw);
    padding-inline: max(1rem, calc(50vw - min(580px, 45vw)));
}

.ff-shop-produce-scroll {
    display: flex;
    gap: clamp(0.75rem, 1.5vw, 1rem);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0.35rem 0 0.85rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(42, 122, 69, 0.35) transparent;
}

.ff-shop-produce-scroll::-webkit-scrollbar {
    height: 6px;
}

.ff-shop-produce-scroll::-webkit-scrollbar-thumb {
    background: rgba(42, 122, 69, 0.28);
    border-radius: 999px;
}

.ff-produce-card {
    flex: 0 0 clamp(10.5rem, 22vw, 13.5rem);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    border-radius: clamp(16px, 2vw, 20px);
    overflow: hidden;
    background: var(--ff-white);
    border: 1px solid rgba(42, 122, 69, 0.1);
    box-shadow: 0 12px 32px rgba(23, 74, 46, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ff-produce-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(23, 74, 46, 0.12);
}

.ff-produce-card__media {
    position: relative;
    aspect-ratio: 1;
    padding: 0.6rem;
    background: linear-gradient(180deg, var(--ff-green-light) 0%, var(--ff-white) 100%);
    overflow: hidden;
}

.ff-produce-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.35s ease;
}

.ff-produce-card:hover .ff-produce-card__media img {
    transform: scale(1.06);
}

.ff-produce-card__prices-top {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    right: 0.85rem;
    display: flex;
    justify-content: space-between;
    gap: 0.4rem;
    z-index: 2;
}

.ff-produce-card__label {
    position: absolute;
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.85rem;
    margin: 0;
    padding: 0.42rem 0.6rem;
    border-radius: 10px;
    background: rgba(13, 16, 19, 0.58);
    color: var(--ff-white);
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    backdrop-filter: blur(6px);
}

.ff-produce-card__label span {
    opacity: 0.8;
    font-weight: 600;
}

.ff-produce-card__price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.12rem;
    padding: 0.34rem 0.45rem;
    border-radius: 10px;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    min-width: 5.4rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.ff-produce-card__price span {
    opacity: 0.82;
    line-height: 1.2;
}

.ff-produce-card__price strong {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;
    white-space: nowrap;
}

.ff-produce-card__price--fresh {
    background: var(--ff-orange-soft);
    border: 1px solid rgba(242, 159, 53, 0.28);
    color: var(--ff-orange-deep);
}

.ff-produce-card__price--natural {
    background: var(--ff-lime-soft);
    border: 1px solid rgba(42, 122, 69, 0.2);
    color: var(--ff-green-deep);
}

.ff-shop-produce__foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.5rem;
    padding: 1rem 0 0;
}

.ff-shop-produce__foot p {
    margin: 0;
    font-size: 0.78rem;
    color: var(--ff-muted);
    font-style: italic;
}

.ff-shop-produce__foot .ff-btn {
    flex-shrink: 0;
    border-radius: 12px;
    padding: 0.65rem 1.15rem;
    font-size: 0.84rem;
}

/* legacy shop card styles — kept for reference */
.ff-showcase-block {
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.ff-showcase-block__head {
    text-align: center;
    margin-bottom: 1.25rem;
}

.ff-showcase-block__head h3 {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    margin-bottom: 0.35rem;
}

.ff-showcase-block__head p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--ff-muted);
}

.ff-showcase-block__cta {
    text-align: center;
    margin-top: 1.15rem;
}

.ff-baskets-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    align-items: stretch;
}

.ff-basket-card {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1.15rem 1.1rem 1.25rem;
    border-radius: var(--ff-radius-md);
    background: var(--ff-white);
    border: 1px solid var(--ff-line);
    border-top: 3px solid var(--ff-orange);
    box-shadow: var(--ff-shadow-soft);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.ff-basket-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ff-shadow);
}

.ff-basket-card__title {
    font-family: var(--ff-font-display);
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-weight: 400;
    margin: 0;
    line-height: 1.25;
    color: var(--ff-ink);
}

.ff-basket-card__items {
    list-style: none;
    margin: 0;
    padding: 0.65rem 0 0;
    border-top: 1px dashed var(--ff-line);
    display: grid;
    gap: 0.32rem;
    flex: 1;
}

.ff-basket-card__items li {
    font-size: 0.84rem;
    color: var(--ff-muted);
    padding-left: 0.85rem;
    position: relative;
}

.ff-basket-card__items li::before {
    content: "·";
    position: absolute;
    left: 0;
    color: var(--ff-orange);
    font-weight: 700;
}

.ff-basket-card__cta {
    width: 100%;
    padding-block: 0.62rem;
    font-size: 0.82rem;
}

.ff-produce-table-wrap {
    overflow-x: auto;
    border-radius: var(--ff-radius-md);
    border: 1px solid rgba(42, 122, 69, 0.14);
    background: var(--ff-white);
    box-shadow: var(--ff-shadow-soft);
}

.ff-produce-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 320px;
}

.ff-produce-table thead {
    background: linear-gradient(180deg, var(--ff-green-light) 0%, #eef6ef 100%);
}

.ff-produce-table th,
.ff-produce-table td {
    padding: 0.72rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--ff-line);
}

.ff-produce-table th {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ff-green-deep);
}

.ff-produce-table tbody tr:last-child td {
    border-bottom: 0;
}

.ff-produce-table tbody tr:hover {
    background: rgba(42, 122, 69, 0.04);
}

.ff-produce-table__th-tag {
    display: inline-flex;
    padding: 0.22rem 0.55rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ff-produce-table__th-tag--fresh {
    background: var(--ff-orange-soft);
    color: var(--ff-orange-deep);
}

.ff-produce-table__th-tag--natural {
    background: var(--ff-lime-soft);
    color: var(--ff-green-deep);
}

.ff-produce-table__name {
    font-weight: 600;
    color: var(--ff-ink);
    font-size: 0.92rem;
}

.ff-produce-table__unit {
    font-weight: 500;
    color: var(--ff-muted);
    font-size: 0.82rem;
}

.ff-produce-table__price {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--ff-green-deep);
    white-space: nowrap;
}

.ff-produce-table__note {
    margin: 0.65rem 0 0;
    text-align: center;
    font-size: 0.78rem;
    color: var(--ff-muted);
    font-style: italic;
}

/* legacy shop card styles — kept for reference */
.ff-shop__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    align-items: stretch;
}

.ff-shop__card {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    border-radius: var(--ff-radius-lg);
    border: 1px solid var(--ff-line);
    background: var(--ff-white);
    box-shadow: var(--ff-shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ff-shop__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ff-shadow);
}

.ff-shop__card--basket {
    border-top: 4px solid var(--ff-orange);
}

.ff-shop__card--kg {
    border-top: 4px solid var(--ff-green-mid);
}

.ff-shop__card-head h3 {
    font-size: clamp(1.3rem, 2.2vw, 1.6rem);
    margin-bottom: 0.5rem;
    line-height: 1.15;
}

.ff-shop__intro {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.62;
    color: var(--ff-muted);
}

.ff-shop__badge {
    display: inline-flex;
    margin-bottom: 0.7rem;
    padding: 0.32rem 0.72rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ff-shop__badge--basket {
    background: var(--ff-orange-soft);
    color: var(--ff-orange-deep);
    border: 1px solid rgba(242, 159, 53, 0.35);
}

.ff-shop__badge--kg {
    background: var(--ff-lime-soft);
    color: var(--ff-green-deep);
    border: 1px solid rgba(42, 122, 69, 0.22);
}

.ff-shop__sample {
    padding: 1rem 1.05rem;
    border-radius: var(--ff-radius-md);
    background: linear-gradient(145deg, #fff9f0 0%, #fff 100%);
    border: 1px solid rgba(242, 159, 53, 0.22);
}

.ff-shop__sample-farm {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ff-orange-deep);
    margin-bottom: 0.35rem;
}

.ff-shop__sample-title {
    font-family: var(--ff-font-display);
    font-size: 1.2rem;
    color: var(--ff-ink);
    margin-bottom: 0.35rem;
}

.ff-shop__sample-price {
    font-size: 0.88rem;
    color: var(--ff-muted);
    margin-bottom: 0.75rem;
}

.ff-shop__sample-price strong {
    font-family: var(--ff-font-display);
    font-size: 1.35rem;
    color: var(--ff-ink);
}

.ff-shop__sample-items {
    list-style: none;
    margin: 0 0 0.65rem;
    padding: 0;
    display: grid;
    gap: 0.35rem;
}

.ff-shop__sample-items li {
    font-size: 0.86rem;
    color: var(--ff-ink);
    padding-left: 1rem;
    position: relative;
}

.ff-shop__sample-items li::before {
    content: "·";
    position: absolute;
    left: 0;
    color: var(--ff-orange);
    font-weight: 700;
}

.ff-shop__sample-note,
.ff-shop__picker-note {
    margin: 0;
    font-size: 0.78rem;
    color: var(--ff-muted);
    font-style: italic;
}

.ff-shop__picker {
    padding: 0.85rem;
    border-radius: var(--ff-radius-md);
    background: linear-gradient(145deg, #f4faf5 0%, #fff 100%);
    border: 1px solid rgba(42, 122, 69, 0.16);
    display: grid;
    gap: 0.55rem;
}

.ff-shop__picker-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    padding: 0.55rem 0.65rem;
    border-radius: var(--ff-radius-sm);
    background: var(--ff-white);
    border: 1px solid var(--ff-line);
}

.ff-shop__picker-item {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--ff-ink);
}

.ff-shop__picker-tag {
    flex-shrink: 0;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
}

.ff-shop__picker-tag--fresh {
    background: var(--ff-orange-soft);
    color: var(--ff-orange-deep);
}

.ff-shop__picker-tag--natural {
    background: var(--ff-lime-soft);
    color: var(--ff-green-deep);
}

.ff-shop__features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.45rem;
    flex: 1;
}

.ff-shop__features li {
    font-size: 0.88rem;
    line-height: 1.45;
    color: var(--ff-muted);
    padding-left: 1.1rem;
    position: relative;
}

.ff-shop__features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ff-lime);
}

.ff-shop__card--basket .ff-shop__features li::before {
    background: var(--ff-orange);
}

.ff-shop__card .ff-btn {
    width: 100%;
    margin-top: auto;
}

/* ── Pricing ── */
.ff-pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
    align-items: stretch;
}

.ff-plan {
    position: relative;
    background: var(--ff-white);
    border: 1px solid var(--ff-line);
    border-radius: var(--ff-radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ff-plan:hover {
    transform: translateY(-6px);
    box-shadow: var(--ff-shadow);
}

.ff-plan--featured {
    background: var(--ff-ink);
    color: var(--ff-white);
    border-color: var(--ff-ink);
    transform: scale(1.03);
    box-shadow: 0 28px 60px rgba(12, 12, 12, 0.2);
}

.ff-plan--featured:hover {
    transform: scale(1.03) translateY(-6px);
}

.ff-plan__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--ff-lime);
    color: var(--ff-ink);
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    z-index: 2;
}

.ff-plan__media {
    height: 150px;
    overflow: hidden;
    background: var(--ff-cream);
}

.ff-plan__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ff-plan--featured .ff-plan__media {
    background: #222;
}

.ff-plan__body {
    padding: 1.35rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.75rem;
}

.ff-plan__title h3 {
    font-size: 1.45rem;
    margin-bottom: 0.15rem;
}

.ff-plan__title p {
    margin: 0;
    font-size: 0.86rem;
    color: var(--ff-muted);
}

.ff-plan--featured .ff-plan__title p {
    color: rgba(255, 255, 255, 0.6);
}

.ff-plan__price strong {
    font-family: var(--ff-font-display);
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1;
}

.ff-plan__price span {
    font-size: 0.88rem;
    color: var(--ff-muted);
    margin-left: 0.2rem;
}

.ff-plan--featured .ff-plan__price span {
    color: rgba(255, 255, 255, 0.55);
}

.ff-plan__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.42rem;
    flex: 1;
}

.ff-plan__list li {
    font-size: 0.88rem;
    padding-left: 1.1rem;
    position: relative;
    line-height: 1.45;
}

.ff-plan__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ff-lime);
}

.ff-plan--featured .ff-plan__list li {
    color: rgba(255, 255, 255, 0.82);
}

.ff-plan__note {
    font-size: 0.78rem;
    color: var(--ff-muted);
    text-align: center;
    margin: 0;
}

.ff-plan--featured .ff-plan__note {
    color: rgba(255, 255, 255, 0.5);
}

.ff-plan .ff-btn { width: 100%; }

.ff-plan--featured .ff-btn--primary {
    background: var(--ff-lime);
    color: var(--ff-ink);
    box-shadow: 0 8px 24px var(--ff-lime-glow);
}

/* ── Testimonials ── */
.ff-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
}

.ff-quote {
    background: var(--ff-white);
    border: 1px solid var(--ff-line);
    border-radius: var(--ff-radius-md);
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ff-quote:hover {
    transform: translateY(-4px);
    box-shadow: var(--ff-shadow-soft);
}

.ff-quote__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--ff-lime-soft);
}

.ff-quote__title {
    font-family: var(--ff-font-display);
    font-size: 1.05rem;
    margin: 0 0 0.35rem;
    color: var(--ff-ink);
}

.ff-quote__text {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.62;
    color: var(--ff-muted);
    font-style: italic;
}

.ff-quote__author strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
}

.ff-quote__author span {
    font-size: 0.78rem;
    color: var(--ff-muted);
}

/* ── Footer ── */
.ff-footer {
    position: relative;
    overflow: hidden;
    color: var(--ff-white);
    padding: clamp(3rem, 6vw, 4.5rem) 0 0;
    background:
        radial-gradient(ellipse 80% 60% at 100% 0%, rgba(242, 159, 53, 0.28) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 0% 100%, rgba(143, 212, 0, 0.14) 0%, transparent 50%),
        linear-gradient(155deg, #1a5c36 0%, #237042 38%, #1a4d2e 72%, #153d25 100%);
}

.ff-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.35;
}

.ff-footer__cta {
    position: relative;
    z-index: 1;
    width: var(--ff-container);
    margin-inline: auto;
    padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.ff-footer__cta h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 0.6rem;
    max-width: 16ch;
    color: #fff;
}

.ff-footer__cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    max-width: 48ch;
    line-height: 1.65;
}

.ff-footer__links {
    position: relative;
    z-index: 1;
    width: var(--ff-container);
    margin-inline: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 1.25rem;
    padding: 1.15rem 0 0.85rem;
}

.ff-footer__links a {
    font-size: 0.84rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
    transition: color 0.2s ease;
}

.ff-footer__links a:hover {
    color: var(--ff-orange-soft);
}

.ff-footer__copy {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0.85rem 0 1.35rem;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.12);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── Login popup ── */
.ff-login-pop {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.ff-login-pop__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(19, 22, 27, 0.55);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.ff-login-pop__card {
    position: relative;
    width: min(26rem, 100%);
    background: var(--ff-white, #fff);
    border-radius: 18px;
    padding: 2.4rem 1.75rem 1.9rem;
    text-align: center;
    box-shadow: 0 24px 60px rgba(19, 22, 27, 0.3);
    opacity: 0;
    transform: translateY(24px) scale(0.97);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.ff-login-pop.is-open .ff-login-pop__backdrop { opacity: 1; }
.ff-login-pop.is-open .ff-login-pop__card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.ff-login-pop__close {
    position: absolute;
    top: 0.65rem;
    right: 0.75rem;
    border: 0;
    background: transparent;
    font-size: 1.6rem;
    line-height: 1;
    color: #8a8f87;
    cursor: pointer;
    padding: 0.25rem;
}

.ff-login-pop__close:hover { color: var(--ff-green-deep, #1a4d2e); }

.ff-login-pop__leaf {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    background: var(--ff-green-light, #e8f3ec);
    color: var(--ff-green-deep, #1a4d2e);
    margin-bottom: 0.9rem;
}

.ff-login-pop__leaf svg { width: 1.7rem; height: 1.7rem; }

.ff-login-pop__title {
    font-family: 'Marcellus', serif;
    font-size: 1.45rem;
    color: var(--ff-green-deep, #1a4d2e);
    margin: 0 0 0.55rem;
}

.ff-login-pop__text {
    font-size: 0.92rem;
    color: #55605a;
    line-height: 1.55;
    margin: 0 0 1.35rem;
}

.ff-login-pop__cta {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 0.8rem 1rem;
}

.ff-login-pop__later {
    display: block;
    width: 100%;
    margin-top: 0.7rem;
    border: 0;
    background: transparent;
    color: #7b857e;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0.4rem;
}

.ff-login-pop__later:hover { color: var(--ff-green-deep, #1a4d2e); }

/* ── Premium refresh overrides ── */
body.ff-home {
    background:
        radial-gradient(circle at 15% -10%, rgba(143, 212, 0, 0.14) 0%, transparent 40%),
        radial-gradient(circle at 100% 20%, rgba(242, 159, 53, 0.12) 0%, transparent 38%),
        linear-gradient(180deg, #f7f8f4 0%, #f3f6f1 45%, #f6f4ef 100%);
}

.ff-section {
    padding: clamp(4rem, 7.5vw, 6rem) 0;
}

.ff-section__head h2 {
    letter-spacing: -0.02em;
    font-size: clamp(2.1rem, 4.2vw, 3.4rem);
}

.ff-section__head--center .ff-section__sub {
    max-width: 64ch;
}

.ff-header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(125%) blur(6px);
    -webkit-backdrop-filter: saturate(125%) blur(6px);
    border-bottom: 1px solid rgba(23, 74, 46, 0.12);
}

.ff-header__bar {
    border-top-width: 4px;
    border-image: linear-gradient(90deg, var(--ff-green-mid), var(--ff-lime), var(--ff-orange)) 1;
}

.ff-header__nav a {
    border-radius: 999px;
    border-bottom-width: 0;
    font-weight: 800;
    padding: 0.62rem 1rem;
}

.ff-header__nav a.is-active {
    color: var(--ff-white);
    background: linear-gradient(135deg, var(--ff-green-mid), var(--ff-green-deep));
    box-shadow: 0 8px 18px rgba(23, 74, 46, 0.2);
}

.ff-trust {
    background: transparent;
    border: 0;
}

.ff-trust__inner {
    gap: 0.8rem;
    padding: 1.1rem 0;
}

.ff-trust__item {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(23, 74, 46, 0.1);
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(12, 12, 12, 0.06);
    padding: 0.9rem 0.75rem;
}

.ff-standard,
.ff-shop__mode,
.ff-quote {
    border-color: rgba(23, 74, 46, 0.12);
    box-shadow: 0 22px 44px rgba(12, 12, 12, 0.08);
}

.ff-standard__visual-overlay {
    background: linear-gradient(180deg, transparent 10%, rgba(10, 20, 14, 0.7) 66%, rgba(10, 20, 14, 0.93) 100%);
}

.ff-check-tile {
    background: linear-gradient(145deg, #ffffff 0%, #f9fbf8 100%);
}

.ff-shop__mode {
    border-radius: clamp(18px, 2vw, 24px);
    padding: clamp(1rem, 2.2vw, 1.35rem);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(23, 74, 46, 0.1);
    box-shadow: 0 18px 40px rgba(23, 74, 46, 0.08);
}

.ff-shop-basket {
    box-shadow: 0 20px 42px rgba(12, 12, 12, 0.1);
}

.ff-shop-basket__info h4 {
    letter-spacing: -0.01em;
}

.ff-produce-card {
    border: 1px solid rgba(23, 74, 46, 0.12);
    box-shadow: 0 14px 30px rgba(23, 74, 46, 0.08);
}

.ff-produce-card__media {
    background: linear-gradient(180deg, #f0f8ef 0%, #fdfefd 100%);
}

.ff-testimonials {
    gap: 1.25rem;
}

.ff-quote {
    border-radius: 20px;
    padding: 1.6rem 1.35rem;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 246, 0.95) 100%);
}

.ff-quote__text {
    font-style: normal;
}

.ff-footer {
    margin-top: clamp(1rem, 2.5vw, 2rem);
}

.ff-footer__cta {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.ff-footer__links a {
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
}

.ff-footer__links a:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* ── Theme v2: Apple-like clean enterprise ── */
body.ff-home {
    background: linear-gradient(180deg, #f6f7f8 0%, #f9f9f7 35%, #f5f6f3 100%);
    color: #111216;
}

:root {
    --ff-ink: #111216;
    --ff-charcoal: #17191d;
    --ff-cream: #f6f7f8;
    --ff-cream-deep: #eef1f3;
    --ff-white: #ffffff;
    --ff-lime: #70b724;
    --ff-lime-soft: #edf8df;
    --ff-green-deep: #1c4a30;
    --ff-green-mid: #2f7b4f;
    --ff-green-light: #ebf4ee;
    --ff-orange: #ea9440;
    --ff-orange-deep: #c56f1e;
    --ff-orange-soft: #fff4e8;
    --ff-muted: #60656d;
    --ff-line: rgba(17, 18, 22, 0.09);
    --ff-shadow: 0 18px 44px rgba(12, 16, 23, 0.08);
    --ff-shadow-soft: 0 8px 24px rgba(12, 16, 23, 0.05);
}

.ff-header {
    background: rgba(255, 255, 255, 0.88);
    border-bottom-color: rgba(17, 18, 22, 0.08);
    box-shadow: 0 1px 0 rgba(17, 18, 22, 0.04), 0 8px 24px rgba(12, 16, 23, 0.04);
    backdrop-filter: saturate(130%) blur(10px);
    -webkit-backdrop-filter: saturate(130%) blur(10px);
}

.ff-header__bar {
    border-image: none;
    border-top: 1px solid rgba(17, 18, 22, 0.04);
}

.ff-header__nav a {
    color: #2f3137;
    border-radius: 10px;
    padding: 0.58rem 0.9rem;
}

.ff-header__nav a:hover {
    background: #f2f4f7;
    color: #0f1115;
}

.ff-header__nav a.is-active {
    color: #0f1115;
    background: #ecf2f7;
    border-bottom-color: transparent;
    box-shadow: inset 0 0 0 1px rgba(17, 18, 22, 0.06);
}

.ff-btn--primary {
    background: #13161b;
    box-shadow: 0 8px 22px rgba(19, 22, 27, 0.18);
}

.ff-btn--primary:hover {
    background: #0f1217;
    box-shadow: 0 10px 28px rgba(19, 22, 27, 0.22);
}

.ff-btn--orange,
.ff-header__actions .ff-btn--cta-header {
    background: linear-gradient(145deg, #1f7a4f 0%, #165f3b 100%);
    box-shadow: 0 8px 20px rgba(22, 95, 59, 0.24);
}

.ff-btn--orange:hover,
.ff-header__actions .ff-btn--cta-header:hover {
    box-shadow: 0 12px 26px rgba(22, 95, 59, 0.28);
}

.ff-hero {
    padding-top: clamp(1.8rem, 3.5vw, 2.5rem);
}

.ff-hero__bg {
    display: none;
}

.ff-hero__eyebrow {
    background: #f0f4f8;
    border-color: rgba(17, 18, 22, 0.08);
    box-shadow: none;
    color: #2f3f52;
}

.ff-hero__eyebrow::before {
    box-shadow: none;
}

.ff-hero h1 {
    letter-spacing: -0.03em;
}

.ff-hero__title-accent {
    background: linear-gradient(120deg, #1f6e47 0%, #1c4a30 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.ff-hero__lead {
    color: #545a63;
}

.ff-hero__tags .ff-tag {
    text-transform: none;
    letter-spacing: 0.01em;
    border-width: 1px;
    box-shadow: none;
    animation: none !important;
    font-weight: 700;
}

.ff-hero__tags .ff-tag--lime,
.ff-hero__tags .ff-tag--green,
.ff-hero__tags .ff-tag--orange,
.ff-hero__tags .ff-tag--door {
    background: #f2f5f8;
    border-color: rgba(17, 18, 22, 0.08);
    color: #2d323a;
}

.ff-hero__story-step--featured {
    transform: none;
}

.ff-hero__story-step--featured:hover {
    transform: translateY(-0.5rem);
}

.ff-hero__story-media,
.ff-standard,
.ff-shop__mode,
.ff-shop-basket,
.ff-produce-card,
.ff-quote {
    border-radius: 18px;
}

.ff-hero__story-media {
    box-shadow: 0 16px 34px rgba(12, 16, 23, 0.1);
}

.ff-trust__item {
    background: #ffffff;
    border-color: rgba(17, 18, 22, 0.08);
    box-shadow: 0 6px 18px rgba(12, 16, 23, 0.05);
}

.ff-standards {
    background: linear-gradient(180deg, #f8fafb 0%, #eef3f0 100%);
}

.ff-standard {
    box-shadow: 0 16px 34px rgba(12, 16, 23, 0.08);
}

.ff-standard__visual-overlay {
    background: linear-gradient(180deg, transparent 18%, rgba(11, 15, 20, 0.66) 65%, rgba(11, 15, 20, 0.9) 100%);
}

.ff-check-tile {
    background: #fafbfc;
}

.ff-shop {
    background: linear-gradient(180deg, #f5f7f8 0%, #f0f3f2 52%, #f9faf9 100%);
}

.ff-shop__mode {
    background: #ffffff;
}

.ff-shop__divider span {
    background: #f4f6f8;
}

.ff-shop-basket {
    box-shadow: 0 14px 30px rgba(12, 16, 23, 0.09);
}

.ff-shop-basket--featured {
    border-color: rgba(47, 123, 79, 0.3);
    box-shadow: 0 16px 36px rgba(22, 95, 59, 0.16);
}

.ff-shop-basket__price {
    color: #1f6e47;
}

.ff-produce-card {
    box-shadow: 0 10px 24px rgba(12, 16, 23, 0.08);
}

.ff-produce-card__price--fresh {
    background: #eef5fb;
    border-color: rgba(58, 106, 158, 0.2);
    color: #2b5d90;
}

.ff-produce-card__price--natural {
    background: #edf7ef;
    border-color: rgba(47, 123, 79, 0.2);
}

.ff-testimonials {
    gap: 1rem;
}

.ff-quote {
    background: #ffffff;
    border-color: rgba(17, 18, 22, 0.08);
    box-shadow: 0 10px 24px rgba(12, 16, 23, 0.07);
}

.ff-quote__title {
    letter-spacing: -0.01em;
}

.ff-footer {
    background: linear-gradient(165deg, #172c22 0%, #1e3a2d 45%, #173126 100%);
}
/* ── Reveal animation ── */
@media (prefers-reduced-motion: no-preference) {
    .ff-reveal {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .ff-reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .ff-hero h1 { font-size: clamp(2.2rem, 7vw, 3.5rem); }

    .ff-hero__story-step--featured,
    .ff-hero__story-step--featured:hover {
        transform: none;
    }

    .ff-hero__story {
        grid-template-columns: repeat(3, minmax(14rem, 1fr));
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.75rem;
        gap: 1rem;
    }

    .ff-hero__story-step {
        scroll-snap-align: center;
    }

    .ff-hero__story-media {
        min-height: clamp(380px, 62vw, 480px);
    }

    .ff-hero__story-step--featured .ff-hero__story-media {
        min-height: clamp(400px, 65vw, 500px);
    }

    .ff-hero__frame {
        aspect-ratio: 16 / 11;
        max-height: none;
    }

    .ff-hero__badge {
        left: 1rem;
        top: auto;
        bottom: 4.5rem;
    }

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

    .ff-journey { grid-template-columns: 1fr; }
    .ff-journey__card,
    .ff-journey__card:nth-child(1) {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .ff-standards__grid { grid-template-columns: 1fr; }

    .ff-standard__checks { grid-template-columns: 1fr; }

    .ff-shop__baskets {
        grid-template-columns: repeat(3, minmax(15rem, 1fr));
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        max-width: none;
        margin-inline: 0;
        padding-bottom: 0.35rem;
    }

    .ff-shop-basket {
        scroll-snap-align: start;
    }

    .ff-shop-basket--featured,
    .ff-shop-basket--featured:hover {
        transform: none;
    }

    .ff-produce-card {
        flex-basis: clamp(11rem, 42vw, 13rem);
    }

    .ff-shop-produce__foot {
        flex-direction: column;
        text-align: center;
    }

    .ff-shop-produce__foot .ff-btn {
        width: 100%;
    }

    .ff-pricing { grid-template-columns: 1fr; max-width: 26rem; margin-inline: auto; }
    .ff-plan--featured { transform: none; }
    .ff-plan--featured:hover { transform: translateY(-6px); }

    .ff-testimonials { grid-template-columns: 1fr; }

    .ff-footer__cta { grid-template-columns: 1fr; text-align: center; }
    .ff-footer__cta h2,
    .ff-footer__cta p { margin-inline: auto; }

    .ff-header__inner {
        grid-template-columns: 1fr auto;
        min-height: 4.75rem;
        padding-block: 0.75rem;
    }

    .ff-header__brand img {
        max-height: 56px;
        max-width: min(200px, 52vw);
    }

    .ff-header__nav,
    .ff-header__actions {
        display: none;
    }

    .ff-header__menu {
        display: inline-flex;
    }
}

@media (max-width: 760px) {
    .ff-hero {
        padding-top: clamp(1.5rem, 4vw, 2rem);
    }

    .ff-hero__showcase {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        padding-inline: 0.85rem;
    }

    .ff-hero__story {
        grid-template-columns: repeat(3, minmax(78vw, 1fr));
        gap: 0.85rem;
    }

    .ff-hero__story-media {
        min-height: clamp(420px, 105vw, 520px);
        border-radius: 22px;
    }

    .ff-header__actions .ff-btn--ghost { display: none; }

    .ff-trust__inner { grid-template-columns: 1fr 1fr; gap: 0.75rem; }

    .ff-shop__baskets {
        grid-template-columns: repeat(3, minmax(16rem, 1fr));
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        max-width: none;
        margin-inline: 0;
        padding-bottom: 0.5rem;
    }

    .ff-shop-basket {
        scroll-snap-align: center;
    }

}
