/* =========================================================
   M&Co Homes - brand accent: Primary Red #E30613 (unchanged).
   Warm-refined / editorial palette: warm cream instead of pure
   white, warm charcoal/grey instead of cool neutrals.
   Font: Montserrat throughout (headings + body/UI)
   ========================================================= */

:root {
  --red: #E30613;
  --red-dark: #b90510;
  --charcoal: #262220;
  --warm-grey: #7A7168;
  --light-grey: #F0F0EE;
  --lighter-grey: #FAFAF9;
  --white: #FFFFFF;
  --border: #E4E4E1;
  --beige: #FAF6EF;
  --beige-border: #EDE4D2;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(43,34,32,0.07);
  --shadow-lg: 0 12px 40px rgba(43,34,32,0.11);
  --container: 1180px;
  --font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

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

a { color: inherit; text-decoration: none; }
a[href^="tel:"], a[href^="mailto:"] { color: var(--red); font-weight: 600; }
a[href^="tel:"]:hover, a[href^="mailto:"]:hover { color: var(--red-dark); text-decoration: underline; }

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

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p { color: var(--warm-grey); }

.eyebrow {
  display: inline-block;
  position: relative;
  color: var(--warm-grey);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  margin-bottom: 14px;
  padding-bottom: 14px;
}
.eyebrow::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 32px; height: 2px;
  background: var(--red);
}
.section-head .eyebrow::after,
.text-center .eyebrow::after {
  left: 50%;
  transform: translateX(-50%);
}

.section { padding: 68px 0; }
.section--grey { background: var(--light-grey); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-head { max-width: 680px; margin: 0 auto 38px; text-align: center; }
.section-head p { margin-top: 12px; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  text-align: center;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-dark { background: var(--charcoal); color: var(--white); }
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--charcoal); }
.btn-outline-dark { background: transparent; border-color: var(--charcoal); color: var(--charcoal); }
.btn-outline-dark:hover { background: var(--charcoal); color: var(--white); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--light-grey);
  color: var(--warm-grey);
  font-size: 0.82rem;
  border-bottom: 1px solid var(--border);
}
.topbar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
  text-align: center;
}
.topbar a { color: var(--charcoal); font-weight: 600; }
.topbar a:hover { color: var(--red); }
.topbar__links { display: flex; gap: 20px; align-items: center; }

/* ---------- Header / Nav ---------- */
header.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 500;
  transition: box-shadow .25s ease;
}
header.site-header.scrolled { box-shadow: var(--shadow-lg); }
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.15rem; }
.brand img { height: 52px; width: auto; }
nav.main-nav { display: flex; align-items: center; gap: 30px; }
nav.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
nav.main-nav a:hover, nav.main-nav a.active { color: var(--red); border-bottom-color: var(--red); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-cta .phone { font-weight: 700; font-size: 0.95rem; display:flex; align-items:center; gap:6px;}
.header-cta .phone svg { fill: var(--red); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--charcoal); margin: 5px 0; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--charcoal);
  background: var(--light-grey);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 1;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(251,248,243,0.72) 6%, rgba(251,248,243,0.22) 45%, rgba(251,248,243,0) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 68px 0 56px;
  max-width: 680px;
}
.hero--sm .hero__content { padding: 34px 0; max-width: 700px; }

/* Split hero: text left, photo right */
.hero--split { background: var(--white); }
.hero--split .container { display: flex; align-items: center; gap: 48px; }
.hero--split .hero__content { padding: 68px 0; max-width: 560px; flex: 1 1 55%; }
.hero__media {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.hero__media-caption {
  margin-top: 10px;
  color: var(--warm-grey);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hero p.lead { color: var(--warm-grey); font-size: 1.15rem; margin: 18px 0 30px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.hero__badges { display: flex; gap: 24px; margin-top: 40px; flex-wrap: wrap; }
.hero__badges div { font-size: 0.85rem; color: var(--warm-grey); font-weight: 600; }
.hero__badges strong { display: block; color: var(--charcoal); font-size: 1.4rem; font-weight: 800; }

.breadcrumb { position: relative; z-index: 2; font-size: 0.85rem; color: var(--warm-grey); margin-bottom: 14px; }
.breadcrumb a { color: var(--charcoal); font-weight: 600; }
.breadcrumb a:hover { color: var(--red); }

/* ---------- Grids / Cards ---------- */
.grid { display: grid; gap: 34px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card__body { padding: 22px; }
.card__img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.card__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.card__img-wrap .tag { position: absolute; top: 12px; left: 12px; z-index: 2; }

.icon-badge {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(227,6,19,0.08); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.service-card { text-align: left; background: var(--beige); border-color: var(--beige-border); }
.service-card .icon-badge { margin-bottom: 16px; background: var(--white); color: var(--red); }
.service-card h3 { margin-bottom: 8px; }
.service-card a.card-link { color: var(--red); font-weight: 700; font-size: 0.9rem; display: inline-flex; gap: 6px; margin-top: 10px; }

.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
  background: rgba(251,248,243,0.95);
  color: var(--charcoal);
  border: 1px solid var(--border);
}
.badge--red { background: var(--red); color: var(--white); border-color: var(--red); }
.badge--outline { background: rgba(251,248,243,0.92); border: 1px solid var(--border); color: var(--charcoal); }

/* ---------- Gallery / filters ---------- */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.filter-btn {
  padding: 9px 18px; border-radius: 999px; border: 1px solid var(--border);
  background: var(--white); font-weight: 600; font-size: 0.85rem; cursor: pointer;
  transition: all .15s ease;
}
.filter-btn:hover { border-color: var(--red); color: var(--red); }
.filter-btn.active { background: var(--red); color: var(--white); border-color: var(--red); }

.gallery-item { position: relative; cursor: pointer; }
.gallery-item .tag {
  position: absolute; top: 12px; left: 12px;
  z-index: 2;
}
.gallery-item .caption {
  padding: 14px 16px;
  background: var(--white);
}
.gallery-item .caption h4 { font-size: 0.95rem; margin-bottom: 2px; }
.gallery-item .caption span { font-size: 0.8rem; color: var(--warm-grey); }

/* ---------- Project cards (before/after placeholders) ---------- */
.project-card__media { display: flex; }
.project-card__media img { flex: 1 1 50%; width: 50%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.project-card__media .ba-placeholder {
  flex: 1 1 50%;
  aspect-ratio: 4/3;
  background: var(--light-grey);
  border: 1px dashed var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--warm-grey);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.project-card__media .ba-placeholder + .ba-placeholder { border-left: none; }
.project-card__media .ba-placeholder--full { flex: 1 1 100%; aspect-ratio: 16/9; }
.project-card__media img.project-card__media--full { flex: 1 1 100%; width: 100%; aspect-ratio: 16/9; }
.project-card__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.project-card__head h3 { font-size: 1.05rem; margin: 0; }
.project-card .small { color: var(--warm-grey); margin-top: 4px; }
.project-card--empty .card__body h3 { color: var(--warm-grey); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(10,10,10,0.92);
  display: none; align-items: center; justify-content: center;
  z-index: 900; padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 80vh; border-radius: 6px; }
.lightbox .lb-close {
  position: absolute; top: 24px; right: 32px; color: var(--white);
  font-size: 2rem; cursor: pointer; line-height: 1;
}
.lightbox .lb-caption { color: #ddd; text-align: center; margin-top: 14px; font-size: 0.9rem; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { text-align: center; padding: 10px; }
.step .num {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--red); color: var(--white); font-weight: 800; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}

/* ---------- Stats strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stats strong { display: block; font-size: 2.2rem; font-weight: 800; color: var(--red); }
.stats--single { grid-template-columns: 1fr; }
.stats--single strong { font-size: 2.6rem; }
.stats span { font-size: 0.85rem; color: var(--warm-grey); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }

/* ---------- Testimonials ---------- */
.testimonial { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.testimonial .stars { color: var(--red); letter-spacing: 2px; margin-bottom: 12px; }
.testimonial p.quote { color: var(--charcoal); font-style: italic; margin-bottom: 16px; }
.testimonial .who { font-weight: 700; font-size: 0.9rem; }
.testimonial .who span { color: var(--warm-grey); font-weight: 500; display: block; font-size: 0.8rem; }
.testimonial--placeholder { background: var(--lighter-grey); border: 1px dashed var(--border); text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.testimonial--placeholder .quote { color: var(--warm-grey); font-style: normal; font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 8px; }
.testimonial--placeholder .who { color: var(--warm-grey); font-weight: 500; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--white);
  color: var(--charcoal);
  padding: 64px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-band h2 { color: var(--charcoal); }
.cta-band p { color: var(--warm-grey); margin: 12px 0 26px; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 32px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 700; font-size: 0.85rem; margin-bottom: 6px; }
.form-group .req { color: var(--red); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-family: var(--font);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--charcoal);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--red); }
.form-note { font-size: 0.78rem; color: var(--warm-grey); margin-top: 10px; }
.form-success {
  display: none;
  background: #EAF7EE; border: 1px solid #B7E4C7; color: #1E7A3B;
  padding: 16px; border-radius: 8px; font-weight: 600; margin-bottom: 18px;
}
.form-success.show { display: block; }
.form-error {
  background: #FDEDEC; border: 1px solid #F5B7B1; color: #A93226;
  padding: 16px; border-radius: 8px; font-weight: 600; margin-bottom: 18px;
}

.checkbox-group { display: flex; gap: 10px; align-items: flex-start; font-size: 0.85rem; color: var(--warm-grey); }
.checkbox-group input { width: auto; margin-top: 3px; }

/* ---------- Contact info blocks ---------- */
.info-block { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 26px; }
.info-block h4 { margin-bottom: 4px; font-size: 1rem; }
.info-block p { margin: 0; font-size: 0.92rem; }

/* ---------- Map placeholder ---------- */
/* ---------- FAQ accordion ---------- */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 4px; cursor: pointer; font-weight: 700; font-size: 1rem;
}
.faq-q .plus { font-size: 1.4rem; color: var(--red); transition: transform .2s ease; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a p { padding: 0 4px 20px; }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--light-grey); color: var(--warm-grey); padding: 60px 0 0; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 40px; }
.footer-grid h4 { color: var(--charcoal); font-size: 0.95rem; margin-bottom: 16px; }
.footer-grid ul { list-style: none; }
.footer-grid ul li { margin-bottom: 10px; font-size: 0.9rem; }
.footer-grid ul li a { color: var(--charcoal); }
.footer-grid ul li a:hover { color: var(--red); }
.footer-grid ul li a[href^="tel:"], .footer-grid ul li a[href^="mailto:"] { color: var(--red); font-weight: 600; }
.footer-grid ul li a[href^="tel:"]:hover, .footer-grid ul li a[href^="mailto:"]:hover { color: var(--red-dark); }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { height: 44px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--charcoal); background: var(--white);
}
.footer-social a:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0 28px;
  display: flex; justify-content: flex-start; align-items: center; flex-wrap: wrap; gap: 16px;
  font-size: 0.8rem;
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.flex { display: flex; }
.gap-12 { gap: 12px; }
.small { font-size: 0.85rem; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .container { padding: 0 20px; }

  /* Header: the CTA button here fought with the logo + hamburger for
     space and overflowed on narrow phones. The mobile nav drawer already
     has its own full-width "Get a Free Quote" button, so just hide this
     one and keep the header to logo + hamburger only. */
  nav.main-nav { display: none; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .brand img { height: 42px; }
  header.site-header { border-bottom: none; }

  /* Less vertical padding so mobile doesn't feel like an endless scroll */
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 36px; }
  .cta-band { padding: 48px 0; }
  .grid { gap: 24px; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: 1fr 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 24px; }

  .hero__content { padding: 40px 0 34px; }
  .hero--split .container { flex-direction: column; }
  .hero--split .hero__content { padding: 40px 0 0; max-width: none; }
  .hero__media { width: 100%; margin: 24px 0 40px; }
  .hero h1 { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .hero p.lead { font-size: 1.02rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .hero__badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
  }

  /* Trust strip: ragged centered flex-wrap looked messy with 4 uneven
     text lengths on narrow screens - a clean 2x2 grid reads much better */
  .trust-strip__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 16px;
    justify-items: center;
  }

  .footer-bottom { flex-direction: column; align-items: flex-start; border-top: none; }
  .topbar { display: none; }
  footer.site-footer { background: var(--white); }

  /* Featured Projects: show 2 on mobile, "View all projects" link covers the rest */
  #featured-projects-grid.grid-3 { grid-template-columns: 1fr; }
  #featured-projects-grid .project-card:nth-child(3) { display: none; }

  /* Services: horizontal swipeable row instead of 6 stacked tiles */
  #services .grid-3 {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 4px;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  #services .grid-3 .service-card {
    flex: 0 0 80%;
    scroll-snap-align: start;
  }

  /* Inner-page hero band: match the white header above instead of light-grey */
  .hero--sm { background: var(--white); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 34px 0; }
  .section-head { margin-bottom: 24px; }
  .cta-band { padding: 34px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .btn-lg { padding: 14px 24px; font-size: 1rem; }
  .project-card__media { flex-direction: column; }
  .project-card__media img,
  .project-card__media .ba-placeholder { width: 100%; aspect-ratio: 4/3; }
  .project-card__media .ba-placeholder + .ba-placeholder { border-left: none; border-top: none; }
  #services .grid-3 { margin: 0 -16px; padding-left: 16px; padding-right: 16px; }
  #services .grid-3 .service-card { flex-basis: 84%; }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed; top: 0; right: -300px; width: 280px; height: 100%;
  background: var(--white); z-index: 700; box-shadow: -4px 0 20px rgba(0,0,0,0.2);
  transition: right .25s ease; padding: 24px; overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-nav a { display: block; padding: 14px 0; font-weight: 700; border-bottom: 1px solid var(--border); }
.mobile-nav .close-nav { text-align: right; font-size: 1.6rem; cursor: pointer; margin-bottom: 10px; }
.nav-scrim { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 650; display: none; }
.nav-scrim.open { display: block; }

/* Tiles that don't link/act anywhere (used on Projects & Services pages) -
   keep the card styling but drop the hover-lift + pointer cursor so they
   don't look clickable when they aren't. */
.tile-static { cursor: default; }
.tile-static:hover { transform: none; box-shadow: none; }


/* ---------- Scroll reveal (progressive enhancement, safe without JS) ---------- */
.js .section,
.js .cta-band {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.js .section.in-view,
.js .cta-band.in-view {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .section, .cta-band { transition: none !important; transform: none !important; opacity: 1 !important; }
}

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--white); border-bottom: 1px solid var(--border); padding: 22px 0; }
.trust-strip__inner { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; text-align: center; }
.trust-strip__inner div { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.88rem; color: var(--charcoal); }
.trust-strip__inner .trust-icon { font-size: 1.1rem; }
