/* ============================================================
   BENCH FORGED — site styles
   Warm cream + coal + ember. Newsreader / Work Sans / Space Mono.
   One stylesheet shared by every page. No frameworks, no build step.
   ============================================================ */

:root {
  --bone:  #f4eede;
  --paper: #ece4d2;
  --card:  #fbf8ef;
  --coal:  #1a1612;
  --ink:   #2a241d;
  --steel: #6a6258;
  --steel2:#857c70;
  --ember: #c0521e;
  --ember-dk: #a8451a;
  --line:  rgba(26,22,18,.14);
  --line-soft: rgba(26,22,18,.08);
  --shadow: 0 18px 40px -24px rgba(26,22,18,.45);
  --maxw: 1180px;
  --nav-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bone);
  color: var(--coal);
  font-family: 'Work Sans', system-ui, -apple-system, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---------- shared type ---------- */
.serif { font-family: 'Newsreader', Georgia, serif; }
.mono  { font-family: 'Space Mono', monospace; }
.eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 13px; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--ember); margin: 0;
}
.eyebrow.steel { color: var(--steel); }
h1, h2, h3 { font-family: 'Newsreader', Georgia, serif; font-weight: 500; letter-spacing: -0.02em; margin: 0; }
h1 { font-size: clamp(44px, 7vw, 88px); line-height: 0.98; }
h2 { font-size: clamp(32px, 4.4vw, 56px); line-height: 1.02; }
h3 { font-size: clamp(22px, 2.6vw, 30px); line-height: 1.12; }
p { margin: 0; text-wrap: pretty; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.rule { width: 56px; height: 3px; background: var(--ember); border: 0; margin: 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Space Mono', monospace; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  padding: 16px 26px; border-radius: 2px; border: 1px solid var(--coal);
  background: var(--coal); color: var(--bone);
  transition: background .18s ease, color .18s ease, transform .18s ease, border-color .18s ease;
}
.btn:hover { background: var(--ember); border-color: var(--ember); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--coal); }
.btn--ghost:hover { background: var(--coal); color: var(--bone); border-color: var(--coal); }
.btn--ember { background: var(--ember); border-color: var(--ember); }
.btn--ember:hover { background: var(--ember-dk); border-color: var(--ember-dk); }
.btn .arr { font-size: 15px; line-height: 1; transform: translateY(-1px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(244,238,222,.88);
  backdrop-filter: saturate(1.2) blur(10px);
  -webkit-backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; height: 100%;
  padding: 0 28px; display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--coal); }
.brand__mark {
  font-family: 'Newsreader', Georgia, serif; font-weight: 600; font-size: 30px;
  letter-spacing: -0.05em; line-height: 1;
  border: 2px solid var(--coal); border-radius: 3px; padding: 4px 9px 6px;
}
.brand__name { display: flex; flex-direction: column; line-height: 1; }
.brand__name b { font-family: 'Newsreader', Georgia, serif; font-weight: 600; font-size: 21px; letter-spacing: -0.01em; }
.brand__name span { font-family: 'Space Mono', monospace; font-size: 9.5px; letter-spacing: 0.26em; color: var(--steel); margin-top: 4px; }

.nav__links { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  font-family: 'Space Mono', monospace; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; color: var(--ink);
  padding: 10px 16px; border-radius: 2px; transition: color .15s ease, background .15s ease;
}
.nav__links a:hover { color: var(--ember); }
.nav__links a[aria-current="page"] { color: var(--ember); }
.nav__links .nav__cta { color: var(--bone); background: var(--coal); margin-left: 8px; }
.nav__links .nav__cta:hover { background: var(--ember); color: var(--bone); }

.nav__toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 10px; margin: -10px;
}
.nav__toggle span { display: block; width: 26px; height: 2px; background: var(--coal); margin: 5px 0; transition: transform .2s ease, opacity .2s ease; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; background: var(--coal); color: var(--bone); }
.hero__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: stretch;
  min-height: min(78vh, 720px);
}
.hero__copy { padding: 72px 28px 72px; display: flex; flex-direction: column; justify-content: center; }
.hero__copy .eyebrow { color: var(--ember); }
.hero h1 { color: var(--bone); margin: 22px 0 0; max-width: 14ch; }
.hero__sub { font-family: 'Newsreader', Georgia, serif; font-style: italic; font-size: clamp(19px, 2.2vw, 24px); line-height: 1.5; color: rgba(244,238,222,.82); margin: 26px 0 0; max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 38px 0 0; }
.hero__media { position: relative; }
.hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.92) saturate(.92); }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--coal) 0%, rgba(26,22,18,.2) 26%, rgba(26,22,18,0) 60%); }

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
.section { padding: clamp(56px, 9vw, 110px) 0; }
.section--paper { background: var(--paper); }
.section--coal { background: var(--coal); color: var(--bone); }
.section--coal .eyebrow { color: var(--ember); }
.section--coal h2 { color: var(--bone); }
.section__head { max-width: 720px; }
.section__head h2 { margin: 16px 0 0; }
.section__head .rule { margin-top: 24px; }
.lead { font-size: clamp(18px, 2vw, 21px); color: var(--ink); margin-top: 20px; max-width: 60ch; }
.section--coal .lead { color: rgba(244,238,222,.8); }

.page-head { padding: clamp(54px,8vw,96px) 0 clamp(30px,4vw,44px); }
.page-head h1 { margin: 18px 0 0; }

/* ============================================================
   FEATURE STRIP (home) — small product teasers
   ============================================================ */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 52px; }
.feature {
  text-decoration: none; color: inherit; background: var(--card);
  border: 1px solid var(--line-soft); border-radius: 4px; overflow: hidden;
  display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature__ph { aspect-ratio: 4 / 3; background: var(--coal); position: relative; display: flex; align-items: center; justify-content: center; padding: 26px; overflow: hidden; }
.feature__ph img { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); max-height: calc(100% - 52px); max-width: calc(100% - 52px); width: auto; height: auto; object-fit: contain; filter: brightness(.99) saturate(.94); }
.feature__body { padding: 22px 24px 26px; }
.feature__body h3 { font-weight: 600; }
.feature__body p { color: var(--steel); font-size: 15px; margin-top: 8px; }
.feature__more { font-family: 'Space Mono', monospace; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ember); margin-top: 16px; display: inline-block; }

/* ============================================================
   SPLIT (about / statement)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 84px); align-items: center; }
.split__media { border-radius: 4px; overflow: hidden; box-shadow: var(--shadow); }
.split__media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.split__body p + p { margin-top: 18px; }
.sig { font-family: 'Newsreader', Georgia, serif; font-style: italic; font-size: 26px; margin-top: 26px; }
.sig small { display: block; font-family: 'Space Mono', monospace; font-style: normal; font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--steel); margin-top: 8px; }

/* ============================================================
   PRODUCTS GRID
   ============================================================ */
.cat-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); padding-bottom: 18px; margin-bottom: 40px; }
.cat-head h2 { font-size: clamp(26px,3.2vw,40px); }
.cat-head .count { font-family: 'Space Mono', monospace; font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--steel); white-space: nowrap; }

.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.products--center { display: flex; flex-wrap: wrap; justify-content: center; margin-top: 28px; }
.products--center .product { width: calc((100% - 56px) / 3); }
.product {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: 4px; overflow: hidden;
  display: flex; flex-direction: column;
}
.product__ph { aspect-ratio: 4 / 3; background: var(--coal); position: relative; display: flex; align-items: center; justify-content: center; padding: 24px; overflow: hidden; }
.product__ph img { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); max-height: calc(100% - 48px); max-width: calc(100% - 48px); width: auto; height: auto; object-fit: contain; filter: brightness(.99) saturate(.94); }
.product__ph--sq { aspect-ratio: 1 / 1; }
.product__sku { position: absolute; left: 16px; bottom: 14px; font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 0.22em; color: rgba(244,238,222,.55); }
/* dual-photo product (dust collection) */
.product__ph--dual { padding: 0; align-items: stretch; justify-content: stretch; }
.product__ph--dual .h { flex: 1; min-width: 0; position: relative; display: flex; align-items: center; justify-content: center; padding: 20px 16px 30px; }
.product__ph--dual .h + .h { border-left: 2px solid var(--bone); }
.product__ph--dual .h img { max-height: 100%; max-width: 100%; width: auto; object-fit: contain; filter: brightness(.99) saturate(.94); }
.product__ph--dual .lbl { position: absolute; bottom: 11px; left: 0; right: 0; text-align: center; font-family: 'Space Mono', monospace; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(244,238,222,.66); }
.product__ph--dual .product__sku { bottom: auto; top: 13px; }
.product__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.product__body h3 { font-weight: 600; }
.product__desc { color: var(--steel); font-size: 15px; line-height: 1.5; margin-top: 10px; font-style: italic; font-family: 'Newsreader', Georgia, serif; }
.product__desc--ns { font-style: normal; font-family: 'Work Sans', sans-serif; }
.spec { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 8px; }
.spec span {
  font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.06em;
  color: var(--ink); background: rgba(26,22,18,.05); border: 1px solid var(--line-soft);
  padding: 5px 9px; border-radius: 2px;
}
.product__foot { margin-top: auto; padding-top: 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.wholesale-tag { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--steel); }
.product__link { font-family: 'Space Mono', monospace; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ember); text-decoration: none; white-space: nowrap; }
.product__link:hover { text-decoration: underline; }

.grow-note {
  margin-top: 44px; padding: 26px 30px; border: 1px dashed var(--line);
  border-radius: 4px; background: rgba(26,22,18,.02);
  display: flex; align-items: center; gap: 16px; color: var(--steel);
  font-family: 'Newsreader', Georgia, serif; font-style: italic; font-size: 19px;
}
.grow-note b { font-style: normal; font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ember); }

/* ============================================================
   WHOLESALE / CTA BANNER
   ============================================================ */
.cta-band { background: var(--coal); color: var(--bone); border-radius: 6px; padding: clamp(36px,5vw,60px); display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }
.cta-band h2 { color: var(--bone); }
.cta-band p { color: rgba(244,238,222,.78); margin-top: 14px; max-width: 52ch; }
.cta-band .eyebrow { color: var(--ember); }

/* ============================================================
   SUPPLIERS / WHERE TO BUY
   ============================================================ */
.supplier {
  display: grid; grid-template-columns: 240px 1fr auto; gap: 36px; align-items: center;
  background: var(--card); border: 1px solid var(--line-soft); border-radius: 5px;
  padding: 36px; box-shadow: var(--shadow);
}
.supplier__logo {
  aspect-ratio: 3 / 2; border-radius: 4px; background: var(--paper);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 6px;
  border: 1px solid var(--line);
}
.supplier__logo b { font-family: 'Newsreader', Georgia, serif; font-weight: 600; font-size: 30px; letter-spacing: -0.02em; }
.supplier__logo span { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--steel); }
.supplier__body h3 { font-weight: 600; }
.supplier__body .where { font-family: 'Space Mono', monospace; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--steel); margin-top: 6px; }
.supplier__body p { color: var(--ink); margin-top: 14px; max-width: 52ch; }
.note-line { margin-top: 40px; font-family: 'Newsreader', Georgia, serif; font-style: italic; font-size: 20px; color: var(--steel); }
.note-line a { color: var(--ember); text-underline-offset: 3px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px,6vw,80px); }
.contact-info .email-big {
  display: inline-block; margin-top: 14px;
  font-family: 'Newsreader', Georgia, serif; font-size: clamp(19px,2.5vw,30px); font-weight: 500;
  letter-spacing: -0.01em; color: var(--coal); text-decoration: none; white-space: nowrap;
}
.contact-info .email-big:hover { color: var(--ember); }
.contact-block { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--line); }
.contact-block .k { font-family: 'Space Mono', monospace; font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--steel); }
.contact-block .v { font-family: 'Newsreader', Georgia, serif; font-size: 24px; margin-top: 8px; }

.form { background: var(--card); border: 1px solid var(--line-soft); border-radius: 5px; padding: clamp(26px,4vw,40px); box-shadow: var(--shadow); }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field label { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--steel); }
.field input, .field textarea, .field select {
  font-family: 'Work Sans', sans-serif; font-size: 16px; color: var(--coal);
  background: var(--bone); border: 1px solid var(--line); border-radius: 3px;
  padding: 13px 15px; width: 100%; resize: vertical;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--ember); box-shadow: 0 0 0 3px rgba(192,82,30,.14); }
.form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form__hint { font-size: 13px; color: var(--steel); margin-top: 14px; text-align: center; line-height: 1.5; }
.form__hint a { color: var(--ember); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--coal); color: rgba(244,238,222,.8); padding: 64px 0 40px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(244,238,222,.16); }
.footer .brand__mark { border-color: rgba(244,238,222,.5); color: var(--bone); }
.footer .brand__name b { color: var(--bone); }
.footer__blurb { font-family: 'Newsreader', Georgia, serif; font-style: italic; font-size: 20px; color: rgba(244,238,222,.74); margin-top: 22px; max-width: 34ch; line-height: 1.45; }
.footer h4 { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(244,238,222,.5); margin: 0 0 18px; font-weight: 400; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer a { color: rgba(244,238,222,.82); text-decoration: none; font-size: 15px; }
.footer a:hover { color: var(--ember); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 28px; font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(244,238,222,.5); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 920px) {
  .hero__grid { grid-template-columns: 1fr; min-height: 0; }
  .hero__media { min-height: 320px; order: -1; }
  .hero__media::after { background: linear-gradient(0deg, var(--coal) 0%, rgba(26,22,18,0) 55%); }
  .hero__copy { padding: 48px 28px 56px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .products { grid-template-columns: repeat(2, 1fr); }
  .products--center .product { width: calc((100% - 28px) / 2); }
  .split { grid-template-columns: 1fr; }
  .split__media { order: -1; max-width: 440px; }
  .contact-grid { grid-template-columns: 1fr; }
  .supplier { grid-template-columns: 1fr; text-align: left; }
  .supplier__logo { max-width: 200px; }
  .cta-band { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  body { font-size: 17px; }
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bone); border-bottom: 1px solid var(--line);
    padding: 8px 16px 18px;
    transform: translateY(-130%); transition: transform .26s cubic-bezier(.2,.7,.2,1);
    box-shadow: 0 24px 40px -28px rgba(26,22,18,.6);
  }
  .nav[data-open="true"] .nav__links { transform: translateY(0); }
  .nav__links a { padding: 15px 10px; border-bottom: 1px solid var(--line-soft); }
  .nav__links .nav__cta { margin: 12px 0 4px; text-align: center; border-radius: 2px; }
  .nav[data-open="true"] .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav[data-open="true"] .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav[data-open="true"] .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .feature-grid { grid-template-columns: 1fr; }
  .products { grid-template-columns: 1fr; }
  .products--center .product { width: 100%; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero__actions .btn { flex: 1; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
