:root {
  --accent: #6B4226;
  --accent-dark: #4a2d19;
  --accent-light: #8a5a35;
  --accent-tint: #f4ece3;
  --ink: #1c1917;
  --muted: #6b6055;
  --bg: #faf8f5;
  --card: #ffffff;
  --border: #e8e0d5;
  --content-width: 720px;
  --content-width-wide: 1120px;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow-sm: 0 1px 2px rgba(28,25,23,0.04), 0 1px 3px rgba(28,25,23,0.06);
  --shadow-md: 0 4px 12px rgba(28,25,23,0.06), 0 8px 24px rgba(28,25,23,0.08);
  --shadow-lg: 0 20px 50px rgba(28,25,23,0.16);
  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: 'Fraunces', Georgia, "Times New Roman", serif;
  --font-sans: 'Inter', -apple-system, "Helvetica Neue", Arial, sans-serif;
}
html { scroll-behavior: smooth; }
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3 { font-family: var(--font-serif); font-weight: 600; letter-spacing: -0.01em; }
a { color: inherit; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ---------- Nav ---------- */
.site-nav {
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: var(--content-width-wide);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.nav-brand {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--accent); border-bottom-color: var(--accent); font-weight: 600; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--ink);
}
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card);
    border-bottom: 1px solid var(--border);
    padding: 8px 24px 16px;
    box-shadow: var(--shadow-md);
  }
  .nav-links.nav-open { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--border); }
}

/* ---------- Home hero ---------- */
header.hero {
  padding: 150px 24px 120px;
  text-align: center;
  background: linear-gradient(180deg, rgba(20,14,10,0.4), rgba(20,14,10,0.78)), url('public/hero.jpg') center 35%/cover no-repeat;
}
header.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  margin: 0 0 16px;
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
header.hero p.tagline {
  color: #ecd9c6;
  font-weight: 500;
  font-size: 1.15rem;
  margin: 0 0 36px;
  letter-spacing: 0.2px;
}

/* ---------- Buttons ---------- */
.btn, a.btn {
  display: inline-block;
  padding: 13px 30px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition);
  border: none;
}
.btn:hover, a.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: var(--accent-dark); }
.btn.secondary, a.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  box-shadow: none;
}
.btn.secondary:hover, a.btn.secondary:hover { background: var(--accent-tint); color: var(--accent-dark); }

/* ---------- Interior page header band ---------- */
.page-header {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 68px 24px 56px;
  text-align: center;
  position: relative;
}
.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 4px;
  background: var(--accent);
  border-radius: 0 0 4px 4px;
}
.page-header h1 {
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  margin: 0 0 10px;
  color: var(--ink);
}
.page-header p { color: var(--muted); font-size: 1.05rem; max-width: 640px; margin: 0 auto; }
.page-badge {
  display: inline-block;
  background: var(--accent-tint);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 16px;
}

/* ---------- Layout ---------- */
main { max-width: var(--content-width); margin: 0 auto; padding: 64px 24px; }
main.wide { max-width: var(--content-width-wide); }
section { margin-bottom: 64px; }
section h2 {
  font-size: 1.6rem;
  margin-bottom: 14px;
  padding-left: 16px;
  border-left: 3px solid var(--accent);
}
p.lead { font-size: 1.15rem; color: var(--muted); max-width: 680px; }

/* ---------- Category / product cards ---------- */
.categories { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 28px; }
@media (max-width: 640px) { .categories { grid-template-columns: 1fr; } }
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card h3 { margin: 0 0 10px; font-size: 1.2rem; }
.card .badge {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
}
.card p { color: var(--muted); }
.card ul { margin: 8px 0 0; padding-left: 18px; color: var(--muted); }
.card ul li { margin-bottom: 6px; }
.card-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition);
}
.card-link:hover { color: var(--accent-dark); text-decoration: underline; }

.img-strip { display: flex; gap: 10px; margin: 14px 0 16px; }
.img-strip img {
  flex: 1 1 0;
  min-width: 0;
  height: 84px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

/* ---------- Founder / people ---------- */
.founder-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--card);
  box-shadow: var(--shadow-md);
  margin-bottom: 16px;
}
.founder-photo.large { width: 168px; height: 168px; border-width: 5px; }
.founder-teaser { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.founder-teaser p { margin: 0; color: var(--muted); max-width: 520px; }

/* ---------- Trust list ---------- */
.trust-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 18px; }
.trust-list li { padding-left: 34px; position: relative; color: var(--muted); }
.trust-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  background: var(--accent-tint);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

/* ---------- Numbered process steps ---------- */
.steps { display: grid; gap: 20px; margin-top: 28px; }
.step {
  display: flex;
  gap: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.step:hover { box-shadow: var(--shadow-md); }
.step-number {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-tint);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-serif);
  font-size: 1.1rem;
}
.step-body h3 { margin: 0 0 8px; font-size: 1.08rem; }
.step-body p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* ---------- Product detail blocks (spec sheets) ---------- */
.product-block { display: flex; gap: 28px; margin-bottom: 44px; align-items: flex-start; }
.product-block img {
  width: 260px;
  height: 190px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 640px) {
  .product-block { flex-direction: column; }
  .product-block img { width: 100%; height: auto; }
}
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; margin-top: 14px; font-size: 0.92rem; }
@media (max-width: 640px) { .spec-grid { grid-template-columns: 1fr; } }
.spec-grid dt { color: var(--muted); font-weight: 600; }
.spec-grid dd { margin: 0 0 8px; }

/* ---------- Contact / CTA ---------- */
.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.cta-band {
  background: linear-gradient(135deg, var(--accent-tint), var(--card));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px;
  text-align: center;
}
.cta-band p { margin: 0 0 20px; color: var(--muted); font-size: 1.05rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--accent-dark); color: #cfc3b8; margin-top: 80px; }
.footer-inner {
  max-width: var(--content-width-wide);
  margin: 0 auto;
  padding: 56px 24px 28px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
}
@media (max-width: 640px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-wordmark { font-family: var(--font-serif); font-size: 1.4rem; color: #fff; margin-bottom: 10px; }
.footer-brand p { font-size: 0.9rem; color: #b8a999; max-width: 320px; }
.site-footer h4 { color: #fff; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.6px; margin: 0 0 14px; font-weight: 700; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: #cfc3b8; text-decoration: none; font-size: 0.9rem; transition: color var(--transition); }
.site-footer a:hover { color: #fff; }
.footer-contact p { margin: 0 0 10px; font-size: 0.9rem; }
.footer-bottom {
  text-align: center;
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.8rem;
  color: #a8998a;
}
