:root {
  --sand: #f4ead8;
  --sand-deep: #e5cda7;
  --charcoal: #151515;
  --brown: #6f4b2a;
  --orange: #c47a2c;
  --cream: #fffaf0;
  --muted: #6d665d;
  --line: rgba(21, 21, 21, 0.12);
  --shadow: 0 24px 80px rgba(21, 21, 21, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 240, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; }
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, var(--charcoal), var(--brown));
  letter-spacing: -0.04em;
}
.brand-text { letter-spacing: -0.03em; }
.nav-links { display: flex; align-items: center; gap: 28px; font-weight: 600; }
.nav-links a:not(.button):hover { color: var(--orange); }
.nav-toggle { display: none; background: none; border: 0; font-size: 28px; cursor: pointer; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  background: var(--orange);
  color: white;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(196, 122, 44, 0.28);
}
.button:hover { transform: translateY(-1px); }
.button-secondary { background: var(--charcoal); box-shadow: none; }
.button-small { padding: 10px 16px; font-size: 14px; }

.hero {
  padding: 96px 0 70px;
  background:
    radial-gradient(circle at 80% 20%, rgba(196, 122, 44, 0.22), transparent 32%),
    linear-gradient(135deg, var(--sand), var(--cream) 55%);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
}
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.05em; margin: 0; }
h1 { font-size: clamp(42px, 7vw, 76px); max-width: 820px; }
h2 { font-size: clamp(30px, 4vw, 48px); }
h3 { font-size: 22px; }
.lead { font-size: 20px; max-width: 680px; color: var(--muted); margin: 24px 0 0; }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-card {
  background: rgba(255, 250, 240, 0.88);
  border: 1px solid rgba(21, 21, 21, 0.10);
  border-radius: 32px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.card-topline { height: 8px; width: 96px; background: var(--orange); border-radius: 999px; margin-bottom: 28px; }
.hero-card ul { margin: 24px 0 0; padding-left: 20px; color: var(--muted); }
.hero-card li { margin: 11px 0; }

.section { padding: 86px 0; }
.split { display: grid; grid-template-columns: 0.75fr 1fr; gap: 56px; align-items: start; }
.split > p { font-size: 19px; color: var(--muted); margin: 0; }
.intro-section { background: var(--cream); }
.section-heading { max-width: 720px; margin-bottom: 34px; }
.section-heading p:last-child { color: var(--muted); font-size: 18px; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-card {
  min-height: 220px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(21, 21, 21, 0.08); }
.product-card p { color: var(--muted); margin-bottom: 0; }

.dark-section {
  color: white;
  background:
    linear-gradient(135deg, rgba(21,21,21,0.92), rgba(80,50,25,0.92)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 14px);
}
.dark-section .eyebrow { color: var(--sand-deep); }
.dark-section p { color: rgba(255,255,255,0.76); }
.why-grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: 60px; }
.benefit-list { display: grid; gap: 18px; }
.benefit-list > div {
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 24px;
  padding: 24px;
  background: rgba(255,255,255,0.06);
}
.benefit-list h3 { color: white; }

.regions-card {
  background: var(--sand);
  border-radius: 34px;
  padding: 44px;
}
.contact-section { background: linear-gradient(180deg, var(--cream), var(--sand)); }
.contact-grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: 56px; align-items: start; }
.contact-grid > div p:last-child { color: var(--muted); font-size: 18px; }
.contact-form {
  display: grid;
  gap: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 18px 60px rgba(21,21,21,0.10);
}
label { display: grid; gap: 8px; font-weight: 700; }
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
  background: #fffdfa;
}
textarea { resize: vertical; }
.form-note { margin: 0; color: var(--muted); font-size: 14px; }
.footer { padding: 36px 0; background: var(--charcoal); color: white; }
.footer p { margin: 6px 0 0; color: rgba(255,255,255,0.68); }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; align-items: center; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .hero-grid, .split, .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 62px; }
  .product-grid { grid-template-columns: 1fr; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
}
