/* Pure Soil — Figma szzlpw5H0l0Urj6gGNxVFJ visual system */
:root {
  --black: #121212;
  --cream: #f1eadb;
  --cream-dark: #e8dfc9;
  --on-light: #1f1914;
  --on-light-muted: #5c4f42;
  --on-dark: #f1eadb;
  --on-dark-muted: #b8afa0;
  --red: #d9342a;
  --wood: #5c4632;
  --soil-dark: #2b1d12;
  --border-dark: #3a3630;
  --border-light: #cbc0a8;
  --max: 1280px;
  --pad: clamp(1.25rem, 4vw, 5rem);
  --font-body: Inter, system-ui, sans-serif;
  --font-display: "Anton", Impact, sans-serif;
  --font-label: "Oswald", system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--black);
  color: var(--on-dark);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
.wrap { width: min(100% - 2 * var(--pad), var(--max)); margin-inline: auto; }

.skip {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.skip:focus {
  position: fixed; left: .75rem; top: .75rem; z-index: 200;
  width: auto; height: auto; clip: auto; margin: 0;
  padding: .6rem 1rem; background: var(--red); color: #fff; border-radius: 4px;
}

/* Nav */
.site-header {
  background: var(--black);
  border-bottom: 1px solid var(--border-dark);
  position: sticky; top: 0; z-index: 50;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 80px; padding: .75rem 0; position: relative;
}
.brand img { height: 52px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 2rem;
  font-family: var(--font-label); font-weight: 500;
  font-size: .875rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--on-dark);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--red); }
.nav-toggle {
  display: none; background: transparent; border: 0; color: var(--on-dark);
  font-size: 1.5rem; min-width: 44px; min-height: 44px; cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-label); font-weight: 600; font-size: 1rem;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 1rem 2rem; border-radius: 4px; border: 2px solid transparent;
  min-height: 48px; cursor: pointer; transition: filter .15s ease, background .15s ease;
}
.btn-primary { background: var(--red); color: var(--on-dark); border-color: var(--red); }
.btn-primary:hover { filter: brightness(1.08); }
.btn-outline {
  background: transparent; color: var(--on-dark);
  border-color: var(--on-dark);
}
.btn-outline:hover { background: rgba(241,234,219,.08); }
.btn-outline-dark {
  background: transparent; color: var(--on-light);
  border-color: var(--on-light);
}
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Eyebrow / display */
.eyebrow {
  display: inline-flex; margin: 0;
  font-family: var(--font-label); font-weight: 500; font-size: .8125rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--red);
  border: 1.5px solid var(--red); padding: .45rem .9rem; border-radius: 3px;
}
.eyebrow-plain {
  border: 0; padding: 0; letter-spacing: .18em;
}
.display {
  font-family: var(--font-display); font-weight: 400;
  line-height: .96; letter-spacing: .01em; text-transform: uppercase;
  margin: 0;
}
.display-xl { font-size: clamp(2.4rem, 6vw, 4.75rem); }
.display-lg { font-size: clamp(2rem, 4.5vw, 2.875rem); line-height: 1.04; }
.subhead {
  font-family: var(--font-label); font-weight: 500; font-size: .95rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--red); margin: 0;
}
.lede {
  font-size: 1.15rem; line-height: 1.58; color: var(--on-dark-muted); margin: 0;
  max-width: 36rem;
}
.center { text-align: center; }
.center .lede { margin-inline: auto; }

/* Hero */
.hero {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 2.5rem; align-items: center;
  padding: clamp(3rem, 8vw, 6.25rem) 0;
  background: var(--black);
}
.hero-copy { display: flex; flex-direction: column; gap: 1.35rem; align-items: flex-start; }
.hero-art {
  border-radius: 6px; overflow: hidden;
  background: #000;
  display: flex; align-items: center; justify-content: center;
}
.hero-art img {
  width: 100%; max-width: 500px; margin: 0 auto;
  object-fit: contain;
}

/* Trust strip */
.trust {
  background: var(--wood);
  padding: 1.5rem 0;
}
.trust-row {
  display: flex; flex-wrap: wrap; gap: 1.25rem 2rem;
  justify-content: space-between; align-items: center;
}
.trust-item {
  display: flex; align-items: center; gap: .65rem;
  font-family: var(--font-label); font-weight: 600; font-size: .875rem;
  letter-spacing: .08em; text-transform: uppercase;
}
.trust-item::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); flex-shrink: 0;
}

/* Sections */
.section { padding: clamp(3.5rem, 8vw, 6.25rem) 0; }
.section-cream { background: var(--cream); color: var(--on-light); }
.section-cream .lede { color: var(--on-light-muted); }
.section-dark { background: var(--soil-dark); color: var(--on-dark); }
.section-wood { background: var(--wood); }
.section-head {
  display: flex; flex-direction: column; align-items: center;
  gap: 1rem; text-align: center; margin-bottom: 3rem; max-width: 42rem; margin-inline: auto;
}

/* Benefit cards */
.grid-4 {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(4, 1fr);
  background: #fff; padding: 0; /* Figma had white container - use gap only */
}
.section-cream .grid-4 { background: transparent; }
.b-card {
  background: var(--cream-dark);
  border: 1px solid var(--border-light);
  border-radius: 6px; padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column; gap: .75rem;
}
.b-card .num {
  font-family: var(--font-display); font-size: 2rem; color: var(--red); line-height: 1;
}
.b-card h3 {
  font-family: var(--font-label); font-weight: 600; font-size: 1.1rem;
  letter-spacing: .04em; text-transform: uppercase; margin: 0;
}
.b-card p { margin: 0; font-size: .95rem; color: var(--on-light-muted); line-height: 1.48; }

/* Products */
.prod-grid {
  display: grid; gap: 1.75rem;
  grid-template-columns: repeat(3, 1fr);
}
.p-card {
  background: var(--wood);
  border: 1px solid var(--border-dark);
  border-radius: 6px; overflow: hidden;
  display: flex; flex-direction: column;
}
.p-card .ph {
  height: 200px; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.2);
  border-bottom: 1px dashed var(--border-dark);
  padding: 1rem;
}
.p-card .ph img { max-height: 140px; width: auto; opacity: .95; }
.p-card .body { padding: 1.5rem; display: flex; flex-direction: column; gap: .65rem; flex: 1; }
.p-card h3 {
  font-family: var(--font-label); font-weight: 600; font-size: 1.05rem;
  letter-spacing: .04em; text-transform: uppercase; margin: 0;
}
.p-card p { margin: 0; font-size: .875rem; color: var(--on-dark-muted); line-height: 1.48; flex: 1; }

/* Bulk banner */
.bulk {
  background: var(--wood);
  padding: 1.75rem 0;
  border-top: 1px solid var(--border-dark);
}
.bulk-row {
  display: flex; flex-wrap: wrap; gap: 1.25rem;
  align-items: center; justify-content: space-between;
}
.bulk h3 {
  font-family: var(--font-label); font-weight: 600; font-size: 1.05rem;
  letter-spacing: .06em; text-transform: uppercase; margin: 0 0 .25rem;
}
.bulk p { margin: 0; font-size: .875rem; color: rgba(255,255,255,.75); }
.bulk-chip {
  border: 1.5px solid var(--on-dark); border-radius: 4px;
  padding: .8rem 1.25rem;
  font-family: var(--font-label); font-weight: 600; font-size: .875rem;
  letter-spacing: .06em; text-transform: uppercase; white-space: nowrap;
}

/* Steps */
.steps {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(4, 1fr);
}
.step { display: flex; flex-direction: column; gap: .85rem; }
.step .badge {
  width: 48px; height: 48px; border-radius: 4px;
  background: var(--red); color: var(--cream);
  font-family: var(--font-display); font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
}
.step h3 {
  font-family: var(--font-label); font-weight: 600; font-size: 1.05rem;
  letter-spacing: .04em; text-transform: uppercase; margin: 0;
  color: var(--on-light);
}
.step p { margin: 0; font-size: .875rem; color: var(--on-light-muted); line-height: 1.48; }

/* Story / about band */
.story-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr 1fr; align-items: center;
}
.story-grid .photo {
  border-radius: 6px; overflow: hidden;
  aspect-ratio: 4/3; background: #000;
}
.story-grid .photo img { width: 100%; height: 100%; object-fit: cover; }

/* CTA banner */
.cta-banner {
  background: var(--red);
  padding: clamp(3rem, 7vw, 5rem) 0;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
}
.cta-banner .display { max-width: 18ch; }
.cta-banner .lede { color: rgba(255,255,255,.85); max-width: 36rem; }

/* Footer */
.site-footer {
  background: var(--black);
  padding: 4rem 0 2.5rem;
  border-top: 1px solid var(--border-dark);
}
.foot-grid {
  display: grid; gap: 2rem;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  margin-bottom: 2.5rem;
}
.foot-brand .name {
  font-family: var(--font-display); font-size: 1.25rem; letter-spacing: .02em;
}
.foot-brand .name span { color: var(--red); }
.foot-brand p {
  margin: .85rem 0 0; font-size: .875rem; color: var(--on-dark-muted); line-height: 1.5;
  max-width: 22rem;
}
.foot-col h4 {
  font-family: var(--font-label); font-weight: 600; font-size: .8125rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin: 0 0 1rem;
}
.foot-col a, .foot-col p {
  display: block; font-size: .875rem; color: var(--on-dark-muted);
  margin: 0 0 .75rem;
}
.foot-col a:hover { color: var(--on-dark); }
.foot-bottom {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; align-items: center;
  padding-top: 1.5rem; border-top: 1px solid var(--border-dark);
  font-size: .8125rem; color: var(--on-dark-muted);
}
.foot-social {
  display: flex; gap: 1.25rem;
  font-family: var(--font-label); font-weight: 500; font-size: .75rem;
  letter-spacing: .1em; text-transform: uppercase;
}

/* Page hero (inner) */
.page-hero {
  padding: 3.5rem 0 2rem; background: var(--black);
}
.page-hero .display { max-width: 16ch; }

/* Forms */
.form {
  display: grid; gap: 1rem; max-width: 32rem; margin-top: 1.5rem;
}
.form label {
  font-family: var(--font-label); font-size: .8rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--on-dark-muted);
}
.form input, .form textarea, .form select {
  width: 100%; padding: .85rem 1rem; border-radius: 4px;
  border: 1px solid var(--border-dark); background: #1a1a1a;
  color: var(--on-dark); font: inherit; min-height: 48px;
}
.form textarea { min-height: 120px; resize: vertical; }
.form input:focus, .form textarea:focus, .form select:focus {
  outline: 2px solid var(--red); outline-offset: 1px;
}
.note { font-size: .85rem; color: var(--on-dark-muted); }

/* FAQ */
.faq details {
  border-bottom: 1px solid var(--border-light);
  padding: 1.15rem 0;
}
.faq summary {
  font-family: var(--font-label); font-weight: 600; font-size: 1rem;
  letter-spacing: .04em; text-transform: uppercase; cursor: pointer;
  list-style: none; color: var(--on-light);
}
.faq summary::-webkit-details-marker { display: none; }
.faq details p {
  margin: .75rem 0 0; color: var(--on-light-muted); font-size: .95rem;
}

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .grid-4, .prod-grid, .steps, .foot-grid, .story-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none !important;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--black); flex-direction: column; align-items: stretch;
    gap: 0; padding: .5rem var(--pad) 1rem;
    border-bottom: 1px solid var(--border-dark);
  }
  .nav-links.open { display: flex !important; }
  .nav-links a {
    display: block; padding: .9rem 0;
    border-bottom: 1px solid var(--border-dark);
  }
  .nav-cta { display: none !important; }
  .grid-4, .prod-grid, .steps, .foot-grid, .story-grid {
    grid-template-columns: 1fr;
  }
  .trust-row { flex-direction: column; align-items: flex-start; }
  .bulk-row { flex-direction: column; align-items: flex-start; }
  .brand img { height: 42px; }
}
