:root {
    --cream: #f5efe3;
    --paper: #fffaf1;
    --green: #233d2b;
    --green-2: #33553b;
    --gold: #b18a43;
    --charcoal: #26231f;
    --muted: #777064;
    --line: rgba(38,35,31,.15);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--paper);
    color: var(--charcoal);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.65;
}

h1, h2, h3, .brand {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

h1 { font-size: clamp(3rem, 7vw, 6.7rem); line-height: 1; margin: 0 0 1rem; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.15; margin: 0 0 1.2rem; }
h3 { font-size: 1.45rem; margin-bottom: .4rem; }
p { margin-top: 0; }

a { color: inherit; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    background: rgba(255,250,241,.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
}

.brand {
    display: inline-flex;
    gap: .7rem;
    align-items: center;
    text-decoration: none;
    letter-spacing: .08em;
    font-size: 1rem;
}

.brand-mark { filter: sepia(1); }

.site-nav { display: flex; gap: 1.45rem; align-items: center; }
.site-nav a {
    font-size: .84rem;
    text-decoration: none;
    padding: .6rem 0;
    border-bottom: 1px solid transparent;
}
.site-nav a:hover, .site-nav a.active { border-color: var(--gold); }

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    font-size: 1.6rem;
}

.hero {
    min-height: 74vh;
    display: grid;
    place-items: center;
    text-align: center;
    color: white;
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-home { background-image: url("/static/images/hero.png"); }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(20,30,21,.25), rgba(20,30,21,.58));
}
.hero-content { position: relative; z-index: 1; max-width: 900px; padding: 3rem 1.5rem; }
.hero-subtitle { font-family: Georgia, serif; font-size: 1.25rem; letter-spacing: .22em; text-transform: uppercase; }

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .24em;
    font-size: .76rem;
    font-weight: 700;
    color: #f3dfb1;
}
.eyebrow.dark { color: var(--gold); }

.button {
    display: inline-block;
    padding: .85rem 1.25rem;
    border: 1px solid var(--green);
    background: var(--green);
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .72rem;
}
.button-light { background: rgba(255,255,255,.12); border-color: white; }

.section {
    padding: 6rem 7vw;
    text-align: center;
}

.intro { max-width: 1300px; margin: auto; }
.lead { max-width: 820px; margin: 0 auto 3rem; font-size: 1.15rem; color: var(--muted); }

.three-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}
.story-card { text-decoration: none; }
.story-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.story-card p { color: var(--muted); }

.collections { background: var(--cream); }
.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 2.5rem auto 0;
}
.collection-card {
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    color: white;
    text-decoration: none;
    background-position: center;
    background-size: cover;
    position: relative;
}
.collection-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 35%, rgba(20,30,21,.78));
}
.collection-card span { position: relative; z-index: 1; font-family: Georgia, serif; font-size: 1.7rem; }
.tea-card { background-image: url("/static/images/matcha.png"); }
.art-card { background-image: url("/static/images/minori-feature.png"); }
.elephant-card { background-image: url("/static/images/elephants.png"); }

.values-band {
    padding: 5rem 7vw;
    background: var(--green);
    color: white;
    text-align: center;
}
.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    max-width: 1200px;
    margin: 2rem auto 0;
}
.value-grid div { padding: 1rem; }
.value-grid strong, .value-grid span { display: block; }
.value-grid strong { font-family: Georgia, serif; font-size: 1.15rem; margin-bottom: .5rem; }
.value-grid span { font-size: .86rem; color: #d8e0d9; }

.impact-quote {
    min-height: 340px;
    display: grid;
    place-items: center;
    padding: 4rem;
    background: url("/static/images/elephants.png") center/cover;
    color: white;
    text-align: center;
}
.impact-quote p {
    font-family: Georgia, serif;
    font-size: clamp(1.7rem, 4vw, 3.2rem);
    max-width: 1000px;
    text-shadow: 0 2px 20px rgba(0,0,0,.55);
}

.page-hero {
    min-height: 52vh;
    padding: 7rem 7vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
    background-size: cover;
    background-position: center;
}
.page-hero.narrow {
    min-height: auto;
    color: var(--charcoal);
    background: var(--cream);
    text-align: center;
    justify-content: center;
}
.page-hero.narrow p { max-width: 760px; margin-left: auto; margin-right: auto; }
.tea-page-hero { background-image: linear-gradient(rgba(20,30,21,.25), rgba(20,30,21,.58)), url("/static/images/tea-hero.png"); }
.art-page-hero { background-image: linear-gradient(rgba(20,30,21,.18), rgba(20,30,21,.58)), url("/static/images/minori-feature.png"); }
.elephant-page-hero { background-image: linear-gradient(rgba(20,30,21,.25), rgba(20,30,21,.62)), url("/static/images/elephants.png"); }

.split-section, .artist-feature, .contact-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 6rem 8vw;
    max-width: 1400px;
    margin: auto;
}
.split-section img, .artist-feature img { width: 100%; }

.principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
}
.principles > div { background: var(--cream); padding: 4rem; }
.principles span { color: var(--gold); }

.country-list { padding: 2rem 7vw 6rem; }
.country-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 1px solid var(--line);
}
.country-row.reverse img { order: -1; }
.country-row img { width: 100%; }
.coming-soon {
    display: inline-block;
    margin-top: .75rem;
    padding: .45rem .7rem;
    background: var(--cream);
    color: var(--green);
    font-size: .8rem;
}
.note-band, .impact-banner {
    padding: 3rem 7vw;
    background: var(--green);
    color: white;
    text-align: center;
}
.note-band p, .impact-banner p { max-width: 900px; margin: auto; }

.artist-feature { align-items: start; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 0 8vw 7rem;
}
.gallery-grid img { width: 100%; }

.clean-list { padding-left: 1.2rem; }
.clean-list li { margin: .6rem 0; }

.contact-panel {
    align-items: start;
}
.contact-details {
    padding: 2rem;
    background: var(--cream);
}

.site-footer {
    display: grid;
    grid-template-columns: 2fr 1fr auto;
    gap: 2rem;
    align-items: start;
    padding: 3.5rem 5vw;
    background: #183020;
    color: white;
}
.footer-links { display: grid; gap: .5rem; }
.footer-links a { text-decoration: none; color: #dfe8df; }
.footer-brand { color: white; }
.copyright { font-size: .78rem; color: #b7c6b8; }

@media (max-width: 900px) {
    .menu-toggle { display: block; }
    .site-nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 82px;
        padding: 1rem 5vw 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        background: var(--paper);
        border-bottom: 1px solid var(--line);
    }
    .site-nav.open { display: flex; }
    .three-cards, .collection-grid, .value-grid, .principles, .gallery-grid {
        grid-template-columns: 1fr;
    }
    .split-section, .artist-feature, .contact-panel, .country-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .country-row.reverse img { order: 0; }
    .site-footer { grid-template-columns: 1fr; }
    .collection-card { min-height: 320px; }
}
