:root {
  --bg: #f8f5ef;
  --card: #ffffff;
  --text: #1e1d1a;
  --muted: #6f6a60;
  --line: rgba(36, 31, 22, 0.12);
  --accent: #d69022;
  --accent-dark: #9a5e10;
  --dark: #22201b;
  --green: #4b6b3f;
  --shadow: 0 12px 34px rgba(53, 39, 18, 0.12);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 18px;
  line-height: 1.65;
}

a { color: inherit; }
a:focus-visible, .btn:focus-visible {
  outline: 4px solid rgba(75, 107, 63, .42);
  outline-offset: 4px;
}
.container { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(248, 245, 239, .84);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 20px;
}
.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), #f1c56d);
  color: #281a08;
  box-shadow: 0 10px 28px rgba(214, 144, 34, .28);
}
.logo-text { font-size: 19px; }
.nav { display: flex; gap: 22px; color: var(--text); font-size: 18px; font-weight: 700; }
.nav a { text-decoration: none; }
.nav a:hover { color: var(--text); }
.phone {
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.top-phone {
  padding: 12px 16px;
  background: var(--green);
  color: #fff;
  border-radius: var(--radius);
  font-size: 18px;
}

.hero { padding: 34px 0 20px; }
.hero-grid {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-dark);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 16px;
}
.eyebrow::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}
h1, h2, h3, h4, p { margin-top: 0; }
h1 {
  margin: 14px 0 14px;
  font-size: 50px;
  line-height: 1.12;
  letter-spacing: 0;
}
.hero-subtitle {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.5;
}
.direct-notice {
  max-width: 720px;
  margin: 16px auto 18px;
  padding: 10px 14px;
  background: #fff;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  color: #251809;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.16;
  text-transform: uppercase;
}
.hero-note {
  display: inline-flex;
  margin-top: 4px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 24px 0 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 24px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  font-size: 20px;
  text-align: center;
}
.btn.primary { background: var(--accent); color: #251809; box-shadow: 0 16px 34px rgba(214, 144, 34, .32); }
.btn.primary:hover { transform: translateY(-1px); }
.btn.secondary { border-color: rgba(36, 31, 22, 0.22); background: #fff; }
.btn.big { width: 100%; min-height: 70px; font-size: 22px; }
.section { padding: 34px 0; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.benefits article, .product-card, .delivery-list div, .faq-grid article, .order-card {
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(53, 39, 18, .06);
}
.benefits article { padding: 24px; }
.benefits strong { display: block; font-size: 21px; margin-bottom: 8px; line-height: 1.25; }
.benefits span { color: var(--muted); font-size: 18px; }
.section-head { max-width: 720px; margin-bottom: 28px; }
.section-head h2, .delivery h2, .order h2 {
  margin: 12px 0;
  font-size: 44px;
  line-height: 1.12;
  letter-spacing: 0;
}
.section-head p, .delivery p, .order p { color: var(--muted); font-size: 21px; }
.category-block { margin-top: 34px; }
.catalog { padding-top: 18px; }
.category-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 14px;
}
.category-title h3 { margin: 0; font-size: 31px; letter-spacing: 0; line-height: 1.2; }
.category-title p { margin: 0; max-width: 560px; color: var(--muted); font-size: 18px; }
.cards-grid { display: grid; gap: 16px; }
.cards-grid.two { grid-template-columns: repeat(2, 1fr); }
.cards-grid.three { grid-template-columns: repeat(3, 1fr); }
.product-card {
  padding: 24px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-icon {
  height: 72px;
  border-radius: var(--radius);
  margin-bottom: 18px;
  border: 1px solid rgba(0,0,0,.05);
}
.product-photo {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  margin-bottom: 18px;
  border: 1px solid rgba(0,0,0,.08);
  background: #eee;
}
.sand .product-icon { background: linear-gradient(135deg, #ad721c, #f2cf7a); }
.sand-light .product-icon { background: linear-gradient(135deg, #d09b3c, #f8e4a6); }
.gravel .product-icon { background: radial-gradient(circle, #d1c8b9 0 18%, #696158 19% 31%, #bda78b 32% 44%, #4c4944 45% 60%, #8c857b 61% 100%); }
.dolomite .product-icon { background: radial-gradient(circle, #f0eadc 0 18%, #bdb8a9 19% 31%, #ded6c4 32% 44%, #8e897d 45% 60%, #f7f1e5 61% 100%); }
.screening .product-icon { background: linear-gradient(135deg, #7d7569, #cfc5b6); }
.slag .product-icon { background: linear-gradient(135deg, #423f3b, #928c82); }
.dark-slag .product-icon { background: linear-gradient(135deg, #1d1d1d, #59534a); }
.humus .product-icon { background: linear-gradient(135deg, #2a1c12, #6b4024); }
.horse-humus .product-icon { background: linear-gradient(135deg, #3b2413, #8a5a2f); }
.firewood .product-icon { background: linear-gradient(135deg, #5f351d, #b06f36); }
.product-card h4 { margin-bottom: 8px; font-size: 24px; line-height: 1.25; }
.product-card p { color: var(--muted); margin-bottom: 22px; font-size: 18px; }
.price {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0;
}
.price span { font-size: 17px; color: var(--muted); letter-spacing: 0; font-weight: 700; }
.delivery { background: rgba(34,32,27,.96); color: #fff; margin-top: 38px; }
.delivery .eyebrow { color: #f4c56a; }
.delivery p { color: rgba(255,255,255,.82); }
.delivery-grid { display: grid; grid-template-columns: .85fr 1fr; gap: 36px; align-items: center; }
.delivery-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.delivery-list div {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
  padding: 22px;
}
.delivery-list strong { display: block; margin-bottom: 6px; font-size: 20px; }
.delivery-list span { color: rgba(255,255,255,.82); font-size: 18px; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.faq-grid article { padding: 24px; }
.faq-grid h3 {
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.25;
}
.faq-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}
.order-card {
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 26px;
  align-items: center;
}
.order-card .btn { grid-column: 1 / -1; }
.order-steps { display: grid; gap: 12px; }
.order-steps div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 20px;
}
.order-steps span {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #f2e2c2;
  color: var(--accent-dark);
}
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer p { margin: 6px 0 0; color: var(--muted); }

@media (max-width: 900px) {
  .nav { display: none; }
  .delivery-grid, .order-card { grid-template-columns: 1fr; }
  .benefits-grid, .cards-grid.two, .cards-grid.three, .delivery-list, .faq-grid { grid-template-columns: repeat(2, 1fr); }
  .category-title { display: block; }
  .category-title p { margin-top: 6px; }
  h1 { font-size: 42px; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 24px, 1160px); }
  .header-inner { min-height: 72px; }
  .logo-text { display: none; }
  .top-phone { padding: 11px 12px; font-size: 16px; }
  .hero { padding-top: 24px; }
  h1 { font-size: 32px; }
  .hero-subtitle { font-size: 20px; }
  .direct-notice { font-size: 19px; padding: 10px 12px; }
  .hero-note { display: flex; justify-content: center; font-size: 16px; }
  .btn { width: 100%; font-size: 19px; min-height: 62px; }
  .product-photo { height: 180px; }
  .benefits-grid, .cards-grid.two, .cards-grid.three, .delivery-list, .faq-grid { grid-template-columns: 1fr; }
  .section-head h2, .delivery h2, .order h2 { font-size: 32px; }
  .order-card { padding: 24px; }
  .footer-inner { display: block; }
  .footer .phone { display: inline-flex; margin-top: 16px; }
}
