:root {
  --charcoal: #1f2522;
  --steel: #505954;
  --olive: #5b6843;
  --orange: #a84916;
  --sand: #eee5d3;
  --cream: #faf7ef;
  --ink: #1c1d1b;
  --muted: #505954;
  --line: #ded7c8;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; height: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(16px, 4vw, 56px);
  background: rgba(250, 247, 239, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand { display: flex; align-items: center; gap: 10px; }

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 12px;
  background: var(--charcoal);
  color: var(--sand);
  font-weight: 900;
}

.brand small { display: block; color: var(--muted); font-size: 12px; }

.desktop-nav { display: flex; align-items: center; gap: 18px; color: #333; font-weight: 800; }

.desktop-nav a { border-radius: 999px; padding: 8px 10px; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { background: #fff; }

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(28px, 5vw, 56px);
  padding: clamp(38px, 6vw, 70px) clamp(18px, 5vw, 72px);
  background: linear-gradient(135deg, var(--charcoal), #323a35);
  color: #fff;
}

.hero-copy { max-width: 720px; }

.eyebrow {
  margin: 0 0 10px;
  color: #f08a4b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 13ch;
  margin: 0 0 18px;
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.hero p,
.section-head p,
.split p,
.split li {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.35vw, 18px);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  padding: 0 18px;
  font-weight: 900;
}

.button.ghost { border-color: rgba(255,255,255,.3); background: transparent; color: rgba(255,255,255,.86); }

.hero-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  background: #f6f1e8;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
}

.hero-visual img { width: 100%; aspect-ratio: 1.32; object-fit: contain; padding: 14px; }

.hero-visual figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  border-radius: 999px;
  background: rgba(250,247,239,.92);
  color: var(--charcoal);
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 900;
}

.value-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.value-bar span {
  display: grid;
  min-height: 58px;
  place-items: center;
  background: #fff;
  color: var(--muted);
  font-weight: 900;
}

.section { padding: 52px clamp(18px, 5vw, 72px); }
.section.muted { background: #f4eee2; }

.section-head { max-width: 780px; margin-bottom: 24px; }
.section-head h2, .split h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.section-head p, .split p, .split li { color: var(--muted); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(31,37,34,.08);
}

.product-visual { background: #f6f1e8; border-bottom: 1px solid var(--line); }
.product-visual img { width: 100%; aspect-ratio: 1.3; object-fit: contain; padding: 12px; }
.product-card-body { padding: 16px; }
.product-card h3 { margin: 0 0 8px; font-size: 18px; line-height: 1.25; }
.product-card p { margin: 0; color: var(--muted); }

.contact-section { background: var(--cream); }
.contact-form {
  display: grid;
  gap: 14px;
  max-width: 860px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  padding: clamp(18px, 3vw, 26px);
  box-shadow: 0 14px 34px rgba(31,37,34,.08);
}
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.contact-form label { display: grid; gap: 7px; color: var(--charcoal); font-weight: 900; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  padding: 12px 13px;
  font: inherit;
  font-weight: 500;
}
.contact-form textarea { resize: vertical; min-height: 132px; }
.contact-form button { justify-self: start; cursor: pointer; }
.contact-form button:disabled { cursor: wait; opacity: .68; }
.hp-field { position: absolute; left: -9999px; opacity: 0; }
.form-status { min-height: 24px; margin: 0; color: var(--muted); font-weight: 800; }
.form-status.success { color: #246b38; }
.form-status.error { color: #9a2f1c; }
.form-status.pending { color: var(--orange); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: 28px;
  align-items: stretch;
  padding: 54px clamp(18px, 5vw, 72px);
  background: var(--cream);
}

.split ul { margin: 18px 0 0; padding-left: 20px; }

.process-card {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 14px 34px rgba(31,37,34,.08);
}

.process-card strong { font-size: 20px; }
.process-card span {
  display: block;
  border-radius: 14px;
  background: var(--cream);
  padding: 12px 14px;
  color: var(--muted);
  font-weight: 900;
}

:focus-visible { outline: 3px solid #f08a4b; outline-offset: 3px; }

@media (max-width: 980px) {
  .hero, .split { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .desktop-nav { display: none; }
  .hero { padding-block: 36px; }
  .hero h1 { font-size: clamp(32px, 10vw, 44px); }
  .value-bar { grid-template-columns: repeat(2, 1fr); }
  .product-grid, .form-row { grid-template-columns: 1fr; }
  .button.ghost { width: 100%; }
}
