:root { color-scheme: light; --green: #285c36; --ink: #1f2a22; --muted: #66716a; --paper: #f6f8f5; --line: #dce4dc; }
* { box-sizing: border-box; }
body { margin: 0; color: var(--ink); background: white; font: 16px/1.6 system-ui, sans-serif; }
a { color: var(--green); }
img { max-width: 100%; height: auto; }
.container { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }
.site-header { border-bottom: 1px solid var(--line); background: white; }
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.wordmark { color: var(--ink); font-size: 1.25rem; font-weight: 750; text-decoration: none; }
nav { display: flex; flex-wrap: wrap; gap: 1rem; }
nav a { text-decoration: none; }
main { min-height: 65vh; padding-block: 3rem; }
.placeholder-hero { padding: 4rem 0; border-bottom: 1px solid var(--line); }
h1 { font-size: clamp(2rem, 5vw, 4rem); line-height: 1.08; }
h2, h3 { line-height: 1.25; }
.eyebrow { color: var(--muted); font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; }
.lead { font-size: 1.2rem; }
.card-grid, .product-grid, .gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.25rem; }
.card, .product-card { display: block; padding: 1.25rem; border: 1px solid var(--line); border-radius: .5rem; color: inherit; text-decoration: none; }
.product-card img, .image-placeholder { display: block; width: 100%; aspect-ratio: 2/1; object-fit: cover; background: var(--paper); }
.image-placeholder { display: grid; place-items: center; color: var(--muted); }
.detail-image { width: 100%; max-height: 620px; object-fit: contain; background: var(--paper); }
.contact-list dt { font-weight: 700; }
.contact-list dd { margin: 0 0 1rem; }
.site-footer { padding-block: 2rem; background: var(--paper); border-top: 1px solid var(--line); }
@media (max-width: 760px) { .header-inner { align-items: flex-start; flex-direction: column; padding-block: 1rem; } }

