:root {
    --bg: #fcfbf7;
    --surface: #ffffff;
    --surface-strong: #f4f1ea;
    --text: #1f2937;
    --muted: #5b6778;
    --accent: #b45505;
    --accent-soft: #f5e5d4;
    --border: #e3e3dc;
    --shadow: 0 20px 45px rgba(20, 32, 57, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
}

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

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

button,
.button {
    font: inherit;
}

.page-shell {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text);
}

.brand img {
    width: 48px;
    height: auto;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: flex-end;
}

.site-nav a {
    color: var(--muted);
    font-weight: 600;
    transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--text);
}

.hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('images/hero-garlic.jpg') center/cover no-repeat;
    margin-bottom: 2rem;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 12, 0.28), rgba(2, 6, 12, 0.72));
}

.hero-copy {
    position: relative;
    z-index: 1;
    max-width: 720px;
    padding: 5rem 1rem;
    color: white;
}

.hero .eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.82);
}

.hero h1 {
    margin: 0;
    font-size: clamp(2.9rem, 4vw, 4.5rem);
    line-height: 1.05;
}

.hero p {
    margin: 1.6rem auto 2rem;
    max-width: 650px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1.6rem;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

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

.button.primary {
    color: white;
    background: var(--accent);
    box-shadow: 0 18px 40px rgba(180, 85, 5, 0.22);
}

.button.secondary {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 2rem;
    align-items: start;
}

.contact-info,
.form-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.contact-info h3,
.form-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.contact-info p {
    margin: 0 0 1.25rem;
    color: var(--muted);
    line-height: 1.8;
}

.form-field {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.form-field span {
    font-weight: 600;
    color: var(--text);
}

input,
textarea {
    width: 100%;
    border: 1px solid #d6d0c7;
    border-radius: 16px;
    padding: 1rem 1.1rem;
    font: inherit;
    color: var(--text);
    background: #fbfaf6;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: rgba(180, 85, 5, 0.35);
    box-shadow: 0 0 0 4px rgba(180, 85, 5, 0.1);
}

.section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}

.section-subtitle {
    display: inline-block;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 0.82rem;
    color: var(--accent);
    font-weight: 800;
}

.section h2 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3.25rem);
    line-height: 1.05;
}

.section p {
    margin-top: 1rem;
    color: var(--muted);
    font-size: 1rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 0;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, border-color 0.2s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(180, 85, 5, 0.18);
}

.product-image {
    width: 100%;
    height: 260px;
    background: var(--surface-strong);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-card h3 {
    margin: 0 0 0.85rem;
    font-size: 1.35rem;
}

.product-card p {
    margin: 0 0 1.25rem;
    color: var(--muted);
    line-height: 1.8;
    flex-grow: 1;
}

.product-link {
    color: var(--accent);
    font-weight: 700;
    transition: color 0.2s ease;
    align-self: flex-start;
}

.product-link:hover {
    color: #8a3f04;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.feature {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.feature h3 {
    margin: 0 0 0.85rem;
    font-size: 1.25rem;
}

.feature p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.cta-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: linear-gradient(135deg, #fdf2e8 0%, #fff8f2 100%);
    border-radius: 28px;
    padding: 2rem 2.2rem;
    box-shadow: var(--shadow);
}

.cta-strip h2 {
    margin: 0;
    font-size: clamp(1.6rem, 2.2vw, 2.3rem);
}

.cta-strip p {
    margin: 0.85rem 0 0;
    color: var(--muted);
    max-width: 520px;
}

.site-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: center;
    padding: 2rem 0 3rem;
    color: var(--muted);
    border-top: 1px solid var(--border);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 220px;
}

.footer-brand img {
    width: 44px;
    height: auto;
}

.footer-brand p {
    margin: 0;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.footer-links a {
    color: var(--muted);
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--text);
}

@media (max-width: 980px) {
    .cards-grid,
    .features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 720px) {
    .page-shell {
        padding: 0 1rem;
    }

    .hero {
        min-height: 60vh;
    }

    .hero-copy {
        padding: 4rem 0;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .cards-grid,
    .features {
        grid-template-columns: 1fr;
    }

    .cta-strip {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .site-nav {
        justify-content: center;
        width: 100%;
    }

    .footer-brand {
        flex-direction: column;
        align-items: flex-start;
    }
}
