/* ============================================
   DRIVE CLEAN LLC — Shared Styles
   Palette pulled from logo file (see build notes)
   ============================================ */

:root {
  --black: #0b0b0c;
  --black-soft: #17181a;
  --off-white: #f6f4f0;
  --white: #ffffff;
  --red: #e4141a;
  --red-deep: #a10e12;
  --steel: #6e7177;
  --steel-light: #b9bcc1;
  --border-soft: rgba(255,255,255,0.1);

  --font-display: "Archivo Black", "Arial Black", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 4px;
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--black);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

/* Buttons ---------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font-body);
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover { background: var(--red-deep); border-color: var(--red-deep); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--black); }

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline-dark:hover { background: var(--black); color: var(--white); }

.btn-block { width: 100%; }

/* Header ------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--black);
  border-bottom: 1px solid var(--border-soft);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 20px;
}
.logo-link img {
  height: 88px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--off-white);
  opacity: 0.85;
}
.main-nav a:hover { opacity: 1; color: var(--red); }

.header-ctas { display: flex; gap: 12px; }
.header-ctas .btn { padding: 12px 20px; font-size: 14px; }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: var(--black);
  padding: 20px 24px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  padding: 8px;
  cursor: pointer;
  margin-bottom: 20px;
}
.mobile-menu a {
  color: var(--off-white);
  font-weight: 700;
  font-size: 22px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-soft);
}
body.menu-open { overflow: hidden; }

/* Hero --------------------------------------- */
.hero {
  background: var(--black);
  color: var(--white);
  padding: 64px 0 56px;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.hero-copy { padding-top: 8px; }
.hero-copy .eyebrow { color: var(--red); margin-bottom: 14px; display: block; }
.hero h1 {
  font-size: 46px;
  margin-bottom: 18px;
}
.hero h1 span { color: var(--red); }
.hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--steel-light);
  margin-bottom: 30px;
  max-width: 46ch;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.hero-ctas .btn { padding: 17px 30px; font-size: 16px; }
.hero-trust-line {
  font-size: 14px;
  color: var(--steel-light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-trust-line strong { color: var(--white); }

.hero-media {
  position: relative;
}
.hero-media img {
  width: 100%;
  display: block;
  -webkit-mask-image: radial-gradient(ellipse 78% 78% at center, #000 55%, transparent 100%);
  mask-image: radial-gradient(ellipse 78% 78% at center, #000 55%, transparent 100%);
}

/* Trust bar ----------------------------------- */
.trust-bar {
  background: var(--red);
  color: var(--white);
  overflow-x: auto;
}
.trust-bar .wrap {
  display: flex;
  gap: 36px;
  padding: 12px 24px;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
}
.trust-bar .item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.trust-bar .item svg { flex-shrink: 0; }

/* Section basics -------------------------------- */
section { padding: 84px 0; }
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.section-head h2 { font-size: 34px; margin: 10px 0 14px; }
.section-head p { font-size: 16px; color: #4b4d52; line-height: 1.6; }

/* Services --------------------------------------- */
.services { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid #e6e3dc;
  border-radius: 10px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card h3 { font-size: 20px; }
.service-card p { color: #4b4d52; line-height: 1.6; font-size: 15px; margin: 0; }
.service-price {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #eeece6;
  font-weight: 700;
  color: var(--red-deep);
  font-size: 15px;
}
.service-price span { display: block; font-weight: 400; color: var(--steel); font-size: 13px; margin-top: 2px; }

/* Why us ------------------------------------------ */
.why-us { background: var(--black); color: var(--white); }
.why-us .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.why-us .eyebrow { margin-bottom: 12px; display: block; }
.why-us h2 { font-size: 32px; margin-bottom: 18px; }
.why-us p { color: var(--steel-light); line-height: 1.7; font-size: 16px; margin-bottom: 16px; }
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.stat-box {
  background: var(--black-soft);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
}
.stat-box .num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--red);
  display: block;
  margin-bottom: 6px;
}
.stat-box .label {
  font-size: 13px;
  color: var(--steel-light);
  font-weight: 600;
}

/* Gallery / slider -------------------------------- */
.gallery { background: var(--off-white); }
.slider-frame {
  position: relative;
  max-width: 380px;
  margin: 0 auto 48px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3 / 4;
  background: #000;
  user-select: none;
}
.slider-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.slider-frame .after-img {
  clip-path: inset(0 0 0 50%);
}
.slider-tag {
  position: absolute;
  top: 16px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 3;
  color: var(--white);
}
.tag-before { left: 16px; background: rgba(0,0,0,0.55); }
.tag-after { right: 16px; background: var(--red); }
.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--white);
  transform: translateX(-50%);
  z-index: 4;
  cursor: ew-resize;
}
.slider-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--red);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='20' height='20'%3E%3Cpath fill='%23e4141a' d='M8 5l-6 7 6 7M16 5l6 7-6 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.slider-caption {
  text-align: center;
  font-size: 14px;
  color: var(--steel);
  margin-top: -30px;
  margin-bottom: 48px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.work-grid img {
  border-radius: 10px;
  width: 100%;
  height: 240px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Reviews ------------------------------------------ */
.reviews { background: var(--black); color: var(--white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--black-soft);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 28px 26px;
}
.stars { color: var(--red); font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.review-card p { color: var(--steel-light); line-height: 1.6; font-size: 15px; margin: 0 0 18px; }
.review-name { font-weight: 700; font-size: 14px; color: var(--white); }
.review-platform { font-size: 12px; color: var(--steel); }

/* Contact ------------------------------------------- */
.contact { background: var(--off-white); }
.contact .wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 { font-size: 30px; margin-bottom: 16px; }
.contact-info p { color: #4b4d52; line-height: 1.6; margin-bottom: 26px; }
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-detail .ic {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail strong { display: block; font-size: 15px; margin-bottom: 2px; }
.contact-detail span { font-size: 14px; color: var(--steel); }

.form-card {
  background: var(--white);
  border: 1px solid #e6e3dc;
  border-radius: 12px;
  padding: 36px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 700; color: var(--black); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid #dbd7cd;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--black);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 3px solid var(--red);
  outline-offset: 1px;
  border-color: var(--red);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.contact-note {
  font-size: 13px;
  color: var(--steel);
  margin-bottom: 14px;
}
.consent-group {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.consent-group input { margin-top: 4px; flex-shrink: 0; }
.consent-group p { font-size: 12.5px; color: var(--steel); line-height: 1.5; margin: 0; }
.form-success {
  display: none;
  background: #f0f9f0;
  border: 1.5px solid #2e7d32;
  color: #2e7d32;
  padding: 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}
.form-success.show { display: block; }

/* Closing CTA ---------------------------------------- */
.cta-band {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 64px 0;
}
.cta-band h2 { font-size: 30px; margin-bottom: 10px; }
.cta-band p { font-size: 16px; margin-bottom: 28px; color: rgba(255,255,255,0.9); }
.cta-band-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-outline { border-color: var(--white); }
.cta-band .btn-primary { background: var(--black); border-color: var(--black); }
.cta-band .btn-primary:hover { background: var(--black-soft); }

/* Footer ----------------------------------------------- */
.site-footer { background: var(--black); color: var(--steel-light); padding-top: 64px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-soft);
}
.footer-logo img { height: 80px; margin-bottom: 14px; }
.footer-about { font-size: 14px; line-height: 1.6; color: var(--steel-light); max-width: 32ch; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--steel-light); }
.footer-col a:hover { color: var(--red); }
.footer-col.legal a { cursor: default; }
.footer-col.legal a:hover { color: var(--steel-light); }
.footer-contact p { font-size: 14px; margin: 0 0 10px; color: var(--steel-light); }
.footer-contact strong { color: var(--white); display: block; font-size: 13px; margin-bottom: 2px; }
.social-row { display: flex; gap: 12px; margin-top: 16px; }
.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-row a:hover { background: var(--red); border-color: var(--red); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 12.5px;
  color: var(--steel);
  flex-wrap: wrap;
  gap: 10px;
}

/* Mobile sticky bar --------------------------------------- */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: var(--black);
  border-top: 1px solid var(--border-soft);
  padding: 10px 14px;
  gap: 10px;
}
.mobile-sticky-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14.5px;
}
.mobile-sticky-bar .call { background: transparent; border: 2px solid var(--white); color: var(--white); }
.mobile-sticky-bar .estimate { background: var(--red); color: var(--white); }

/* Breadcrumb ---------------------------------- */
.breadcrumb {
  background: var(--black-soft);
  border-bottom: 1px solid var(--border-soft);
}
.breadcrumb .wrap {
  padding: 12px 24px;
  font-size: 13px;
  color: var(--steel-light);
}
.breadcrumb a { color: var(--steel-light); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { margin: 0 6px; color: var(--steel); }
.breadcrumb span:last-child { color: var(--white); margin: 0; }

.main-nav a.active { color: var(--red); }

/* Page hero (interior pages) -------------------- */
.page-hero {
  background: var(--black);
  color: var(--white);
  padding: 48px 0;
  text-align: center;
}
.page-hero .eyebrow { display: block; margin-bottom: 12px; }
.page-hero h1 { font-size: 38px; margin-bottom: 14px; }
.page-hero p { color: var(--steel-light); max-width: 60ch; margin: 0 auto; font-size: 16px; line-height: 1.6; }

/* Service groups (services page) ----------------- */
.service-group { margin-bottom: 64px; }
.service-group:last-child { margin-bottom: 0; }
.service-group-head { margin-bottom: 28px; max-width: 70ch; }
.service-group-head h2 { font-size: 26px; margin-bottom: 8px; }
.service-group-head p { color: #4b4d52; font-size: 15px; line-height: 1.6; margin: 0; }

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tier-card {
  background: var(--white);
  border: 1px solid #e6e3dc;
  border-radius: 10px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
}
.tier-card.featured { border: 2px solid var(--red); position: relative; }
.tier-card .tier-flag {
  position: absolute;
  top: -13px;
  left: 24px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.tier-card h3 { font-size: 18px; margin-bottom: 4px; }
.tier-price { color: var(--red-deep); font-weight: 700; font-size: 15px; margin-bottom: 14px; }
.tier-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.tier-card li { font-size: 14px; color: #4b4d52; padding-left: 20px; position: relative; }
.tier-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 5px;
  width: 12px; height: 8px;
  border-left: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(-45deg);
}

.mid-cta {
  background: var(--black);
  color: #fff;
  border-radius: 12px;
  padding: 36px 32px;
  text-align: center;
  margin: 56px 0;
}
.mid-cta h3 { font-size: 22px; margin-bottom: 8px; }
.mid-cta p { color: var(--steel-light); margin-bottom: 20px; }

/* Founder quote band (about page) ----------------- */
.founder-quote {
  background: var(--red);
  color: #fff;
  padding: 56px 0;
  text-align: center;
}
.founder-quote blockquote {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto 16px;
}
.founder-quote cite {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  opacity: 0.9;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.value-card { text-align: center; }
.value-card .ic {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.value-card h4 { font-size: 15px; margin-bottom: 6px; }
.value-card p { font-size: 13.5px; color: var(--steel); line-height: 1.5; margin: 0; }

/* Static side-by-side comparison ------------------- */
.compare-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  max-width: 640px;
  margin: 0 auto 12px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.compare-pair figure { margin: 0; position: relative; }
.compare-pair img { width: 100%; height: 320px; object-fit: cover; display: block; }
.compare-pair figcaption {
  position: absolute; top: 12px; left: 12px;
  background: rgba(0,0,0,0.6); color: #fff;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; padding: 5px 10px; border-radius: 20px;
}
.compare-pair figure.after figcaption { background: var(--red); left: auto; right: 12px; }

/* Urgent callout (contact page) --------------------- */
.urgent-box {
  background: #fff4ec;
  border: 1.5px solid #e4934a;
  border-radius: 10px;
  padding: 22px 24px;
  margin-bottom: 24px;
}
.urgent-box h4 { font-size: 15px; margin: 0 0 6px; color: #b3540f; }
.urgent-box p { font-size: 14px; color: #7a4321; margin: 0 0 12px; line-height: 1.5; }

/* FAQ ------------------------------------------------- */
.faq { background: var(--off-white); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid #e6e3dc;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 22px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 20px;
  color: var(--red);
  font-weight: 400;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { padding: 0 22px 20px; margin: 0; color: #4b4d52; font-size: 14.5px; line-height: 1.6; }

/* Legal pages ------------------------------------------ */
.legal-body { max-width: 760px; margin: 0 auto; }
.legal-body h2 { font-size: 22px; margin: 36px 0 12px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { color: #3f4146; font-size: 15px; line-height: 1.7; }
.legal-body ul { padding-left: 20px; }
.legal-updated { color: var(--steel); font-size: 13px; margin-bottom: 32px; display: block; }

@media (max-width: 900px) {
  .tier-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .compare-pair { grid-template-columns: 1fr; }
  .compare-pair img { height: 240px; }
}
@media (max-width: 720px) {
  .page-hero h1 { font-size: 27px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: 34px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-us .wrap { grid-template-columns: 1fr; gap: 32px; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact .wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  .main-nav, .header-ctas { display: none; }
  .hamburger { display: block; }
  .logo-link img { height: 48px; }
  section { padding: 56px 0; }
  .hero { padding: 40px 0 44px; }
  .hero h1 { font-size: 28px; }
  .section-head h2 { font-size: 26px; }
  .form-row { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .work-grid img { height: 160px; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-sticky-bar { display: flex; }
  body { padding-bottom: 68px; }
  .cta-band-btns { flex-direction: column; align-items: stretch; }
}
