*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --ink:      #1c2418;
    --soil:     #3e3428;
    --moss:     #3d6642;
    --sage:     #7fa86e;
    --mist:     #dce9d4;
    --cream:    #f2ede3;
    --paper:    #fdfbf6;
    --mid:      #b5a486;
    --accent:   #c05a22;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Jost', sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
}

/* subtle paper grain */
body::after {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.022'/%3E%3C/svg%3E");
    background-size: 160px;
    pointer-events: none;
    z-index: 9999;
}

.c {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 64px;
}

.eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 0.67rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 10px;
}
.eyebrow::before {
    content: '';
    width: 18px; height: 1px;
    background: currentColor;
    flex-shrink: 0;
}

.label {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mid);
}

h1, h2, h3 { font-family: 'Lora', serif; font-weight: 600; }
em { font-style: italic; color: var(--moss); }

.body { font-size: 0.97rem; color: var(--soil); opacity: 0.82; line-height: 1.85; }
.body + .body { margin-top: 14px; }

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0 26px;
}
.logo {
    font-family: 'Lora', serif;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--moss);
}
.nav-links { display: flex; gap: 40px; }
.nav-links a {
    font-family: 'DM Mono', monospace;
    font-size: 0.67rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--soil);
    text-decoration: none;
    opacity: 0.5;
    transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }

.nav-shell {
    border-bottom: 1px solid var(--mist);
}

.hero { padding: 80px 0 0; }

.hero-grid {
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 72px;
    align-items: center;
    padding-bottom: 72px;
}

h1.hero-title {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    line-height: 1.14;
    color: var(--ink);
    margin: 20px 0 22px;
}

.hero-desc {
    font-size: 1.02rem;
    color: var(--soil);
    opacity: 0.75;
    line-height: 1.82;
    margin-bottom: 40px;
    max-width: 380px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--moss);
    color: #fff;
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 2px;
    transition: background 0.22s, transform 0.15s;
}
.btn:hover { background: var(--ink); transform: translateY(-1px); }
.btn .arr { transition: transform 0.2s; }
.btn:hover .arr { transform: translateX(4px); }

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.stat {
    padding-left: 20px;
    border-left: 2px solid var(--mist);
}
.stat-num {
    font-family: 'Lora', serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--moss);
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}
.stat-desc {
    font-family: 'DM Mono', monospace;
    font-size: 0.63rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--soil);
    opacity: 0.55;
    line-height: 1.55;
}
.stat-source {
    font-family: 'DM Mono', monospace;
    font-size: 0.55rem;
    color: var(--mid);
    margin-top: 6px;
    letter-spacing: 0.02em;
}

.hero-strip {
    background: var(--cream);
    height: 300px;
    overflow: hidden;
    position: relative;
}
.hero-strip svg {
    width: 100%; height: 100%;
}

.section { padding: 104px 0; }
.section-md { padding: 80px 0; }

.col-55-45 {
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 80px;
    align-items: start;
}
.col-50-50 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.pull-quote {
    font-family: 'Lora', serif;
    font-size: 1.18rem;
    font-style: italic;
    color: var(--moss);
    line-height: 1.7;
    padding-left: 22px;
    border-left: 2px solid var(--sage);
    margin-bottom: 28px;
}

.steps-wrap { margin-top: 56px; }
.step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0 36px;
    padding: 36px 0;
    position: relative;
}
.step + .step::before {
    content: '';
    position: absolute;
    top: 0; left: 80px; right: 0;
    height: 1px;
    background: var(--mist);
}
.step-num {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    color: var(--mid);
    padding-top: 5px;
    line-height: 1;
}
.step-body h3 {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 12px;
}
.step-body p {
    font-size: 0.95rem;
    color: var(--soil);
    opacity: 0.78;
    line-height: 1.8;
}

.project-band {
    background: var(--ink);
    padding: 96px 0;
}
.project-band .label { color: var(--sage); opacity: 0.65; }
.project-band h2 { color: var(--paper); margin: 14px 0 22px; font-size: clamp(1.7rem, 2.5vw, 2.1rem); line-height: 1.28; }
.project-band h2 em { color: var(--sage); }
.project-band .body { color: #c8c0b0; opacity: 0.82; }

.project-bullets {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bullet {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    color: var(--sage);
    display: flex;
    align-items: center;
    gap: 12px;
}
.bullet::before {
    content: '';
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--sage);
    opacity: 0.7;
    flex-shrink: 0;
}

.ingredients { display: flex; flex-direction: column; gap: 0; }
.ingredient {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 30px 0;
}
.ingredient + .ingredient {
    border-top: 1px solid rgba(255,255,255,0.08);
}
.ingredient-icon {
    font-size: 1.5rem;
    line-height: 1;
    margin-top: 2px;
    flex-shrink: 0;
}
.ingredient-name {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #f0ede6;
    margin-bottom: 5px;
}
.ingredient-sci {
    font-family: 'DM Mono', monospace;
    font-size: 0.63rem;
    letter-spacing: 0.06em;
    color: var(--sage);
    opacity: 0.65;
    line-height: 1.6;
}

.contact-intro {
    font-size: 0.98rem;
    color: var(--soil);
    opacity: 0.78;
    line-height: 1.82;
    margin-top: 18px;
    max-width: 340px;
}

.channels { margin-top: 48px; }
.channel {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 16px 0;
}
.channel + .channel { border-top: 1px solid var(--mist); }
.channel:first-child { border-top: 1px solid var(--mist); }
.ch-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.64rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mid);
}
.ch-link {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: var(--moss);
    text-decoration: none;
    transition: color 0.2s;
}
.ch-link:hover { color: var(--accent); }

.contact-card {
    background: var(--cream);
    padding: 44px 40px;
    position: relative;
}
.contact-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--moss);
}
.contact-card blockquote {
    font-family: 'Lora', serif;
    font-size: 1.08rem;
    font-style: italic;
    color: var(--soil);
    line-height: 1.72;
    margin-bottom: 24px;
}
.contact-note {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.06em;
    color: var(--mid);
    line-height: 1.75;
}

footer { background: var(--soil); padding: 52px 0 36px; }
.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    flex-wrap: wrap;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ddd8cc;
}
.footer-tag {
    font-size: 0.82rem;
    color: var(--mid);
    margin-top: 5px;
    opacity: 0.7;
}
.footer-links { display: flex; gap: 32px; }
.footer-links a {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mid);
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.2s;
}
.footer-links a:hover { opacity: 1; }
.footer-copy {
    margin-top: 24px;
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.07em;
    color: var(--mid);
    opacity: 0.4;
}

@media (max-width: 820px) {
    .c { padding: 0 28px; }
    .hero-grid, .col-55-45, .col-50-50 { grid-template-columns: 1fr; gap: 48px; }
    .hero-strip { height: 220px; }
    .hero-stats { flex-direction: row; gap: 32px; }
}
@media (max-width: 540px) {
    .c { padding: 0 20px; }
    .hero-stats { flex-direction: column; }
}