/* ============================================================
   SITELY DEMO — "Villalobos Concrete, Inc." prospect mockup.
   Sample marketing site built to pitch a real, family-owned
   Bakersfield, CA concrete contractor. Not affiliated.
   Stock photos + placeholder sample reviews. Not indexed.
   Warm terracotta / espresso / gold — Central Valley family feel.
   ============================================================ */
:root {
  --rust: #b4502a;
  --rust-d: #973f1f;
  --ink: #241a15;
  --ink-2: #33261e;
  --ink-3: #403126;
  --gold: #d98a3d;
  --gold-d: #c2762c;
  --sand: #f4ede4;
  --cream: #faf6f0;
  --paper: #ffffff;
  --body: #6a5d54;
  --heading: #241a15;
  --line: #e4d9cc;
  --line-dk: #4c3b2e;
  --shadow: 0 16px 40px rgba(90, 50, 25, .14);
  --shadow-sm: 0 8px 22px rgba(90, 50, 25, .10);
  --radius: 10px;
  --radius-sm: 8px;
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--ink); background: var(--paper); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1220px, 92%); margin: 0 auto; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--heading); line-height: 1.16; letter-spacing: -.01em; font-weight: 700; }
section { scroll-margin-top: 82px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  text-decoration: none; text-align: center;
  padding: .82rem 1.7rem; border-radius: var(--radius-sm); cursor: pointer; border: 2px solid transparent;
  transition: background .16s ease, transform .14s ease, color .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.btn-block { width: 100%; }
.btn-rust { background: var(--rust); color: #fff; }
.btn-rust:hover { background: var(--rust-d); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-d); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-3); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--rust); border-color: var(--rust); }
.btn-ghost:hover { background: var(--rust); color: #fff; }
.btn-ghost-dark { background: transparent; color: var(--ink); border-color: rgba(36,26,21,.5); }
.btn-ghost-dark:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-outline-light { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--ink); color: #e6d8c9; font-size: .78rem; font-weight: 500;
  letter-spacing: .02em; padding: 9px 0; border-bottom: 1px solid var(--line-dk);
}
.topbar-inner { display: flex; justify-content: space-between; gap: 8px 24px; flex-wrap: wrap; align-items: center; }
.topbar .gl { color: var(--gold); }
.topbar b { color: var(--gold); font-weight: 700; }
.topbar a { color: #fff; text-decoration: none; font-weight: 700; }
.topbar a:hover { color: var(--gold); text-decoration: underline; }

/* ---------- Header ---------- */
.site-header { background: var(--cream); position: sticky; top: 0; z-index: 50; border-bottom: 3px solid var(--rust); box-shadow: 0 2px 14px rgba(90,50,25,.07); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 12px 0; }
.brand { text-decoration: none; line-height: 1; flex: none; display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 48px; height: 48px; flex: none; background: var(--rust); color: var(--cream);
  display: grid; place-items: center; border-radius: var(--radius-sm); font-family: var(--font-head);
  font-weight: 800; font-size: 1.15rem; letter-spacing: .01em; box-shadow: inset 0 0 0 3px rgba(255,255,255,.14);
}
.brand-txt .brand-top { display: block; font-family: var(--font-head); font-weight: 800; font-size: 1.42rem; letter-spacing: -.01em; color: var(--ink); }
.brand-txt .brand-sub { display: block; font-size: .62rem; font-weight: 700; letter-spacing: .26em; text-transform: uppercase; color: var(--rust); margin-top: 3px; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  color: var(--ink-2); font-family: var(--font-head); font-size: .95rem; font-weight: 500;
  letter-spacing: 0; text-decoration: none; padding: 8px 0; position: relative;
}
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 2px; background: var(--rust); transition: right .2s ease; border-radius: 2px; }
.nav a:hover { color: var(--rust); }
.nav a:hover::after { right: 0; }
.header-btns { display: flex; gap: 12px; align-items: center; flex: none; }
.header-call { text-decoration: none; color: var(--ink); text-align: right; line-height: 1.15; }
.header-call small { display: block; font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-d); font-weight: 600; }
.header-call b { font-family: var(--font-head); font-size: 1.12rem; letter-spacing: -.01em; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--ink); margin: 5px 0; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero { position: relative; isolation: isolate; color: #fff; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 46%; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(102deg, rgba(31,20,14,.92) 0%, rgba(41,26,17,.8) 44%, rgba(41,26,17,.42) 100%);
}
.hero-inner { padding: 86px 0 96px; max-width: 730px; }
.hero .kicker {
  display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-head);
  font-size: .8rem; font-weight: 600; letter-spacing: .08em;
  color: var(--ink); background: var(--gold); padding: 6px 15px; border-radius: 999px; margin-bottom: 22px;
}
.hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.85rem); font-weight: 800; letter-spacing: -.02em; margin-bottom: 18px; text-shadow: 0 2px 24px rgba(0,0,0,.45); }
.hero h1 .gl { color: var(--gold); }
.hero-sub { color: #f0e6db; font-size: 1.08rem; max-width: 610px; margin-bottom: 26px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 12px; margin-bottom: 30px; }
.hero-badges span { font-family: var(--font-head); font-size: .82rem; font-weight: 500; color: #fbeee1; display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); padding: 6px 13px; border-radius: 999px; }
.hero-badges .stars { color: var(--gold); letter-spacing: 1px; }
.hero-badges .esp { background: rgba(217,138,61,.22); border-color: rgba(217,138,61,.5); color: #ffe6c9; font-weight: 600; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ---------- Trust / stats strip ---------- */
.stats { background: var(--rust); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { text-align: center; padding: 26px 16px; border-left: 1px solid rgba(255,255,255,.16); }
.stat:first-child { border-left: 0; }
.stat b { display: block; font-family: var(--font-head); font-weight: 800; font-size: 2.2rem; line-height: 1; color: #ffe6cf; letter-spacing: -.01em; }
.stat span { display: block; margin-top: 7px; font-family: var(--font-head); font-weight: 500; font-size: .82rem; letter-spacing: .02em; color: #f6e4d5; }

/* ---------- Section shell ---------- */
.sec { padding: 76px 0 82px; }
.sec.alt { background: var(--sand); }
.sec-head { max-width: 780px; margin: 0 auto 48px; text-align: center; }
.eyebrow { font-family: var(--font-head); font-size: .82rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--rust); margin-bottom: 12px; }
.sec-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.sec-head p { color: var(--body); font-size: 1.02rem; margin-top: 14px; }

/* ---------- Service cards ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: box-shadow .2s ease, transform .2s ease; }
.svc-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.svc-card figure { position: relative; overflow: hidden; }
.svc-card img { width: 100%; aspect-ratio: 5 / 3; object-fit: cover; transition: transform .4s ease; }
.svc-card:hover img { transform: scale(1.04); }
.svc-card figure b {
  position: absolute; left: 12px; bottom: 12px; background: var(--gold); color: var(--ink);
  font-family: var(--font-head); font-weight: 600; font-size: .72rem; letter-spacing: .06em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 999px;
}
.svc-body { padding: 22px 24px 26px; flex: 1; }
.svc-body h3 { font-size: 1.28rem; margin-bottom: 8px; }
.svc-body p { font-size: .93rem; color: var(--body); }

/* ---------- Split (photo + espresso panel) ---------- */
.split { display: grid; grid-template-columns: 1fr 1.05fr; }
.split-media { min-height: 500px; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-panel { background: var(--ink); color: #f4e9df; padding: 74px 7% 74px 6%; }
.split-panel .eyebrow { color: var(--gold); }
.split-panel h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.35rem); margin-bottom: 18px; }
.split-panel p { color: #d9c9bb; font-size: 1rem; margin-bottom: 16px; }
.tick { list-style: none; display: grid; gap: 14px; margin: 24px 0 30px; }
.tick li { position: relative; padding-left: 36px; font-size: .97rem; color: #ecdfd3; }
.tick li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 24px; height: 24px; background: var(--gold); color: var(--ink); border-radius: 50%; display: grid; place-items: center; font-size: .82rem; font-weight: 800; }
.tick li b { color: #fff; }

/* ---------- About / family band ---------- */
.about { text-align: center; }
.about-inner { max-width: 880px; margin: 0 auto; }
.about h2 { font-size: clamp(1.8rem, 3.4vw, 2.55rem); margin-bottom: 8px; }
.about .sig { font-family: var(--font-head); font-weight: 600; letter-spacing: .01em; color: var(--rust); margin-bottom: 22px; font-size: 1rem; }
.about p { color: var(--body); font-size: 1.04rem; margin-bottom: 16px; }
.about p b { color: var(--ink); }

/* ---------- Gallery strip ---------- */
.strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.strip figure { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.strip img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .45s ease; }
.strip figure:hover img { transform: scale(1.06); }
.strip figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 16px 13px; background: linear-gradient(transparent, rgba(30,19,13,.86)); font-family: var(--font-head); font-weight: 600; font-size: .84rem; letter-spacing: .01em; color: #fff; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px 24px; box-shadow: var(--shadow-sm); }
.step .num { font-family: var(--font-head); font-weight: 800; font-size: 2.5rem; color: var(--gold); line-height: 1; display: block; margin-bottom: 10px; }
.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { font-size: .9rem; color: var(--body); }

/* ---------- Reviews ---------- */
.rev-head { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 32px; }
.rev-score { display: flex; align-items: center; gap: 16px; }
.rev-score .big { font-family: var(--font-head); font-weight: 800; font-size: 3rem; line-height: 1; color: var(--rust); }
.rev-score .stars { color: var(--gold); font-size: 1.3rem; letter-spacing: 2px; }
.rev-score small { display: block; color: var(--body); font-size: .84rem; margin-top: 2px; }
.star-empty { color: #d9c3b0; }
.rev-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rev-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); border-top: 3px solid var(--gold); padding: 24px 22px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.rev-card .stars { color: var(--gold); letter-spacing: 2px; font-size: 1rem; margin-bottom: 10px; }
.rev-tag { display: inline-block; align-self: flex-start; font-family: var(--font-head); font-size: .64rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-d); background: var(--sand); border: 1px solid var(--line); padding: 3px 9px; border-radius: 999px; margin-bottom: 12px; }
.rev-card p { font-size: .95rem; color: #4a4038; flex: 1; }
.rev-card-cta { border-top-color: var(--rust); background: var(--cream); }
.rev-user { display: flex; align-items: center; gap: 10px; margin-top: 18px; }
.rev-avatar { width: 38px; height: 38px; border-radius: 50%; flex: none; display: grid; place-items: center; color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1rem; background: var(--rust); }
.rev-card-cta .rev-avatar { background: var(--gold); color: var(--ink); }
.rev-user b { font-size: .9rem; display: block; line-height: 1.2; color: var(--ink); }
.rev-user span { font-size: .76rem; color: var(--body); }
.rev-note { text-align: center; margin-top: 24px; font-size: .84rem; color: var(--body); max-width: 760px; margin-left: auto; margin-right: auto; }

/* ---------- Service area ---------- */
.areas { background: var(--ink); color: #fff; text-align: center; padding: 76px 0 82px; }
.areas .eyebrow { color: var(--gold); }
.areas h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 12px; }
.areas p { color: #d4c4b6; max-width: 660px; margin: 0 auto 30px; }
.area-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 11px; list-style: none; max-width: 900px; margin: 0 auto; }
.area-list li { border: 1px solid var(--line-dk); background: rgba(255,255,255,.04); padding: 9px 20px; border-radius: 999px; font-family: var(--font-head); font-weight: 500; font-size: .9rem; color: #f0e5da; }
.area-list li.hq { background: var(--gold); color: var(--ink); border-color: var(--gold); font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }
.area-list li.hq span { font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; background: var(--ink); color: var(--gold); padding: 2px 7px; border-radius: 999px; }

/* ---------- CTA band ---------- */
.cta { background: var(--gold); color: var(--ink); text-align: center; padding: 70px 0 74px; }
.cta h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.cta p { font-size: 1.06rem; max-width: 660px; margin: 0 auto 26px; color: #4a3418; }
.cta .hero-btns { justify-content: center; }
.cta .fine { font-size: .84rem; margin-top: 20px; color: #5a411f; font-weight: 500; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 46px; align-items: start; }
.contact-info h3 { font-size: 1.6rem; margin-bottom: 6px; }
.info-rows { display: grid; gap: 18px; margin: 22px 0 26px; }
.info-row { display: flex; gap: 14px; align-items: flex-start; }
.info-row .ic { width: 42px; height: 42px; flex: none; background: var(--rust); color: #fff; display: grid; place-items: center; border-radius: var(--radius-sm); font-size: 1rem; }
.info-row b { font-family: var(--font-head); font-size: 1.02rem; display: block; color: var(--ink); }
.info-row span, .info-row a { font-size: .93rem; color: var(--body); text-decoration: none; }
.info-row a:hover { color: var(--rust); }
.info-label { font-family: var(--font-head); font-weight: 600; letter-spacing: .02em; display: block; margin-bottom: 8px; color: var(--ink); }
.hours-table { list-style: none; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.hours-table li { display: flex; justify-content: space-between; padding: 11px 16px; font-size: .92rem; }
.hours-table li:nth-child(odd) { background: var(--cream); }
.hours-table li b { font-family: var(--font-body); font-weight: 700; color: var(--ink); }
.hours-table .closed { color: var(--rust); font-weight: 600; }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a { width: 42px; height: 42px; display: grid; place-items: center; background: var(--ink); color: #fff; border-radius: var(--radius-sm); text-decoration: none; font-family: var(--font-head); font-weight: 700; font-size: .85rem; transition: background .16s, transform .16s; }
.socials a:hover { background: var(--rust); transform: translateY(-2px); }
.map-embed { border: 0; width: 100%; height: 300px; border-radius: var(--radius); margin-top: 26px; }

.quote-form { background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--rust); border-radius: var(--radius); padding: 32px 30px 34px; box-shadow: var(--shadow-sm); }
.quote-form h3 { font-size: 1.5rem; margin-bottom: 4px; }
.quote-form > p { font-size: .92rem; color: var(--body); margin-bottom: 18px; }
.quote-form > p b { color: var(--rust); }
.fld { margin-bottom: 15px; }
.fld label { display: block; font-family: var(--font-head); font-weight: 500; font-size: .8rem; letter-spacing: .01em; margin-bottom: 6px; color: var(--ink); }
.fld input, .fld select, .fld textarea {
  width: 100%; padding: .74rem .9rem; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .95rem; background: var(--cream); color: var(--ink);
}
.fld input::placeholder, .fld textarea::placeholder { color: #ab9c8f; }
.fld input:focus, .fld select:focus, .fld textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); background: #fff; }
.fld-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
.form-status { margin-top: 14px; font-size: .92rem; font-weight: 600; color: #2f7d4c; min-height: 1.2em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #cdbcac; padding: 62px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.1fr; gap: 42px; }
.footer-brand .brand-top { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: #fff; letter-spacing: -.01em; }
.footer-brand .brand-sub { display: block; font-size: .62rem; font-weight: 700; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin: 3px 0 14px; }
.footer-brand p { font-size: .92rem; color: #bba896; max-width: 360px; }
.site-footer h4 { color: #fff; font-size: 1.05rem; letter-spacing: .01em; margin-bottom: 15px; }
.site-footer ul { list-style: none; display: grid; gap: 9px; }
.site-footer a { color: #cdbcac; text-decoration: none; font-size: .92rem; }
.site-footer a:hover { color: var(--gold); }
.footer-contact li { font-size: .92rem; margin-bottom: 10px; color: #cdbcac; }
.footer-contact b { color: #fff; font-family: var(--font-body); }
.footer-bottom { border-top: 1px solid var(--line-dk); margin-top: 46px; padding-top: 22px; text-align: center; font-size: .84rem; color: #9c8975; }
.footer-bottom a { color: #fff; font-weight: 700; text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Sitely demo chip ---------- */
.demo-chip {
  position: fixed; right: 18px; bottom: 18px; z-index: 70; display: flex; align-items: center; gap: 8px;
  background: #fff; color: #101828; text-decoration: none; border-radius: 999px; padding: .55rem 1rem .55rem .7rem;
  font-family: var(--font-body); font-size: .85rem; font-weight: 600; box-shadow: 0 10px 30px rgba(2,8,20,.35);
  border: 1px solid #e4e9f0; transition: transform .16s ease;
}
.demo-chip:hover { transform: translateY(-2px); }
.demo-chip svg { flex: none; }

/* ---------- Careers ---------- */
.careers .jobs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
.job-card { display: flex; flex-direction: column; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px 24px; text-decoration: none; color: inherit; box-shadow: var(--shadow-sm); transition: box-shadow .2s ease, transform .2s ease; }
.job-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.job-tag { font-family: var(--font-head); font-weight: 600; font-size: .66rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink); background: var(--gold); padding: 4px 11px; border-radius: 999px; margin-bottom: 14px; }
.job-card h3 { font-size: 1.26rem; margin-bottom: 8px; color: var(--heading); }
.job-card p { font-size: .92rem; color: var(--body); flex: 1; margin-bottom: 16px; }
.job-apply { font-family: var(--font-head); font-weight: 600; font-size: .82rem; letter-spacing: .02em; color: var(--rust); }
.job-card:hover .job-apply { color: var(--rust-d); }
.jobs-note { text-align: center; margin-top: 30px; font-size: .92rem; color: var(--body); }
.jobs-note a { color: var(--rust); font-weight: 700; text-decoration: none; }
.jobs-note a:hover { text-decoration: underline; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .strip { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split-media { min-height: 320px; order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .header-call { display: none; }
  .rev-cards { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav {
    position: fixed; inset: 0 0 auto 0; flex-direction: column; align-items: flex-start; gap: 2px;
    background: var(--cream); padding: 78px 7vw 24px; display: none; box-shadow: 0 20px 40px rgba(36,26,21,.22);
    border-bottom: 3px solid var(--rust);
  }
  .nav.open { display: flex; }
  .nav a { width: 100%; padding: 13px 0; border-bottom: 1px solid var(--line); }
  .nav a::after { display: none; }
  .nav-toggle { display: block; position: relative; z-index: 80; }
  .header-call { display: none; }
  .header-btns .btn { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.16); }
  .svc-grid { grid-template-columns: 1fr; }
  .strip { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .fld-2 { grid-template-columns: 1fr; }
  .hero-inner { padding: 62px 0 70px; }
  .rev-head { flex-direction: column; align-items: flex-start; }
}

/* Formspree honeypot — must stay visually hidden but focusable-off for bots */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
