/* ==========================================================================
   J.S Painting Contractors — landing page styles
   Palette: white #FBFBF9 · slate blue #33506D · ink #1B2733 · tape yellow #E8B93E
   ========================================================================== */

:root {
  --white: #FBFBF9;
  --paper: #F1EFE8;
  --slate: #33506D;
  --slate-dark: #22374A;
  --slate-light: #4C6E90;
  --ink: #1B2733;
  --ink-soft: #4A5563;
  --tape: #E8B93E;
  --tape-dark: #B98E1E;
  --line: rgba(27, 39, 51, 0.12);
  --shadow-sm: 0 2px 10px rgba(27, 39, 51, 0.08);
  --shadow-md: 0 14px 34px rgba(27, 39, 51, 0.14);
  --radius: 12px;
  --radius-sm: 8px;
  --font-head: "Archivo", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --container: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--ink);
}
p { margin: 0 0 1em; }
button { font-family: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
  font-weight: 600;
}
.skip-link:focus {
  left: 0;
}
:focus-visible {
  outline: 3px solid var(--tape);
  outline-offset: 2px;
}
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}
.btn--primary {
  background: var(--slate);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--slate-dark); }
.btn--tape {
  background: var(--tape);
  color: var(--ink);
}
.btn--tape:hover { background: var(--tape-dark); }
.btn--ghost {
  background: transparent;
  border-color: rgba(251, 251, 249, 0.5);
  color: inherit;
}
.btn--ghost:hover { background: rgba(251, 251, 249, 0.12); }
.btn--outline-ink {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn--outline-ink:hover { background: var(--ink); color: var(--white); }
.btn--lg { min-height: 50px; padding: 0 30px; font-size: 1.02rem; }
.btn--block { width: 100%; }

@media (prefers-reduced-motion: no-preference) {
  .btn:active { transform: scale(0.98); }
}

/* ---------- Topbar ---------- */
.topbar {
  background: var(--ink);
  color: var(--white);
  font-size: 0.85rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  gap: 16px;
}
.topbar a { font-weight: 600; }
.topbar a:hover { color: var(--tape); }
.topbar__badge { color: rgba(251, 251, 249, 0.75); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 20px;
}
.brand { display: flex; align-items: center; }
.brand__text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.1;
  position: relative;
  padding-left: 14px;
}
.brand__text::before {
  content: "";
  position: absolute;
  left: 0; top: 2px; bottom: 2px;
  width: 5px;
  background: var(--tape);
  border-radius: 2px;
}
.brand__text small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 600;
  font-size: 0.96rem;
}
.nav a { padding: 8px 2px; position: relative; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 2px;
  background: var(--tape);
  transition: right 0.2s ease;
}
.nav a:hover::after { right: 0; }
.header__cta { flex-shrink: 0; }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: none;
  background: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  width: 24px; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--slate);
  color: var(--white);
  overflow: hidden;
  padding: 0;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  min-height: 640px;
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 24px 72px 24px;
  max-width: 640px;
  margin-left: auto;
  position: relative;
  z-index: 2;
}
.hero__media {
  position: relative;
  min-height: 320px;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--slate) 0%, rgba(51,80,109,0.15) 30%, rgba(27,39,51,0.05) 100%);
  z-index: 1;
}
.hero__media::after {
  content: "";
  position: absolute;
  left: -1px; top: 0; bottom: 0;
  width: 90px;
  background: var(--slate);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  z-index: 1;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tape);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 3px;
  background: var(--tape);
  border-radius: 2px;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::before { display: none; }
.eyebrow--dark { color: var(--tape-dark); }

.hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 18px;
}
.hero__lede {
  font-size: 1.12rem;
  color: rgba(251, 251, 249, 0.88);
  max-width: 52ch;
  margin-bottom: 28px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(251, 251, 249, 0.92);
}
.hero__trust li { display: flex; align-items: center; gap: 8px; }
.hero__trust svg { flex-shrink: 0; color: var(--tape); }

@media (prefers-reduced-motion: no-preference) {
  html.js .hero__reveal {
    opacity: 0;
    transform: translateY(16px);
    animation: heroFadeUp 0.6s ease-out forwards;
  }
  html.js .hero__reveal:nth-child(1) { animation-delay: 0.05s; }
  html.js .hero__reveal:nth-child(2) { animation-delay: 0.15s; }
  html.js .hero__reveal:nth-child(3) { animation-delay: 0.25s; }
  html.js .hero__reveal:nth-child(4) { animation-delay: 0.35s; }
  html.js .hero__reveal:nth-child(5) { animation-delay: 0.45s; }
  @keyframes heroFadeUp {
    to { opacity: 1; transform: translateY(0); }
  }
}

/* ---------- Tape divider ---------- */
.tape-divider {
  height: 34px;
  background: repeating-linear-gradient(135deg, var(--tape) 0 26px, var(--ink) 26px 52px);
  clip-path: polygon(0 45%, 100% 0%, 100% 55%, 0% 100%);
}
.tape-divider--slate {
  background: repeating-linear-gradient(135deg, var(--slate-light) 0 26px, var(--slate-dark) 26px 52px);
}

/* ---------- Sections ---------- */
.section {
  padding: 88px 0;
  position: relative;
}
.section--alt { background: var(--paper); }
.section--tight { padding: 64px 0; }
.section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.section__head--left { text-align: left; margin: 0 0 40px; }
.section__title { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.section__lede { color: var(--ink-soft); font-size: 1.05rem; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
@media (prefers-reduced-motion: no-preference) {
  .service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
  .gallery-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
  .review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
}
.service-card__icon {
  width: 54px; height: 54px;
  border-radius: 12px;
  background: var(--slate);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-card__icon svg { width: 28px; height: 28px; color: var(--white); }
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-card p { color: var(--ink-soft); margin: 0; font-size: 0.98rem; }

/* ---------- Stats band ---------- */
.stats-band {
  background: var(--slate);
  color: var(--white);
  padding: 56px 0;
  position: relative;
  clip-path: polygon(0 22px, 100% 0, 100% calc(100% - 22px), 0 100%);
  margin: -22px 0;
}
.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.stats-band__item strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--tape);
}
.stats-band__item span {
  display: block;
  margin-top: 6px;
  font-weight: 600;
  color: rgba(251, 251, 249, 0.85);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.stats-band__divider { display: none; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }
.gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 10px 14px;
  background: linear-gradient(0deg, rgba(27,39,51,0.85), rgba(27,39,51,0));
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
}
.gallery-item--badge figcaption span.badge {
  display: inline-block;
  background: var(--tape);
  color: var(--ink);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-right: 6px;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 56px;
}
.before-after__panel { position: relative; }
.before-after__panel img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.before-after__label {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
}
.before-after__panel--after .before-after__label { background: var(--tape); color: var(--ink); }

/* ---------- Reviews ---------- */
.ratings-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 44px;
  box-shadow: var(--shadow-sm);
}
.ratings-bar__item { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; }
.ratings-bar__stars { color: var(--tape); font-size: 1.1rem; letter-spacing: 2px; }
.ratings-bar__divider { width: 1px; height: 28px; background: var(--line); }
.ratings-bar__badge {
  font-weight: 700;
  background: var(--slate);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.82rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.review-card__stars { color: var(--tape); letter-spacing: 2px; margin-bottom: 12px; }
.review-card p { font-size: 1rem; color: var(--ink); }
.review-card__author { font-weight: 700; font-size: 0.92rem; }
.review-card__author span { font-weight: 500; color: var(--ink-soft); }
.reviews__cta { text-align: center; }
.placeholder-note {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--tape-dark);
  background: rgba(232, 185, 62, 0.16);
  padding: 3px 10px;
  border-radius: 4px;
  margin-top: 10px;
}

/* ---------- About / Why ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-list { margin: 24px 0 30px; }
.about-list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
}
.about-list li:last-child { border-bottom: none; }
.about-list svg { flex-shrink: 0; color: var(--slate); margin-top: 3px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
  position: relative;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(251, 251, 249, 0.82); max-width: 52ch; margin: 0 auto 30px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.cta-band__phone {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--tape);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}
.contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(251,251,249,0.15);
}
.contact-list a:hover { color: var(--tape); }
.contact-list svg { flex-shrink: 0; color: var(--tape); margin-top: 2px; }
.contact-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.contact-badges a, .contact-badges span {
  border: 1px solid rgba(251,251,249,0.3);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}
.contact-badges a:hover { border-color: var(--tape); color: var(--tape); }

.contact-form {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.92rem; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
  color: var(--ink);
}
.form-row textarea { min-height: 110px; resize: vertical; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  border-color: var(--slate);
  outline: none;
  box-shadow: 0 0 0 3px rgba(51,80,109,0.15);
}
.form-note { font-size: 0.88rem; color: var(--slate); margin-top: 14px; min-height: 1em; }
.form-fallback {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.form-fallback a { font-weight: 700; color: var(--slate); }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(251,251,249,0.75);
  padding: 40px 0;
  font-size: 0.9rem;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer .brand__text { color: var(--white); }
.footer .brand__text small { color: rgba(251,251,249,0.6); }
.footer a:hover { color: var(--tape); }
.footer__links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- Call FAB ---------- */
.call-fab {
  position: fixed;
  right: 20px; bottom: 20px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--tape);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(27,39,51,0.3);
  z-index: 90;
  transition: transform 0.15s ease;
}
.call-fab svg { width: 26px; height: 26px; }
@media (prefers-reduced-motion: no-preference) {
  .call-fab:hover { transform: translateY(-3px); }
  .call-fab:active { transform: scale(0.94); }
}

/* ---------- Scroll reveal (generic) ---------- */
@media (prefers-reduced-motion: no-preference) {
  html.js .reveal {
    opacity: 0;
    transform: translateY(14px);
  }
  html.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.38s ease-out, transform 0.38s ease-out;
  }
}

/* ---------- Page hero (multipage) ---------- */
.page-hero {
  background: var(--slate);
  color: var(--white);
  padding: 64px 0 78px;
  position: relative;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(251,251,249,0.85); max-width: 60ch; font-size: 1.05rem; margin: 0; }
.page-hero .container { position: relative; z-index: 2; }

/* ---------- Nav active state (multipage) ---------- */
.nav a[aria-current="page"] { color: var(--slate); }
.nav a[aria-current="page"]::after { right: 0; }

/* ---------- Service detail blocks ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}
.service-detail:last-child { border-bottom: none; }
.service-detail--reverse .service-detail__media { order: 2; }
.service-detail__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.service-detail__media img { width: 100%; height: 100%; object-fit: cover; }
.service-detail__body ul { margin: 20px 0 26px; }
.service-detail__body li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.98rem;
}
.service-detail__body svg { flex-shrink: 0; color: var(--slate); margin-top: 3px; }

/* ---------- Process steps ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.process-step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.process-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--tape);
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 800;
  margin-bottom: 16px;
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.process-step p { color: var(--ink-soft); font-size: 0.92rem; margin: 0; }
@media (prefers-reduced-motion: no-preference) {
  .process-step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
}

/* ---------- Simple content split ---------- */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.content-split--reverse .content-split__media { order: 2; }
.content-split__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.content-split__media img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 980px) {
  .service-detail, .content-split { grid-template-columns: 1fr; padding: 44px 0; }
  .service-detail--reverse .service-detail__media,
  .content-split--reverse .content-split__media { order: -1; }
  .process-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; min-height: auto; }
  .hero__content { margin: 0; max-width: 100%; padding: 48px 24px 40px; }
  .hero__media { min-height: 280px; order: -1; }
  .hero__media::after { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item--wide { grid-column: span 2; }
  .before-after { grid-template-columns: 1fr; }
  .stats-band__grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 720px) {
  .nav { display: none; }
  .nav--mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--white);
    padding: 18px 24px 26px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    gap: 6px;
  }
  .nav--mobile-open a { padding: 12px 4px; min-height: 44px; display: flex; align-items: center; }
  .nav-toggle { display: flex; }
  .header__cta { display: none; }
  .topbar__badge { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .stats-band { clip-path: none; margin: 0; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide, .gallery-item--tall { grid-column: span 1; grid-row: span 1; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
}
