/*
   HHN Greenhouse Produce — Stylesheet
   Theme: Pristine Light Canvas & Deep Leaf Green
   Fonts: Outfit (Titles & Headings), Inter (Body copy)
*/

/* ──── CORE DESIGN SYSTEM TOKENS ──── */
:root {
    --bg-dark: #FFFFFF;          /* Pristine White Base Canvas */
    --bg-dark-card: #F7FAF7;     /* Soft green-tinted panel & header */

    --card-light: #FFFFFF;       /* Pure White Cards */
    --bg-light: #F0F5F0;         /* Very light green-slate for badges */

    --accent: #1E6B3C;           /* Standout Accent: Deep Leaf Green */
    --accent-hover: #16532E;     /* Highlight Accent: Darker Green */
    --accent-light: rgba(30, 107, 60, 0.08);

    --leaf: #6BA368;             /* Soft leaf highlight */
    --leaf-light: rgba(107, 163, 104, 0.14);

    --text-white: #122117;       /* Deep green-slate primary text */
    --text-muted-dark: #4B5D51;  /* Muted secondary text */

    --text-dark: #122117;
    --text-muted-light: #4B5D51;

    --border-dark: #E3EAE4;
    --border-light: #F0F5F0;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius-sm: 8px;
    --border-radius-md: 14px;
    --border-radius-lg: 24px;

    --shadow-premium: 0 10px 30px -10px rgba(18, 33, 23, 0.08);
    --shadow-hover: 0 15px 35px -12px rgba(30, 107, 60, 0.14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-dark);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--text-dark); line-height: 1.15; letter-spacing: -0.01em; }

/* ──── HEADER / NAV ──── */
.header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-dark);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.logo { display: flex; align-items: center; gap: 11px; font-family: var(--font-heading); }
.logo-mark {
    width: 40px; height: 40px; border-radius: 11px;
    background: linear-gradient(135deg, var(--accent) 0%, #2E8B50 100%);
    display: flex; align-items: center; justify-content: center; color: #fff;
    flex-shrink: 0;
}
.logo-mark svg { width: 22px; height: 22px; }
.logo-name { font-weight: 700; font-size: 1.02rem; color: var(--text-dark); line-height: 1.15; }
.logo-name span { display: block; font-size: 0.66rem; font-weight: 600; color: var(--accent); letter-spacing: 0.14em; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav-link { font-size: 0.92rem; font-weight: 500; color: var(--text-muted-dark); transition: var(--transition-smooth); padding: 6px 2px; border-bottom: 2px solid transparent; }
.nav-link:hover { color: var(--accent); }
.nav-link.active { color: var(--accent); font-weight: 600; border-bottom-color: var(--accent); }

.btn {
    display: inline-flex; align-items: center; gap: 9px;
    font-family: var(--font-heading); font-weight: 600; font-size: 0.92rem;
    padding: 12px 24px; border-radius: 999px; border: 1.6px solid transparent;
    cursor: pointer; transition: var(--transition-smooth);
}
.btn-solid { background: var(--accent); color: #fff; }
.btn-solid:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-outline { border-color: var(--accent); color: var(--accent); background: transparent; }
.btn-outline:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.nav-btn { padding: 10px 20px; font-size: 0.86rem; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text-dark); margin: 5px 0; border-radius: 2px; transition: var(--transition-smooth); }

/* ──── HERO ──── */
.hero {
    position: relative; overflow: hidden;
    background: linear-gradient(180deg, var(--bg-dark-card) 0%, #FFFFFF 100%);
    padding: 96px 0 88px;
}
.hero-leaf {
    position: absolute; right: -140px; top: -120px; width: 560px; height: 560px;
    opacity: 0.07; color: var(--accent); pointer-events: none;
}
.hero-inner { max-width: 720px; position: relative; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--accent); background: var(--accent-light);
    padding: 7px 15px; border-radius: 999px; margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.35rem); font-weight: 700; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p { font-size: 1.12rem; color: var(--text-muted-dark); max-width: 580px; margin-bottom: 34px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ──── SECTIONS ──── */
.section { padding: 84px 0; }
.section-tint { background: var(--bg-dark-card); }
.sec-head { max-width: 620px; margin-bottom: 46px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 { font-size: clamp(1.6rem, 3.4vw, 2.25rem); font-weight: 700; margin: 14px 0 12px; }
.sec-head p { color: var(--text-muted-dark); font-size: 1.02rem; }

/* value / feature cards */
.grid { display: grid; gap: 20px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
    background: var(--card-light); border: 1px solid var(--border-dark);
    border-radius: var(--border-radius-md); padding: 28px 24px;
    transition: var(--transition-smooth);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: rgba(30,107,60,0.25); }
.card-icon {
    width: 46px; height: 46px; border-radius: 12px;
    background: var(--accent-light); color: var(--accent);
    display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.card-icon svg { width: 23px; height: 23px; }
.card h3 { font-size: 1.08rem; font-weight: 600; margin-bottom: 9px; }
.card p { font-size: 0.9rem; color: var(--text-muted-light); }

/* produce cards */
.produce-card { text-align: left; }
.produce-tag {
    display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--accent);
    background: var(--leaf-light); border-radius: 999px; padding: 4px 12px; margin-bottom: 14px;
}

/* split band */
.band { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.band h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 14px 0 16px; }
.band p { color: var(--text-muted-dark); margin-bottom: 16px; }
.band-panel {
    background: linear-gradient(150deg, var(--accent) 0%, #2E8B50 90%);
    border-radius: var(--border-radius-lg); color: #fff;
    padding: 44px 38px; position: relative; overflow: hidden;
}
.band-panel svg.bg { position: absolute; right: -60px; bottom: -70px; width: 300px; height: 300px; opacity: 0.12; }
.band-panel h3 { color: #fff; font-size: 1.3rem; margin-bottom: 18px; }
.band-panel ul { list-style: none; }
.band-panel li { display: flex; gap: 12px; align-items: flex-start; padding: 9px 0; font-size: 0.95rem; }
.band-panel li svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: 3px; opacity: 0.9; }

/* checklist rows */
.check-list { list-style: none; margin-top: 8px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; padding: 8px 0; color: var(--text-muted-dark); }
.check-list li svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.check-list li b { color: var(--text-dark); font-weight: 600; }

/* steps */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 0; }
.step-num {
    font-family: var(--font-heading); font-weight: 700; font-size: 0.8rem;
    color: var(--accent); background: var(--accent-light);
    width: 34px; height: 34px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}

/* location */
.loc-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 44px; align-items: stretch; }
.loc-card { display: flex; flex-direction: column; gap: 4px; }
.loc-row { display: flex; gap: 14px; align-items: flex-start; padding: 13px 0; border-bottom: 1px solid var(--border-light); }
.loc-row:last-child { border-bottom: none; }
.loc-row svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.loc-row .k { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted-light); display: block; }
.loc-row .v { font-weight: 600; color: var(--text-dark); }
.map-panel {
    border-radius: var(--border-radius-lg); overflow: hidden; position: relative;
    background:
        radial-gradient(circle at 30% 40%, rgba(107,163,104,0.25) 0%, transparent 45%),
        radial-gradient(circle at 75% 65%, rgba(30,107,60,0.18) 0%, transparent 40%),
        linear-gradient(160deg, #EAF3EA 0%, #DCEBDD 100%);
    min-height: 340px; display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--border-dark);
}
.map-pin { text-align: center; }
.map-pin svg { width: 46px; height: 46px; color: var(--accent); margin: 0 auto 10px; }
.map-pin .place { font-family: var(--font-heading); font-weight: 700; font-size: 1.15rem; }
.map-pin .region { font-size: 0.85rem; color: var(--text-muted-dark); }

/* CTA band */
.cta-band {
    background: linear-gradient(140deg, var(--accent) 0%, #2E8B50 100%);
    border-radius: var(--border-radius-lg);
    padding: 58px 48px; text-align: center; color: #fff;
    position: relative; overflow: hidden;
}
.cta-band h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 12px; }
.cta-band p { opacity: 0.88; max-width: 520px; margin: 0 auto 28px; }
.btn-white { background: #fff; color: var(--accent); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -10px rgba(0,0,0,0.35); }

/* ──── FOOTER ──── */
.footer { background: #10231A; color: #C8D6CC; padding: 56px 0 30px; margin-top: 84px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 38px; }
.footer .logo-name { color: #fff; }
.footer .logo-name span { color: #7FBF8B; }
.footer p { font-size: 0.88rem; color: #9FB5A6; max-width: 320px; margin-top: 14px; }
.footer h4 { color: #fff; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.92rem; color: #C8D6CC; transition: var(--transition-smooth); }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 22px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 0.8rem; color: #869A8C; }

/* ──── PHOTO LAYOUTS ──── */
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: center; }
.hero-photo { border-radius: var(--border-radius-lg); overflow: hidden; border: 1px solid var(--border-dark); box-shadow: var(--shadow-premium); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 380px; display: block; }

.page-head { background: linear-gradient(180deg, var(--bg-dark-card) 0%, #FFFFFF 100%); padding: 70px 0 54px; }
.page-head h1 { font-size: clamp(1.9rem, 4.2vw, 2.8rem); font-weight: 700; margin-top: 16px; }
.page-head p { color: var(--text-muted-dark); font-size: 1.06rem; max-width: 640px; margin-top: 14px; }

.pcard { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.pcard .ph { height: 195px; overflow: hidden; }
.pcard .ph img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-smooth); }
.pcard:hover .ph img { transform: scale(1.05); }
.pcard .pc-body { padding: 20px 22px 24px; }

.img-panel { border-radius: var(--border-radius-lg); overflow: hidden; border: 1px solid var(--border-dark); box-shadow: var(--shadow-premium); }
.img-panel img { width: 100%; height: 100%; object-fit: cover; min-height: 330px; display: block; }

.season-note {
    background: var(--leaf-light); border: 1px solid rgba(107,163,104,0.35);
    border-radius: var(--border-radius-sm); padding: 13px 18px;
    font-size: 0.9rem; color: var(--text-muted-dark); margin-top: 26px;
}
.season-note b { color: var(--accent); }

@media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; gap: 34px; }
    .hero-photo img { min-height: 260px; }
}

/* reveal animation */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ──── RESPONSIVE ──── */
@media (max-width: 960px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .band, .loc-grid { grid-template-columns: 1fr; gap: 34px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
    .nav { position: fixed; inset: 74px 0 auto 0; background: #fff; flex-direction: column; align-items: flex-start; padding: 22px 24px 26px; gap: 16px; border-bottom: 1px solid var(--border-dark); transform: translateY(-130%); transition: var(--transition-smooth); box-shadow: var(--shadow-premium); }
    .nav.open { transform: translateY(0); }
    .nav-toggle { display: block; }
    .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .hero { padding: 68px 0 62px; }
    .section { padding: 60px 0; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-band { padding: 44px 26px; }
}
