/* ==========================================================================
   Salazar Pro Services — shared stylesheet
   Mobile-first: base rules below are the phone layout. Larger screens are
   progressively added via min-width media queries at the bottom of the file.
   ========================================================================== */

:root {
  --black: #0a0a0a;
  --near-black: #151515;
  --charcoal: #1f1f1f;
  --green: #75bc16;
  --green-dark: #5c9612;
  --white: #ffffff;
  --off-white: #f5f5f3;
  --gray-100: #f0f0ee;
  --gray-300: #d6d6d3;
  --gray-500: #8a8a86;
  --gray-700: #4a4a48;

  --font-head: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --max-width: 1180px;
  --radius: 6px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(1.9rem, 7vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4.5vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.7rem); }

p { margin: 0 0 1em; }

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

/* Mobile base: tighter section rhythm. Widens at 721px+ */
section {
  padding: 48px 0;
}

.section-tight { padding: 32px 0; }

.section-black {
  background: var(--black);
  color: var(--white);
}

.section-offwhite {
  background: var(--off-white);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.section-head {
  max-width: 700px;
  margin-bottom: 32px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.lede {
  font-size: 1.1rem;
  color: var(--gray-700);
}

.section-black .lede,
.section-black p {
  color: var(--gray-300);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1rem;
  padding: 15px 26px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--green);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--green-dark);
}

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

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

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

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

.btn-block { width: 100%; }

/* Mobile base: full-width stacked buttons so every CTA is a big, easy tap target */
.btn-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.btn-row .btn { width: 100%; }

/* ---- Header / Nav ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 3px solid var(--green);
}

/* Mobile base: 3-column grid (not flex) so the logo sits exactly in the
   true center regardless of the hamburger/CTA widths differing — flex
   space-between only centers the middle item when its two neighbors
   are equal width, which the CTA button never quite matches. 721px+
   drops back to a plain flex row (see media query below). */
.nav-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 10px 16px;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 10px;
}

.brand {
  display: flex;
  align-items: center;
  justify-self: center;
}

.brand img {
  height: 36px;
  width: auto;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  flex: none;
  background: none;
  border: 2px solid var(--white);
  border-radius: var(--radius);
  width: 44px;
  height: 40px;
  color: var(--white);
  cursor: pointer;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.nav-toggle .icon-close { display: none; }
.nav-toggle.is-open .icon-menu { display: none; }
.nav-toggle.is-open .icon-close { display: block; }

/* Mobile base: nav is an off-canvas dropdown, closed by default */
.main-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--black);
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 10px 20px 20px;
  border-bottom: 3px solid var(--green);
}

.main-nav.is-open { display: flex; }

.main-nav a {
  width: 100%;
  padding: 14px 0;
  border-bottom: 1px solid var(--charcoal);
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1rem;
  color: var(--white);
  transition: color 0.15s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--green);
}

.nav-cta {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

/* Compact button sizing for the header — the regular .btn is sized for
   heroes/CTAs and reads as too bulky stacked in the nav bar. Mobile gets
   an extra-tight version so it stays close in width to the hamburger;
   721px+ restores full size. */
.btn-nav {
  padding: 8px 12px;
  font-size: 0.78rem;
  gap: 5px;
}

.btn-nav svg {
  width: 16px;
  height: 16px;
  flex: none;
}

/* Mobile base: call button hidden in header (it's in the hero/footer instead) */
.nav-call {
  display: none;
}

/* ---- Language switch ---- */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  border: 1.5px solid var(--charcoal);
  border-radius: 999px;
  padding: 3px;
  background: var(--near-black);
}

.lang-switch a {
  color: var(--gray-300);
  padding: 4px 10px;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}

.lang-switch a:hover {
  color: var(--white);
}

.lang-switch a.active {
  color: var(--black);
  background: var(--green);
}

.lang-switch span {
  display: none;
}

/* Two copies exist: one in the mobile dropdown, one in the header CTA
   row for desktop — only one is ever shown, swapped at the 721px break */
.main-nav .lang-switch {
  align-self: flex-start;
  margin-top: 14px;
}

.nav-cta .lang-switch {
  display: none;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  color: var(--white);
  background-color: var(--black);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.82) 60%, rgba(10, 10, 10, 0.95) 100%);
}

/* Mobile base: the source video is a tall 9:16 portrait clip. Shown at
   its native ratio (no crop/stretch) anchored to the top of the hero;
   the wrapper's own aspect-ratio always matches the video exactly, so
   the fade band below lines up with the video's true bottom edge even
   though the hero itself is much taller (headline + full quote form
   stacked underneath). 721px+ swaps to a landscape clip that covers
   the whole hero like a normal background. */
.hero-video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  aspect-ratio: 9 / 16;
  overflow: hidden;
}

.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-video-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  background: linear-gradient(180deg, transparent, var(--black));
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}

@media (min-width: 721px) {
  .hero-video-wrap {
    inset: 0;
    aspect-ratio: auto;
  }
  .hero-video { object-fit: cover; }
  .hero-video-fade { display: none; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 20px 40px;
}

/* Two-column hero: headline + full quote form. Stacked on mobile. */
.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-content { min-width: 0; }

.hero-grid .quote-form {
  width: 100%;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  border: 2px solid var(--green);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.hero h1 {
  margin-bottom: 18px;
  max-width: 820px;
}

.hero h1 .accent { color: var(--green); }

.hero-sub {
  font-size: 1.1rem;
  max-width: 560px;
  color: var(--gray-300);
  margin-bottom: 26px;
}

.page-hero {
  padding: 56px 0 40px;
}

.page-hero .container > * {
  position: relative;
  z-index: 1;
}

/* ---- Quick quote (compact form used in hero + on every page) ---- */
.quick-quote {
  background: var(--white);
  color: var(--near-black);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
  width: 100%;
}

.quick-quote h3 {
  margin-bottom: 4px;
}

.quick-quote .quick-quote-sub {
  color: var(--gray-700);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.quick-quote-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 14px;
}

.quick-quote input[type="text"],
.quick-quote input[type="tel"],
.quick-quote textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
}

.quick-quote textarea {
  min-height: 70px;
  resize: vertical;
  margin-bottom: 14px;
}

.quick-quote input:focus,
.quick-quote textarea:focus {
  outline: none;
  border-color: var(--green);
}

.quick-quote .form-status {
  margin-top: 14px;
}

.quick-quote-section .quick-quote {
  max-width: 560px;
  margin: 0 auto;
}

/* ---- Trust bar ---- */
.trust-bar.section-tight {
  background: var(--green);
  color: var(--black);
  padding: 0;
  overflow: hidden;
}

/* Mobile base: continuous auto-scrolling ticker. The track holds two
   identical sets of items back to back and animates exactly -50% (one
   set's width), so the loop point is invisible. 981px+ swaps back to a
   static one-row grid (see below) since there's room to fit all five. */
.trust-bar .container {
  padding: 0;
}

.trust-track {
  display: flex;
  width: max-content;
  animation: trust-scroll 24s linear infinite;
}

.trust-set {
  display: flex;
  flex: none;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
  white-space: nowrap;
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 0.92rem;
  padding: 14px 28px;
}

.trust-item svg {
  flex: none;
  width: 20px;
  height: 20px;
}

@keyframes trust-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .trust-track { animation: none; }
}

/* ---- Cards / Grids ---- */
.grid {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.grid > * {
  min-width: 0;
}

/* Mobile base: everything single column. Widens at 721px+ and 981px+ */
.grid-3, .grid-4, .grid-2, .grid-5 { grid-template-columns: 1fr; }

.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card .icon {
  width: 46px;
  height: 46px;
  color: var(--green);
  margin-bottom: 16px;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: var(--gray-700);
  margin-bottom: 0;
}

.card-link {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green-dark);
  border-bottom: 2px solid var(--green-dark);
}

.service-card {
  background: var(--near-black);
  color: var(--white);
  border: 1px solid var(--charcoal);
  border-radius: var(--radius);
  padding: 26px 22px;
}

.service-card h3 { color: var(--white); }
.service-card .num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  color: var(--green);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}
.service-card p { color: var(--gray-300); margin-bottom: 0; }

/* ---- Gallery ---- */
/* Mobile base: single column. 2-up at 481px+, 3-up at 721px+ */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  min-width: 0;
}

.gallery-grid > * {
  min-width: 0;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: var(--gray-100);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item .tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(10, 10, 10, 0.75);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 4px;
}

.gallery-section h2 { margin-bottom: 4px; }

/* ---- Before/after carousel (home page preview only — the full
   gallery page keeps the grid above). Mobile: horizontal scroll-snap
   strip so six photos don't stack into a tall column. 721px+: grid. ---- */
.gallery-carousel {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.gallery-carousel::-webkit-scrollbar {
  display: none;
}

.gallery-carousel .gallery-item {
  flex: 0 0 78%;
  scroll-snap-align: center;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6, 6, 6, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px 12px;
}

.lightbox.is-open { display: flex; }

.lightbox img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--white);
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
}

.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }

/* ---- Service area map (home page teaser) ---- */
.area-map-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}

.area-map-embed {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--off-white);
}

/* Non-interactive: the city pins are fixed to the embed's initial view,
   so scrolling/dragging the map itself would pan it out from under them. */
.area-map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

/* ---- Blue bubble city pins, positioned by fixed pixel offset from map
   center (accurate at any container size since the embed's zoom is fixed) ---- */
.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  z-index: 2;
}

.map-pin-dot {
  position: relative;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #2b7fff;
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease;
}

.map-pin-dot::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(43, 127, 255, 0.35);
  animation: map-pin-pulse 2.2s ease-out infinite;
}

.map-pin:nth-of-type(2) .map-pin-dot::after { animation-delay: 0.35s; }
.map-pin:nth-of-type(3) .map-pin-dot::after { animation-delay: 0.7s; }
.map-pin:nth-of-type(4) .map-pin-dot::after { animation-delay: 1.05s; }
.map-pin:nth-of-type(5) .map-pin-dot::after { animation-delay: 1.4s; }
.map-pin:nth-of-type(6) .map-pin-dot::after { animation-delay: 1.75s; }

@keyframes map-pin-pulse {
  0% { transform: scale(0.6); opacity: 0.85; }
  100% { transform: scale(2); opacity: 0; }
}

.map-pin-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--near-black);
  background: rgba(255, 255, 255, 0.95);
  padding: 2px 9px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  transition: background 0.15s ease, color 0.15s ease;
}

.map-pin:hover .map-pin-dot { transform: scale(1.3); }
.map-pin:hover .map-pin-label { background: var(--green); color: var(--black); }

.area-list {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.area-list a {
  display: block;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1rem;
  color: var(--near-black);
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.area-list a:hover {
  transform: translateX(4px);
  background: var(--green);
  border-color: var(--green);
  color: var(--black);
}

.area-list a.area-list-more {
  background: var(--near-black);
  color: var(--white);
  border-color: var(--near-black);
}

.area-list a.area-list-more:hover {
  background: var(--green);
  color: var(--black);
  border-color: var(--green);
}

/* Near-black on near-black would vanish when this list sits on a
   .section-black background, so swap the "more" pill to green there */
.section-black .area-list a.area-list-more {
  background: var(--green);
  color: var(--black);
  border-color: var(--green);
}

.section-black .area-list a.area-list-more:hover {
  background: var(--white);
  border-color: var(--white);
}

/* ---- Areas ---- */
.area-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px;
  border-left: 6px solid var(--green);
}

.area-card h3 {
  color: var(--black);
}

/* Mobile base: single column. 2-up at 981px+ */
.city-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.city-list-grid h4 {
  font-family: var(--font-head);
  text-transform: uppercase;
  color: var(--green-dark);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  border-bottom: 2px solid var(--gray-300);
  padding-bottom: 8px;
}

.city-list-grid li {
  padding: 7px 0;
  border-bottom: 1px dashed var(--gray-300);
  font-size: 1.02rem;
}

/* ---- What we don't take ---- */
.no-take {
  background: var(--near-black);
  color: var(--white);
  border: 1px solid var(--charcoal);
  border-radius: var(--radius);
  padding: 30px 24px;
}

.no-take h2 { color: var(--white); }

/* Mobile base: single column. 2-up at 721px+ */
.no-take-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px 30px;
  margin: 24px 0;
}

.no-take-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--gray-300);
}

.no-take-list li svg {
  flex: none;
  width: 20px;
  height: 20px;
  color: #e35555;
}

/* ---- Pricing table ---- */
.pricing-table {
  background: var(--near-black);
  border: 1px solid var(--charcoal);
  border-radius: var(--radius);
  padding: 10px 24px;
}

.pricing-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px dashed var(--charcoal);
}

.pricing-row:last-child { border-bottom: none; }

.pricing-row .job-size {
  color: var(--white);
  font-weight: 600;
  font-size: 1.02rem;
}

.pricing-row .price {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--green);
  font-size: 1.15rem;
  white-space: nowrap;
}

.callout-box {
  background: rgba(117, 188, 22, 0.12);
  border-left: 4px solid var(--green);
  padding: 16px 20px;
  border-radius: 4px;
  color: var(--gray-700);
  margin-top: 24px;
}

.section-black .callout-box {
  color: var(--gray-300);
}

.no-take .callout {
  background: rgba(117, 188, 22, 0.12);
  border-left: 4px solid var(--green);
  padding: 16px 20px;
  border-radius: 4px;
  font-style: italic;
  color: var(--white);
}

/* ---- About ---- */
/* Mobile base: stacked. Side-by-side at 981px+ */
.about-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

.about-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pull-quote {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  border-left: 5px solid var(--green);
  padding: 6px 0 6px 20px;
  margin: 24px 0;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.25;
}

.why-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}

.why-list li:last-child { border-bottom: none; }

.section-black .why-list li { border-bottom-color: var(--charcoal); }

.why-list .icon {
  flex: none;
  width: 26px;
  height: 26px;
  color: var(--green-dark);
  margin-top: 2px;
}

.why-list strong {
  display: block;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 1.05rem;
}

/* ---- Reviews placeholder ---- */
.reviews-placeholder {
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  background: var(--off-white);
}

.reviews-placeholder .stars {
  color: var(--green);
  font-size: 1.6rem;
  letter-spacing: 4px;
  margin-bottom: 12px;
}

/* Always a light card regardless of section background, so its own
   heading/body text stays fixed instead of inheriting section-black's
   white/gray-300 overrides (which would vanish on this off-white box) */
.reviews-placeholder h3 { color: var(--near-black); }
.reviews-placeholder p { color: var(--gray-700); }

.reviews-placeholder a {
  color: var(--green-dark);
  font-weight: 700;
  border-bottom: 2px solid var(--green-dark);
}

/* ---- Contact ---- */
/* Mobile base: stacked. Side-by-side at 981px+ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}

.contact-info-card {
  background: var(--near-black);
  color: var(--white);
  border: 1px solid var(--charcoal);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.contact-info-card h3 { color: var(--green); }

.contact-info-row {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--charcoal);
}

.contact-info-row:first-of-type { padding-top: 0; }

.contact-info-row svg {
  flex: none;
  width: 24px;
  height: 24px;
  color: var(--green);
}

.contact-info-row a { color: var(--white); }
.contact-info-row a:hover { color: var(--green); }

.area-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.area-pill {
  background: rgba(117, 188, 22, 0.15);
  color: var(--green);
  border: 1px solid var(--green);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.social-row {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.social-row a {
  width: 40px;
  height: 40px;
  border: 2px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}

.social-row a:hover {
  background: var(--green);
  color: var(--black);
}

.quote-form {
  background: var(--white);
  color: var(--near-black);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
}

.quote-form h2 { color: var(--near-black); }

/* Mobile base: single column. Side-by-side at 721px+ */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  color: var(--near-black);
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.88rem;
  margin-bottom: 6px;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field textarea,
.field input[type="file"] {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
}

.field textarea {
  min-height: 90px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green);
}

.field small {
  display: block;
  color: var(--gray-500);
  margin-top: 6px;
}

.form-note {
  background: #fff7e6;
  border: 1px solid #f0d78c;
  color: #6b5000;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  margin-bottom: 24px;
}

.form-status {
  margin-top: 16px;
  font-weight: 600;
  display: none;
}

.form-status.is-success {
  display: block;
  color: var(--green-dark);
}

.form-status.is-error {
  display: block;
  color: #b13636;
}

/* ---- CTA band ---- */
.cta-band {
  background: var(--green);
  color: var(--black);
  text-align: center;
}

.cta-band h2 { color: var(--black); }

.cta-band .btn-row { max-width: 360px; margin-left: auto; margin-right: auto; }

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

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

/* ---- Footer ---- */
.site-footer {
  background: var(--black);
  color: var(--gray-300);
  padding-top: 44px;
}

/* Mobile base: single column. 2-up at 721px+, 4-up at 981px+ */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--charcoal);
}

.footer-brand img {
  height: 40px;
  margin-bottom: 14px;
}

.footer-brand p {
  color: var(--gray-500);
  font-size: 0.95rem;
}

.footer-col h4 {
  font-family: var(--font-head);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-col li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-col a:hover { color: var(--green); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 0;
  font-size: 0.85rem;
  color: var(--gray-500);
}

.footer-bottom .social-row {
  margin-top: 0;
}

.footer-bottom .social-row a {
  width: 34px;
  height: 34px;
}

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

/* ==========================================================================
   Responsive — mobile-first, additive as the screen grows
   ========================================================================== */

/* ---- 481px+: small tablets / large phones ---- */
@media (min-width: 481px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid.gallery-grid-2 { grid-template-columns: 1fr; }
  .btn-row { flex-direction: row; flex-wrap: wrap; }
  .btn-row .btn { width: auto; }
  .cta-band .btn-row { max-width: none; }
}

/* ---- 721px+: tablets / small laptops ---- */
@media (min-width: 721px) {
  .container { padding: 0 24px; }

  section { padding: 64px 0; }
  .section-tight { padding: 40px 0; }
  .section-head { margin-bottom: 40px; }
  .lede { font-size: 1.15rem; }

  .nav-wrap { display: flex; flex-wrap: nowrap; justify-content: space-between; padding: 12px 24px; }
  .brand img { height: 46px; }
  .nav-toggle { display: none; }
  .nav-call { display: inline-flex; }
  .btn-nav { padding: 9px 16px; font-size: 0.85rem; gap: 6px; }
  .main-nav .lang-switch { display: none; }
  .nav-cta .lang-switch { display: flex; }

  .area-map-layout { flex-direction: row; align-items: center; gap: 32px; }
  .area-map-embed { flex: 0 0 340px; max-width: 340px; margin: 0; }
  .area-list { flex: 1 1 auto; }

  .main-nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    background: none;
    border-bottom: none;
    padding: 0;
  }

  .main-nav a {
    width: auto;
    padding: 6px 2px;
    border-bottom: 2px solid transparent;
  }

  .main-nav a:hover,
  .main-nav a[aria-current="page"] {
    border-color: var(--green);
  }

  .hero-inner { padding: 90px 24px 70px; }
  .hero-sub { font-size: 1.2rem; margin-bottom: 30px; }
  .page-hero { padding: 70px 0 50px; }

  .grid-3, .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .grid { gap: 28px; }

  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .gallery-grid.gallery-grid-2 { grid-template-columns: repeat(2, 1fr); }

  .gallery-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    overflow: visible;
    scroll-snap-type: none;
  }
  .gallery-carousel .gallery-item { flex: none; scroll-snap-align: none; }

  .no-take { padding: 40px; }
  .no-take-list { grid-template-columns: repeat(2, 1fr); margin: 26px 0; }

  .form-row { grid-template-columns: 1fr 1fr; }
  .quote-form { padding: 36px; }

  .card, .service-card { padding: 30px 26px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ---- 981px+: desktop ---- */
@media (min-width: 981px) {
  .trust-bar.section-tight { padding: 14px 0; }
  .trust-bar .container { padding: 0 24px; }
  .trust-track { animation: none; width: 100%; display: block; }
  .trust-set:first-child {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
  }
  .trust-set:not(:first-child) { display: none; }
  .trust-item { white-space: normal; padding: 0; justify-content: center; }

  .hero-grid { flex-direction: row; align-items: flex-start; gap: 56px; }
  .hero-content { flex: 1 1 48%; padding-top: 20px; }
  .hero-grid .quote-form { flex: 1 1 46%; max-width: 500px; }

  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-5 { grid-template-columns: repeat(5, 1fr); }


  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .about-hero { grid-template-columns: 1.1fr 0.9fr; gap: 50px; }
  .contact-layout { grid-template-columns: 1fr 1.3fr; gap: 50px; }
  .city-list-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .pull-quote { font-size: 1.7rem; padding-left: 24px; margin: 26px 0; }
  .no-take-list { gap: 12px 30px; }
}
