:root {
  color-scheme: light;
  --bg: #f7f3ea;
  --panel: #fffaf0;
  --text: #2c261d;
  --muted: #6c6256;
  --line: #dfd2bf;
  --accent: #9a5f2c;
  --accent-dark: #6f3f1d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.92);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero {
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(154, 95, 44, 0.18), transparent 34%),
    linear-gradient(135deg, #fbf5e9 0%, #eadcc6 100%);
}

.hero-grid,
.feature-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.section {
  padding: 56px 0;
}

.section-title {
  max-width: 760px;
  margin-bottom: 28px;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  border-top: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.18;
}

h1 {
  font-size: clamp(38px, 6vw, 64px);
}

h2 {
  font-size: clamp(24px, 3vw, 34px);
}

h3 {
  font-size: 20px;
}

p {
  margin: 0 0 16px;
}

.lead {
  color: var(--muted);
  font-size: 19px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--accent-dark);
  border-radius: 999px;
  background: var(--accent-dark);
  color: #fff;
  font-weight: 700;
}

.button.secondary {
  background: transparent;
  color: var(--accent-dark);
}

.card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: 0 12px 30px rgba(64, 43, 20, 0.08);
  padding: 26px;
}

.hero-card {
  justify-self: end;
}

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

.product dl {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 8px 16px;
  margin: 18px 0 0;
}

.product dt {
  color: var(--accent-dark);
  font-weight: 700;
}

.product dd {
  margin: 0;
  color: var(--muted);
}

.contact-card {
  margin-top: 28px;
}

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

li + li {
  margin-top: 8px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  color: var(--muted);
  background: #efe2cf;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-grid p {
  margin: 0;
}

@media (max-width: 780px) {
  .nav,
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-grid,
  .feature-grid,
  .product-list,
  .contact-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 52px 0;
  }
}
