/* ============================================================
   MAPLE & STONE — Design + Build (SiteMe demo · trades)
   Aesthetic: Premium editorial design-build
   Type: Syne (display) + Manrope (body)
   Palette: bone / pine green / oak
   WCAG AA calibrated. Fictional brand, placeholder media.
   ============================================================ */

:root {
  --bone:      #f5f1e8;
  --bone-2:    #ece5d7;
  --pine:      #20392e;
  --pine-2:    #2d4f3f;
  --oak:       #b08648;
  --oak-deep:  #8a6433;
  --oak-light: #d8b483;
  --ink:       #1a1815;
  --text-mid:  #6b6353;
  --line:      #ddd4c2;
  --white:     #ffffff;

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --maxw: 1260px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  background: var(--bone);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
}

h1, h2, h3, h4 {
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 2.5rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--oak-deep);
  margin-bottom: 1.1rem;
}
.eyebrow::before { content: ''; width: 1.8rem; height: 1px; background: var(--oak); flex-shrink: 0; }
.section-pine .eyebrow,
.hero .eyebrow { color: var(--oak-light); }
.section-pine .eyebrow::before,
.hero .eyebrow::before { background: var(--oak-light); }

/* ───────────  NAV  ─────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245,241,232,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--pine);
  line-height: 1;
  flex-shrink: 0;
}
.nav-logo span {
  font-family: 'Manrope', sans-serif;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--oak-deep);
  display: block;
  margin-top: 0.3rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: color 0.2s var(--ease-out);
}
.nav-links a:hover,
.nav-links a.active { color: var(--pine); }
.nav-links a:focus-visible { outline: 2px solid var(--pine); outline-offset: 4px; border-radius: 2px; }

.nav-cta a {
  background: var(--pine);
  color: var(--bone) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  font-weight: 700;
  transition: background 0.2s var(--ease-out);
}
.nav-cta a:hover { background: var(--pine-2); }

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--pine);
  border-radius: 2px;
  transition: transform 300ms var(--ease-out), opacity 200ms ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown — position absolute, no display toggle */
.nav-menu-mobile {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(245,241,232,0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  padding: 0.25rem 2.5rem 1.5rem;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 200ms var(--ease-out), transform 200ms var(--ease-out), visibility 0s linear 200ms;
  z-index: 99;
}
.nav-menu-mobile.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 200ms var(--ease-out), transform 200ms var(--ease-out), visibility 0s linear 0s;
}
.nav-menu-mobile ul { list-style: none; }
.nav-menu-mobile a {
  display: block;
  padding: 0.9rem 0;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--pine);
  border-bottom: 1px solid var(--line);
  transition: color 0.15s var(--ease-out);
}
.nav-menu-mobile a:hover { color: var(--oak-deep); }
.nav-menu-mobile li:last-child a { border-bottom: none; }

/* ───────────  BUTTONS  ─────────── */
.btn {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.95rem 2rem;
  border-radius: 2px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out), border-color 0.2s var(--ease-out), transform 160ms ease-out;
}
.btn:active { transform: scale(0.97); }
.btn:focus-visible { outline: 2px solid var(--oak); outline-offset: 3px; border-radius: 2px; }
.btn-pine { background: var(--pine); color: var(--bone); }
.btn-pine:hover { background: var(--pine-2); }
.btn-outline { border-color: var(--pine); color: var(--pine); background: transparent; }
.btn-outline:hover { background: var(--pine); color: var(--bone); }
.btn-outline-light { border-color: rgba(245,241,232,0.5); color: var(--bone); background: transparent; }
.btn-outline-light:hover { background: var(--bone); color: var(--pine); border-color: var(--bone); }

/* ───────────  HERO (home)  ─────────── */
.hero {
  background: var(--bone);
  padding: 4rem 0 0;
  overflow: hidden;
}
.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* Side-by-side: text left, image right */
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 4rem;
}
.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.hero h1 em { font-style: normal; color: var(--pine); }

.hero-actions { margin-top: 2.5rem; }
.hero-sub {
  font-size: 1.08rem;
  color: var(--text-mid);
  max-width: 44ch;
  margin-bottom: 2rem;
  line-height: 1.75;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-figure {
  position: relative;
  min-height: 480px;
  border-radius: 3px 3px 0 0;
  overflow: hidden;
  background: linear-gradient(145deg, var(--pine-2) 0%, var(--pine) 100%);
}
.hero-figure::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg,  rgba(216,180,131,0.06) 0 1px, transparent 1px 32px),
    repeating-linear-gradient(-45deg, rgba(216,180,131,0.06) 0 1px, transparent 1px 32px);
}
.hero-figure::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(26,24,21,0.45), transparent);
}
.hero-figure .fig-cap {
  position: absolute;
  left: 1.75rem;
  bottom: 1.5rem;
  font-size: 0.79rem;
  color: rgba(245,241,232,0.7);
  z-index: 1;
  letter-spacing: 0.02em;
}
.hero-figure .fig-mark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto Slab', serif;
  font-weight: 800;
  font-size: clamp(3rem, 5vw, 5rem);
  color: rgba(216,180,131,0.14);
  letter-spacing: -0.04em;
}

/* ───────────  PAGE HERO (inner pages)  ─────────── */
.hero.page-hero {
  padding: 4rem 0 3.5rem;
}
.hero.page-hero .hero-inner {
  padding: 0 2.5rem;
}
.hero.page-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-top: 0.5rem;
}
.hero.page-hero .hero-sub {
  max-width: 58ch;
  margin-top: 1.25rem;
  margin-bottom: 0;
}

/* ───────────  STAT ROW  ─────────── */
.statrow {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.statrow-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.75rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.statrow .st strong {
  font-family: 'Roboto Slab', serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--pine);
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.statrow .st span { font-size: 0.85rem; color: var(--text-mid); }

/* ───────────  SECTIONS  ─────────── */
.section { padding: 6rem 0; }
.section-bone  { background: var(--bone); }
.section-bone2 { background: var(--bone-2); }
.section-pine  { background: var(--pine); color: var(--bone); }

.section-head { max-width: 64ch; margin-bottom: 3rem; }
.section-pine .section-title { color: var(--bone); }
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 0.75rem;
  font-weight: 700;
  line-height: 1.15;
}
.lead {
  font-size: 1.12rem;
  color: var(--text-mid);
  max-width: 58ch;
  line-height: 1.8;
}
.section-pine .lead { color: rgba(245,241,232,0.78); }

/* ───────────  PROJECT BANDS  ─────────── */
.band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 520px;
}
.band:nth-child(even) .band-media { order: 2; }

.band-media {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--pine-2), var(--pine));
  min-height: 380px;
}
.band-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg,  rgba(216,180,131,0.05) 0 1px, transparent 1px 32px),
    repeating-linear-gradient(-45deg, rgba(216,180,131,0.05) 0 1px, transparent 1px 32px);
}
.band-media::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(to top, rgba(26,24,21,0.4), transparent);
}
.band-media.alt {
  background: linear-gradient(145deg, var(--oak), var(--oak-deep));
}
.band-media.alt::before {
  background-image:
    repeating-linear-gradient(45deg,  rgba(245,241,232,0.06) 0 1px, transparent 1px 32px),
    repeating-linear-gradient(-45deg, rgba(245,241,232,0.06) 0 1px, transparent 1px 32px);
}
.band-media .bm-mark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto Slab', serif;
  font-weight: 800;
  font-size: 5rem;
  color: rgba(245,241,232,0.1);
  letter-spacing: -0.04em;
}
.band-media .bm-cap {
  position: absolute;
  left: 1.75rem;
  bottom: 1.5rem;
  font-size: 0.78rem;
  color: rgba(245,241,232,0.65);
  z-index: 1;
}

.band-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
  background: var(--white);
}
.band-body .band-tag {
  font-family: 'Manrope', sans-serif;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--oak-deep);
  margin-bottom: 1rem;
}
.band-body h3 {
  font-size: 2rem;
  margin-bottom: 0.85rem;
  line-height: 1.15;
}
.band-body p {
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  max-width: 42ch;
  line-height: 1.75;
}
.band-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.band-meta li {
  list-style: none;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pine);
  border: 1px solid var(--line);
  padding: 0.32rem 0.8rem;
  border-radius: 2px;
}

/* ───────────  SERVICE LIST  ─────────── */
.svc-list { margin-top: 2.5rem; border-top: 1px solid var(--line); }
.svc-row {
  display: grid;
  grid-template-columns: 3rem 1fr 2fr;
  gap: 0 2rem;
  align-items: baseline;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}
.svc-row .svc-n {
  font-family: 'Roboto Slab', serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--oak-deep);
}
.svc-row h3 { font-size: 1.65rem; line-height: 1.15; }
.svc-row p { color: var(--text-mid); font-size: 1rem; line-height: 1.7; }

.section-pine .svc-list,
.section-pine .svc-row { border-color: rgba(245,241,232,0.15); }
.section-pine .svc-row h3 { color: var(--bone); }
.section-pine .svc-row p { color: rgba(245,241,232,0.78); }
.section-pine .svc-row .svc-n { color: var(--oak-light); }

/* ───────────  PROCESS STEPS  ─────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}
.step { border-top: 2px solid var(--oak); padding-top: 1.25rem; }
.section-pine .step { border-top-color: var(--oak-light); }
.step-num {
  font-family: 'Roboto Slab', serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--pine);
  display: block;
  margin-bottom: 0.5rem;
}
.section-pine .step-num { color: var(--oak-light); }
.step h3 { font-size: 1.2rem; margin-bottom: 0.5rem; line-height: 1.2; }
.section-pine .step h3 { color: var(--bone); }
.step p { font-size: 0.97rem; color: var(--text-mid); line-height: 1.65; }
.section-pine .step p { color: rgba(245,241,232,0.78); }

/* ───────────  CHECK LIST  ─────────── */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.75rem;
}
.check-list li {
  position: relative;
  padding-left: 2rem;
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.85rem;
  height: 0.5rem;
  border-left: 2.5px solid var(--oak);
  border-bottom: 2.5px solid var(--oak);
  transform: rotate(-45deg);
}
.section-pine .check-list li { color: rgba(245,241,232,0.84); }
.section-pine .check-list li::before { border-color: var(--oak-light); }

/* ───────────  TESTIMONIAL  ─────────── */
.testi { max-width: 58ch; }
.testi p {
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  line-height: 1.38;
  color: var(--bone);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.testi .who {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--oak-light);
}

/* ───────────  TWO COL  ─────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.form-grid { display: grid; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field label { font-size: 0.8rem; font-weight: 700; color: var(--ink); letter-spacing: 0.02em; }
.field input, .field select, .field textarea {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: 2px;
  min-height: 44px;
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--pine);
  box-shadow: 0 0 0 3px rgba(32,57,46,0.12);
}
.field textarea { resize: vertical; min-height: 130px; }

/* ───────────  CTA  ─────────── */
.cta { background: var(--pine); color: var(--bone); padding: 6rem 0; text-align: center; }
.cta h2 {
  color: var(--bone);
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 1rem;
  font-weight: 800;
  line-height: 1.1;
}
.cta p {
  color: rgba(245,241,232,0.8);
  margin-bottom: 2.5rem;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta .btn-oak { background: var(--oak-light); color: var(--pine); border-color: var(--oak-light); }
.cta .btn-oak:hover { background: var(--bone); border-color: var(--bone); }

/* ───────────  FOOTER  ─────────── */
.footer { background: var(--ink); color: rgba(245,241,232,0.55); padding: 4rem 0 2rem; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .nav-logo { color: var(--bone); }
.footer-brand .nav-logo span { color: var(--oak-light); }
.footer-brand p { margin-top: 1rem; max-width: 38ch; font-size: 0.95rem; line-height: 1.65; }
.footer-col h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--oak-light);
  margin-bottom: 1.1rem;
  font-weight: 700;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 0.95rem; transition: color 0.2s var(--ease-out); }
.footer-col a:hover { color: var(--bone); }
.footer-col a:focus-visible { outline: 2px solid var(--oak-light); outline-offset: 3px; border-radius: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(245,241,232,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
}

/* ───────────  SCROLL REVEAL  ─────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}
[data-reveal].in { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: 0.09s; }
[data-delay="2"] { transition-delay: 0.18s; }
[data-delay="3"] { transition-delay: 0.27s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ───────────  RESPONSIVE ≤ 860px  ─────────── */
@media (max-width: 860px) {
  /* Nav */
  .nav-inner  { height: 60px; padding: 0 1.25rem; }
  .nav-logo   { font-size: 1.15rem; }
  .nav-links  { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu-mobile { padding: 0.25rem 1.25rem 1.5rem; }

  /* Hero (home) */
  .hero { padding: 2.5rem 0 0; }
  .hero-inner { padding: 0 1.25rem; }
  .hero-content { grid-template-columns: 1fr; gap: 2rem; }
  .hero-text { padding-bottom: 0; }
  .hero h1 { font-size: clamp(2.5rem, 9.5vw, 3.6rem); letter-spacing: -0.02em; }
  .hero-sub { max-width: 100%; }
  .hero-figure { min-height: 280px; border-radius: 3px; margin-top: 0; }

  /* Stat row */
  .statrow-inner { grid-template-columns: 1fr 1fr; gap: 1rem 0.75rem; padding: 1.5rem 1.25rem; }
  .statrow .st strong { font-size: 1.55rem; white-space: nowrap; }
  .statrow .st span { font-size: 0.8rem; }

  /* Page hero */
  .hero.page-hero { padding: 2.5rem 0 2.5rem; }
  .hero.page-hero .hero-inner { padding: 0 1.25rem; }
  .hero.page-hero h1 { font-size: clamp(2.2rem, 8.5vw, 3.2rem); }

  /* Sections */
  .section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }
  .section-title { font-size: clamp(1.8rem, 6.5vw, 2.8rem); }

  /* Project bands */
  .band { grid-template-columns: 1fr; min-height: auto; }
  .band:nth-child(even) .band-media { order: 0; }
  .band-media { min-height: 260px; }
  .band-body { padding: 2.5rem 1.5rem; }
  .band-body h3 { font-size: 1.65rem; }
  .band-body p { max-width: 100%; }

  /* Service rows */
  .svc-row {
    grid-template-columns: 2.5rem 1fr;
    gap: 0;
    row-gap: 0.3rem;
    align-items: start;
    padding: 1.5rem 0;
  }
  .svc-row .svc-n { padding-top: 0.35rem; }
  .svc-row p { grid-column: 2; }
  .svc-row h3 { font-size: 1.35rem; }

  /* Steps */
  .steps { grid-template-columns: 1fr 1fr; gap: 2rem; }

  /* Two col / form */
  .two-col  { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }

  /* CTA */
  .cta { padding: 4rem 0; }

  /* Footer */
  .footer-inner { padding: 0 1.25rem; }
  .footer-grid  { grid-template-columns: 1fr; gap: 2rem; }
}

/* ───────────  RESPONSIVE ≤ 500px  ─────────── */
@media (max-width: 500px) {
  .statrow-inner { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .band-body { padding: 2rem 1.25rem; }
  .band-body h3 { font-size: 1.5rem; }
  .svc-row { grid-template-columns: 2rem 1fr; }
}
