/* Saline County Gravel — black shield, hot green, iron yellow. */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,600;0,700;1,700;1,800&family=Barlow:wght@400;500;600;700;800&display=swap');

:root {
  --green: #46B520;
  --green-dark: #37940f;
  --yellow: #F5D000;
  --ink: #141414;
  --coal: #1d1f1c;
  --paper: #ffffff;
  --bone: #f4f6f2;
  --line: #e2e6de;
  --muted: #4d534a;
  --radius: 14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', system-ui, sans-serif; font-size: 17px; font-weight: 500;
  color: var(--ink); background: var(--paper); line-height: 1.6;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; }
a { color: var(--green-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { font-family: 'Barlow Condensed', sans-serif; font-style: italic; font-weight: 800; text-transform: uppercase; letter-spacing: .01em; line-height: 1.08; }
h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); }
h3 { font-size: 1.25rem; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
section { padding: 52px 0; }

/* Header */
.site-header { background: var(--ink); border-bottom: 4px solid var(--green); position: sticky; top: 0; z-index: 1000; }
.site-header .bar { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 14px; }
.brand { font-family: 'Barlow Condensed', sans-serif; font-style: italic; font-weight: 800; font-size: 1.35rem; color: #fff; text-transform: uppercase; white-space: nowrap; }
.brand em { color: var(--green); font-style: italic; }
.brand:hover { text-decoration: none; }
nav ul { list-style: none; display: flex; gap: 20px; align-items: center; }
nav a { color: #e8ece5; font-weight: 700; font-size: .95rem; }
nav a:hover { color: var(--yellow); text-decoration: none; }
nav a.cta { background: var(--green); color: #fff; padding: 9px 18px; border-radius: 9px; }
nav a.cta:hover { background: var(--green-dark); }
.burger { display: none; background: none; border: 0; cursor: pointer; padding: 10px; }
.burger span { display: block; width: 24px; height: 3px; background: #fff; border-radius: 2px; margin: 5px 0; }

/* Hero */
.hero { background: linear-gradient(150deg, #101210, #1e2a17 65%, #17240f); color: #fff; padding: 64px 0; }
.hero-flex { display: flex; align-items: center; gap: 40px; }
.hero .lead { color: #d8e3d0; font-size: 1.15rem; max-width: 560px; margin: 14px 0 26px; }
.hero .logo-big { width: 300px; max-width: 38vw; margin-left: auto; flex-shrink: 0; border-radius: 18px; }
.eyebrow { font-family: 'Barlow Condensed', sans-serif; font-style: italic; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; font-size: .85rem; color: var(--yellow); }
.hero h1 .green { color: var(--green); }

.btn { display: inline-block; font-family: 'Barlow', sans-serif; font-weight: 800; font-size: 1rem; padding: 13px 26px; border-radius: 10px; border: 0; cursor: pointer; text-decoration: none !important; }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); }
.btn-yellow { background: var(--yellow); color: #141414; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-ghost { background: transparent; border: 2px solid rgba(255,255,255,.7); color: #fff; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Cards & grids */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .98rem; }
section.alt { background: var(--bone); }
section.dark { background: var(--ink); color: #fff; }
section.dark h2 { color: #fff; }
section.dark p { color: #ccd3c7; }
.price-tag { font-family: 'Barlow Condensed', sans-serif; font-style: italic; font-weight: 800; font-size: 1.7rem; color: var(--green-dark); }
.price-tag small { font-size: .95rem; color: var(--muted); font-family: 'Barlow'; font-style: normal; font-weight: 600; }

/* Forms */
label { display: block; font-weight: 800; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; margin: 14px 0 5px; color: var(--ink); }
input, select, textarea {
  width: 100%; padding: 13px 15px; border: 2px solid var(--line); border-radius: 10px;
  font: inherit; font-weight: 600; color: var(--ink); background: #fff;
  -webkit-appearance: none; appearance: none;
}
select { cursor: pointer; padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%2346B520' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(70,181,32,.18); }
input[type="checkbox"], input[type="radio"] { width: auto; appearance: auto; -webkit-appearance: auto; accent-color: var(--green); }

/* Calculator + order */
.calc-result { background: var(--ink); color: #fff; border-radius: var(--radius); padding: 22px; margin-top: 18px; }
.calc-result .big { font-family: 'Barlow Condensed', sans-serif; font-style: italic; font-weight: 800; font-size: 2.4rem; color: var(--green); }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; background: var(--green); color: #fff; font-weight: 800; margin-right: 10px; font-style: normal; }

/* Track timeline */
.timeline { list-style: none; margin: 18px 0 0; }
.timeline li { position: relative; padding: 0 0 22px 40px; }
.timeline li::before { content: ''; position: absolute; left: 11px; top: 26px; bottom: 0; width: 3px; background: var(--line); }
.timeline li:last-child::before { display: none; }
.timeline .dot { position: absolute; left: 0; top: 2px; width: 24px; height: 24px; border-radius: 50%; background: #fff; border: 3px solid var(--line); }
.timeline li.done .dot { background: var(--green); border-color: var(--green); }
.timeline li.now .dot { background: var(--yellow); border-color: var(--yellow); box-shadow: 0 0 0 5px rgba(245,208,0,.25); }
.timeline b { display: block; }
.timeline .when { color: var(--muted); font-size: .85rem; }

/* Dispatch board */
.order-card { border-left: 6px solid var(--green); }
.order-card.paid { border-left-color: var(--yellow); }
.status-pill { display: inline-block; padding: 3px 12px; border-radius: 999px; font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; background: var(--bone); }
.status-pill.on_the_way { background: #fff3b0; }
.status-pill.delivered { background: #d8f2cc; }

/* Footer */
.site-footer { background: var(--ink); color: #c9d0c3; padding: 44px 0 24px; margin-top: 50px; border-top: 4px solid var(--green); }
.site-footer h4 { color: #fff; font-family: 'Barlow Condensed', sans-serif; font-style: italic; text-transform: uppercase; margin-bottom: 10px; }
.footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; margin-bottom: 26px; }
.site-footer a { color: #8fdc6e; display: block; margin: 5px 0; }
.footer-base { border-top: 1px solid #2c2f2a; padding-top: 16px; font-size: .85rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* Install banner */
.install-bar { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 2000; background: var(--ink); color: #fff; border-radius: 14px; box-shadow: 0 10px 30px rgba(0,0,0,.35); padding: 13px 16px; display: flex; align-items: center; gap: 13px; flex-wrap: wrap; border: 1px solid #2e332b; }
.install-bar img { width: 40px; height: 40px; border-radius: 9px; }

@media (max-width: 820px) {
  .grid { grid-template-columns: 1fr; }
  .hero-flex { flex-direction: column-reverse; text-align: left; }
  .hero .logo-big { margin: 0 auto; max-width: 60vw; }
  nav { display: none; }
  nav.open { display: block; position: absolute; top: 64px; left: 0; right: 0; background: var(--ink); border-bottom: 4px solid var(--green); }
  nav.open ul { flex-direction: column; align-items: stretch; gap: 0; padding: 8px 0 12px; }
  nav.open a { display: block; padding: 13px 22px; }
  .burger { display: block; }
  .footer-cols { grid-template-columns: 1fr; }
}
