/* ============================================================
   H&V Montera — montáže nábytku a kuchyní, Brno
   Editorial craft look: warm plaster, deep forest green,
   burnt orange, serif display (Fraunces) + Inter
   ============================================================ */

:root {
  --bg: #ece9e1;
  --bg-2: #e3dfd4;
  --card: #f5f3ed;
  --ink: #1f261f;
  --green: #24382e;
  --green-2: #1b2b22;
  --green-ink: #e8e6dc;
  --green-muted: #a9b3a6;
  --orange: #d95321;
  --orange-dark: #b84314;
  --muted: #6d7166;
  --line: #d5d0c3;
  --line-dark: #37493e;
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --maxw: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

[id] { scroll-margin-top: 110px; }

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 560;
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.5rem, 5.6vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.35rem; line-height: 1.25; }

p { margin: 0 0 1em; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ---------- eyebrow: small caps with orange square ---------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--orange);
  flex: none;
}
.section-dark .eyebrow { color: var(--orange); }

/* ---------- arrow link ---------- */
.arrow-link {
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color .15s ease;
}
.arrow-link::after { content: "↗"; font-size: .9em; transition: transform .18s ease; }
.arrow-link:hover { color: var(--orange); }
.arrow-link:hover::after { transform: translate(2px, -2px); }

/* ---------- header ---------- */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.logo { text-decoration: none; line-height: 1.05; }
.logo .l-name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -.01em;
  display: block;
}
.logo .l-name em { font-style: normal; color: var(--orange); }
.logo .l-sub {
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .24em;
  color: var(--muted);
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: .92rem;
  padding: 9px 13px;
  color: var(--ink);
  border-radius: 999px;
}
.nav a:hover { color: var(--orange); }
.nav a.active { color: var(--orange); }
.nav .btn { margin-left: 14px; }
.nav .nav-tel {
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 12px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 4px 0;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); }
.btn-dark { background: var(--green); color: var(--green-ink); }
.btn-dark:hover { background: var(--green-2); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn-light { background: var(--bg); color: var(--ink); }
.btn-light:hover { background: #fff; }
.btn-whatsapp { background: #1f7a4d; color: #fff; }
.btn-whatsapp:hover { background: #17603c; }

/* ---------- hero (photo, overlay, serif headline) ---------- */
.hero {
  position: relative;
  color: #f2f0e8;
  overflow: hidden;
  background: var(--green-2);
}
.hero .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(20,30,24,.92) 8%, rgba(20,30,24,.55) 55%, rgba(20,30,24,.25) 100%);
}
.hero .container {
  position: relative;
  z-index: 2;
  padding-top: clamp(84px, 12vw, 150px);
  padding-bottom: clamp(84px, 12vw, 150px);
}
.hero h1 { color: #f7f5ee; max-width: 15ch; margin-bottom: .45em; }
.hero .lead {
  font-size: 1.08rem;
  color: #cfd2c4;
  max-width: 54ch;
  margin-bottom: 2em;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero .eyebrow { color: #e0906c; }
.hero .eyebrow::before { background: var(--orange); }

/* ---------- client / brand strip ---------- */
.brands-strip {
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
}
.brands-strip .container {
  display: flex;
  align-items: baseline;
  gap: clamp(24px, 5vw, 64px);
  flex-wrap: wrap;
}
.brands-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  flex: none;
}
.brand-pill {
  font-family: var(--font-serif);
  font-weight: 560;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: #a49e8e;
}

/* ---------- sections ---------- */
.section { padding: clamp(64px, 9vw, 110px) 0; }
.section-alt { background: var(--bg-2); }
.section-dark { background: var(--green); color: var(--green-ink); }
.section-dark h2, .section-dark h3 { color: #f2f0e6; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.section-head .sh-text { max-width: 620px; }
.section-head h2 { margin-bottom: .3em; }
.section-head p { color: var(--muted); margin: 0; }
.section-dark .section-head p { color: var(--green-muted); }
.section-head .sh-action { flex: none; padding-bottom: 6px; }

/* ---------- big stats (serif numbers) ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 5vw, 60px);
  text-align: center;
}
.stat .num {
  font-family: var(--font-serif);
  font-weight: 560;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.05;
  color: var(--orange);
  display: block;
}
.stat .lbl {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--green-muted);
  display: block;
  margin-top: 10px;
}
.section:not(.section-dark) .stat .lbl { color: var(--muted); }

/* ---------- service cards (photo + serif title + arrow) ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 3vw, 36px);
}
.card { text-decoration: none; display: block; }
.card .card-media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-2);
  margin-bottom: 20px;
}
.card .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  filter: saturate(.92);
}
.card:hover .card-media img { transform: scale(1.04); }
.card h3 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.card h3::after { content: "↗"; font-family: var(--font-sans); font-size: .8em; color: var(--orange); transition: transform .18s ease; }
.card:hover h3::after { transform: translate(3px, -3px); }
.card p { color: var(--muted); font-size: .93rem; margin: 0; }

/* ---------- editorial project grid ---------- */
.projects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.project { text-decoration: none; display: block; }
.project.offset { margin-top: clamp(40px, 6vw, 90px); }
.project .p-media {
  overflow: hidden;
  background: var(--bg-2);
  margin-bottom: 16px;
}
.project .p-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform .5s ease;
  filter: saturate(.92);
}
.project:hover .p-media img { transform: scale(1.03); }
.project h3 { font-size: 1.15rem; margin: 0 0 4px; display: inline-flex; gap: 10px; align-items: baseline; }
.project h3::after { content: "↗"; font-family: var(--font-sans); font-size: .78em; color: var(--orange); }
.project .p-meta {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--orange);
}

/* ---------- benefits / process ---------- */
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 44px);
}
.benefit { border-top: 1px solid var(--line); padding-top: 22px; }
.section-dark .benefit { border-top-color: var(--line-dark); }
.benefit .b-num {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 560;
  color: var(--orange);
  display: block;
  margin-bottom: 12px;
}
.benefit h3 { font-size: 1.12rem; margin-bottom: 8px; }
.benefit p { font-size: .92rem; color: var(--muted); margin: 0; }
.section-dark .benefit p { color: var(--green-muted); }

/* ---------- checklist ---------- */
.checklist { list-style: none; padding: 0; margin: 0 0 1.6em; display: grid; gap: 13px; }
.checklist li { padding-left: 26px; position: relative; }
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 9px;
  height: 9px;
  background: var(--orange);
}
.checklist.two-col { grid-template-columns: 1fr 1fr; column-gap: 36px; }

/* ---------- split layout ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}
.split .photo { overflow: hidden; }
.split .photo img {
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  width: 100%;
  filter: saturate(.92);
}
.split.reverse > :first-child { order: 2; }

/* ---------- price panel ---------- */
.price-panel {
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.price-item {
  padding: clamp(28px, 4vw, 44px) clamp(20px, 3vw, 40px);
  border-left: 1px solid var(--line-dark);
}
.price-item:first-child { border-left: none; }
.price-item .p-val {
  font-family: var(--font-serif);
  font-weight: 560;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  color: #f2f0e6;
  display: block;
  line-height: 1.15;
}
.price-item .p-lbl {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--orange);
  display: block;
  margin-top: 10px;
}
.price-item .p-note { font-size: .85rem; color: var(--green-muted); margin-top: 6px; display: block; }

/* ---------- gallery ---------- */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}
.filter-btn {
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  color: var(--ink);
  transition: all .15s ease;
}
.filter-btn:hover { border-color: var(--ink); }
.filter-btn.active { background: var(--green); color: var(--green-ink); border-color: var(--green); }

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 24px);
}
.gallery a {
  display: block;
  overflow: hidden;
  position: relative;
  background: var(--bg-2);
}
.gallery img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  transition: transform .45s ease;
  filter: saturate(.92);
}
.gallery a:hover img { transform: scale(1.04); }
.gallery a::after {
  content: attr(data-label);
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 34px 14px 12px;
  background: linear-gradient(transparent, rgba(24,32,26,.85));
  color: #f2f0e8;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  opacity: 0;
  transition: opacity .25s ease;
}
.gallery a:hover::after { opacity: 1; }
.gallery a.hidden { display: none; }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 27, 22, .95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
}
.lb-caption {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 26px;
  background: rgba(31,38,31,.9);
  color: #f2f0e8;
  font-size: .82rem;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: 999px;
  border-left: 3px solid var(--orange);
  white-space: nowrap;
  max-width: 90vw;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lightbox button {
  position: absolute;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-size: 1.3rem;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .15s ease;
}
.lightbox button:hover { background: var(--orange); border-color: var(--orange); }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 22px; top: 50%; transform: translateY(-50%); }

/* ---------- testimonials ---------- */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 44px);
}
.quote {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.quote .q-mark {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  line-height: .6;
  color: var(--orange);
}
.quote p {
  font-family: var(--font-serif);
  font-size: 1.06rem;
  font-weight: 460;
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.quote cite {
  font-style: normal;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--muted);
}

/* ---------- CTA band ---------- */
.cta-band { background: var(--green); color: var(--green-ink); }
.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: clamp(48px, 7vw, 80px);
  padding-bottom: clamp(48px, 7vw, 80px);
}
.cta-band h2 { margin: 0; color: #f2f0e6; max-width: 20ch; }
.cta-band .cta-sub { margin: 10px 0 0; color: var(--green-muted); font-size: 1rem; }
.cta-band .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- page hero (subpages) ---------- */
.page-hero {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.page-hero .container {
  padding-top: clamp(56px, 8vw, 100px);
  padding-bottom: clamp(48px, 7vw, 84px);
}
.page-hero h1 { max-width: 17ch; margin-bottom: .35em; }
.page-hero p { color: var(--muted); max-width: 60ch; margin: 0; font-size: 1.06rem; }
.breadcrumb {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 26px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: var(--line); }
.breadcrumb .cur { color: var(--orange); }

/* ---------- contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}
.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 44px);
}
.contact-list { list-style: none; margin: 0 0 30px; padding: 0; display: grid; gap: 0; }
.contact-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-top: 1px solid var(--line);
  padding: 16px 0;
}
.contact-list li:first-child { border-top: none; padding-top: 0; }
.contact-list .lbl {
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted);
  display: block;
  margin-bottom: 2px;
}
.contact-list a, .contact-list strong { font-weight: 600; text-decoration: none; }
.contact-list a:hover { color: var(--orange); }

.form-grid { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label {
  font-weight: 600;
  font-size: .85rem;
  display: block;
  margin-bottom: 7px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: .95rem;
  background: #fff;
  color: var(--ink);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 2px solid var(--orange);
  outline-offset: 0;
  border-color: var(--orange);
}
.form-note { font-size: .8rem; color: var(--muted); }

.map-embed {
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 56px;
}
.map-embed iframe { display: block; width: 100%; height: 400px; border: 0; filter: grayscale(.4) sepia(.08); }

/* ---------- footer ---------- */
.site-footer {
  background: var(--green-2);
  color: var(--green-muted);
  font-size: .92rem;
}
.site-footer .container { padding-top: 70px; padding-bottom: 34px; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 56px;
}
.site-footer h4 {
  color: #f2f0e6;
  font-family: var(--font-sans);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 600;
  margin: 0 0 18px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer a { color: #cfd4c8; text-decoration: none; }
.site-footer a:hover { color: var(--orange); }

.footer-wordmark {
  border-top: 1px solid var(--line-dark);
  padding-top: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-wordmark .fw-name {
  font-family: var(--font-serif);
  font-weight: 560;
  font-size: clamp(3rem, 9vw, 6.5rem);
  line-height: .95;
  color: #f2f0e6;
  letter-spacing: -.02em;
}
.footer-wordmark .fw-name em { font-style: normal; color: var(--orange); }
.footer-wordmark .fw-tag {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--green-muted);
  padding-bottom: 12px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 26px;
  margin-top: 26px;
  border-top: 1px solid var(--line-dark);
  font-size: .78rem;
  color: #7d887b;
}

/* ---------- floating call button (mobile) ---------- */
.float-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: none;
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(31,38,31,.35);
}

/* ---------- reveal on scroll (hidden state only when JS runs) ---------- */
html.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1);
}
html.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card .card-media img, .project .p-media img, .gallery img { transition: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .nav .nav-tel { display: none; }
}

@media (max-width: 980px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .benefits { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .price-panel { grid-template-columns: 1fr; }
  .price-item { border-left: none; border-top: 1px solid var(--line-dark); }
  .price-item:first-child { border-top: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 14px; }
}

@media (max-width: 760px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 14px 20px 22px;
    gap: 2px;
    box-shadow: 0 24px 40px rgba(31,38,31,.12);
  }
  .nav.open { display: flex; }
  .nav a { padding: 11px 6px; border-radius: 0; border-bottom: 1px solid var(--line); }
  .nav .btn { margin: 14px 0 0; justify-content: center; border-bottom: none; }
  .nav-toggle { display: block; }
  .cards { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr; }
  .projects { grid-template-columns: 1fr; }
  .project.offset { margin-top: 0; }
  .checklist.two-col { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split.reverse > :first-child { order: 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .float-call { display: inline-flex; }
  .stats { grid-template-columns: 1fr; gap: 30px; }
}
