* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #17231c;
    background: #fffdf7;
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

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

.section-pad {
    padding: 82px 0;
}

.section-pad.compact {
    padding: 64px 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 253, 247, 0.92);
    border-bottom: 1px solid rgba(18, 60, 44, 0.1);
    backdrop-filter: blur(16px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-weight: 900;
    letter-spacing: -0.06em;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 12px 24px rgba(18, 60, 44, 0.18);
}

.brand-text strong,
.brand-text small {
    display: block;
}

.brand-text strong {
    color: var(--primary);
    font-size: 16px;
    line-height: 1.1;
}

.brand-text small {
    color: #647067;
    font-size: 12px;
    margin-top: 2px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: #324239;
    font-size: 14px;
    font-weight: 700;
}

.site-nav a {
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
    color: var(--secondary);
}

.nav-cta {
    color: #ffffff !important;
    background: #101820;
    padding: 12px 20px;
    border-radius: 999px;
}

.nav-cta:hover {
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(18, 60, 44, 0.14);
    border-radius: 12px;
    background: #ffffff;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--primary);
    border-radius: 999px;
}

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(217, 154, 43, 0.14), transparent 32rem),
        linear-gradient(180deg, #fffdf7 0%, #f7f2e8 100%);
}

.hero::after {
    content: "";
    position: absolute;
    right: -180px;
    top: 140px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: rgba(47, 125, 79, 0.09);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 0.92fr;
    align-items: center;
    gap: 64px;
}

.eyebrow {
    margin: 0 0 14px;
    color: #b66f12;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

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

h1,
h2,
h3 {
    color: var(--primary);
    line-height: 1.04;
    letter-spacing: -0.045em;
}

h1 {
    max-width: 700px;
    margin-bottom: 22px;
    font-size: clamp(42px, 5.2vw, 76px);
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(34px, 3.6vw, 54px);
}

h3 {
    margin-bottom: 10px;
    font-size: 21px;
}

.hero-text,
.section-heading p,
.split-copy p,
.product-copy p,
.contact-copy p {
    color: #56645c;
    font-size: 17px;
}

.hero-text {
    max-width: 620px;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 24px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 900;
    line-height: 1;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
    color: #ffffff;
    background: var(--primary);
    box-shadow: 0 16px 30px rgba(18, 60, 44, 0.18);
}

.btn-primary:hover {
    background: #0f3024;
}

.btn-outline {
    color: var(--primary);
    background: #ffffff;
    border: 1px solid rgba(18, 60, 44, 0.16);
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 620px;
}

.hero-highlights div {
    padding: 18px;
    border: 1px solid rgba(18, 60, 44, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 14px 34px rgba(18, 60, 44, 0.08);
}

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

.hero-highlights strong {
    color: #101820;
    font-size: 20px;
}

.hero-highlights span {
    color: #647067;
    font-size: 13px;
}

.hero-media {
    position: relative;
    min-height: 520px;
}

.hero-media img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 34px;
    box-shadow: 0 28px 70px rgba(18, 60, 44, 0.22);
}

.hero-media::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 34px;
    background: linear-gradient(180deg, transparent 45%, rgba(18, 60, 44, 0.45));
    z-index: 1;
    pointer-events: none;
}

.media-badge {
    position: absolute;
    z-index: 2;
    width: 178px;
    padding: 16px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 20px;
    background: rgba(18, 60, 44, 0.86);
    box-shadow: 0 18px 40px rgba(18, 60, 44, 0.2);
    backdrop-filter: blur(12px);
}

.media-badge span {
    display: block;
    color: #ffffff;
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
}

.badge-top {
    top: 28px;
    left: -28px;
}

.badge-bottom {
    right: -18px;
    bottom: 36px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-heading.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.supply-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.supply-card,
.value-grid article,
.product-list article,
.faq-item,
.contact-form {
    border: 1px solid rgba(18, 60, 44, 0.09);
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(18, 60, 44, 0.07);
}

.supply-card {
    min-height: 245px;
    padding: 28px;
    border-radius: 26px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.supply-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 55px rgba(18, 60, 44, 0.1);
}

.card-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 24px;
    border-radius: 16px;
    background: #edf4ee;
    font-size: 24px;
}

.supply-card p,
.process-card p,
.product-list p,
.value-grid p,
.faq-answer p {
    margin-bottom: 0;
    color: #5f6c64;
}

.split-card {
    display: grid;
    grid-template-columns: 0.92fr 1fr;
    align-items: center;
    gap: 54px;
    padding: 34px;
    border: 1px solid rgba(18, 60, 44, 0.1);
    border-radius: 34px;
    background: linear-gradient(135deg, #ffffff, #f7f2e8);
    box-shadow: 0 24px 70px rgba(18, 60, 44, 0.09);
}

.split-copy {
    padding: 22px;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    color: #21352a;
    font-weight: 800;
}

.check-list li {
    position: relative;
    padding-left: 34px;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -2px;
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    color: #ffffff;
    border-radius: 50%;
    background: var(--primary);
    font-size: 13px;
}

.split-image img,
.product-photo img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 28px;
}

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

.process-card {
    padding: 32px;
    color: #ffffff;
    border-radius: 26px;
    background: var(--primary);
    box-shadow: 0 18px 45px rgba(18, 60, 44, 0.16);
}

.process-card span {
    display: inline-block;
    margin-bottom: 28px;
    color: #f7d996;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.process-card h3,
.process-card p {
    color: #ffffff;
}

.product-grid {
    display: grid;
    grid-template-columns: 0.82fr 1fr;
    grid-template-areas:
        "copy photo"
        "list photo";
    align-items: center;
    gap: 24px;
}

.product-copy {
    grid-area: copy;
}

.product-photo {
    grid-area: photo;
}

.product-list {
    grid-area: list;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.product-list article {
    padding: 24px;
    border-radius: 22px;
}

.product-list span {
    display: block;
    margin-bottom: 18px;
    font-size: 26px;
}

.text-link {
    display: inline-flex;
    color: var(--primary);
    font-weight: 900;
    border-bottom: 2px solid var(--accent);
}

.muted-section {
    background: #f7f2e8;
}

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

.value-grid article {
    padding: 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
}

.value-grid span {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    margin-bottom: 18px;
    color: #ffffff;
    border-radius: 50%;
    background: var(--primary);
    font-weight: 900;
}

.faq-wrap {
    max-width: 820px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    overflow: hidden;
    border-radius: 18px;
}

.faq-item button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 24px;
    border: 0;
    color: var(--primary);
    background: #ffffff;
    cursor: pointer;
    font-weight: 900;
    text-align: left;
}

.faq-item button span {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #edf4ee;
}

.faq-answer {
    display: none;
    padding: 0 24px 22px;
}

.faq-item.is-open .faq-answer {
    display: block;
}

.faq-item.is-open button span {
    transform: rotate(45deg);
}

.contact-section {
    padding-bottom: 70px;
}

.contact-card {
    display: grid;
    grid-template-columns: 0.86fr 1fr;
    gap: 34px;
    padding: 42px;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(18, 60, 44, 0.96), rgba(47, 125, 79, 0.94)),
        url("images/hero-farm-supplies.jpg") center/cover;
    box-shadow: 0 28px 70px rgba(18, 60, 44, 0.2);
}

.contact-copy,
.contact-copy h2,
.contact-copy p {
    color: #ffffff;
}

.contact-copy .eyebrow {
    color: #f7d996;
}

.contact-details {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.contact-details a,
.contact-details div {
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    font-weight: 900;
}

.contact-details span {
    display: block;
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-form {
    padding: 26px;
    border-radius: 26px;
}

.contact-form label {
    display: grid;
    gap: 7px;
    margin-bottom: 14px;
    color: #24362c;
    font-size: 13px;
    font-weight: 900;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(18, 60, 44, 0.16);
    border-radius: 14px;
    padding: 14px 15px;
    color: #17231c;
    background: #fffdf7;
    outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(47, 125, 79, 0.1);
}

.full-btn {
    width: 100%;
}

.form-note {
    margin: 12px 0 0;
    color: #66736c;
    font-size: 13px;
}

.form-note.success {
    color: var(--primary);
    font-weight: 800;
}

.site-footer {
    padding: 28px 0 40px;
    color: #5f6c64;
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-wrap a {
    color: var(--primary);
    font-weight: 900;
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 40;
    padding: 14px 20px;
    color: #ffffff;
    border-radius: 999px;
    background: #20bf55;
    box-shadow: 0 18px 40px rgba(32, 191, 85, 0.28);
    font-weight: 900;
}

.reveal,
.reveal-group > * {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible,
.reveal-group > *.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .site-nav {
        position: fixed;
        top: 76px;
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 18px;
        border: 1px solid rgba(18, 60, 44, 0.12);
        border-radius: 22px;
        background: #ffffff;
        box-shadow: 0 22px 60px rgba(18, 60, 44, 0.16);
    }

    body.nav-open .site-nav {
        display: flex;
    }

    .site-nav a {
        padding: 12px 14px;
    }

    .nav-toggle {
        display: block;
    }

    .hero-grid,
    .split-card,
    .product-grid,
    .contact-card {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-areas:
            "copy"
            "photo"
            "list";
    }

    .supply-grid,
    .value-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-media,
    .hero-media img {
        min-height: auto;
        height: 430px;
    }
}

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

    .section-pad,
    .section-pad.compact {
        padding: 54px 0;
    }

    .hero-grid {
        gap: 38px;
    }

    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 34px;
    }

    .hero-actions,
    .footer-wrap {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-highlights,
    .supply-grid,
    .process-grid,
    .product-list,
    .value-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-media img,
    .split-image img,
    .product-photo img {
        height: 320px;
        min-height: 320px;
    }

    .media-badge {
        width: 145px;
        font-size: 13px;
    }

    .badge-top {
        left: 12px;
    }

    .badge-bottom {
        right: 12px;
    }

    .split-card,
    .contact-card {
        padding: 20px;
        border-radius: 26px;
    }

    .split-copy {
        padding: 4px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        padding: 12px 16px;
    }
}
