:root {
    --green-950: #0c2419;
    --green-900: #123523;
    --green-800: #173d2b;
    --green-700: #24543b;
    --green-500: #638b55;
    --cream: #f5f0e6;
    --gold: #c7a65c;
    --ink: #17221b;
    --muted: #69726c;
    --white: #ffffff;
    --border: rgba(23, 61, 43, .12);
    --shadow: 0 20px 60px rgba(13, 36, 25, .10);
    --radius: 22px;
    --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: "DM Sans", Arial, sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.65;
    overflow-x: hidden;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

/* Header */
.site-header {
    position: absolute;
    z-index: 20;
    inset: 0 0 auto;
    padding: 18px 0;
    color: #fff;
    background: linear-gradient(to bottom, rgba(8,24,16,.72), transparent);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    padding: 0px;
    box-shadow: 0 5px 20px rgba(0,0,0,.12);
}
.brand-text { display: grid; line-height: 1.1; }
.brand-text strong { font-size: 15px; letter-spacing: 2px; }
.brand-text small {
    margin-top: 5px;
    color: rgba(255,255,255,.72);
    font-size: 8px;
    letter-spacing: 2.1px;
}
.main-nav { display: flex; align-items: center; gap: 26px; font-size: 14px; font-weight: 600; }
.main-nav > a:not(.nav-cta) { opacity: .9; transition: opacity .2s ease; }
.main-nav > a:not(.nav-cta):hover { opacity: 1; }
.nav-cta {
    padding: 11px 18px;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 999px;
    transition: .2s ease;
}
.nav-cta:hover { background: #fff; color: var(--green-900); }
.menu-toggle {
    display: none;
    width: 44px; height: 44px;
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}
.menu-toggle span { display: block; width: 19px; height: 2px; margin: 4px auto; background: #fff; }

/* Hero */
.hero {
    position: relative;
    min-height: min(900px, 94vh);
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    background: var(--green-950);
}
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
    background:
        linear-gradient(90deg, rgba(5,22,14,.84) 0%, rgba(8,28,18,.58) 40%, rgba(8,28,18,.16) 75%),
        linear-gradient(0deg, rgba(5,18,12,.50), transparent 45%);
}
.hero-content { position: relative; z-index: 2; padding-top: 110px; }
.eyebrow, .section-kicker { color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: 2.7px; }
.hero h1 {
    max-width: 760px;
    margin: 14px 0 20px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(48px, 7vw, 88px);
    line-height: .98;
    letter-spacing: -2px;
}
.hero h1 em { color: #e8d8aa; font-style: normal; }
.hero-description { max-width: 600px; color: rgba(255,255,255,.84); font-size: 17px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 18px;
    min-height: 50px; padding: 13px 21px; border-radius: 999px;
    font-weight: 700; font-size: 13px;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--green-950); background: #e8d8aa; box-shadow: 0 10px 30px rgba(0,0,0,.16); }
.btn-light {
    color: #fff; border: 1px solid rgba(255,255,255,.45);
    background: rgba(255,255,255,.08); backdrop-filter: blur(8px);
}
.btn-outline { color: var(--green-900); border: 1px solid rgba(18,53,35,.25); background: #fff; }
.hero-trust { display: flex; flex-wrap: wrap; margin-top: 58px; }
.hero-trust div { min-width: 150px; padding: 0 25px; border-left: 1px solid rgba(255,255,255,.25); }
.hero-trust div:first-child { padding-left: 0; border-left: 0; }
.hero-trust strong, .hero-trust span { display: block; }
.hero-trust strong { color: #e8d8aa; font-size: 13px; letter-spacing: 1.5px; }
.hero-trust span { margin-top: 3px; color: rgba(255,255,255,.68); font-size: 11px; }

/* General */
.section { padding: 105px 0; }
.intro { background: var(--cream); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
h2 {
    font-family: "Playfair Display", Georgia, serif;
    color: var(--green-900);
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.08;
    letter-spacing: -1.2px;
}
.intro h2 { max-width: 550px; margin-top: 10px; }
.intro-copy { padding-top: 10px; color: #58625c; font-size: 16px; }
.intro-copy p + p { margin-top: 18px; }

/* Products */
.products { background: #fff; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 50px; margin-bottom: 48px; }
.section-heading h2 { margin-top: 10px; }
.section-heading > p { max-width: 360px; color: var(--muted); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-card {
    min-height: 230px; padding: 30px;
    border: 1px solid var(--border); border-radius: var(--radius);
    background: #fff; box-shadow: 0 8px 30px rgba(20,50,34,.035);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product-card:hover { transform: translateY(-6px); border-color: rgba(23,61,43,.25); box-shadow: var(--shadow); }
.product-icon {
    display: grid; place-items: center; width: 48px; height: 48px;
    margin-bottom: 28px; border-radius: 14px; color: var(--green-800);
    background: var(--cream); font-size: 21px;
}
.product-card h3 { margin-bottom: 9px; color: var(--green-900); font-size: 19px; }
.product-card p { color: var(--muted); font-size: 14px; }

/* Values */
.values { background: var(--cream); }
.values-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 75px; align-items: center; }
.values-image { min-height: 540px; overflow: hidden; border-radius: 28px; }
.values-image img { height: 100%; object-fit: cover; object-position: center; }
.values-content h2 { margin: 10px 0 20px; }
.values-content > p { max-width: 530px; color: var(--muted); }
.check-list { display: grid; gap: 20px; margin-top: 32px; list-style: none; }
.check-list li { display: flex; gap: 14px; }
.check-list li > span {
    display: grid; place-items: center; flex: 0 0 30px; height: 30px;
    border-radius: 50%; color: #fff; background: var(--green-800); font-size: 13px;
}
.check-list strong, .check-list small { display: block; }
.check-list strong { color: var(--green-900); font-size: 14px; }
.check-list small { margin-top: 3px; color: var(--muted); font-size: 13px; }

/* Map Details */
.map-link {
    display: inline-block;
    margin-top: 10px;
    color: inherit;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

    .map-link:hover {
        opacity: 0.75;
        text-decoration: underline;
    }

/* QuickGroc */
.quickgroc { background: #fff; }
.quickgroc-inner {
    display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px;
    align-items: center; padding: 65px; border-radius: 30px;
    background: var(--cream);
}
.quickgroc-copy h2 { margin: 10px 0 17px; }
.quickgroc-copy > p { max-width: 600px; color: var(--muted); }
.order-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.quickgroc-note { margin-top: 20px; font-size: 12px; }
.quickgroc-card {
    min-height: 300px; display: flex; flex-direction: column; justify-content: center; align-items: center;
    padding: 28px; text-align: center; color: #fff; border-radius: 26px;
    background: linear-gradient(145deg, var(--green-900), var(--green-950));
    box-shadow: var(--shadow);
}
.quickgroc-logo-wrap {
    width: min(100%, 330px); margin-bottom: 20px; padding: 10px 16px;
    border-radius: 18px; background: #fff;
}
.quickgroc-logo { width: 100%; height: auto; object-fit: contain; }
.quickgroc-card span { font-size: 10px; letter-spacing: 2px; }
.quickgroc-card strong { margin-top: 7px; font-family: "Playfair Display", serif; font-size: 25px; }
.quickgroc-card small { max-width: 280px; margin-top: 10px; color: rgba(255,255,255,.66); font-size: 11px; }

/* CTA */
.cta { padding: 68px 0; color: #fff; background: var(--green-900); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta h2 { margin-top: 7px; color: #fff; font-size: clamp(34px,4vw,52px); }

/* Contact */
.contact { background: #fff; }
.contact-heading { max-width: 780px; margin-bottom: 48px; }
.contact-heading h2 { margin: 10px 0 16px; }
.contact-heading > p:last-child { color: var(--muted); }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.contact-card {
    min-height: 190px; padding: 26px; border: 1px solid var(--border);
    border-radius: 18px; background: #fbfaf7;
}
.contact-label { display: block; margin-bottom: 12px; color: var(--green-700); font-size: 10px; font-weight: 700; letter-spacing: 1.8px; }
.contact-card strong, .contact-card > a { display: block; color: var(--green-900); font-size: 16px; font-weight: 700; }
.contact-card > a:hover { text-decoration: underline; }
.contact-card p { margin-top: 8px; color: var(--muted); font-size: 12px; }

/* Footer */
.site-footer { color: rgba(255,255,255,.72); background: var(--green-950); }
.footer-top { display: grid; grid-template-columns: 1.5fr .7fr 1fr; gap: 70px; padding: 65px 0; }
.brand-footer .brand-logo { width: 56px; height: 56px; }
.footer-brand > p { max-width: 360px; margin-top: 18px; font-size: 13px; }
.footer-column { display: grid; align-content: start; gap: 9px; font-size: 13px; }
.footer-column h3 { margin-bottom: 7px; color: #fff; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; }
.footer-column a:hover { color: #fff; }
.legal-bar {
    display: flex; justify-content: space-between; gap: 30px;
    padding: 20px 0; border-top: 1px solid rgba(255,255,255,.12); font-size: 11px;
}
.legal-bar strong { color: rgba(255,255,255,.88); }

/* Responsive */
@media (max-width: 900px) {
    .main-nav {
        position: absolute; top: 76px; left: 24px; right: 24px;
        display: none; flex-direction: column; align-items: stretch; gap: 0;
        padding: 10px; border: 1px solid rgba(255,255,255,.15);
        border-radius: 18px; background: rgba(9,30,20,.96); backdrop-filter: blur(12px);
    }
    .main-nav.open { display: flex; }
    .main-nav a { padding: 13px 14px; }
    .nav-cta { text-align: center; margin-top: 6px; }
    .menu-toggle { display: block; }
    .intro-grid, .values-grid, .quickgroc-inner { grid-template-columns: 1fr; gap: 40px; }
    .section-heading { align-items: start; flex-direction: column; gap: 15px; }
    .product-grid, .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .values-image { min-height: 430px; }
    .quickgroc-inner { padding: 45px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .container { width: min(calc(100% - 32px), var(--container)); }
    .site-header { padding: 14px 0; }
    .brand-text strong { font-size: 13px; }
    .brand-logo { width: 46px; height: 46px; }
    .hero { min-height: 760px; }
    .hero-media img { object-position: 62% center; }
    .hero-overlay {
        background: linear-gradient(180deg, rgba(5,22,14,.76) 0%, rgba(5,22,14,.56) 45%, rgba(5,18,12,.90) 100%);
    }
    .hero-content { padding-top: 110px; padding-bottom: 50px; }
    .hero h1 { font-size: clamp(43px,14vw,64px); letter-spacing: -1.5px; }
    .hero-description { font-size: 15px; }
    .hero-trust { margin-top: 40px; }
    .hero-trust div { min-width: 33.33%; padding: 0 12px; }
    .hero-trust div:first-child { padding-left: 0; }
    .hero-trust span { font-size: 9px; }
    .section { padding: 72px 0; }
    .product-grid, .contact-grid, .footer-top { grid-template-columns: 1fr; }
    .product-card { min-height: auto; }
    .values-image { min-height: 340px; }
    .quickgroc-inner { padding: 32px 24px; }
    .quickgroc-card { min-height: 240px; }
    .cta { padding: 52px 0; }
    .cta-inner { align-items: start; flex-direction: column; }
    .legal-bar { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; }
}
