:root {
    --green: #183f2b;
    --green-2: #285b3c;
    --cream: #f4f1e8;
    --paper: #faf9f5;
    --orange: #c96f32;
    --ink: #172019;
    --muted: #69736c;
    --line: rgba(24,63,43,.15);
    --shadow: 0 20px 60px rgba(20,45,29,.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "DM Sans", sans-serif;
    line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
.container { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }

.site-header {
    position: absolute;
    z-index: 10;
    width: 100%;
    color: white;
}
.nav {
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,.2);
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark {
    width: 38px; height: 38px; display: grid; place-items: center;
    border: 1px solid rgba(255,255,255,.5); border-radius: 50%;
    font-size: 16px;
}
.brand strong, .brand small { display:block; line-height:1; letter-spacing:.16em; }
.brand strong { font-size: 14px; }
.brand small { margin-top: 5px; font-size: 8px; opacity:.7; }
nav { display:flex; gap: 34px; font-size: 14px; }
nav a { opacity:.85; transition:.2s; }
nav a:hover { opacity:1; }
.nav-button {
    border:1px solid rgba(255,255,255,.55); padding:11px 16px;
    border-radius:999px; font-size:13px;
}
.nav-button span, .button span { margin-left: 10px; }

.hero {
    min-height: 760px; position: relative; display:flex; align-items:center;
    color:#fff; overflow:hidden; background:#263b2c;
}
.hero-image {
    position:absolute; inset:0;
    background-image:url("https://images.unsplash.com/photo-1518977676601-b53f82aba655?auto=format&fit=crop&w=2200&q=90");
    background-size:cover; background-position:center;
    transform:scale(1.03);
}
.hero-overlay {
    position:absolute; inset:0;
    background:linear-gradient(90deg, rgba(12,28,19,.88) 0%, rgba(12,28,19,.58) 45%, rgba(12,28,19,.15) 100%);
}
.hero-content { position:relative; z-index:2; padding-top:70px; }
.eyebrow {
    display:flex; align-items:center; gap:10px; text-transform:uppercase;
    letter-spacing:.2em; font-size:11px; font-weight:700; opacity:.9;
}
.eyebrow span { width:28px; height:1px; background:currentColor; display:inline-block; }
.eyebrow.dark { color:var(--green); }
h1,h2,h3,p { margin-top:0; }
h1,h2 { font-family:"Playfair Display", serif; line-height:1.02; letter-spacing:-.035em; }
h1 { font-size:clamp(54px, 7vw, 92px); margin:26px 0; }
h2 { font-size:clamp(42px, 5vw, 68px); margin:18px 0 30px; }
em { color: #cf7a3b; font-style:italic; }
.hero-content > p { max-width:550px; font-size:18px; color:rgba(255,255,255,.82); }
.hero-actions { margin-top:38px; display:flex; align-items:center; gap:28px; }
.button {
    display:inline-flex; align-items:center; padding:15px 21px; border-radius:999px;
    font-size:14px; font-weight:700; transition:transform .2s, box-shadow .2s;
}
.button:hover { transform:translateY(-2px); box-shadow:0 12px 25px rgba(0,0,0,.15); }
.button-light { background:#fff; color:var(--green); }
.button-green { background:var(--green); color:#fff; }
.text-link { font-weight:600; font-size:14px; border-bottom:1px solid rgba(255,255,255,.6); padding-bottom:5px; }
.hero-note {
    position:absolute; right:5%; bottom:36px; z-index:2; border-left:1px solid rgba(255,255,255,.5);
    padding-left:18px; font-size:11px; text-transform:uppercase; letter-spacing:.12em;
}
.hero-note span,.hero-note strong { display:block; }
.hero-note span { opacity:.6; margin-bottom:4px; }

.section { padding:120px 0; }
.intro { background:var(--cream); }
.intro-grid { display:grid; grid-template-columns:1fr 1fr; gap:100px; }
.intro-copy { padding-top:35px; }
.intro-copy > p { font-size:18px; color:#4e5951; max-width:530px; }
.facts { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:45px; border-top:1px solid var(--line); padding-top:22px; }
.facts strong,.facts span { display:block; }
.facts strong { color:var(--orange); font-size:12px; margin-bottom:8px; }
.facts span { font-size:13px; font-weight:700; }

.products { background:var(--paper); }
.section-heading { display:flex; justify-content:space-between; align-items:end; margin-bottom:50px; }
.section-heading h2 { margin-bottom:0; }
.section-heading > p { color:var(--muted); text-align:right; font-size:14px; }
.product-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.product-card { background:#fff; border:1px solid rgba(24,63,43,.08); overflow:hidden; box-shadow:var(--shadow); transition:transform .25s; }
.product-card:hover { transform:translateY(-6px); }
.product-image { height:330px; position:relative; overflow:hidden; }
.product-image img { height:100%; object-fit:cover; transition:transform .5s; }
.product-card:hover .product-image img { transform:scale(1.05); }
.product-tag { position:absolute; top:18px; left:18px; background:#fff; color:var(--green); border-radius:999px; padding:8px 12px; font-size:10px; font-weight:800; text-transform:uppercase; letter-spacing:.08em; }
.product-body { padding:26px; }
.product-body h3 { font-family:"Playfair Display",serif; font-size:34px; margin-bottom:10px; }
.product-body p { color:var(--muted); font-size:14px; min-height:68px; }
.product-footer { display:flex; justify-content:space-between; align-items:center; padding-top:18px; border-top:1px solid var(--line); font-size:12px; font-weight:700; }
.product-footer a { color:var(--orange); }

.story { padding:0; background:var(--green); color:#fff; display:grid; grid-template-columns:1fr 1fr; }
.story-photo {
    min-height:680px;
    background:url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?auto=format&fit=crop&w=1500&q=85") center/cover;
}
.story-copy { padding:100px 9vw 90px 9vw; display:flex; flex-direction:column; justify-content:center; }
.story-copy h2 { margin-bottom:25px; }
.story-copy p { color:rgba(255,255,255,.72); max-width:510px; }
.story-copy .button { align-self:flex-start; margin-top:18px; }

.quote { background:var(--cream); text-align:center; padding:130px 0; }
.quote-mark { font-family:"Playfair Display",serif; font-size:100px; color:var(--orange); height:65px; line-height:1; }
blockquote { font-family:"Playfair Display",serif; font-size:clamp(32px,4.5vw,58px); line-height:1.12; margin:25px auto 40px; max-width:900px; }
blockquote em { color:var(--green); }
.quote-line { width:70px; height:2px; background:var(--green); margin:auto; }

.contact { background:var(--green); color:#fff; }
.contact-grid { display:grid; grid-template-columns:1fr 420px; gap:100px; align-items:center; }
.contact h2 { margin-bottom:20px; }
.contact-lead { color:rgba(255,255,255,.7); max-width:500px; font-size:17px; }
.contact-card { background:#f7f4ea; color:var(--ink); padding:34px; box-shadow:var(--shadow); }
.contact-row { display:grid; grid-template-columns:1fr 1.4fr; padding:20px 0; border-bottom:1px solid var(--line); }
.contact-row span { font-size:11px; text-transform:uppercase; letter-spacing:.14em; color:var(--muted); }
.contact-row strong { font-size:14px; line-height:1.5; }
.contact-button { display:flex; justify-content:space-between; margin-top:22px; background:var(--green); color:#fff; padding:15px 17px; font-size:13px; font-weight:700; }

.site-footer { background:#102a1d; color:#fff; padding:40px 0 24px; }
.footer-top { display:grid; grid-template-columns:1fr 1fr auto; align-items:center; gap:25px; padding-bottom:35px; }
.footer-address { font-size:12px; opacity:.6; }
.back-top { font-size:12px; border-bottom:1px solid rgba(255,255,255,.3); padding-bottom:4px; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.1); padding-top:20px; display:flex; justify-content:space-between; font-size:11px; opacity:.45; }

@media (max-width: 800px) {
    .container { width:min(100% - 32px, 620px); }
    .nav { height:72px; }
    nav { display:none; }
    .nav-button { padding:9px 12px; }
    .hero { min-height:690px; }
    .hero-overlay { background:linear-gradient(90deg,rgba(12,28,19,.9),rgba(12,28,19,.45)); }
    .hero-note { display:none; }
    .section { padding:80px 0; }
    .intro-grid,.story,.contact-grid { grid-template-columns:1fr; gap:45px; }
    .intro-copy { padding-top:0; }
    .facts { gap:8px; }
    .section-heading { display:block; }
    .section-heading > p { text-align:left; margin-top:22px; }
    .product-grid { grid-template-columns:1fr; }
    .product-image { height:280px; }
    .story-photo { min-height:420px; }
    .story-copy { padding:70px 24px; }
    .contact-grid { gap:40px; }
    .footer-top { grid-template-columns:1fr; }
    .footer-bottom { gap:15px; flex-direction:column; }
}
