/* =====================================================
   SHROOM BROTHERS — Minimalist / Earthy Design System
   Palette drawn from the brand badge:
   orange #F49B1B · charcoal #211D16 · cream #FAF6EE
   ===================================================== */

:root {
  --orange: #F49B1B;
  --orange-deep: #D88210;
  --ink: #211D16;
  --ink-soft: #4A443A;
  --cream: #FAF6EE;
  --cream-deep: #F1EADC;
  --tan: #C9B89B;
  --line: rgba(33, 29, 22, 0.14);
  --radius: 10px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

img, svg, video { display: block; max-width: 100%; }

a { color: inherit; }

.wrap { width: min(1140px, 90%); margin: 0 auto; }

/* ---------- Typography ---------- */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
}

.eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--orange-deep);
  margin-bottom: 18px;
}

.section-title { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 20px; }

.lede {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 620px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn--orange { background: var(--orange); color: var(--ink); }
.btn--orange:hover { background: var(--orange-deep); color: #fff; }
.btn--ink { background: var(--ink); color: var(--cream); }
.btn--ink:hover { background: var(--ink-soft); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--cream); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.btn--outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 238, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo img { width: 52px; height: 52px; }

.logo span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.18rem;
  letter-spacing: -0.01em;
}

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.93rem;
  color: var(--ink-soft);
  padding: 9px 15px;
  border-radius: 100px;
  transition: color 0.15s ease, background 0.15s ease;
}

.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); font-weight: 600; }
.nav-links a.nav-cta {
  background: var(--ink);
  color: var(--cream);
  margin-left: 10px;
  font-weight: 600;
}
.nav-links a.nav-cta:hover { background: var(--orange-deep); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--ink); margin: 6px 0; }

/* ---------- Hero (video) ---------- */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero video, .hero .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(20, 17, 12, 0.35), rgba(20, 17, 12, 0.55));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 90px 24px;
  max-width: 760px;
}

.hero-content .badge { width: 130px; margin: 0 auto 34px; }

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  margin-bottom: 22px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.hero p {
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  opacity: 0.94;
  max-width: 580px;
  margin: 0 auto 36px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}

.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Stats strip ---------- */

.stats-strip { border-bottom: 1px solid var(--line); background: var(--cream); }

.stats-strip .wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
}

.stats-strip .stat { padding: 30px 12px; border-left: 1px solid var(--line); }
.stats-strip .stat:first-child { border-left: none; }

.stats-strip strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  color: var(--ink);
  line-height: 1.2;
}

.stats-strip span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
}

/* ---------- Sections ---------- */

.section { padding: clamp(70px, 9vw, 120px) 0; }
.section--deep { background: var(--cream-deep); }
.section--ink { background: var(--ink); color: var(--cream); }
.section--ink .lede { color: rgba(250, 246, 238, 0.75); }
.section--ink .eyebrow { color: var(--orange); }

.section-head { margin-bottom: 56px; }
.section-head--center { text-align: center; }
.section-head--center .lede { margin: 0 auto; }

/* ---------- Split ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.split-art img { border-radius: var(--radius); width: 100%; height: 100%; object-fit: cover; }

.split h2 { font-size: clamp(1.8rem, 3.8vw, 2.5rem); margin-bottom: 20px; }
.split p { color: var(--ink-soft); margin-bottom: 16px; }
.section--ink .split p { color: rgba(250, 246, 238, 0.78); }

.plain-list { list-style: none; margin: 22px 0 30px; }

.plain-list li {
  padding: 13px 0 13px 30px;
  border-bottom: 1px solid var(--line);
  position: relative;
  font-weight: 500;
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 22px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
}

.section--ink .plain-list li { border-color: rgba(250, 246, 238, 0.16); }

/* ---------- Variety grid ---------- */

.variety-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.variety {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.variety figure { aspect-ratio: 4 / 3.4; overflow: hidden; margin: 0; }

.variety figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.variety:hover figure img { transform: scale(1.04); }

.variety .no-photo {
  aspect-ratio: 4 / 3.4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-deep);
}

.variety .no-photo span {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--orange);
  opacity: 0.85;
}

.variety-body { padding: 22px 22px 26px; flex: 1; }

.variety h3 { font-size: 1.22rem; margin-bottom: 6px; display: flex; align-items: center; gap: 10px; }

.variety p { font-size: 0.92rem; color: var(--ink-soft); }

.tag {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 600;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--orange);
  color: var(--ink);
  white-space: nowrap;
}

.tag--soon { background: var(--cream-deep); color: var(--ink-soft); border: 1px solid var(--line); }

/* ---------- Photo band ---------- */

.photo-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.photo-band img {
  border-radius: var(--radius);
  width: 100%;
  height: 320px;
  object-fit: cover;
}

/* ---------- Markets table ---------- */

.market-week { border-top: 1px solid var(--line); }

.market-day {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 26px 8px;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.market-day .day {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
}

.market-day .day.off { color: var(--ink-soft); opacity: 0.55; }

.market-day .places { display: flex; flex-wrap: wrap; gap: 10px; }

.place {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 8px 20px;
  font-weight: 500;
  font-size: 0.95rem;
}

.place--rest { background: transparent; border-style: dashed; color: var(--ink-soft); }

/* ---------- Cards ---------- */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
}

.section--ink .card { background: rgba(250, 246, 238, 0.05); border-color: rgba(250, 246, 238, 0.16); }

.card h3 { font-size: 1.3rem; margin-bottom: 10px; }

.card p { font-size: 0.95rem; color: var(--ink-soft); }
.section--ink .card p { color: rgba(250, 246, 238, 0.75); }

.card .num {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--orange-deep);
  display: block;
  margin-bottom: 14px;
}

/* ---------- Banner ---------- */

.banner {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius);
  padding: clamp(46px, 6vw, 76px);
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 36px;
  align-items: center;
}

.banner h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); margin-bottom: 12px; }

.banner p { color: rgba(250, 246, 238, 0.75); max-width: 520px; }

.banner--orange { background: var(--orange); color: var(--ink); }
.banner--orange p { color: rgba(33, 29, 22, 0.75); }

/* ---------- Forms ---------- */

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(30px, 4vw, 46px);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }

.field label { font-weight: 600; font-size: 0.86rem; }

.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 0.97rem;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
}

.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--orange);
  outline-offset: 1px;
}

.field textarea { min-height: 130px; resize: vertical; }

/* ---------- Page hero (inner) ---------- */

.page-hero {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(64px, 8vw, 100px) 0;
}

.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 16px; }

.page-hero p { font-size: 1.1rem; color: rgba(250, 246, 238, 0.75); max-width: 620px; }

.page-hero .eyebrow { color: var(--orange); }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-grid h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 16px;
  color: var(--orange);
}

.footer-grid p { color: rgba(250, 246, 238, 0.6); font-size: 0.94rem; max-width: 340px; }

.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 9px; font-size: 0.94rem; }

.footer-grid a { text-decoration: none; color: rgba(250, 246, 238, 0.75); transition: color 0.15s ease; }
.footer-grid a:hover { color: var(--orange); }

.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo img { width: 56px; height: 56px; }
.footer-logo span { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; }

.footer-bottom {
  border-top: 1px solid rgba(250, 246, 238, 0.14);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: rgba(250, 246, 238, 0.5);
}

/* ---------- Utilities ---------- */

.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.center { text-align: center; }
.note { font-size: 0.88rem; color: var(--ink-soft); font-style: italic; }

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .variety-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .stats-strip .wrap { grid-template-columns: repeat(3, 1fr); }
  .stats-strip .stat:nth-child(4) { border-left: none; }
  .photo-band { grid-template-columns: 1fr 1fr; }
  .photo-band img:last-child { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .banner { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; text-align: center; }
  .nav-toggle { display: block; }
  .variety-grid, .grid-3, .grid-2, .form-grid, .photo-band { grid-template-columns: 1fr; }
  .stats-strip .wrap { grid-template-columns: 1fr 1fr; }
  .stats-strip .stat { border-left: none; border-top: 1px solid var(--line); }
  .market-day { grid-template-columns: 1fr; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
}
