:root {
  --ink: #171717;
  --muted: #5f5f5f;
  --paper: #fffaf2;
  --soft: #f4efe6;
  --line: #ded6c9;
  --gold: #b98b3e;
  --green: #385449;
  --white: #ffffff;
  --max: 1180px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 4vw, 48px);
  background: rgba(255, 250, 242, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; text-decoration: none; }
.brand img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.main-nav { display: flex; align-items: center; gap: 18px; font-size: 14px; font-weight: 700; }
.main-nav a { text-decoration: none; color: #2f2f2f; }
.nav-toggle { display: none; border: 1px solid var(--line); background: var(--white); padding: 9px 12px; border-radius: 6px; }
.hero {
  min-height: 74vh;
  display: flex;
  align-items: center;
  padding: clamp(44px, 7vw, 86px) 0 30px;
  background: linear-gradient(135deg, #fffaf2 0%, #f4efe6 55%, #e9ddc8 100%);
}
.hero-inner { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
.hero h1 { font-size: clamp(38px, 6vw, 72px); line-height: .96; margin: 12px 0 22px; max-width: 820px; }
.hero p { max-width: 680px; color: #3f3a32; font-size: 18px; }
.eyebrow { color: var(--green); font-size: 12px; font-weight: 800; letter-spacing: 0; text-transform: uppercase; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
}
.btn.primary { background: var(--ink); color: var(--white); }
.btn.secondary { background: var(--gold); color: #1b1408; }
.btn.ghost { background: transparent; border-color: #9d8f7b; color: var(--ink); }
.hero-products .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.product-card {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  min-height: 220px;
}
.product-card img { width: 100%; height: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.content-band { padding: clamp(48px, 6vw, 82px) 0; background: var(--paper); }
.content-band.light { background: var(--soft); }
.split { display: grid; grid-template-columns: .7fr 1fr; gap: clamp(24px, 5vw, 64px); align-items: start; }
h2 { margin: 0 0 18px; font-size: clamp(28px, 3.5vw, 46px); line-height: 1.1; }
.split p, .two-column p, .section-head + p { color: var(--muted); font-size: 18px; margin: 0; }
.section-head { max-width: 780px; margin-bottom: 28px; }
.link-cards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.stats-grid, .process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.stats-grid div, .process-grid div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.stats-grid strong {
  display: block;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  margin-bottom: 10px;
}
.stats-grid span, .process-grid p { color: var(--muted); }
.process-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.process-grid strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
}
.process-grid h3 { margin: 0 0 8px; font-size: 22px; }
.mini-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 160px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-decoration: none;
}
.mini-card span { font-size: 20px; font-weight: 850; line-height: 1.15; }
.mini-card small { color: var(--muted); font-size: 14px; line-height: 1.45; }
.two-column { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(28px, 5vw, 68px); align-items: start; }
.check-list { padding-left: 20px; color: var(--muted); }
.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.inquiry-form label { display: grid; gap: 7px; font-size: 13px; font-weight: 800; color: #3f3f3f; }
.inquiry-form input, .inquiry-form select, .inquiry-form textarea {
  width: 100%;
  border: 1px solid #cfc5b4;
  border-radius: 6px;
  padding: 12px;
  font: inherit;
  background: #fffdf8;
}
.inquiry-form label:nth-child(5), .inquiry-form button, .form-note { grid-column: 1 / -1; }
.inquiry-form button {
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  background: var(--green);
  color: var(--white);
  font-weight: 850;
  cursor: pointer;
}
.form-note { margin: 0; color: var(--muted); font-size: 14px; }
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  margin: 12px 0;
}
.faq summary { cursor: pointer; font-weight: 850; }
.faq p { color: var(--muted); }
.site-footer { background: #151515; color: #f7efe1; padding: 42px 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; }
.footer-grid a { display: block; color: #f7efe1; text-decoration: none; margin: 8px 0; }
.footer-grid p { color: #d8cbb8; }
@media (max-width: 920px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 74px;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
  }
  .main-nav.open { display: flex; }
  .hero-inner, .split, .two-column, .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .link-cards, .product-grid, .stats-grid, .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 580px) {
  .container { width: min(100% - 28px, var(--max)); }
  .hero h1 { font-size: 38px; }
  .hero-products .product-grid, .link-cards, .product-grid, .stats-grid, .process-grid, .inquiry-form { grid-template-columns: 1fr; }
  .product-card { min-height: 180px; }
  .btn { width: 100%; }
}
