/* ================================================================
   AMIGOS PAINTING & LANDSCAPE — Homepage v2 CSS
   All selectors scoped to .ampl- prefix — safe for WordPress
   ================================================================ */

/* ── Custom Properties ── */
:root {
  --ampl-green-900: #1F3D14;
  --ampl-green-800: #2E5A1E;
  --ampl-green-700: #3B7226;
  --ampl-green-600: #4C8C36;
  --ampl-green-400: #7FAE68;
  --ampl-green-100: #E7F1E0;
  --ampl-green-50:  #F2F8EE;

  /* Bronze — the site's one accent color, used sparingly (primary CTAs,
     dividers, small hover accents). Not a whole "gold" ramp. */
  --ampl-bronze:      #B8860B;
  --ampl-bronze-dark: #A17708;

  --ampl-charcoal:  #222222;
  --ampl-gray-700:  #404040;
  --ampl-gray-500:  #737373;
  --ampl-gray-400:  #9a9a9a;
  --ampl-gray-200:  #d4d4d4;
  --ampl-gray-100:  #f0f0ef;

  --ampl-cream:     #F7F5EF;
  --ampl-white:     #ffffff;

  /* ── Typography design system ──
     ONE family site-wide: Manrope, everywhere — headings and display
     moments at 700-800, body copy/forms/cards/FAQs/testimonials/CTAs at
     400-500. The three variable names below are kept as aliases of the
     same family (rather than renamed) since they're referenced throughout
     this file and inline in several page templates — do not repoint any
     of them to a different family. */
  --ampl-font-display:  'Manrope', 'Helvetica Neue', Arial, sans-serif;
  --ampl-font-body:     'Manrope', 'Helvetica Neue', Arial, sans-serif;
  --ampl-font-headline: 'Manrope', 'Helvetica Neue', Arial, sans-serif;

  /* Shared heading tokens — every H2-level heading uses the same tracking
     and line-height regardless of section; only font-size has two
     deliberate tiers (standard section headers vs. the large brand-
     statement variant used once, mid-page). */
  --fs-h2:      clamp(2rem, 4vw, 3rem);
  --fs-h2-lg:   clamp(2.5rem, 5vw, 4rem);
  --ls-heading: -.02em;
  --lh-heading: 1.1;

  /* Shared button tokens — every button on the site (hero, header, cards,
     process, final CTA, forms) uses this same shape/type, only the color
     changes per variant. */
  --ampl-btn-radius: 8px;

  --ampl-nav-h:    140px;  /* total header height for JS offset */
  --ampl-header-h:  140px;
  --ampl-max:      1240px;
  --ampl-section:  6rem;

  --ampl-ease:     cubic-bezier(0.16, 1, 0.3, 1);
  --ampl-ease-io:  cubic-bezier(0.4, 0, 0.2, 1);

  --ampl-sh-sm:  0 2px 8px rgba(0,0,0,.07), 0 1px 3px rgba(0,0,0,.05);
  --ampl-sh-md:  0 4px 20px rgba(0,0,0,.09), 0 2px 8px rgba(0,0,0,.06);
  --ampl-sh-lg:  0 8px 40px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.08);
  --ampl-sh-xl:  0 20px 60px rgba(0,0,0,.15), 0 8px 24px rgba(0,0,0,.10);
  --ampl-sh-grn: 0 8px 32px rgba(46,90,30,.25);
}

/* ── Base resets (scoped, won't bleed into WP) ── */
.ampl-header *, .ampl-nav *, .ampl-hero *,
.ampl-section *, .ampl-split *, .ampl-imgbreak *,
.ampl-why *, .ampl-process *,
.ampl-reviews *, .ampl-areas *, .ampl-faq *,
.ampl-cta *, .ampl-footer * {
  box-sizing: border-box;
}

.ampl-header a, .ampl-nav a, .ampl-section a, .ampl-split a,
.ampl-why a, .ampl-process a,
.ampl-reviews a, .ampl-areas a, .ampl-faq a,
.ampl-cta a, .ampl-footer a {
  text-decoration: none;
  color: inherit;
}

.ampl-nav ul, .ampl-areas__grid,
.ampl-hero__trust, .ampl-process__steps,
.ampl-reviews__grid, .ampl-why__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ── Accessibility helper: visually hidden but readable by screen readers.
   Used where a link's visible label lives inside an aria-hidden hover
   state, so the link still needs an accessible name. ── */
.ampl-sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Layout helpers ── */
.ampl-container {
  width: 100%;
  max-width: var(--ampl-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.ampl-section {
  padding-block: var(--ampl-section);
}

.ampl-bg--alt  { background: var(--ampl-cream); }
.ampl-bg--dark { background: var(--ampl-green-900); }

/* ── Typography helpers ── */
.ampl-label {
  display: block;
  font-family: var(--ampl-font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ampl-green-800);
  margin-bottom: 0.75rem;
}
.ampl-label--gold     { color: var(--ampl-bronze); }
.ampl-label--green-lt { color: var(--ampl-green-400); }

.ampl-rule {
  display: inline-block;
  width: 36px;
  height: 2px;
  background: var(--ampl-bronze);
  vertical-align: middle;
  margin-right: 0.75rem;
}

.ampl-h2 {
  font-family: var(--ampl-font-display);
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--ampl-charcoal);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-heading);
  margin: 0 0 1.25rem;
}
.ampl-h2--white { color: var(--ampl-white); }

.ampl-body-lg {
  font-family: var(--ampl-font-body);
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.8;
  color: var(--ampl-gray-700);
  margin: 0 0 1.5rem;
}
.ampl-body-lg--center { text-align: center; max-width: 56ch; margin-inline: auto; }
.ampl-body-lg--muted  { color: rgba(255,255,255,.65); }

.ampl-section-header { margin-bottom: 3rem; }
.ampl-section-header--center { text-align: center; }

/* ── Buttons ──
   One shared shape/type for every button on the site (hero, header, cards,
   process, final CTA banner, forms) — variants below only change color. */
.ampl-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 30px;
  border-radius: var(--ampl-btn-radius);
  font-family: var(--ampl-font-body);
  font-size: clamp(.9375rem, 1vw, 1rem); /* ~15-16px */
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 250ms var(--ampl-ease);
}
.ampl-btn:hover { transform: translateY(-2px); }
.ampl-btn--lg { padding: 1rem 2rem; font-size: 1.0625rem; }

.ampl-btn--primary {
  background: var(--ampl-green-800);
  color: var(--ampl-white);
  box-shadow: var(--ampl-sh-grn);
}
.ampl-btn--primary:hover {
  background: var(--ampl-green-700);
  box-shadow: 0 12px 40px rgba(46,90,30,.35);
  transform: translateY(-2px);
}

/* The site's one accent button color (bronze) — "accent" and "bronze" used
   to be two different colors (gold vs. bronze); they're now the same
   variant kept under both class names so every existing reference still
   resolves correctly. */
.ampl-btn--accent,
.ampl-btn--bronze {
  background: var(--ampl-bronze);
  color: #1B1B1B;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
}
.ampl-btn--accent:hover,
.ampl-btn--bronze:hover {
  background: var(--ampl-bronze-dark);
  box-shadow: 0 10px 28px rgba(0,0,0,.24);
  transform: translateY(-2px);
}

.ampl-btn--outline {
  background: transparent;
  color: var(--ampl-green-800);
  border-color: var(--ampl-green-800);
}
.ampl-btn--outline:hover {
  background: var(--ampl-green-800);
  color: var(--ampl-white);
}

.ampl-btn--ghost {
  background: transparent;
  color: var(--ampl-white);
  border-color: rgba(255,255,255,.45);
}
.ampl-btn--ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.8);
}



/* ================================================================
   HERO
================================================================ */
.ampl-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  /* Fallback flash before the video paints — matches the bottom fade's solid
     endpoint color below. */
  background: #2E5A1E;
  overflow: hidden;
}

.ampl-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ampl-hero__bg img,
.ampl-hero__bg video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.ampl-hero__bg video {
  filter: brightness(.75) contrast(1.08) saturate(1.08);
}
.ampl-hero__bg img {
  filter: brightness(.94) saturate(1.02);
  transform: scale(1.05);
  animation: ampl-zoom 20s ease-out forwards;
}
@keyframes ampl-zoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1); }
}

/* Responsive focal point for the hero video (16:9 source). The subject — a finished
   paver walkway between the house and the aspens — sits center-right of frame with a
   safe sky margin at the top. Desktop hero containers are WIDER than 16:9, so cover
   crops top/bottom (vertical adjustment matters most). Mobile containers are much
   TALLER than 16:9, so cover crops left/right (horizontal adjustment matters most). */
.ampl-hero__bg video { object-position: center center; }

@media (max-width: 1024px) {
  .ampl-hero__bg video { object-position: center center; }
}
@media (max-width: 640px) {
  .ampl-hero__bg video { object-position: center center; }
}

/* Video background plays on all breakpoints (autoplay/muted/playsinline). The <video poster>
   attribute already shows the placeholder image while it loads or if playback fails, so the
   separate fallback <img> only renders when no <video> element exists at all. */
.ampl-hero__bg:has(video) .ampl-hero__bg-poster { display: none; }

/* Readability fade behind the (left-aligned) text column only — not a
   full-hero darkening wash, so the rest of the video stays bright/cinematic. */
.ampl-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.65) 0%,
    rgba(0,0,0,.40) 28%,
    rgba(0,0,0,.12) 55%,
    transparent 75%
  );
}
@media (max-width: 768px) {
  /* Content is centered on mobile, so a one-sided fade would leave half the
     text on brighter video — use a centered vignette instead. */
  .ampl-hero::before {
    background: radial-gradient(
      ellipse at center,
      rgba(0,0,0,.55) 0%,
      rgba(0,0,0,.25) 45%,
      transparent 75%
    );
  }
}

.ampl-hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 240px;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0,0,0,.30) 35%,
    rgba(0,0,0,.82) 72%,
    #2E5A1E 100%
  );
}
@media (max-width: 640px) {
  .ampl-hero::after { height: 170px; }
}

.ampl-hero__body {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--ampl-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
  padding-top: 3.5rem;
  padding-bottom: 4rem;
}

.ampl-hero__content {
  max-width: 600px;
}

.ampl-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.ampl-hero__h1 {
  /* Manrope 800, mixed case — sized down and re-tracked from the earlier
     condensed-uppercase Bebas Neue treatment, since Manrope's glyphs are
     much wider at the same font-size and don't carry uppercase-at-scale
     well. Re-measure before changing this again. */
  font-family: var(--ampl-font-headline);
  font-size: clamp(2.75rem, 5vw, 4.25rem); /* ~44-68px desktop */
  font-weight: 800;
  color: var(--ampl-white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0,0,0,.45);
  max-width: 600px;
  margin: 0 0 1.5rem;
}
.ampl-hero__h1-accent {
  display: block;
  margin-top: .15em;
  color: var(--ampl-bronze);
}
@media (max-width: 1024px) {
  .ampl-hero__h1 { font-size: clamp(2.25rem, 4.5vw, 3rem); } /* ~36-48px tablet */
}
@media (max-width: 640px) {
  .ampl-hero__h1 { font-size: clamp(1.875rem, 7vw, 2.25rem); } /* ~30-36px mobile */
}

.ampl-hero__sub {
  font-family: var(--ampl-font-body);
  font-weight: 400;
  font-size: clamp(1.125rem, 1.4vw, 1.25rem); /* ~18-20px */
  color: rgba(255,255,255,.92);
  line-height: 1.6;
  text-shadow: 0 1px 8px rgba(0,0,0,.35);
  max-width: 520px;
  margin: 0 0 2.5rem;
}

.ampl-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}
/* Hero's accent CTA now just uses the shared .ampl-btn--accent bronze
   variant directly — no hero-scoped override needed since that variant
   already matches this color. */

/* Trust strip */
.ampl-hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}
.ampl-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ampl-font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
}
.ampl-hero__trust-sep {
  width: 1px; height: 18px;
  background: rgba(255,255,255,.2);
}


/* ================================================================
   INTRO / BRAND STATEMENT
================================================================ */
.ampl-intro { background: var(--ampl-white); }
.ampl-intro__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.ampl-intro__h2 {
  /* Intentionally the larger h2-lg tier — this is the page's one mid-page
     brand-statement headline, deliberately bigger than a standard section
     header, but sharing the same tracking/line-height as every other H2. */
  font-family: var(--ampl-font-display);
  font-size: var(--fs-h2-lg);
  font-weight: 700;
  color: var(--ampl-charcoal);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-heading);
  margin: 0 0 1.5rem;
}
.ampl-intro__body {
  font-family: var(--ampl-font-body);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--ampl-gray-500);
  line-height: 1.8;
  max-width: 62ch;
  margin: 0 0 2.5rem;
}
.ampl-intro__links { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }


/* ================================================================
   SPLIT SECTIONS (Painting + Landscaping)
================================================================ */
.ampl-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

/* Painting: image left */
.ampl-split--alt .ampl-split__image { order: -1; }
/* Landscaping: image right (default) */

.ampl-split__image {
  position: relative;
  overflow: hidden;
  min-height: 560px;
}
.ampl-split__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms var(--ampl-ease);
}
.ampl-split__image:hover img { transform: scale(1.03); }

.ampl-split__badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: var(--ampl-white);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: var(--ampl-sh-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.ampl-split--rev .ampl-split__badge { right: auto; left: 2rem; }
.ampl-split__badge-num {
  font-family: var(--ampl-font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--ampl-green-800);
  line-height: 1;
}
.ampl-split__badge-txt {
  font-family: var(--ampl-font-body);
  font-size: 0.8rem;
  color: var(--ampl-gray-500);
  line-height: 1.4;
}

.ampl-split__content {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ampl-white);
}
.ampl-split--alt .ampl-split__content { background: var(--ampl-cream); }

/* Service cards inside split */
.ampl-svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0 2.5rem;
}
.ampl-svc-card {
  background: var(--ampl-white);
  border: 1px solid var(--ampl-gray-200);
  border-radius: 14px;
  padding: 1.25rem 1rem;
  transition: box-shadow 250ms var(--ampl-ease), transform 250ms var(--ampl-ease), border-color 250ms;
  position: relative;
  overflow: hidden;
}
.ampl-svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ampl-green-800);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms var(--ampl-ease);
}
.ampl-svc-card:hover::before { transform: scaleX(1); }
.ampl-svc-card:hover {
  box-shadow: var(--ampl-sh-md);
  transform: translateY(-4px);
  border-color: transparent;
}
.ampl-svc-card__icon {
  width: 42px; height: 42px;
  background: var(--ampl-green-50);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.75rem;
}
.ampl-svc-card__icon svg { width: 22px; height: 22px; stroke: var(--ampl-green-800); }
.ampl-svc-card__title {
  font-family: var(--ampl-font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ampl-charcoal);
  margin: 0 0 0.4rem;
  line-height: 1.2;
}
.ampl-svc-card__body {
  font-family: var(--ampl-font-body);
  font-size: 0.8rem;
  color: var(--ampl-gray-500);
  line-height: 1.6;
  margin: 0 0 0.6rem;
}
.ampl-svc-card__link {
  font-family: var(--ampl-font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ampl-green-800);
  transition: gap 150ms;
}
.ampl-svc-card__link:hover { text-decoration: underline; }


/* ================================================================
   SERVICES OVERVIEW — "How Amigos Can Transform Your Property"
   Text on the left (~36%), a rectangular photo mosaic on the right
   (~64%) — one large landscape image + one tall portrait image in the
   top row, four smaller nearly-square images in the bottom row. No
   circles, no cards, no icons — the photography itself forms the grid.
   Single source of truth for this section.

   Service labels are permanently visible over the bottom-left of every
   photo (never hover-only, never below the image). Only the
   bronze-outlined arrow is hover-only, and only the image inside each
   frame animates on hover — the frame itself never moves or resizes.
================================================================ */
.ampl-services {
  position: relative;
  overflow: hidden; /* keep the full-bleed background from causing any horizontal scroll */
  padding-top: 120px;
  padding-bottom: 120px;
}

/* Full-bleed decorative background photo — sits behind everything in the
   section (the section itself has no max-width, so this naturally spans
   edge-to-edge while the content below stays inside .ampl-container).
   The cream overlay (90% opacity, applied as a background layer in the
   inline style) is baked into the same background-image so there's only
   one paint layer, not a separate overlay element. */
.ampl-services__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
/* Only darkens behind the text so it stays readable — the center/right
   of the photo (and the mosaic sitting above it) stay untouched. Desktop
   and laptop: text sits in the left column, so the gradient runs
   left→right. Tablet/mobile reorient it top→bottom once the text stacks
   above the mosaic instead of sitting beside it (see media queries). */
.ampl-services__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 18, 18, .55) 0%, rgba(18, 18, 18, .25) 30%, rgba(18, 18, 18, 0) 60%);
}

/* ── 1024px and up: text left, mosaic right ── */
.ampl-services__layout {
  position: relative;
  z-index: 1; /* stack above .ampl-services__bg */
  display: grid;
  grid-template-columns: minmax(280px, 36fr) minmax(0, 64fr);
  gap: 4.5rem; /* 60–80px spec */
  align-items: center; /* text vertically centered against the mosaic */
}

.ampl-services__content {
  text-align: left;
  max-width: 500px; /* 460–520px spec */
}

.ampl-services__h2 {
  font-family: var(--ampl-font-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 3.2vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-align: left;
  color: #fff; /* sits over the dark left-side gradient on the background photo */
  text-shadow: 0 2px 10px rgba(0, 0, 0, .35);
  max-width: 16ch;
  margin: 0 0 24px;
}

.ampl-services__intro {
  font-family: var(--ampl-font-body);
  font-weight: 400;
  color: rgba(255, 255, 255, .92);
  text-shadow: 0 1px 8px rgba(0, 0, 0, .3);
  text-align: left;
  max-width: 46ch;
  margin: 0 0 30px;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.7;
}

/* Scoped override of the shared .ampl-btn--accent for this one CTA:
   bronze → forest-green on hover, white text. Uses the existing
   site-wide button shape/system — no new button design. */
.ampl-services__cta.ampl-btn {
  border-radius: 11px;
  color: #fff;
}
.ampl-services__cta.ampl-btn:hover {
  background: var(--ampl-green-800);
  color: #fff;
}

/* ── Photo mosaic ──
   20 columns (not 4) so the top row can hit an exact 55/45 split
   between the large and tall images while the bottom row still divides
   into four perfectly even boxes (5 columns each, 4×5=20). */
.ampl-services__mosaic {
  --row-a: clamp(230px, 27vw, 370px); /* row 1: large + tall */
  --row-b: clamp(120px, 14vw, 190px); /* row 2: the four smaller images */
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  grid-template-rows: var(--row-a) var(--row-b);
  gap: 10px; /* 8–12px spec */
  max-width: 820px; /* 720–820px spec */
}

.ampl-mosaic__item {
  position: relative;
  display: block;
  border-radius: 14px; /* 12–18px spec */
  overflow: hidden;
  box-shadow: var(--ampl-sh-md); /* soft, elevated — the mosaic now floats over a full photo background */
}
.ampl-mosaic__item:focus-visible {
  outline: 2px solid var(--ampl-bronze);
  outline-offset: 3px;
}
.ampl-mosaic__item--large { grid-column: 1 / 12; grid-row: 1; } /* 11/20 = 55% */
.ampl-mosaic__item--tall  { grid-column: 12 / 21; grid-row: 1; } /* 9/20 = 45% */
.ampl-mosaic__item--small { grid-column: span 5; } /* 5/20 = 25% each, four fill row 2 exactly */
/* The four .ampl-mosaic__item--small images all share the span above
   and auto-place into row 2's columns in DOM order — no per-item
   position classes needed. */

.ampl-mosaic__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 300ms var(--ampl-ease-io); /* only the image animates, not the frame */
}

/* Permanent bottom-left gradient + label — visible at rest, not
   hover-only, per spec. */
.ampl-mosaic__scrim {
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  background: linear-gradient(to top, rgba(20, 20, 20, .58) 0%, rgba(20, 20, 20, 0) 100%);
  transition: background 300ms var(--ampl-ease-io);
  pointer-events: none;
}
.ampl-mosaic__label {
  position: absolute;
  left: 0; bottom: 0;
  z-index: 2;
  padding: 12px 14px;
  color: #fff;
  font-family: var(--ampl-font-body);
  font-weight: 600;
  font-size: 15px; /* 14–17px spec */
  line-height: 1.3;
  max-width: calc(100% - 24px);
}

/* Hover (laptop/desktop): image scales inside its fixed frame, scrim
   deepens slightly, a bronze-outlined arrow fades into the exact center
   of the box via its own dedicated overlay layer. */
.ampl-mosaic__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 54px; height: 54px; /* 50–58px spec */
  border-radius: 50%;
  border: 1.5px solid var(--ampl-bronze);
  background: rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.9);
  transition: opacity 300ms var(--ampl-ease-io), transform 300ms var(--ampl-ease-io);
}
/* Touch devices can't hover — keep the centered arrow faintly visible at
   rest instead of fully hidden, without requiring an interaction. */
@media (hover: none) {
  .ampl-mosaic__arrow { opacity: .55; }
}
.ampl-mosaic__item:hover img,
.ampl-mosaic__item:focus-visible img {
  transform: scale(1.05);
}
.ampl-mosaic__item:hover .ampl-mosaic__scrim,
.ampl-mosaic__item:focus-visible .ampl-mosaic__scrim {
  background: linear-gradient(to top, rgba(20, 20, 20, .74) 0%, rgba(20, 20, 20, 0) 100%);
}
.ampl-mosaic__item:hover .ampl-mosaic__arrow,
.ampl-mosaic__item:focus-visible .ampl-mosaic__arrow {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ================================================================
   LAPTOP — 1024–1279px: text stays left, mosaic stays right; mosaic
   sizing already scales down via clamp(), column gap between text and
   mosaic tightens slightly.
================================================================ */
@media (max-width: 1279px) {
  .ampl-services__layout { gap: 3.75rem; } /* 60px — still within spec */
}

/* ================================================================
   TABLET — 768–1023px: text stacks first (centered), mosaic centered
   below it. Top row (large + tall) stays two images; bottom row
   becomes a 2×2 grid instead of four across.
================================================================ */
@media (max-width: 1023px) {
  .ampl-services { padding-top: 90px; padding-bottom: 90px; }
  .ampl-services__layout {
    grid-template-columns: 1fr;
    row-gap: 2.5rem;
  }
  /* Text now stacks above the mosaic instead of sitting beside it, so the
     readability gradient reorients from left→right to top→bottom, darkest
     behind the heading/paragraph and clear by the time the mosaic starts. */
  .ampl-services__bg::before {
    background: linear-gradient(180deg, rgba(18, 18, 18, .60) 0%, rgba(18, 18, 18, .32) 45%, rgba(18, 18, 18, .06) 100%);
  }
  .ampl-services__content {
    text-align: center;
    max-width: 60ch;
    margin-inline: auto;
  }
  .ampl-services__h2 { text-align: center; max-width: 22ch; margin-inline: auto; }
  .ampl-services__intro { text-align: center; margin-inline: auto; }
  .ampl-services__cta { margin-inline: auto; }

  .ampl-services__mosaic {
    --row-a: 260px;
    --row-b: 170px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: var(--row-a) var(--row-b) var(--row-b);
    max-width: 620px;
    margin-inline: auto;
  }
  .ampl-mosaic__item--large { grid-column: 1 / 2; grid-row: 1; }
  .ampl-mosaic__item--tall  { grid-column: 2 / 3; grid-row: 1; }
  /* Reset the desktop 20-col span — this tier's grid only has 2 columns,
     so the four smalls go back to their default 1-column auto-place,
     filling the 2×2 grid below (rows 2–3). */
  .ampl-mosaic__item--small { grid-column: span 1; }
}

/* ================================================================
   MOBILE — below 768px: heading → paragraph → button → mosaic. Large
   image full width, tall image full width beneath it, then the four
   smaller images in a two-column grid.
================================================================ */
@media (max-width: 767px) {
  .ampl-services { padding-top: 60px; padding-bottom: 60px; }
  .ampl-services__h2 { font-size: clamp(1.625rem, 6.5vw, 2rem); }

  /* The full-bleed photo is landscape (16:9-ish); at mobile widths the
     section is much taller than it is wide (stacked text + mosaic), so
     covering the WHOLE section forces the photo to scale up hugely and
     crop to a thin sliver — reading as "too zoomed in". Instead, cap the
     photo to a fixed band behind just the text block; the mosaic below
     sits on the normal page background. ::before's gradient is inset:0
     relative to .ampl-services__bg, so it automatically matches this
     shorter band too. */
  .ampl-services__bg {
    top: 0;
    right: 0;
    left: 0;
    bottom: auto;
    height: 440px;
  }

  .ampl-services__mosaic {
    --row-a: 230px;
    --row-tall: 190px;
    --row-b: 148px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: var(--row-a) var(--row-tall) var(--row-b) var(--row-b);
    gap: 14px; /* 12–16px spec */
    max-width: 100%;
  }
  .ampl-mosaic__item--large { grid-column: 1 / 3; grid-row: 1; }
  .ampl-mosaic__item--tall  { grid-column: 1 / 3; grid-row: 2; }
  /* Reset the desktop 20-col span — this tier's grid only has 2 columns,
     so the four smalls go back to their default 1-column auto-place,
     filling the 2×2 grid below (rows 3–4). */
  .ampl-mosaic__item--small { grid-column: span 1; }

  .ampl-mosaic__label { font-size: 14px; padding: 10px 12px; }
  .ampl-mosaic__arrow { width: 46px; height: 46px; } /* 42–48px spec, stays centered via the base rule */
}

/* ================================================================
   VERY SMALL MOBILE — below 390px: one-column featured images and the
   two-column small grid are preserved, everything just sized down.
================================================================ */
@media (max-width: 389px) {
  .ampl-services__h2 { font-size: clamp(1.375rem, 7.5vw, 1.75rem); }
  .ampl-services__intro { font-size: .875rem; }
  .ampl-services__bg { height: 380px; }

  .ampl-services__mosaic {
    --row-a: 190px;
    --row-tall: 160px;
    --row-b: 122px;
    gap: 10px;
  }
  .ampl-mosaic__label { font-size: 12.5px; padding: 8px 10px; line-height: 1.25; }
  .ampl-mosaic__arrow { width: 42px; height: 42px; } /* still within the 42–48px spec */
}







/* ================================================================
   FULL-BLEED IMAGE BREAK
================================================================ */
.ampl-imgbreak {
  position: relative;
  height: 45vh;
  min-height: 280px;
  overflow: hidden;
}
.ampl-imgbreak img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.55) saturate(.8);
}
.ampl-imgbreak__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.ampl-imgbreak__quote {
  font-family: var(--ampl-font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  font-weight: 700;
  font-style: italic;
  color: var(--ampl-white);
  text-align: center;
  max-width: 22ch;
  line-height: 1.25;
  letter-spacing: -.01em;
}


/* ================================================================
   WHY CHOOSE US
================================================================ */
.ampl-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.ampl-why__img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--ampl-sh-lg);
}
.ampl-why__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.ampl-why__h2 {
  font-family: var(--ampl-font-headline);
  font-weight: 800;
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ampl-green-800);
  text-align: left;
  margin: 0 0 1.25rem;
}
.ampl-why__body {
  font-family: var(--ampl-font-body);
  font-size: clamp(1.125rem, 1.2vw, 1.25rem); /* ~18-20px */
  line-height: 1.7;
  color: #2B2B2B;
  text-align: left;
  max-width: 650px; /* within the requested 620-680px range */
  margin: 0 0 2.5rem;
}

.ampl-why__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}


/* ================================================================
   OUR RECENT WORK — premium project portfolio
================================================================ */
.ampl-portfolio__header {
  max-width: 700px;
  margin-bottom: 2.5rem;
}
.ampl-portfolio__viewall {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--ampl-font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ampl-green-800);
  margin-top: .5rem;
  transition: gap 200ms var(--ampl-ease), color 200ms;
}
.ampl-portfolio__viewall svg { transition: transform 250ms var(--ampl-ease); }
.ampl-portfolio__viewall:hover { color: #B8860B; }
.ampl-portfolio__viewall:hover svg { transform: translateX(4px); }

/* Filters */
.ampl-portfolio__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.ampl-portfolio__filter {
  font-family: var(--ampl-font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ampl-gray-700);
  background: transparent;
  border: 1.5px solid var(--ampl-gray-200);
  border-radius: 9999px;
  padding: 0.5rem 1.1rem;
  cursor: pointer;
  transition: all 200ms var(--ampl-ease);
}
.ampl-portfolio__filter:hover {
  border-color: var(--ampl-green-800);
  color: var(--ampl-green-800);
}
.ampl-portfolio__filter.is-active {
  background: var(--ampl-green-800);
  border-color: var(--ampl-green-800);
  color: var(--ampl-white);
}

/* Featured project — ~60% width, standalone above the grid */
.ampl-portfolio__featured {
  display: block;
  width: 60%;
  margin: 0 auto 3rem;
  transition: transform 250ms var(--ampl-ease);
}
.ampl-portfolio__featured-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: var(--ampl-sh-sm);
  transition: box-shadow 250ms var(--ampl-ease);
}
.ampl-portfolio__featured-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ampl-ease);
}
.ampl-portfolio__featured:hover { transform: translateY(-6px); }
.ampl-portfolio__featured:hover .ampl-portfolio__featured-media {
  box-shadow: var(--ampl-sh-lg);
}
.ampl-portfolio__featured:hover .ampl-portfolio__featured-media img {
  transform: scale(1.05);
}
.ampl-portfolio__featured-body {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
}
.ampl-portfolio__title {
  font-family: var(--ampl-font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ampl-charcoal);
  margin: 0;
}
.ampl-portfolio__meta {
  font-family: var(--ampl-font-body);
  font-size: 0.85rem;
  color: var(--ampl-gray-500);
  margin: 0.3rem 0 0;
}
.ampl-portfolio__arrow {
  flex-shrink: 0;
  color: var(--ampl-green-800);
  transition: transform 250ms var(--ampl-ease);
}
.ampl-portfolio__featured:hover .ampl-portfolio__arrow { transform: translateX(4px); }

/* Grid — 3 / 2 / 1 columns */
.ampl-portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
}
.ampl-portfolio-card {
  display: block;
  transition: transform 250ms var(--ampl-ease);
}
.ampl-portfolio-card__media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--ampl-sh-sm);
  transition: box-shadow 250ms var(--ampl-ease);
}
.ampl-portfolio-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ampl-ease);
}
.ampl-portfolio-card:hover { transform: translateY(-6px); }
.ampl-portfolio-card:hover .ampl-portfolio-card__media { box-shadow: var(--ampl-sh-lg); }
.ampl-portfolio-card:hover .ampl-portfolio-card__media img { transform: scale(1.06); }
.ampl-portfolio-card__title {
  font-family: var(--ampl-font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ampl-charcoal);
  margin: 1rem 0 0;
}
.ampl-portfolio-card__meta {
  display: inline-block;
  font-family: var(--ampl-font-body);
  font-size: 0.8rem;
  color: var(--ampl-gray-500);
  margin: 0.3rem 0 0;
}
.ampl-portfolio-card__arrow {
  display: inline-flex;
  margin-left: .4rem;
  color: var(--ampl-green-800);
  transition: transform 250ms var(--ampl-ease);
  vertical-align: middle;
}
.ampl-portfolio-card:hover .ampl-portfolio-card__arrow { transform: translateX(4px); }

@media (max-width: 1024px) {
  .ampl-portfolio__featured { width: 100%; }
  .ampl-portfolio__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .ampl-portfolio__grid { grid-template-columns: 1fr; gap: 2rem; }
  .ampl-portfolio__featured-body { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
}


/* ================================================================
   PROCESS
================================================================ */
.ampl-process__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
  counter-reset: none;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ampl-process__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(10% + 28px);
  right: calc(10% + 28px);
  height: 2px;
  background: var(--ampl-gray-200);
}

.ampl-process__step { text-align: center; position: relative; z-index: 1; }

.ampl-process__num {
  width: 56px; height: 56px;
  border-radius: 9999px;
  background: var(--ampl-white);
  border: 2px solid var(--ampl-gray-200);
  display: flex; align-items: center; justify-content: center;
  margin-inline: auto;
  margin-bottom: 1.25rem;
  font-family: var(--ampl-font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ampl-gray-400);
  box-shadow: var(--ampl-sh-sm);
  transition: all 400ms var(--ampl-ease);
}
.ampl-process__step.is-active .ampl-process__num {
  background: var(--ampl-green-800);
  border-color: var(--ampl-green-800);
  color: var(--ampl-white);
  box-shadow: var(--ampl-sh-grn);
}
.ampl-process__title {
  font-family: var(--ampl-font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ampl-charcoal);
  margin: 0 0 0.5rem;
}
.ampl-process__body {
  font-family: var(--ampl-font-body);
  font-size: 0.8rem;
  color: var(--ampl-gray-500);
  line-height: 1.6;
  margin: 0;
}


/* ================================================================
   TESTIMONIALS / REVIEWS
================================================================ */
.ampl-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ampl-review-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  transition: background 250ms, border-color 250ms;
}
.ampl-review-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
}

.ampl-review-card__stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}
.ampl-review-card__stars svg { width: 16px; height: 16px; }

.ampl-review-card__quote {
  font-family: var(--ampl-font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,.9);
  line-height: 1.55;
  margin: 0 0 1.5rem;
}

.ampl-review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.ampl-review-card__avatar {
  width: 40px; height: 40px;
  border-radius: 9999px;
  background: var(--ampl-green-800);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ampl-font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ampl-white);
  flex-shrink: 0;
}
.ampl-review-card__name {
  font-family: var(--ampl-font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ampl-white);
}
.ampl-review-card__city {
  font-family: var(--ampl-font-body);
  font-size: 0.75rem;
  color: rgba(255,255,255,.45);
}

.ampl-reviews__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 3rem;
}

.ampl-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 9999px;
  padding: 0.75rem 1.25rem;
  font-family: var(--ampl-font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,.75);
}
.ampl-google-badge strong { color: var(--ampl-white); }


/* ================================================================
   SERVICE AREAS
================================================================ */
.ampl-areas__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}
.ampl-area-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.25rem;
  background: var(--ampl-white);
  border: 1.5px solid var(--ampl-gray-200);
  border-radius: 9999px;
  font-family: var(--ampl-font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ampl-gray-700);
  transition: all 200ms var(--ampl-ease);
}
.ampl-area-pill:hover {
  border-color: var(--ampl-green-800);
  color: var(--ampl-green-800);
  background: var(--ampl-green-50);
  transform: translateY(-2px);
  box-shadow: var(--ampl-sh-sm);
}
.ampl-areas__note {
  font-family: var(--ampl-font-body);
  font-size: 0.875rem;
  color: var(--ampl-gray-400);
  text-align: center;
  margin: 0;
}
.ampl-areas__note a { color: var(--ampl-green-800); font-weight: 600; }
.ampl-areas__note a:hover { text-decoration: underline; }


/* ================================================================
   FAQ
================================================================ */
.ampl-faq__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}

.ampl-faq__list { max-width: 100%; }

.ampl-faq__item { border-bottom: 1px solid var(--ampl-gray-200); }
.ampl-faq__item:first-child { border-top: 1px solid var(--ampl-gray-200); }

.ampl-faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-block: 1.25rem;
  text-align: left;
  font-family: var(--ampl-font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ampl-charcoal);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 150ms;
}
.ampl-faq__q:hover { color: var(--ampl-green-800); }

.ampl-faq__icon {
  width: 28px; height: 28px;
  background: var(--ampl-gray-100);
  border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 200ms, transform 300ms var(--ampl-ease);
}
.ampl-faq__icon svg { width: 13px; height: 13px; stroke: var(--ampl-gray-500); transition: stroke 200ms; }

.ampl-faq__item.is-open .ampl-faq__icon {
  background: var(--ampl-green-100);
  transform: rotate(45deg);
}
.ampl-faq__item.is-open .ampl-faq__icon svg { stroke: var(--ampl-green-800); }

.ampl-faq__a {
  display: none;
  padding-bottom: 1.25rem;
  font-family: var(--ampl-font-body);
  font-size: 0.9rem;
  color: var(--ampl-gray-500);
  line-height: 1.75;
  margin: 0;
}
.ampl-faq__item.is-open .ampl-faq__a { display: block; }


/* ================================================================
   CTA BANNER
================================================================ */
.ampl-cta {
  background: var(--ampl-green-800);
  padding-block: 5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.ampl-cta__body { position: relative; z-index: 1; }
.ampl-cta__h2 {
  font-family: var(--ampl-font-display);
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--ampl-white);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-heading);
  margin: 0 0 1rem;
}
.ampl-cta__sub {
  font-family: var(--ampl-font-body);
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.ampl-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* ================================================================
   FOOTER
================================================================ */
.ampl-footer {
  background: var(--ampl-charcoal);
  color: rgba(255,255,255,.6);
  padding-top: 4rem;
}
.ampl-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.ampl-footer__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}
.ampl-footer__logo-icon { width: 36px; height: 36px; flex-shrink: 0; }
.ampl-footer__logo-text {
  font-family: var(--ampl-font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ampl-white);
  line-height: 1.2;
}
.ampl-footer__logo-sub {
  display: block;
  font-family: var(--ampl-font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
  opacity: .65;
}
.ampl-footer__brand-desc {
  font-family: var(--ampl-font-body);
  font-size: 0.875rem;
  line-height: 1.75;
  margin: 0 0 1.25rem;
  max-width: 28ch;
}
.ampl-footer__social {
  display: flex;
  gap: 0.625rem;
}
.ampl-footer__social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: background 150ms, color 150ms;
}
.ampl-footer__social a:hover { background: var(--ampl-green-800); color: var(--ampl-white); }

.ampl-footer__col-title {
  font-family: var(--ampl-font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ampl-white);
  margin: 0 0 1.25rem;
  display: block;
}
.ampl-footer__link {
  display: block;
  font-family: var(--ampl-font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,.5);
  padding-block: 0.25rem;
  transition: color 150ms;
}
.ampl-footer__link:hover { color: var(--ampl-white); }

.ampl-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-block: 1.25rem;
}
.ampl-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-family: var(--ampl-font-body);
  font-size: 0.78rem;
}
.ampl-footer__bottom-links { display: flex; gap: 1.25rem; }
.ampl-footer__bottom-link {
  font-family: var(--ampl-font-body);
  font-size: 0.78rem;
  color: rgba(255,255,255,.4);
  transition: color 150ms;
}
.ampl-footer__bottom-link:hover { color: var(--ampl-white); }


/* ================================================================
   SCROLL ANIMATIONS
================================================================ */
.ampl-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms var(--ampl-ease), transform 600ms var(--ampl-ease);
}
.ampl-fade-up.is-visible { opacity: 1; transform: translateY(0); }

.ampl-fade-in {
  opacity: 0;
  transition: opacity 600ms var(--ampl-ease);
}
.ampl-fade-in.is-visible { opacity: 1; }

[data-delay="100"] { transition-delay: .10s; }
[data-delay="150"] { transition-delay: .15s; }
[data-delay="200"] { transition-delay: .20s; }
[data-delay="300"] { transition-delay: .30s; }
[data-delay="400"] { transition-delay: .40s; }


/* ================================================================
   RESPONSIVE — 1024px
================================================================ */
@media (max-width: 1024px) {
  :root { --ampl-section: 5rem; }

  .ampl-split { grid-template-columns: 1fr; min-height: auto; }
  .ampl-split--alt .ampl-split__image { order: 0; }
  .ampl-split__image { min-height: 420px; }
  .ampl-split__content { padding: 3rem 2rem; }

  .ampl-why__grid { grid-template-columns: 1fr; gap: 3rem; }
  .ampl-why__img-wrap { aspect-ratio: 3/2; max-height: 400px; }

  .ampl-faq__inner { grid-template-columns: 1fr; gap: 2rem; }
  .ampl-process__steps { grid-template-columns: repeat(3, 1fr); }
  .ampl-process__steps::before { display: none; }
  .ampl-reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .ampl-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .ampl-footer__brand { grid-column: 1 / -1; }
  .ampl-footer__brand-desc { max-width: 100%; }
}

/* ================================================================
   RESPONSIVE — 768px
================================================================ */
@media (max-width: 768px) {
  :root {
    --ampl-section: 4rem;
    --ampl-nav-h: 68px;
  }

  .ampl-nav__menu,
  .ampl-nav__phone { display: none; }
  .ampl-nav__burger { display: flex; }

  .ampl-hero__content { max-width: 100%; margin-inline: auto; text-align: center; }
  .ampl-hero__eyebrow { justify-content: center; }
  .ampl-hero__h1 { max-width: 100%; }
  .ampl-hero__sub { max-width: 100%; margin-inline: auto; }
  .ampl-hero__actions { justify-content: center; }
  .ampl-hero__trust { justify-content: center; gap: 1rem; }
  .ampl-hero__trust-sep { display: none; }

  /* The hero video is a wide landscape shot (16:9). Forcing it to cover a
     FULL-HEIGHT (100svh) portrait viewport scales it up ~3.8x and shows
     only ~26% of its width — reads as "zoomed in". Text stays overlaid on
     the video (unchanged), but shortening the box eases how hard the video
     has to be scaled/cropped to fill it. */
  .ampl-hero { min-height: 82svh; }

  .ampl-svc-grid { grid-template-columns: 1fr; }
  .ampl-split__content { padding: 2.5rem 1.5rem; }

  .ampl-why__h2, .ampl-why__body { text-align: center; margin-inline: auto; }
  .ampl-why__actions { justify-content: center; }

  .ampl-reviews__grid { grid-template-columns: 1fr; }
  .ampl-process__steps { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .ampl-footer__grid { grid-template-columns: 1fr 1fr; }
  .ampl-footer__brand { grid-column: 1 / -1; }
}

/* ================================================================
   RESPONSIVE — 480px
================================================================ */
@media (max-width: 480px) {
  .ampl-hero__actions { flex-direction: column; }
  .ampl-hero__actions .ampl-btn { width: 100%; justify-content: center; }
  .ampl-cta__actions { flex-direction: column; align-items: center; }
  .ampl-process__steps { grid-template-columns: 1fr; }
  .ampl-footer__grid { grid-template-columns: 1fr; }
  .ampl-footer__bottom-inner { flex-direction: column; text-align: center; }
  .ampl-intro__links { flex-direction: column; align-items: center; }
  .ampl-svc-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   INNER PAGE HERO (service / area / project pages — static image,
   not the homepage's video hero)
================================================================ */
.ampl-page-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.ampl-page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.ampl-page-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.6) saturate(1.05);
}
.ampl-page-hero__body {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--ampl-max);
  margin-inline: auto;
  padding: 3rem 1.5rem 3.5rem;
  color: var(--ampl-white);
}
.ampl-page-hero__breadcrumb {
  font-family: var(--ampl-font-body);
  font-size: 0.8rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 1rem;
}
.ampl-page-hero__breadcrumb a { color: rgba(255,255,255,.85); }
.ampl-page-hero__breadcrumb a:hover { color: var(--ampl-white); text-decoration: underline; }
.ampl-page-hero__h1 {
  font-family: var(--ampl-font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0 0 .75rem;
  max-width: 20ch;
}
.ampl-page-hero__sub {
  font-family: var(--ampl-font-body);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(255,255,255,.88);
  max-width: 60ch;
  line-height: 1.6;
  margin: 0 0 1.75rem;
}
@media (max-width: 640px) {
  .ampl-page-hero { min-height: 46vh; }
}

/* ── "What's Included" checklist (service pages) ── */
.ampl-included__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
  margin-top: 2rem;
}
.ampl-included__item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-family: var(--ampl-font-body);
  font-size: 0.95rem;
  color: var(--ampl-gray-700);
  line-height: 1.5;
}
.ampl-included__item svg { flex-shrink: 0; margin-top: 3px; stroke: var(--ampl-green-800); width: 18px; height: 18px; }
@media (max-width: 640px) {
  .ampl-included__grid { grid-template-columns: 1fr; }
}

/* ── Related services (service pages) — reuses the .ampl-area-pill look ── */
.ampl-related__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1.5rem;
}

/* ================================================================
   CONTACT PAGE
================================================================ */
.ampl-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
.ampl-contact__info-item { margin-bottom: 2rem; }
.ampl-contact__info-item:last-child { margin-bottom: 0; }
.ampl-contact__info-label {
  display: block;
  font-family: var(--ampl-font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ampl-green-800);
  margin-bottom: .5rem;
}
.ampl-contact__info-value {
  font-family: var(--ampl-font-body);
  font-size: 1.05rem;
  color: var(--ampl-charcoal);
  line-height: 1.7;
}
.ampl-contact__info-value a { color: var(--ampl-charcoal); transition: color 150ms; }
.ampl-contact__info-value a:hover { color: var(--ampl-green-800); }
.ampl-contact__card {
  background: var(--ampl-white);
  border-radius: 20px;
  box-shadow: var(--ampl-sh-lg);
  padding: 2.5rem;
}
.ampl-contact__card-title {
  font-family: var(--ampl-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ampl-charcoal);
  margin: 0 0 1.5rem;
}
.ampl-contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
@media (max-width: 900px) {
  .ampl-contact__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .ampl-contact__card { padding: 2rem 1.5rem; }
}

/* ================================================================
   REDUCED MOTION
================================================================ */
@media (prefers-reduced-motion: reduce) {
  .ampl-fade-up, .ampl-fade-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .ampl-hero__bg img { animation: none; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
