:root {
    --green: #315b3a;
    --green-dark: #23442b;
    --green-light: #eaf2e8;
    --cream: #f8f5ed;
    --gold: #c89545;
    --text: #252b26;
    --muted: #687069;
    --white: #ffffff;
    --border: #dedfd9;
    --shadow: 0 14px 40px rgba(24, 42, 29, 0.10);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

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

a {
    color: inherit;
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.narrow {
    max-width: 780px;
}

.center {
    text-align: center;
}

.section {
    padding: 80px 0;
}

.section-soft {
    background: var(--cream);
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin-top: 0;
    line-height: 1.12;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: -0.04em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    letter-spacing: -0.03em;
}

h3 {
    font-size: 1.25rem;
}

p {
    margin-top: 0;
}

.button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 24px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.button {
    color: var(--white);
    background: var(--green);
}

.button:hover,
.secondary-button:hover {
    transform: translateY(-1px);
}

.button-light {
    color: var(--green-dark);
    background: var(--white);
}

.secondary-button {
    color: var(--green-dark);
    background: transparent;
    border: 1px solid var(--green);
}

.text-link {
    color: var(--green);
    font-weight: 700;
    text-decoration: none;
}

/* Header */

.site-header {
    position: relative;
    z-index: 20;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-logo {
    color: var(--green-dark);
    font-size: 1.65rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    text-decoration: none;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-nav a {
    font-weight: 700;
    text-decoration: none;
}

.cart-link {
    padding: 9px 15px;
    color: var(--white);
    background: var(--green);
    border-radius: 999px;
}

/* Hero */

.hero {
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(248,245,237,.98), rgba(234,242,232,.92));
}

.hero-grid {
    min-height: 650px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 60px;
}

.hero-copy p:not(.eyebrow) {
    max-width: 620px;
    color: var(--muted);
    font-size: 1.18rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    max-height: 570px;
    object-fit: contain;
    filter: drop-shadow(0 24px 30px rgba(25, 45, 30, .15));
}

/* Feature cards */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.feature-card h3 {
    color: var(--green-dark);
}

/* Product feature */

.product-feature {
    padding: 90px 0;
    background: var(--green-dark);
    color: var(--white);
}

.product-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.product-feature-image {
    padding: 30px;
    background: var(--white);
    border-radius: 28px;
}

.product-feature-image img {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
}

.product-feature .price,
.product-price {
    margin: 15px 0;
    font-size: 2rem;
    font-weight: 900;
}

.product-feature ul {
    padding-left: 20px;
}

/* Interior page hero */

.page-hero {
    padding: 90px 0 70px;
    background: var(--cream);
}

.page-hero h1 {
    margin-bottom: 20px;
}

.page-hero p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.1rem;
}

/* Product detail */

.product-page {
    padding: 70px 0 90px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: start;
}

.product-gallery {
    min-width: 0;
}

.product-main-image {
    padding: 28px;
    background: var(--cream);
    border-radius: 28px;
}

.product-main-image img {
    width: 100%;
    height: 520px;
    object-fit: contain;
}

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 14px;
}

.product-thumbnails img {
    width: 100%;
    height: 110px;
    padding: 8px;
    object-fit: contain;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.product-info {
    position: sticky;
    top: 30px;
}

.product-info h1 {
    margin-bottom: 12px;
    font-size: clamp(2.3rem, 5vw, 4rem);
}

.product-description {
    color: var(--muted);
    font-size: 1.08rem;
}

.stock-status {
    display: inline-block;
    margin: 8px 0 22px;
    padding: 7px 13px;
    color: var(--green-dark);
    background: var(--green-light);
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 800;
}

.purchase-form {
    margin: 25px 0;
}

.quantity-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 15px;
}

.quantity-row input,
.cart-item input {
    width: 80px;
    min-height: 46px;
    padding: 8px 10px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font: inherit;
}

.product-details-list {
    margin-top: 30px;
    padding: 24px;
    background: var(--cream);
    border-radius: var(--radius);
}

.product-details-list ul {
    margin-bottom: 0;
    padding-left: 20px;
}

/* Cart */

.cart-container {
    padding-top: 70px;
    padding-bottom: 90px;
}

.cart-container > h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
}

.cart-items {
    display: grid;
    gap: 18px;
    margin: 30px 0;
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.cart-item img {
    width: 120px;
    height: 120px;
    padding: 8px;
    object-fit: contain;
    background: var(--cream);
    border-radius: 12px;
}

.cart-item h3 {
    margin-bottom: 5px;
}

.cart-summary {
    max-width: 460px;
    margin: 40px 0 0 auto;
    padding: 28px;
    background: var(--cream);
    border-radius: var(--radius);
}

.cart-summary h2 {
    font-size: 1.8rem;
}

.cart-summary .button {
    width: 100%;
}

.checkout-disabled {
    opacity: .5;
    cursor: not-allowed;
}

.empty-cart {
    padding: 70px 20px;
    text-align: center;
    background: var(--cream);
    border-radius: var(--radius);
}

/* General content */

.content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.content-card {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.content-card h2,
.content-card h3 {
    color: var(--green-dark);
}

/* FAQ */

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

.faq-item {
    padding: 25px 0;
    border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
    padding-top: 0;
}

.faq-item h3 {
    margin-bottom: 8px;
    color: var(--green-dark);
}

.faq-item p {
    margin-bottom: 0;
    color: var(--muted);
}

/* Contact */

.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 50px;
}

.contact-card {
    padding: 32px;
    background: var(--cream);
    border-radius: var(--radius);
}

.contact-card a {
    color: var(--green);
    font-weight: 700;
}

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

.contact-form label {
    display: grid;
    gap: 7px;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 13px 14px;
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    font: inherit;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* Call to action */

.cta-section {
    padding: 80px 0;
    color: var(--white);
    background: var(--green);
}

.cta-section h2 {
    margin-bottom: 14px;
}

.cta-section p {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */

.site-footer {
    padding: 55px 0 25px;
    color: #dfe8df;
    background: #172b1c;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 50px;
}

.site-footer h3 {
    color: var(--white);
}

.site-footer a {
    color: #dfe8df;
    text-decoration: none;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer li {
    margin-bottom: 8px;
}

.footer-bottom {
    margin-top: 45px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.15);
    color: #aebcaf;
    font-size: .9rem;
}

/* Messages */

.messages {
    width: min(1160px, calc(100% - 40px));
    margin: 20px auto 0;
}

.message {
    padding: 12px 16px;
    background: var(--green-light);
    border-radius: 10px;
}

/* Mobile */

@media (max-width: 900px) {
    .hero-grid,
    .product-feature-grid,
    .product-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        min-height: auto;
        padding: 70px 0;
    }

    .hero-image {
        max-width: 600px;
        margin: 0 auto;
    }

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

    .product-info {
        position: static;
    }

    .product-main-image img {
        height: auto;
        max-height: 500px;
    }

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

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

@media (max-width: 650px) {
    .container {
        width: min(100% - 28px, 1160px);
    }

    .section {
        padding: 58px 0;
    }

    .header-inner {
        min-height: 70px;
        flex-wrap: wrap;
        padding: 14px 0;
    }

    .site-nav {
        width: 100%;
        gap: 16px;
        overflow-x: auto;
        padding-bottom: 4px;
        font-size: .9rem;
    }

    h1 {
        font-size: 2.7rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-grid {
        gap: 35px;
        padding: 55px 0;
    }

    .product-feature-grid,
    .product-grid {
        gap: 35px;
    }

    .product-thumbnails {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-thumbnails img {
        height: 90px;
    }

    .cart-item {
        grid-template-columns: 85px 1fr;
        gap: 15px;
    }

    .cart-item img {
        width: 85px;
        height: 85px;
    }

    .cart-item input {
        grid-column: 2;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}


/* Checkout */

.checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(300px, .8fr);
    gap: 48px;
    align-items: start;
    margin-top: 32px;
}

.checkout-form,
.checkout-summary {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
}

.checkout-summary {
    position: sticky;
    top: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 13px 14px;
    border: 1px solid #cfcfcf;
    border-radius: 8px;
    font: inherit;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid currentColor;
    outline-offset: 1px;
}

.form-errors {
    margin-top: 6px;
    font-size: .9rem;
}

.checkout-item,
.checkout-total-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 0;
}

.checkout-grand-total {
    font-size: 1.2rem;
}

@media (max-width: 800px) {
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .checkout-summary {
        position: static;
    }
}


/* ==========================================================
   FeedFort storefront compatibility / polish
   ========================================================== */

/* Announcement */

.announcement {
    padding: 8px 20px;
    color: #fff;
    background: var(--green-dark);
    text-align: center;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .04em;
}


/* Header — classes used by base.html */

.nav {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--green-dark);
    font-size: 1.55rem;
    font-weight: 900;
    letter-spacing: -.035em;
    text-decoration: none;
    white-space: nowrap;
}

.brand-mark {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--green);
    border-radius: 50%;
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: -.03em;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-left: auto;
}

.nav-links a {
    position: relative;
    color: var(--text);
    font-size: .95rem;
    font-weight: 700;
    text-decoration: none;
}

.nav-links a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -6px;
    left: 0;
    height: 2px;
    background: var(--green);
    transform: scaleX(0);
    transition: transform .18s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.cart-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    color: #fff;
    background: var(--green);
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.cart-link span {
    display: inline-flex;
    min-width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    color: var(--green-dark);
    background: #fff;
    border-radius: 999px;
    font-size: .76rem;
}


/* Hero */

.hero {
    border-bottom: 1px solid rgba(49, 91, 58, .08);
}

.hero-copy h1 {
    max-width: 720px;
    margin-bottom: 24px;
}

.hero-text {
    margin-bottom: 0;
}

.hero-actions {
    align-items: center;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-top: 25px;
    color: var(--green-dark);
    font-size: .92rem;
    font-weight: 700;
}

.hero-image {
    padding: 32px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(49,91,58,.08);
    border-radius: 30px;
    box-shadow: var(--shadow);
}


/* Trust strip */

.trust-strip {
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
    padding: 27px 20px;
    text-align: center;
    border-right: 1px solid var(--border);
}

.trust-grid > div:last-child {
    border-right: 0;
}

.trust-grid strong,
.trust-grid span {
    display: block;
}

.trust-grid strong {
    color: var(--green-dark);
    font-size: 1.3rem;
    font-weight: 900;
}

.trust-grid span {
    margin-top: 2px;
    color: var(--muted);
    font-size: .9rem;
}


/* Section headings */

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

.section-heading h2 {
    margin-bottom: 16px;
}

.section-heading p {
    color: var(--muted);
    font-size: 1.08rem;
}


/* Homepage feature cards */

.feature {
    position: relative;
    padding: 34px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(24,42,29,.06);
}

.feature-number {
    margin-bottom: 24px;
    color: var(--gold);
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.feature h3 {
    margin-bottom: 12px;
    color: var(--green-dark);
    font-size: 1.35rem;
}

.feature p {
    margin-bottom: 0;
    color: var(--muted);
}


/* Product feature */

.product-feature .eyebrow {
    color: #cbdacb;
}

.product-feature h2 {
    margin-bottom: 8px;
}

.product-feature .button {
    margin-top: 12px;
    color: var(--green-dark);
    background: #fff;
}

.large-copy {
    color: inherit;
    font-size: 1.12rem;
    line-height: 1.75;
}

.product-feature .large-copy {
    color: #dfe8df;
}

.check-list {
    margin: 26px 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    margin: 11px 0;
    padding-left: 28px;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d9b36a;
    font-weight: 900;
}

.stock {
    display: inline-block;
    margin: 0 0 20px;
    padding: 7px 12px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    font-size: .88rem;
    font-weight: 800;
}

.in-stock {
    color: #e5f4e5;
}


/* Story */

.story-preview {
    background: var(--cream);
}

.story-preview h2 {
    margin-bottom: 20px;
}

.story-preview .large-copy {
    color: var(--muted);
}


/* CTA — class used by home.html */

.cta {
    padding: 82px 0;
    color: #fff;
    background:
        linear-gradient(135deg, var(--green-dark), var(--green));
}

.cta h2 {
    margin-bottom: 14px;
}

.cta p {
    max-width: 650px;
    margin: 0 auto 26px;
    color: #e4ede4;
    font-size: 1.08rem;
}


/* Footer — classes used by base.html */

.footer {
    padding: 60px 0 24px;
    color: #dfe8df;
    background: #172b1c;
}

.footer .brand {
    color: #fff;
}

.footer .brand-mark {
    background: rgba(255,255,255,.13);
}

.footer p {
    max-width: 420px;
    margin-top: 18px;
    color: #aebcaf;
}

.footer-grid > div:not(:first-child) {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-grid strong {
    margin-bottom: 5px;
    color: #fff;
}

.footer a {
    color: #dfe8df;
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
}

.copyright {
    margin-top: 42px;
    padding-top: 20px;
    color: #94a595;
    border-top: 1px solid rgba(255,255,255,.12);
    font-size: .88rem;
}


/* Responsive */

@media (max-width: 900px) {
    .nav {
        flex-wrap: wrap;
        gap: 14px 22px;
        padding: 14px 0;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        gap: 22px;
        overflow-x: auto;
        padding-bottom: 3px;
    }

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

    .trust-grid > div:nth-child(2) {
        border-right: 0;
    }

    .trust-grid > div:nth-child(-n+2) {
        border-bottom: 1px solid var(--border);
    }
}

@media (max-width: 650px) {
    .announcement {
        font-size: .76rem;
    }

    .brand {
        font-size: 1.3rem;
    }

    .brand-mark {
        width: 37px;
        height: 37px;
    }

    .nav {
        min-height: auto;
    }

    .nav-links {
        gap: 18px;
        font-size: .86rem;
    }

    .cart-link {
        padding: 8px 12px;
        font-size: .88rem;
    }

    .hero-image {
        padding: 18px;
        border-radius: 20px;
    }

    .hero-points {
        display: grid;
        gap: 7px;
    }

    .trust-grid > div {
        padding: 20px 10px;
    }

    .feature {
        padding: 27px;
    }

    .cta {
        padding: 62px 0;
    }
}


/* ==========================================================
   FEEDFORT PREMIUM SALES REDESIGN
   ========================================================== */

:root {
    --ff-ink: #172019;
    --ff-deep: #1d3324;
    --ff-green: #315b3a;
    --ff-green-2: #3e7049;
    --ff-soft: #eef2e9;
    --ff-cream: #f7f4ec;
    --ff-warm: #e8e0d1;
    --ff-white: #ffffff;
    --ff-muted: #667068;
    --ff-line: rgba(23,32,25,.12);
    --ff-shadow: 0 24px 70px rgba(20,31,23,.12);
}

/* ---------- HEADER ---------- */

.announcement {
    background: var(--ff-ink);
    color: #fff;
    letter-spacing: .13em;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    padding: 10px 20px;
}

.site-header {
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid var(--ff-line);
}

.nav {
    min-height: 78px;
}

.brand {
    font-weight: 900;
    letter-spacing: -.03em;
}

.brand-mark {
    background: var(--ff-green);
    color: white;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(49,91,58,.2);
}

.nav-links a {
    font-weight: 700;
}

.cart-link {
    background: var(--ff-ink);
    color: white !important;
    padding: 11px 17px;
    border-radius: 999px;
    font-weight: 800;
}

.cart-link span {
    background: white;
    color: var(--ff-ink);
}


/* ---------- HERO ---------- */

.sales-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 20%, rgba(49,91,58,.13), transparent 30%),
        linear-gradient(135deg, #f8f6ef 0%, #f1eee4 100%);
    padding: 76px 0 72px;
}

.sales-hero:before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(49,91,58,.08);
    border-radius: 50%;
    right: -220px;
    top: -250px;
}

.sales-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0,1.03fr) minmax(420px,.97fr);
    gap: 70px;
    align-items: center;
}

.sales-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ff-green);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.sales-kicker:before {
    content: "";
    width: 32px;
    height: 3px;
    border-radius: 999px;
    background: currentColor;
}

.sales-hero h1 {
    color: var(--ff-ink);
    font-size: clamp(50px, 6.2vw, 84px);
    line-height: .96;
    letter-spacing: -.065em;
    margin: 0 0 28px;
    max-width: 760px;
}

.sales-hero h1 span {
    color: var(--ff-green);
}

.sales-hero-lead {
    max-width: 680px;
    font-size: 20px;
    line-height: 1.65;
    color: #4d584f;
    margin: 0 0 32px;
}

.sales-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 42px;
}

.sales-primary {
    background: var(--ff-green) !important;
    color: white !important;
    padding: 17px 26px !important;
    border-radius: 8px !important;
    box-shadow: 0 12px 28px rgba(49,91,58,.22);
}

.sales-primary:hover {
    background: var(--ff-deep) !important;
    transform: translateY(-2px);
}

.sales-secondary {
    color: var(--ff-ink);
    font-weight: 800;
    text-decoration: none;
    border-bottom: 1px solid rgba(23,32,25,.28);
    padding-bottom: 4px;
}

.sales-proof {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 0;
    max-width: 680px;
    border-top: 1px solid var(--ff-line);
    padding-top: 25px;
}

.sales-proof > div {
    padding-right: 22px;
}

.sales-proof > div + div {
    border-left: 1px solid var(--ff-line);
    padding-left: 22px;
}

.sales-proof strong,
.sales-proof span {
    display: block;
}

.sales-proof strong {
    color: var(--ff-ink);
    font-size: 12px;
    letter-spacing: .09em;
    margin-bottom: 7px;
}

.sales-proof span {
    color: var(--ff-muted);
    font-size: 13px;
    line-height: 1.4;
}

.sales-hero-product {
    position: relative;
}

.hero-product-frame {
    position: relative;
    background: #fff;
    padding: 18px;
    border-radius: 24px;
    box-shadow: var(--ff-shadow);
    transform: rotate(1deg);
}

.hero-product-frame:after {
    content: "";
    position: absolute;
    inset: 12px -12px -12px 12px;
    border: 1px solid rgba(49,91,58,.18);
    border-radius: 24px;
    z-index: -1;
}

.hero-product-frame img {
    display: block;
    width: 100%;
    max-height: 590px;
    object-fit: contain;
    border-radius: 16px;
    background: #f3f1eb;
}

.hero-product-badge {
    position: absolute;
    z-index: 2;
    left: -18px;
    top: 30px;
    background: var(--ff-ink);
    color: white;
    padding: 11px 16px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .11em;
}

.hero-stock {
    position: absolute;
    right: 30px;
    bottom: 30px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    font-size: 13px;
    font-weight: 800;
    color: var(--ff-ink);
}

.hero-stock span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #2f8b46;
    border-radius: 50%;
    margin-right: 7px;
}


/* ---------- PROBLEM STRIP ---------- */

.problem-bar {
    background: var(--ff-ink);
    color: white;
    padding: 22px 0;
    text-align: center;
}

.problem-bar p {
    margin: 0;
    font-size: clamp(16px,2vw,20px);
    letter-spacing: -.01em;
}

.problem-bar strong {
    color: #dfe9d9;
}


/* ---------- BENEFITS ---------- */

.sales-section {
    padding: 105px 0;
    background: #fff;
}

.sales-heading {
    max-width: 800px;
    margin-bottom: 55px;
}

.sales-heading h2,
.equipment-copy h2,
.value-section h2,
.maker-section h2,
.final-sales-cta h2 {
    letter-spacing: -.045em;
    line-height: 1.04;
}

.sales-heading h2 {
    font-size: clamp(38px,5vw,60px);
    color: var(--ff-ink);
    margin: 0 0 22px;
}

.sales-heading p {
    max-width: 650px;
    color: var(--ff-muted);
    font-size: 19px;
    line-height: 1.65;
}

.sales-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
}

.sales-benefit {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 390px;
    padding: 34px;
    background: var(--ff-cream);
    border: 1px solid rgba(23,32,25,.08);
    border-radius: 16px;
    overflow: hidden;
}

.sales-benefit:after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(49,91,58,.09);
    border-radius: 50%;
    right: -90px;
    bottom: -90px;
}

.featured-benefit {
    background: var(--ff-green);
    color: white;
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(49,91,58,.2);
}

.benefit-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: white;
    color: var(--ff-green);
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 40px;
}

.featured-benefit .benefit-icon {
    color: var(--ff-ink);
}

.benefit-number {
    position: absolute;
    right: 28px;
    top: 27px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    opacity: .55;
}

.sales-benefit h3 {
    font-size: 27px;
    letter-spacing: -.03em;
    margin: 0 0 15px;
}

.sales-benefit p {
    line-height: 1.7;
    color: #657068;
    margin: 0 0 25px;
}

.featured-benefit p {
    color: rgba(255,255,255,.82);
}

.benefit-bottom {
    margin-top: auto;
    font-size: 14px;
}


/* ---------- EQUIPMENT ---------- */

.equipment-section {
    background: var(--ff-ink);
    color: white;
    padding: 100px 0;
    overflow: hidden;
}

.equipment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.equipment-image {
    position: relative;
}

.equipment-image:before {
    content: "";
    position: absolute;
    inset: -25px 25px 25px -25px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 18px;
}

.equipment-image img {
    position: relative;
    display: block;
    width: 100%;
    max-height: 650px;
    object-fit: contain;
    background: #f3f1eb;
    border-radius: 14px;
}

.light-kicker {
    color: #a9c5a8;
}

.equipment-copy h2 {
    font-size: clamp(40px,5vw,62px);
    margin: 0 0 25px;
}

.equipment-copy > p {
    color: rgba(255,255,255,.7);
    font-size: 19px;
    line-height: 1.7;
    max-width: 590px;
}

.equipment-specs {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    margin: 40px 0;
    border-top: 1px solid rgba(255,255,255,.15);
    border-bottom: 1px solid rgba(255,255,255,.15);
}

.equipment-specs > div {
    padding: 22px 15px 22px 0;
}

.equipment-specs > div + div {
    border-left: 1px solid rgba(255,255,255,.15);
    padding-left: 20px;
}

.equipment-specs strong,
.equipment-specs span {
    display: block;
}

.equipment-specs strong {
    font-size: 19px;
    margin-bottom: 5px;
}

.equipment-specs span {
    color: rgba(255,255,255,.58);
    font-size: 12px;
}


/* ---------- VALUE ---------- */

.value-section {
    background: var(--ff-cream);
    padding: 110px 0;
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr .78fr;
    gap: 90px;
    align-items: center;
}

.value-section h2 {
    color: var(--ff-ink);
    font-size: clamp(40px,5vw,60px);
    margin: 0 0 25px;
}

.value-section p {
    max-width: 680px;
    color: var(--ff-muted);
    font-size: 18px;
    line-height: 1.75;
}

.value-card {
    background: white;
    border-radius: 18px;
    padding: 36px;
    box-shadow: var(--ff-shadow);
}

.value-card-label {
    display: block;
    color: var(--ff-green);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .13em;
    margin-bottom: 24px;
}

.value-line {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid var(--ff-line);
    color: var(--ff-ink);
}

.value-line strong {
    color: var(--ff-green);
}

.value-price {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 0 22px;
}

.value-price small {
    color: var(--ff-muted);
    font-weight: 800;
}

.value-price strong {
    color: var(--ff-ink);
    font-size: 35px;
    letter-spacing: -.04em;
}

.full-button {
    display: block !important;
    width: 100%;
    text-align: center;
}


/* ---------- MAKER ---------- */

.maker-section {
    background: white;
    padding: 95px 0;
}

.maker-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 100px;
    align-items: center;
}

.maker-section h2 {
    color: var(--ff-ink);
    font-size: clamp(36px,4.5vw,55px);
    margin: 0;
}

.maker-section p {
    color: var(--ff-muted);
    font-size: 18px;
    line-height: 1.75;
    margin: 0 0 25px;
}


/* ---------- FINAL CTA ---------- */

.final-sales-cta {
    background:
        radial-gradient(circle at 85% 30%, rgba(110,153,112,.25), transparent 30%),
        var(--ff-green);
    color: white;
    padding: 80px 0;
}

.final-sales-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.final-sales-cta h2 {
    font-size: clamp(40px,5vw,62px);
    margin: 0;
}

.final-buy {
    min-width: 260px;
    text-align: right;
}

.final-price {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -.04em;
}

.final-stock {
    font-size: 13px;
    margin: 4px 0 18px;
    color: rgba(255,255,255,.78);
}


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

.footer {
    background: #101712;
    color: rgba(255,255,255,.72);
}

.footer a {
    color: rgba(255,255,255,.72);
}

.footer strong {
    color: white;
}

.footer .brand {
    color: white;
}


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

@media (max-width: 1000px) {

    .sales-hero-grid,
    .equipment-grid,
    .value-grid,
    .maker-grid {
        grid-template-columns: 1fr;
    }

    .sales-hero-grid {
        gap: 50px;
    }

    .sales-hero-product {
        max-width: 680px;
    }

    .sales-benefit-grid {
        grid-template-columns: 1fr;
    }

    .sales-benefit {
        min-height: auto;
    }

    .featured-benefit {
        transform: none;
    }

    .equipment-grid,
    .value-grid,
    .maker-grid {
        gap: 50px;
    }
}


@media (max-width: 760px) {

    .sales-hero {
        padding: 52px 0 48px;
    }

    .sales-hero-grid {
        display: flex;
        flex-direction: column;
    }

    .sales-hero-copy {
        width: 100%;
    }

    .sales-hero h1 {
        font-size: clamp(46px,14vw,68px);
    }

    .sales-hero-lead {
        font-size: 17px;
    }

    .sales-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .sales-primary {
        text-align: center;
    }

    .sales-secondary {
        align-self: flex-start;
    }

    .sales-proof {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .sales-proof > div {
        padding: 0 0 15px !important;
        border-left: 0 !important;
        border-bottom: 1px solid var(--ff-line);
    }

    .hero-product-frame {
        transform: none;
        padding: 10px;
        border-radius: 16px;
    }

    .hero-product-badge {
        left: 18px;
        top: 18px;
    }

    .hero-stock {
        left: 20px;
        right: auto;
        bottom: 20px;
    }

    .sales-section,
    .equipment-section,
    .value-section,
    .maker-section {
        padding: 70px 0;
    }

    .sales-benefit {
        padding: 28px;
    }

    .equipment-specs {
        grid-template-columns: 1fr;
    }

    .equipment-specs > div + div {
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.15);
        padding-left: 0;
    }

    .final-sales-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .final-buy {
        width: 100%;
        text-align: left;
    }

    .final-buy .button {
        width: 100%;
        text-align: center;
    }
}


/* =========================================================
   FEEDFORT HIGH-IMPACT STOREFRONT
   ========================================================= */

.ff-hero,
.ff-problem,
.ff-mechanism,
.ff-money,
.ff-built,
.ff-three,
.ff-final {
    overflow: hidden;
}

.ff-hero {
    position: relative;
    background:
        radial-gradient(circle at 78% 35%, rgba(70, 116, 70, .17), transparent 31%),
        linear-gradient(115deg, #f8f5ec 0%, #f2f0e7 53%, #e8eee4 100%);
    min-height: 760px;
    padding: 78px 0 0;
}

.ff-hero-bg-word {
    position: absolute;
    right: -25px;
    bottom: -55px;
    font-size: clamp(130px, 18vw, 310px);
    line-height: .75;
    font-weight: 950;
    letter-spacing: -.075em;
    color: rgba(29, 57, 36, .035);
    pointer-events: none;
    white-space: nowrap;
}

.ff-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 35px;
    min-height: 570px;
}

.ff-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: #315f3c;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: .18em;
}

.ff-eyebrow::before {
    content: "";
    width: 34px;
    height: 3px;
    border-radius: 10px;
    background: currentColor;
    flex: 0 0 auto;
}

.ff-eyebrow-light {
    color: #c9e0b9;
}

.ff-hero-copy {
    position: relative;
    z-index: 5;
    padding-bottom: 42px;
}

.ff-hero h1 {
    margin: 0;
    max-width: 690px;
    color: #132019;
    font-size: clamp(70px, 7.2vw, 116px);
    line-height: .82;
    letter-spacing: -.065em;
    font-weight: 950;
}

.ff-hero h1 span {
    color: #32673f;
}

.ff-hero-lead {
    max-width: 630px;
    margin: 34px 0 0;
    color: #465249;
    font-size: 20px;
    line-height: 1.65;
}

.ff-hero-buy {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 32px;
}

.ff-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
    padding: 0 30px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .045em;
    text-decoration: none;
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.ff-button:hover {
    transform: translateY(-3px);
}

.ff-button-primary {
    color: #fff;
    background: #285c36;
    box-shadow: 0 15px 30px rgba(35, 77, 46, .20);
}

.ff-button-primary:hover {
    color: #fff;
    background: #1c4729;
    box-shadow: 0 19px 36px rgba(35, 77, 46, .27);
}

.ff-hero-price {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ff-hero-price strong {
    color: #172019;
    font-size: 25px;
    line-height: 1;
}

.ff-hero-price span {
    color: #54705a;
    font-size: 13px;
    font-weight: 700;
}

.ff-text-link {
    display: inline-block;
    margin-top: 24px;
    padding-bottom: 5px;
    border-bottom: 2px solid #2f613b;
    color: #1e3825;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .09em;
    text-decoration: none;
}

.ff-text-link:hover {
    color: #397447;
}


/* PRODUCT FLOATS WITHOUT THE OLD BOX */

.ff-hero-visual {
    position: relative;
    height: 570px;
}

.ff-hero-circle {
    position: absolute;
    width: 510px;
    height: 510px;
    right: 15px;
    top: 17px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 42% 35%, #fff 0%, #f4f5ef 52%, #dfe8d9 100%);
    box-shadow:
        0 40px 70px rgba(35, 54, 38, .16),
        inset 0 0 0 1px rgba(255,255,255,.7);
}

.ff-hero-circle::before,
.ff-hero-circle::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(42, 91, 53, .12);
}

.ff-hero-circle::before {
    inset: -30px;
}

.ff-hero-circle::after {
    inset: -62px;
}

.ff-hero-feeder {
    position: absolute;
    z-index: 3;
    width: min(650px, 100%);
    max-height: 545px;
    right: -8px;
    top: 6px;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 34px 25px rgba(20, 30, 22, .22));
}

.ff-callout {
    position: absolute;
    z-index: 6;
    display: flex;
    flex-direction: column;
    min-width: 190px;
    padding: 16px 20px;
    background: rgba(255,255,255,.94);
    border-left: 5px solid #32673f;
    box-shadow: 0 16px 40px rgba(28, 42, 31, .16);
    backdrop-filter: blur(10px);
}

.ff-callout strong {
    color: #1b2b20;
    font-size: 13px;
    letter-spacing: .07em;
}

.ff-callout span {
    margin-top: 3px;
    color: #687069;
    font-size: 12px;
}

.ff-callout-one {
    top: 42px;
    left: 8px;
}

.ff-callout-two {
    right: -5px;
    bottom: 56px;
}

.ff-hero-strip {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #132019;
    box-shadow: 0 18px 35px rgba(17, 30, 21, .16);
}

.ff-hero-strip > div {
    min-height: 105px;
    padding: 27px 28px;
    border-right: 1px solid rgba(255,255,255,.11);
}

.ff-hero-strip > div:last-child {
    border-right: 0;
}

.ff-hero-strip strong,
.ff-hero-strip span {
    display: block;
}

.ff-hero-strip strong {
    color: #fff;
    font-size: 13px;
    letter-spacing: .1em;
}

.ff-hero-strip span {
    margin-top: 7px;
    color: #aab7ac;
    font-size: 13px;
}


/* PROBLEM */

.ff-problem {
    padding: 115px 0;
    background: #17251c;
    color: #fff;
}

.ff-problem-grid {
    display: grid;
    grid-template-columns: 110px 1.25fr .75fr;
    gap: 45px;
    align-items: start;
}

.ff-problem-number {
    color: rgba(255,255,255,.14);
    font-size: 76px;
    line-height: .85;
    font-weight: 950;
}

.ff-problem h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(43px, 4.6vw, 72px);
    line-height: .98;
    letter-spacing: -.045em;
}

.ff-problem h2 span {
    color: #a8ca91;
}

.ff-problem-copy {
    padding-top: 38px;
}

.ff-problem-copy p {
    margin: 0 0 18px;
    color: #c4cdc6;
    font-size: 17px;
    line-height: 1.7;
}


/* OPEN / CLOSED */

.ff-mechanism {
    padding: 120px 0 130px;
    background: #f7f5ef;
}

.ff-section-intro {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 58px;
}

.ff-section-intro h2 {
    margin: 0;
    color: #172019;
    font-size: clamp(48px, 5.2vw, 80px);
    line-height: .94;
    letter-spacing: -.05em;
}

.ff-section-intro h2 span {
    color: #32673f;
}

.ff-section-intro > p {
    margin: 0 0 8px;
    color: #5d675f;
    font-size: 17px;
    line-height: 1.7;
}

.ff-state-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.ff-state-card {
    position: relative;
    min-width: 0;
    background: #fff;
    border: 1px solid #e0e3dc;
    box-shadow: 0 24px 55px rgba(30, 43, 33, .09);
}

.ff-state-card img {
    display: block;
    width: 100%;
    height: 430px;
    padding: 35px;
    object-fit: contain;
    background: #fff;
}

.ff-state-label {
    position: absolute;
    z-index: 3;
    top: 22px;
    left: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 17px;
    color: #fff;
    background: #16231b;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
}

.ff-state-label span {
    color: #a9cc92;
}

.ff-state-copy {
    padding: 28px 32px 32px;
    background: #fff;
    border-top: 1px solid #e6e7e2;
}

.ff-state-copy strong {
    color: #234d2e;
    font-size: 15px;
    letter-spacing: .08em;
}

.ff-state-copy p {
    margin: 9px 0 0;
    color: #5d675f;
    font-size: 15px;
    line-height: 1.65;
}


/* MONEY SECTION */

.ff-money {
    position: relative;
    padding: 120px 0;
    background: #2e633b;
    color: #fff;
}

.ff-money::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 52px 52px;
    pointer-events: none;
}

.ff-money-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.ff-money-headline {
    position: relative;
}

.ff-giant-dollar {
    position: absolute;
    left: -25px;
    top: -95px;
    color: rgba(255,255,255,.065);
    font-size: 330px;
    line-height: 1;
    font-weight: 950;
}

.ff-money h2 {
    position: relative;
    margin: 0;
    color: #fff;
    font-size: clamp(58px, 6vw, 92px);
    line-height: .87;
    letter-spacing: -.055em;
}

.ff-money h2 span {
    color: #d8e8c9;
}

.ff-money-big {
    margin: 0 0 35px;
    color: #eef5ea;
    font-size: 22px;
    line-height: 1.6;
}

.ff-money-list {
    margin-bottom: 35px;
    border-top: 1px solid rgba(255,255,255,.22);
}

.ff-money-list > div {
    display: grid;
    grid-template-columns: 50px 1fr;
    align-items: center;
    min-height: 65px;
    border-bottom: 1px solid rgba(255,255,255,.22);
}

.ff-money-list span {
    color: #b9d5a8;
    font-size: 12px;
    font-weight: 900;
}

.ff-money-list strong {
    color: #fff;
    font-size: 16px;
}

.ff-button-cream {
    color: #193020;
    background: #f4f0df;
    box-shadow: 0 14px 30px rgba(0,0,0,.14);
}

.ff-button-cream:hover {
    color: #193020;
    background: #fff;
}


/* BUILT SECTION */

.ff-built {
    padding: 125px 0;
    background: #fff;
}

.ff-built-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 85px;
    align-items: center;
}

.ff-built-visual {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, #eef1eb, #faf9f4);
}

.ff-built-visual::before {
    content: "";
    position: absolute;
    width: 70%;
    height: 70%;
    border: 1px solid rgba(39, 91, 52, .18);
    transform: rotate(7deg);
}

.ff-built-visual img {
    position: relative;
    z-index: 2;
    width: 88%;
    max-height: 520px;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 28px 24px rgba(23, 34, 26, .18));
}

.ff-built-number {
    position: absolute;
    z-index: 4;
    left: -20px;
    bottom: 28px;
    padding: 17px 24px;
    color: #fff;
    background: #17251c;
    font-size: 34px;
    line-height: 1;
    font-weight: 950;
}

.ff-built h2,
.ff-three h2 {
    margin: 0;
    color: #172019;
    font-size: clamp(55px, 5.5vw, 84px);
    line-height: .88;
    letter-spacing: -.055em;
}

.ff-built h2 span,
.ff-three h2 span {
    color: #32673f;
}

.ff-built-copy > p {
    max-width: 580px;
    margin: 30px 0;
    color: #5b655e;
    font-size: 18px;
    line-height: 1.7;
}

.ff-spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 36px 0 18px;
    border-top: 1px solid #dfe3dc;
    border-left: 1px solid #dfe3dc;
}

.ff-spec-grid > div {
    padding: 22px;
    border-right: 1px solid #dfe3dc;
    border-bottom: 1px solid #dfe3dc;
}

.ff-spec-grid strong,
.ff-spec-grid span {
    display: block;
}

.ff-spec-grid strong {
    color: #1d3524;
    font-size: 18px;
}

.ff-spec-grid span {
    margin-top: 4px;
    color: #7a827b;
    font-size: 13px;
}


/* THREE PROBLEMS */

.ff-three {
    padding: 120px 0 135px;
    background: #f2f0e7;
}

.ff-three-title {
    margin-bottom: 55px;
}

.ff-three-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid #d9ddd5;
}

.ff-three-grid article {
    min-height: 360px;
    padding: 38px;
    background: #faf9f5;
    border-right: 1px solid #d9ddd5;
}

.ff-three-grid article:last-child {
    border-right: 0;
}

.ff-three-grid article > span {
    color: #809083;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
}

.ff-three-grid h3 {
    margin: 100px 0 18px;
    color: #1a2a20;
    font-size: 28px;
    line-height: 1;
    letter-spacing: -.025em;
}

.ff-three-grid p {
    margin: 0;
    color: #657068;
    font-size: 15px;
    line-height: 1.7;
}

.ff-three-grid .ff-three-featured {
    position: relative;
    top: -20px;
    min-height: 400px;
    color: #fff;
    background: #2e633b;
    border: 0;
    box-shadow: 0 24px 45px rgba(36, 70, 44, .20);
}

.ff-three-featured > span {
    color: #c3d9b4 !important;
}

.ff-three-featured h3 {
    color: #fff;
}

.ff-three-featured p {
    color: #dce8dc;
}


/* FINAL CTA */

.ff-final {
    position: relative;
    padding: 100px 0;
    background: #142119;
    color: #fff;
}

.ff-final-word {
    position: absolute;
    left: -25px;
    bottom: -35px;
    color: rgba(255,255,255,.035);
    font-size: clamp(130px, 19vw, 310px);
    line-height: .75;
    font-weight: 950;
    letter-spacing: -.075em;
    white-space: nowrap;
}

.ff-final-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 85px;
    align-items: center;
}

.ff-final-image {
    min-height: 470px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle, rgba(255,255,255,.11), transparent 65%);
}

.ff-final-image img {
    width: 100%;
    max-height: 470px;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: drop-shadow(0 30px 25px rgba(0,0,0,.30));
}

/*
The source product photos use white backgrounds.
On the dark CTA we avoid screen blending because it can wash out the metal.
*/
.ff-final-image img {
    mix-blend-mode: normal;
    background: #fff;
    padding: 12px;
}

.ff-final h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(55px, 5.5vw, 86px);
    line-height: .89;
    letter-spacing: -.055em;
}

.ff-final h2 span {
    color: #a9cd92;
}

.ff-final-copy > p {
    max-width: 620px;
    margin: 28px 0;
    color: #bec9c0;
    font-size: 18px;
    line-height: 1.7;
}

.ff-final-purchase {
    display: flex;
    align-items: center;
    gap: 35px;
    margin: 30px 0;
}

.ff-final-purchase small,
.ff-final-purchase strong {
    display: block;
}

.ff-final-purchase small {
    margin-bottom: 5px;
    color: #9eada1;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
}

.ff-final-purchase strong {
    color: #fff;
    font-size: 36px;
}

.ff-final-stock {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d5e5d2;
    font-size: 13px;
    font-weight: 800;
}

.ff-final-stock span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #65bd6e;
    box-shadow: 0 0 0 5px rgba(101,189,110,.12);
}

.ff-final-button {
    min-width: 230px;
}


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

@media (max-width: 1050px) {

    .ff-hero {
        padding-top: 60px;
    }

    .ff-hero-grid,
    .ff-built-grid,
    .ff-final-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .ff-hero h1 {
        font-size: clamp(62px, 8vw, 90px);
    }

    .ff-hero-visual {
        height: 500px;
    }

    .ff-hero-circle {
        width: 430px;
        height: 430px;
        right: -20px;
    }

    .ff-problem-grid {
        grid-template-columns: 80px 1fr;
    }

    .ff-problem-copy {
        grid-column: 2;
        padding-top: 0;
    }

    .ff-money-grid {
        gap: 55px;
    }
}


@media (max-width: 800px) {

    .ff-hero {
        padding-top: 45px;
    }

    .ff-hero-grid,
    .ff-section-intro,
    .ff-state-grid,
    .ff-money-grid,
    .ff-built-grid,
    .ff-final-grid {
        grid-template-columns: 1fr;
    }

    .ff-hero-copy {
        padding-bottom: 0;
    }

    .ff-hero h1 {
        font-size: clamp(58px, 15vw, 90px);
    }

    .ff-hero-lead {
        font-size: 18px;
    }

    .ff-hero-visual {
        height: 480px;
        margin-top: 10px;
    }

    .ff-hero-circle {
        width: 390px;
        height: 390px;
        max-width: 86vw;
        max-height: 86vw;
        right: 50%;
        transform: translateX(50%);
    }

    .ff-hero-feeder {
        right: 50%;
        transform: translateX(50%);
    }

    .ff-callout-one {
        left: 0;
    }

    .ff-callout-two {
        right: 0;
    }

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

    .ff-hero-strip > div:nth-child(2) {
        border-right: 0;
    }

    .ff-hero-strip > div:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,.11);
    }

    .ff-problem,
    .ff-mechanism,
    .ff-money,
    .ff-built,
    .ff-three,
    .ff-final {
        padding-top: 85px;
        padding-bottom: 85px;
    }

    .ff-problem-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .ff-problem-copy {
        grid-column: auto;
    }

    .ff-problem-number {
        font-size: 50px;
    }

    .ff-section-intro {
        gap: 25px;
    }

    .ff-state-card img {
        height: 360px;
    }

    .ff-money-grid {
        gap: 50px;
    }

    .ff-giant-dollar {
        font-size: 240px;
    }

    .ff-built-visual {
        min-height: 460px;
    }

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

    .ff-three-grid article,
    .ff-three-grid .ff-three-featured {
        top: 0;
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid #d9ddd5;
    }

    .ff-three-grid h3 {
        margin-top: 45px;
    }

    .ff-final-image {
        min-height: 350px;
    }
}


@media (max-width: 520px) {

    .ff-hero {
        padding-top: 35px;
    }

    .ff-eyebrow {
        font-size: 10px;
        letter-spacing: .14em;
    }

    .ff-hero h1 {
        font-size: 56px;
    }

    .ff-hero-lead {
        margin-top: 24px;
        font-size: 16px;
        line-height: 1.6;
    }

    .ff-hero-buy {
        align-items: stretch;
        flex-direction: column;
        gap: 17px;
    }

    .ff-button-primary {
        width: 100%;
    }

    .ff-hero-price {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .ff-hero-visual {
        height: 390px;
    }

    .ff-hero-circle {
        top: 30px;
        width: 310px;
        height: 310px;
    }

    .ff-callout {
        min-width: 0;
        padding: 11px 13px;
    }

    .ff-callout strong {
        font-size: 10px;
    }

    .ff-callout span {
        font-size: 10px;
    }

    .ff-callout-one {
        top: 25px;
    }

    .ff-callout-two {
        bottom: 20px;
    }

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

    .ff-hero-strip > div {
        min-height: 78px;
        padding: 19px 22px;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.11);
    }

    .ff-problem h2,
    .ff-section-intro h2,
    .ff-money h2,
    .ff-built h2,
    .ff-three h2,
    .ff-final h2 {
        font-size: 46px;
    }

    .ff-state-card img {
        height: 300px;
        padding: 25px 15px;
    }

    .ff-state-copy {
        padding: 22px;
    }

    .ff-money-big {
        font-size: 18px;
    }

    .ff-built-visual {
        min-height: 350px;
    }

    .ff-built-number {
        left: 0;
        bottom: 10px;
    }

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

    .ff-three-grid article {
        padding: 30px;
    }

    .ff-final-image {
        min-height: 290px;
    }

    .ff-final-purchase {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .ff-final-button {
        width: 100%;
    }
}



/* =========================================================
   FEEDFORT PREMIUM PRODUCT PAGE
   ========================================================= */

.shop-hero {
    padding: 58px 0 78px;
    background:
        radial-gradient(circle at 12% 15%, rgba(224,184,92,.16), transparent 27%),
        linear-gradient(135deg, #f7f3e8 0%, #fffdf8 48%, #edf3e8 100%);
    overflow: hidden;
}

.shop-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
    gap: 72px;
    align-items: center;
}

.shop-gallery {
    min-width: 0;
}

.shop-main-photo {
    position: relative;
    min-height: 610px;
    border-radius: 34px;
    overflow: hidden;
    background: #fff;
    box-shadow:
        0 28px 70px rgba(30,52,34,.16),
        0 3px 10px rgba(30,52,34,.08);
}

.shop-main-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(49,91,58,.08);
    border-radius: inherit;
}

.shop-main-photo img {
    width: 100%;
    height: 610px;
    display: block;
    object-fit: contain;
    background: #fff;
}

.shop-photo-badge {
    position: absolute;
    left: 22px;
    bottom: 22px;
    padding: 11px 16px;
    border-radius: 999px;
    background: rgba(28,53,34,.94);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .03em;
    box-shadow: 0 8px 22px rgba(0,0,0,.18);
}

.shop-thumbnails {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.shop-thumb {
    appearance: none;
    border: 2px solid transparent;
    background: #fff;
    border-radius: 16px;
    padding: 5px;
    cursor: pointer;
    overflow: hidden;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    box-shadow: 0 5px 18px rgba(30,52,34,.07);
}

.shop-thumb:hover {
    transform: translateY(-3px);
}

.shop-thumb.active {
    border-color: #315b3a;
    box-shadow: 0 8px 22px rgba(49,91,58,.17);
}

.shop-thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
}

.shop-buy-panel {
    position: relative;
}

.shop-kicker {
    display: inline-flex;
    margin: 0 0 18px;
    padding: 8px 13px;
    border-radius: 999px;
    background: #e5eee1;
    color: #315b3a;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .13em;
}

.shop-buy-panel h1 {
    margin: 0;
    max-width: 620px;
    color: #183820;
    font-size: clamp(48px, 5vw, 72px);
    line-height: .98;
    letter-spacing: -.055em;
}

.shop-buy-panel h1 span {
    color: #b98220;
}

.shop-lead {
    max-width: 610px;
    margin: 25px 0 28px;
    color: #536057;
    font-size: 19px;
    line-height: 1.65;
}

.shop-price-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
    padding: 22px 0;
    border-top: 1px solid rgba(49,91,58,.13);
    border-bottom: 1px solid rgba(49,91,58,.13);
}

.shop-price-label {
    display: block;
    margin-bottom: 2px;
    color: #687269;
    font-size: 13px;
    font-weight: 700;
}

.shop-price {
    color: #183820;
    font-size: 38px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.035em;
}

.shop-stock {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #315b3a;
    font-size: 14px;
    font-weight: 800;
}

.shop-stock-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #4f9b55;
    box-shadow: 0 0 0 5px rgba(79,155,85,.12);
}

.shop-benefit-list {
    display: grid;
    gap: 15px;
    margin: 27px 0;
}

.shop-benefit {
    display: grid;
    grid-template-columns: 37px 1fr;
    gap: 13px;
    align-items: start;
}

.shop-benefit-icon {
    display: grid;
    place-items: center;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    background: #315b3a;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
}

.shop-benefit strong,
.shop-benefit span {
    display: block;
}

.shop-benefit strong {
    margin-bottom: 3px;
    color: #203d27;
    font-size: 16px;
}

.shop-benefit div > span {
    color: #687269;
    font-size: 14px;
    line-height: 1.45;
}

.shop-add-form {
    display: grid;
    grid-template-columns: 105px 1fr;
    gap: 12px;
    margin-top: 27px;
}

.shop-quantity label {
    display: block;
    margin-bottom: 6px;
    color: #526057;
    font-size: 12px;
    font-weight: 800;
}

.shop-quantity select {
    width: 100%;
    height: 56px;
    padding: 0 14px;
    border: 1px solid #ccd5cb;
    border-radius: 13px;
    background: #fff;
    color: #183820;
    font: inherit;
    font-weight: 800;
}

.shop-add-button {
    align-self: end;
    min-height: 56px;
    border-radius: 13px;
    font-size: 17px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(49,91,58,.24);
}

.shop-add-button:hover {
    transform: translateY(-2px);
}

.shop-checkout-note {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 13px;
    color: #69746c;
    font-size: 13px;
    font-weight: 700;
}

.shop-reassurance {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 23px;
    color: #7a827c;
    font-size: 12px;
    font-weight: 700;
}


/* PROBLEM / VALUE SECTION */

.shop-problem-section {
    padding: 105px 0;
    background: #183820;
    color: #fff;
}

.shop-section-heading {
    max-width: 780px;
    margin-bottom: 55px;
}

.shop-problem-section .eyebrow {
    color: #e1bd69;
}

.shop-section-heading h2 {
    margin: 9px 0 17px;
    color: #fff;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.02;
    letter-spacing: -.045em;
}

.shop-section-heading > p:last-child {
    max-width: 650px;
    color: rgba(255,255,255,.72);
    font-size: 18px;
    line-height: 1.65;
}

.shop-problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.shop-problem-card {
    position: relative;
    padding: 32px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 24px;
    background: rgba(255,255,255,.055);
    overflow: hidden;
}

.shop-problem-card::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -55px;
    bottom: -55px;
    border-radius: 50%;
    background: rgba(225,189,105,.08);
}

.shop-card-number {
    margin-bottom: 45px;
    color: #e1bd69;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .13em;
}

.shop-problem-card h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 24px;
}

.shop-problem-card p {
    margin: 0;
    color: rgba(255,255,255,.69);
    line-height: 1.65;
}


/* PRODUCT SHOWCASE */

.shop-showcase {
    padding: 110px 0;
    background: #f6f1e5;
}

.shop-showcase-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 75px;
    align-items: center;
}

.shop-showcase-copy h2 {
    margin: 10px 0 20px;
    color: #183820;
    font-size: clamp(38px, 4.5vw, 58px);
    line-height: 1.03;
    letter-spacing: -.045em;
}

.shop-showcase-copy > p:last-of-type {
    color: #5c685f;
    font-size: 18px;
    line-height: 1.7;
}

.shop-mini-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 35px;
}

.shop-mini-specs div {
    padding: 18px 10px;
    border-radius: 15px;
    background: rgba(255,255,255,.7);
    text-align: center;
}

.shop-mini-specs strong,
.shop-mini-specs span {
    display: block;
}

.shop-mini-specs strong {
    color: #183820;
    font-size: 15px;
}

.shop-mini-specs span {
    margin-top: 4px;
    color: #7b837d;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.shop-showcase-images {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 17px;
    align-items: end;
}

.shop-lifestyle-photo {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 22px 55px rgba(31,54,34,.14);
}

.shop-lifestyle-large {
    height: 530px;
}

.shop-lifestyle-small {
    height: 400px;
}

.shop-lifestyle-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.shop-lifestyle-photo > span {
    position: absolute;
    left: 17px;
    bottom: 17px;
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(24,56,32,.92);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .11em;
}


/* FINAL CTA */

.shop-final-cta {
    padding: 90px 0;
    background:
        radial-gradient(circle at 85% 20%, rgba(225,189,105,.16), transparent 30%),
        #fffdf8;
}

.shop-final-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 70px;
    align-items: center;
}

.shop-final-inner h2 {
    margin: 8px 0 14px;
    color: #183820;
    font-size: clamp(42px, 5vw, 66px);
    line-height: .98;
    letter-spacing: -.05em;
}

.shop-final-inner h2 span {
    color: #b98220;
}

.shop-final-inner p:last-child {
    max-width: 630px;
    color: #657067;
    font-size: 17px;
    line-height: 1.6;
}

.shop-final-buy {
    min-width: 250px;
    text-align: center;
}

.shop-final-price {
    margin-bottom: 13px;
    color: #183820;
    font-size: 35px;
    font-weight: 900;
}

.shop-final-button {
    display: block;
    padding: 17px 35px;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 900;
}

.shop-final-buy > span {
    display: block;
    margin-top: 11px;
    color: #707a72;
    font-size: 12px;
    font-weight: 700;
}


/* PRODUCT PAGE MOBILE */

@media (max-width: 980px) {
    .shop-hero-grid,
    .shop-showcase-grid {
        grid-template-columns: 1fr;
    }

    .shop-hero-grid {
        gap: 45px;
    }

    .shop-main-photo,
    .shop-main-photo img {
        height: 520px;
        min-height: 520px;
    }

    .shop-problem-grid {
        grid-template-columns: 1fr;
    }

    .shop-card-number {
        margin-bottom: 20px;
    }

    .shop-showcase-grid {
        gap: 45px;
    }

    .shop-final-inner {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .shop-final-buy {
        max-width: 340px;
        text-align: left;
    }
}

@media (max-width: 640px) {
    .shop-hero {
        padding: 25px 0 55px;
    }

    .shop-main-photo,
    .shop-main-photo img {
        height: 390px;
        min-height: 390px;
    }

    .shop-main-photo {
        border-radius: 22px;
    }

    .shop-photo-badge {
        left: 13px;
        bottom: 13px;
        font-size: 11px;
    }

    .shop-thumbnails {
        gap: 7px;
    }

    .shop-thumb {
        padding: 3px;
        border-radius: 11px;
    }

    .shop-buy-panel h1 {
        font-size: 46px;
    }

    .shop-lead {
        font-size: 17px;
    }

    .shop-price-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .shop-add-form {
        grid-template-columns: 85px 1fr;
    }

    .shop-reassurance {
        justify-content: flex-start;
    }

    .shop-problem-section,
    .shop-showcase {
        padding: 75px 0;
    }

    .shop-problem-card {
        padding: 25px;
    }

    .shop-showcase-images {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .shop-lifestyle-large,
    .shop-lifestyle-small {
        height: 320px;
    }

    .shop-lifestyle-photo {
        border-radius: 18px;
    }

    .shop-mini-specs {
        grid-template-columns: 1fr;
    }

    .shop-final-cta {
        padding: 70px 0;
    }
}

/* Official FeedFort header logo */
.brand-logo-link {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    height: 70px;
    padding: 2px 0;
    line-height: 0;
}

.header-brand-logo {
    display: block;
    width: 120px;
    height: 66px;
    object-fit: contain;
}

@media (max-width: 640px) {
    .brand-logo-link {
        height: 60px;
    }

    .header-brand-logo {
        width: 105px;
        height: 56px;
    }
}

/* =========================================================
   FEEDFORT FAMILY STORY
   ========================================================= */

.about-family-conversation {
    margin: 38px 0 46px;
    padding: 28px;
    background: #f4eee2;
    border: 1px solid rgba(49,91,58,.12);
    border-radius: 24px;
}

.about-family-conversation p {
    position: relative;
    margin: 0 0 16px !important;
    padding: 17px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 7px 20px rgba(30,45,32,.06);
}

.about-family-conversation p:last-child {
    margin-bottom: 0 !important;
}

.about-family-conversation p:nth-child(even) {
    margin-left: 42px !important;
    background: #eaf2e8;
}

.about-family-conversation p:nth-child(odd) {
    margin-right: 42px !important;
}

.about-family-conversation strong {
    color: var(--green-dark);
    font-weight: 900;
}


/* Give the long story room to breathe */

.prose > h2 {
    position: relative;
    margin-top: 70px;
    margin-bottom: 22px;
    color: var(--green-dark);
    font-size: clamp(1.8rem, 3vw, 2.55rem);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.prose > h2:first-child {
    margin-top: 0;
}

.prose > h2::before {
    content: "";
    display: block;
    width: 48px;
    height: 4px;
    margin-bottom: 18px;
    background: var(--green);
    border-radius: 999px;
}

.prose > p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.06rem;
    line-height: 1.85;
}


/* Final patented-product reveal */

.about-story-closing {
    position: relative;
    overflow: hidden;
    margin-top: 72px;
    padding: 50px;
    color: #fff;
    background:
        radial-gradient(circle at 90% 10%,
            rgba(255,255,255,.10),
            transparent 32%),
        #203d29;
    border-radius: 28px;
    box-shadow: 0 22px 60px rgba(27,52,35,.18);
}

.about-story-closing::after {
    content: "FF";
    position: absolute;
    right: -15px;
    bottom: -55px;
    color: rgba(255,255,255,.035);
    font-size: 12rem;
    font-weight: 900;
    line-height: 1;
}

.about-story-closing .eyebrow {
    position: relative;
    z-index: 1;
    color: #d8c69d;
}

.about-story-closing h2 {
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 10px 0 22px;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.04;
}

.about-story-closing p {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin-left: 0;
    color: rgba(255,255,255,.86);
}

.about-story-closing .button {
    position: relative;
    z-index: 1;
    margin-top: 12px;
    background: #fff;
    color: var(--green-dark);
}


/* Make the About hero feel like a brand page */

.page-hero .eyebrow {
    margin-bottom: 14px;
}

.page-hero h1 {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -.045em;
}

.page-hero p:not(.eyebrow) {
    max-width: 690px;
    margin-left: auto;
    margin-right: auto;
}


/* Mobile */

@media (max-width: 640px) {
    .about-family-conversation {
        padding: 16px;
        margin: 30px 0 38px;
    }

    .about-family-conversation p:nth-child(even),
    .about-family-conversation p:nth-child(odd) {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .prose > h2 {
        margin-top: 52px;
    }

    .about-story-closing {
        margin-top: 52px;
        padding: 32px 24px;
        border-radius: 22px;
    }
}

/* FAQ VIDEO — compact layout override */

.faq-video-section {
    padding: 55px 0 !important;
}

.faq-video-section > .container {
    max-width: 1120px !important;
}

.faq-video-grid {
    display: grid !important;
    grid-template-columns: 0.85fr 1.15fr !important;
    align-items: center !important;
    gap: 42px !important;
    padding: 36px 40px !important;
    background: #203d29 !important;
    border-radius: 24px !important;
}

.faq-video-copy h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem) !important;
    line-height: 1.08 !important;
    margin: 8px 0 16px !important;
}

.faq-video-copy > p:not(.eyebrow) {
    font-size: 1rem !important;
    line-height: 1.65 !important;
}

.faq-video-tip {
    margin-top: 22px !important;
    padding-top: 18px !important;
}

.faq-video-player {
    width: 100% !important;
    max-width: 620px !important;
    margin-left: auto !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    background: #111 !important;
}

.faq-video-player video {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-height: 420px !important;
    object-fit: contain !important;
    background: #111 !important;
}

@media (max-width: 800px) {
    .faq-video-section {
        padding: 35px 0 !important;
    }

    .faq-video-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        padding: 25px !important;
    }

    .faq-video-copy h2 {
        font-size: 1.8rem !important;
    }

    .faq-video-player {
        max-width: 100% !important;
        margin: 0 !important;
    }

    .faq-video-player video {
        max-height: 360px !important;
    }
}

/* FAQ VIDEO — force readable text */

.faq-video-grid .faq-video-copy,
.faq-video-grid .faq-video-copy h2,
.faq-video-grid .faq-video-copy p,
.faq-video-grid .faq-video-copy strong,
.faq-video-grid .faq-video-copy span {
    color: #ffffff !important;
}

.faq-video-grid .faq-video-copy .eyebrow {
    color: #e5c978 !important;
}

.faq-video-grid .faq-video-copy > p:not(.eyebrow) {
    color: rgba(255,255,255,.86) !important;
}

.faq-video-grid .faq-video-tip {
    border-top-color: rgba(255,255,255,.20) !important;
}

.faq-video-grid .faq-video-tip span {
    color: rgba(255,255,255,.72) !important;
}


/* =========================================================
   FEEDFORT CART — PREMIUM STOREFRONT
   ========================================================= */

.ff-cart-page {
    padding: 76px 0 110px;
    background:
        linear-gradient(180deg, #f8f6ef 0, #fff 330px);
}

.ff-cart-heading {
    max-width: 720px;
    margin-bottom: 42px;
}

.ff-cart-heading h1 {
    margin: 5px 0 12px;
    font-size: clamp(2.8rem, 6vw, 5.3rem);
    line-height: .95;
    letter-spacing: -.055em;
}

.ff-cart-heading > p:last-child {
    margin: 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.ff-cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(330px, .72fr);
    gap: 42px;
    align-items: start;
}

.ff-cart-items {
    display: grid;
    gap: 18px;
}

.ff-cart-item {
    display: grid;
    grid-template-columns: 150px minmax(180px, 1fr) 110px 115px;
    gap: 24px;
    align-items: center;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: 0 14px 40px rgba(31,49,34,.06);
}

.ff-cart-product-image {
    overflow: hidden;
    padding: 10px;
    background: #f4f1e8;
    border-radius: 16px;
}

.ff-cart-product-image img {
    display: block;
    width: 100%;
    height: 125px;
    object-fit: contain;
}

.ff-cart-product-label {
    margin: 0 0 6px;
    color: var(--green);
    font-size: .69rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.ff-cart-product-copy h2 {
    margin: 0 0 7px;
    font-size: 1.35rem;
}

.ff-cart-material {
    margin: 0 0 5px;
    font-size: .9rem;
    font-weight: 800;
}

.ff-cart-each {
    margin: 0;
    color: var(--muted);
    font-size: .9rem;
}

.ff-cart-quantity label,
.ff-cart-line-total span {
    display: block;
    margin-bottom: 7px;
    color: var(--muted);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.ff-cart-quantity input {
    width: 78px;
    min-height: 44px;
    padding: 7px 10px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    font: inherit;
    font-weight: 800;
}

.ff-cart-quantity > span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: .68rem;
}

.ff-cart-line-total {
    text-align: right;
}

.ff-cart-line-total strong {
    font-size: 1.2rem;
}

.ff-cart-update-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 20px;
}

.ff-cart-update-row > a {
    color: var(--green-dark);
    font-weight: 800;
    text-decoration: none;
}

.ff-cart-summary {
    position: sticky;
    top: 30px;
    padding: 32px;
    color: #fff;
    background: var(--green-dark);
    border-radius: 24px;
    box-shadow: 0 22px 55px rgba(25,45,30,.18);
}

.ff-cart-summary .eyebrow {
    color: #e5c978;
}

.ff-cart-summary h2 {
    margin: 4px 0 28px;
    color: #fff;
    font-size: 1.7rem;
}

.ff-cart-summary-row,
.ff-cart-summary-total {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.ff-cart-summary-row {
    margin: 13px 0;
    color: rgba(255,255,255,.78);
}

.ff-cart-summary-row strong {
    color: #fff;
}

.ff-cart-summary-divider {
    height: 1px;
    margin: 22px 0;
    background: rgba(255,255,255,.18);
}

.ff-cart-summary-total {
    align-items: flex-end;
    margin-bottom: 24px;
    font-weight: 900;
}

.ff-cart-summary-total span {
    font-size: 1.05rem;
}

.ff-cart-summary-total strong {
    color: #fff;
    font-size: 1.8rem;
}

.ff-cart-checkout {
    display: block;
    width: 100%;
    text-align: center;
}

.ff-cart-security {
    display: grid;
    gap: 3px;
    margin: 18px 0 24px;
    text-align: center;
}

.ff-cart-security strong {
    font-size: .82rem;
}

.ff-cart-security span {
    color: rgba(255,255,255,.66);
    font-size: .75rem;
}

.ff-cart-reassurance {
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.15);
}

.ff-cart-reassurance > div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,.10);
}

.ff-cart-reassurance strong {
    color: #fff;
    font-size: .75rem;
}

.ff-cart-reassurance span {
    color: rgba(255,255,255,.65);
    font-size: .75rem;
    text-align: right;
}

.ff-empty-cart {
    max-width: 650px;
    margin: 20px auto;
    padding: 65px 45px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: 0 18px 50px rgba(31,49,34,.07);
}

.ff-empty-cart-mark {
    display: inline-flex;
    width: 62px;
    height: 62px;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #fff;
    background: var(--green);
    border-radius: 16px;
    font-weight: 900;
}

.ff-empty-cart h2 {
    margin: 8px 0 12px;
    font-size: 2rem;
}

.ff-empty-cart > p:not(.eyebrow) {
    max-width: 470px;
    margin: 0 auto 26px;
    color: var(--muted);
}

@media (max-width: 1000px) {
    .ff-cart-layout {
        grid-template-columns: 1fr;
    }

    .ff-cart-summary {
        position: static;
    }
}

@media (max-width: 760px) {
    .ff-cart-page {
        padding: 48px 0 75px;
    }

    .ff-cart-item {
        grid-template-columns: 105px 1fr;
    }

    .ff-cart-product-image img {
        height: 95px;
    }

    .ff-cart-quantity {
        grid-column: 1 / 2;
    }

    .ff-cart-line-total {
        grid-column: 2 / 3;
    }
}

@media (max-width: 520px) {
    .ff-cart-item {
        gap: 16px;
        padding: 16px;
    }

    .ff-cart-update-row {
        align-items: stretch;
        flex-direction: column;
    }

    .ff-cart-update-row .secondary-button {
        width: 100%;
    }

    .ff-cart-summary {
        padding: 25px 21px;
    }

    .ff-empty-cart {
        padding: 45px 24px;
    }
}


/* =========================================================
   FEEDFORT CHECKOUT — PREMIUM STOREFRONT
   ========================================================= */

.ff-checkout-page {
    padding: 76px 0 110px;
    background:
        linear-gradient(180deg, #f8f6ef 0, #fff 330px);
}

.ff-checkout-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

.ff-checkout-heading h1 {
    margin: 5px 0 12px;
    font-size: clamp(2.8rem, 6vw, 5.3rem);
    line-height: .95;
    letter-spacing: -.055em;
}

.ff-checkout-heading > p:last-child {
    max-width: 620px;
    margin: 0;
    color: var(--muted);
    font-size: 1.08rem;
}


.ff-checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(340px, .72fr);
    gap: 42px;
    align-items: start;
}


/* FORM CARD */

.ff-checkout-form-card {
    padding: 38px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: 0 14px 40px rgba(31,49,34,.06);
}

.ff-checkout-form-heading {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding-bottom: 28px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.ff-checkout-step {
    display: inline-flex;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--green-dark);
    border-radius: 14px;
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .06em;
}

.ff-checkout-form-heading .eyebrow {
    margin: 1px 0 5px;
}

.ff-checkout-form-heading h2 {
    margin: 0;
    font-size: clamp(1.45rem, 3vw, 2rem);
    letter-spacing: -.035em;
}


.ff-checkout-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.ff-checkout-field {
    margin: 0;
}

.ff-checkout-field-wide {
    grid-column: 1 / -1;
}

.ff-checkout-field label {
    display: block;
    margin-bottom: 7px;
    color: var(--text);
    font-size: .78rem;
    font-weight: 900;
}

.ff-checkout-field input,
.ff-checkout-field select,
.ff-checkout-field textarea {
    box-sizing: border-box;
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    color: var(--text);
    background: #fff;
    border: 1px solid #d8ddd6;
    border-radius: 11px;
    outline: none;
    font: inherit;
    transition:
        border-color .18s ease,
        box-shadow .18s ease;
}

.ff-checkout-field input:focus,
.ff-checkout-field select:focus,
.ff-checkout-field textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(49,91,58,.10);
}

.ff-checkout-field textarea {
    min-height: 110px;
    resize: vertical;
}

.ff-checkout-field .form-errors {
    margin-top: 6px;
    color: #a33a32;
    font-size: .78rem;
    font-weight: 700;
}


/* PAYMENT NEXT */

.ff-checkout-payment-next {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding-top: 30px;
    margin-top: 32px;
    border-top: 1px solid var(--border);
}

.ff-checkout-lock {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    max-width: 330px;
}

.ff-checkout-lock > span {
    line-height: 1.3;
}

.ff-checkout-lock div {
    display: grid;
    gap: 3px;
}

.ff-checkout-lock strong {
    font-size: .82rem;
}

.ff-checkout-lock div span {
    color: var(--muted);
    font-size: .74rem;
    line-height: 1.45;
}

.ff-checkout-submit {
    flex: 0 0 auto;
    min-width: 245px;
}


/* SUMMARY */

.ff-checkout-summary {
    position: sticky;
    top: 30px;
    padding: 32px;
    color: #fff;
    background: var(--green-dark);
    border-radius: 24px;
    box-shadow: 0 22px 55px rgba(25,45,30,.18);
}

.ff-checkout-summary > .eyebrow {
    color: #e5c978;
}

.ff-checkout-summary > h2 {
    margin: 4px 0 28px;
    color: #fff;
    font-size: 1.7rem;
}


.ff-checkout-products {
    display: grid;
    gap: 16px;
}

.ff-checkout-product {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) auto;
    gap: 13px;
    align-items: center;
}

.ff-checkout-product-image {
    overflow: hidden;
    padding: 5px;
    background: #f5f1e7;
    border-radius: 10px;
}

.ff-checkout-product-image img {
    display: block;
    width: 100%;
    height: 58px;
    object-fit: contain;
}

.ff-checkout-product-info {
    display: grid;
    gap: 3px;
}

.ff-checkout-product-info strong {
    color: #fff;
    font-size: .88rem;
}

.ff-checkout-product-info span {
    color: rgba(255,255,255,.65);
    font-size: .76rem;
}

.ff-checkout-product-price {
    color: #fff;
    font-size: .9rem;
}


.ff-checkout-summary-divider {
    height: 1px;
    margin: 23px 0;
    background: rgba(255,255,255,.17);
}

.ff-checkout-summary-row,
.ff-checkout-summary-total {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.ff-checkout-summary-row {
    margin: 13px 0;
    color: rgba(255,255,255,.76);
}

.ff-checkout-summary-row strong {
    color: #fff;
}

.ff-checkout-summary-total {
    align-items: flex-end;
}

.ff-checkout-summary-total span {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 900;
}

.ff-checkout-summary-total strong {
    color: #fff;
    font-size: 1.8rem;
}


.ff-checkout-trust {
    display: grid;
    gap: 11px;
    padding-top: 24px;
    margin-top: 25px;
    border-top: 1px solid rgba(255,255,255,.17);
}

.ff-checkout-trust > div {
    display: flex;
    gap: 9px;
    align-items: center;
    color: rgba(255,255,255,.78);
    font-size: .78rem;
}

.ff-checkout-trust-icon {
    display: inline-flex;
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    background: #e5c978;
    border-radius: 50%;
    font-size: .67rem;
    font-weight: 900;
}

.ff-checkout-back {
    display: inline-block;
    margin-top: 25px;
    color: rgba(255,255,255,.78);
    font-size: .8rem;
    font-weight: 800;
    text-decoration: none;
}

.ff-checkout-back:hover {
    color: #fff;
}


@media (max-width: 1000px) {

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

    .ff-checkout-summary {
        position: static;
    }
}


@media (max-width: 700px) {

    .ff-checkout-page {
        padding: 48px 0 75px;
    }

    .ff-checkout-form-card {
        padding: 25px 20px;
    }

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

    .ff-checkout-field-wide {
        grid-column: auto;
    }

    .ff-checkout-payment-next {
        align-items: stretch;
        flex-direction: column;
    }

    .ff-checkout-submit {
        width: 100%;
        min-width: 0;
    }

    .ff-checkout-summary {
        padding: 25px 21px;
    }
}


@media (max-width: 430px) {

    .ff-checkout-form-heading {
        gap: 12px;
    }

    .ff-checkout-step {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .ff-checkout-product {
        grid-template-columns: 58px minmax(0, 1fr);
    }

    .ff-checkout-product-price {
        grid-column: 2;
    }
}

/* =========================================================
   FEEDFORT ORDER SUCCESS
   ========================================================= */

.ff-success-page {
    padding: 70px 0 100px;
}

.ff-success-card {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.ff-success-check {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #214d31;
    color: #fff;
    font-size: 38px;
    font-weight: 800;
}

.ff-success-card h1 {
    margin: 12px 0 22px;
    font-size: clamp(48px, 7vw, 86px);
    line-height: .95;
    letter-spacing: -0.055em;
}

.ff-success-lead {
    max-width: 650px;
    margin: 0 auto;
    font-size: 21px;
    line-height: 1.55;
    color: #5b6d72;
}

.ff-success-order {
    max-width: 760px;
    margin: 45px auto 24px;
    padding: 25px 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border: 1px solid #dfe4df;
    border-radius: 20px;
    background: #fff;
}

.ff-success-order div {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.ff-success-order span {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    color: #5b725f;
}

.ff-success-order strong {
    font-size: 22px;
}

.ff-success-product {
    max-width: 760px;
    margin: 18px auto 55px;
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 24px;
    text-align: left;
    border-radius: 22px;
    background: #f5f1e8;
}

.ff-success-product-mark {
    width: 82px;
    height: 82px;
    flex: 0 0 82px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #214d31;
    color: #fff;
    font-size: 25px;
    font-weight: 900;
    letter-spacing: -.06em;
}

.ff-success-product-kicker {
    margin: 0 0 5px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    color: #245b39;
}

.ff-success-product h2 {
    margin: 0 0 5px;
    font-size: 27px;
}

.ff-success-product p:last-child {
    margin: 0;
    color: #5b6d72;
}

.ff-success-next {
    padding: 55px 50px;
    border-radius: 28px;
    background: #214d31;
    color: #fff;
    text-align: left;
}

.ff-success-next .eyebrow {
    color: #e6c96e;
}

.ff-success-next-heading h2 {
    margin: 5px 0 35px;
    font-size: 38px;
}

.ff-success-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ff-success-steps > div {
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.2);
}

.ff-success-steps span {
    display: block;
    margin-bottom: 18px;
    color: #e6c96e;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
}

.ff-success-steps strong {
    display: block;
    font-size: 19px;
}

.ff-success-steps p {
    margin: 10px 0 0;
    color: rgba(255,255,255,.72);
    line-height: 1.55;
}

.ff-success-footer {
    padding-top: 45px;
}

.ff-success-footer > p {
    color: #5b6d72;
    line-height: 1.6;
}

.ff-success-actions {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.ff-success-text-link {
    color: #214d31;
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 700px) {

    .ff-success-page {
        padding: 45px 0 70px;
    }

    .ff-success-order {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .ff-success-product {
        align-items: flex-start;
        padding: 22px;
    }

    .ff-success-next {
        padding: 35px 25px;
    }

    .ff-success-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .ff-success-actions {
        flex-direction: column;
    }
}


/* =========================================================
   FEEDFORT CONTACT
   ========================================================= */

.ff-contact-page {
    padding: 72px 0 95px;
    background:
        linear-gradient(180deg, #f8f6ef 0, #fff 430px);
}

.ff-contact-heading {
    max-width: 760px;
    margin-bottom: 48px;
}

.ff-contact-heading h1 {
    margin: 7px 0 20px;
    font-size: clamp(3.2rem, 7vw, 6.2rem);
    line-height: .9;
    letter-spacing: -.06em;
}

.ff-contact-heading h1 span {
    color: var(--green);
}

.ff-contact-heading > p:last-child {
    max-width: 650px;
    margin: 0;
    color: var(--muted);
    font-size: 1.12rem;
    line-height: 1.6;
}


.ff-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: 34px;
    align-items: stretch;
}


/* STORY */

.ff-contact-story {
    padding: 38px;
    color: #fff;
    background: var(--green-dark);
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(25,45,30,.15);
}

.ff-contact-story-top {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 30px;
}

.ff-contact-mark {
    display: flex;
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    background: #e5c978;
    border-radius: 15px;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -.05em;
}

.ff-contact-story .eyebrow {
    margin: 2px 0 5px;
    color: #e5c978;
}

.ff-contact-story h2 {
    margin: 0;
    color: #fff;
    font-size: 2rem;
    line-height: 1.02;
    letter-spacing: -.04em;
}

.ff-contact-story > p {
    color: rgba(255,255,255,.76);
    line-height: 1.65;
}

.ff-contact-points {
    display: grid;
    gap: 0;
    margin-top: 32px;
}

.ff-contact-points > div {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 13px;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,.16);
}

.ff-contact-points > div > span {
    color: #e5c978;
    font-size: .75rem;
    font-weight: 900;
}

.ff-contact-points strong {
    color: #fff;
    font-size: .9rem;
}

.ff-contact-points p {
    margin: 4px 0 0;
    color: rgba(255,255,255,.62);
    font-size: .78rem;
    line-height: 1.5;
}

.ff-contact-email {
    display: grid;
    gap: 6px;
    padding-top: 25px;
    margin-top: 10px;
    border-top: 1px solid rgba(255,255,255,.16);
}

.ff-contact-email span {
    color: rgba(255,255,255,.58);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.ff-contact-email a {
    color: #fff;
    font-size: .95rem;
    font-weight: 800;
    text-decoration: none;
}


/* FORM */

.ff-contact-form-card {
    padding: 38px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 25px;
    box-shadow: 0 14px 40px rgba(31,49,34,.06);
}

.ff-contact-form-heading {
    padding-bottom: 25px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.ff-contact-form-heading .eyebrow {
    margin-bottom: 6px;
}

.ff-contact-form-heading h2 {
    margin: 0 0 7px;
    font-size: 2rem;
    letter-spacing: -.04em;
}

.ff-contact-form-heading p:last-child {
    margin: 0;
    color: var(--muted);
}


.contact-form {
    display: grid;
    gap: 20px;
}

.ff-contact-field-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.ff-contact-field {
    display: grid;
    gap: 7px;
}

.ff-contact-field label {
    color: var(--text);
    font-size: .78rem;
    font-weight: 900;
}

.ff-contact-field input,
.ff-contact-field textarea {
    box-sizing: border-box;
    width: 100%;
    padding: 13px 14px;
    color: var(--text);
    background: #fff;
    border: 1px solid #d8ddd6;
    border-radius: 11px;
    font: inherit;
    outline: none;
    transition:
        border-color .18s ease,
        box-shadow .18s ease;
}

.ff-contact-field input {
    min-height: 50px;
}

.ff-contact-field textarea {
    min-height: 150px;
    resize: vertical;
}

.ff-contact-field input:focus,
.ff-contact-field textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(49,91,58,.10);
}

.ff-contact-field .errorlist {
    margin: 0;
    padding: 0;
    color: #a33a32;
    list-style: none;
    font-size: .78rem;
    font-weight: 700;
}

.ff-contact-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 8px;
}

.ff-contact-submit > div {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    max-width: 270px;
}

.ff-contact-submit > div span {
    font-size: .9rem;
}

.ff-contact-submit p {
    margin: 0;
    color: var(--muted);
    font-size: .74rem;
    line-height: 1.45;
}

.ff-contact-submit .button {
    flex: 0 0 auto;
}


/* CTA */

.ff-contact-cta {
    padding: 65px 0;
    color: #fff;
    background: var(--green);
}

.ff-contact-cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.ff-contact-cta .eyebrow {
    color: #e5c978;
}

.ff-contact-cta h2 {
    margin: 4px 0 0;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: .98;
    letter-spacing: -.045em;
}

.ff-contact-cta .button {
    flex: 0 0 auto;
    background: #fff;
    color: var(--green-dark);
}


@media (max-width: 900px) {

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

    .ff-contact-cta .container {
        align-items: flex-start;
        flex-direction: column;
    }
}


@media (max-width: 650px) {

    .ff-contact-page {
        padding: 48px 0 70px;
    }

    .ff-contact-story,
    .ff-contact-form-card {
        padding: 26px 21px;
        border-radius: 20px;
    }

    .ff-contact-field-row {
        grid-template-columns: 1fr;
    }

    .ff-contact-submit {
        align-items: stretch;
        flex-direction: column;
    }

    .ff-contact-submit .button {
        width: 100%;
    }

    .ff-contact-cta {
        padding: 48px 0;
    }

    .ff-contact-cta .button {
        width: 100%;
    }
}
