:root {
  --red: #d5261a;
  --red-dark: #a01a11;
  --red-light: #f0483a;
  --black: #141416;
  --charcoal: #202124;
  --concrete: #eef0f1;
  --concrete-dark: #d7dbde;
  --steel: #62676d;
  --white: #ffffff;
  --text: #191a1c;
  --text-muted: #62676d;
  --text-inverse: #f4f5f6;

  --font-head: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Manrope', sans-serif;

  --container: 1240px;
  --section-pad: clamp(4.5rem, 8vw, 8rem);

  --radius-sm: 4px;
  --radius-md: 8px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--concrete);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

section { position: relative; }

.section-pad {
  padding-block: var(--section-pad);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 3px;
  background: var(--red);
  display: block;
}

h1, h2, h3, .h1, .h2, .h3 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.04;
}

.h1, h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); font-weight: 700; }
.h2, h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); font-weight: 600; }
.h3, h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--text-muted);
  max-width: 46ch;
  line-height: 1.6;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head.center { align-items: center; text-align: center; margin-inline: auto; }

/* ===== Header ===== */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  padding-block: 0.9rem;
  background: rgba(20, 20, 22, 0.0);
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(20, 20, 22, 0.94);
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  padding-block: 0.6rem;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

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

.brand-word {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
}
.brand-word span { display: block; font-size: 0.62rem; font-weight: 500; letter-spacing: 0.22em; color: var(--red-light); }

.main-nav ul { display: flex; gap: 1.5rem; }

/* ===== Services dropdown (desktop: hover flyout / mobile drawer: static nested list) ===== */
.has-dropdown { position: relative; }
.has-dropdown > a { display: inline-flex; align-items: center; gap: 0.3rem; }
.has-dropdown > a .caret { width: 10px; height: 10px; transition: transform 0.2s ease; }
.has-dropdown:hover > a .caret,
.has-dropdown:focus-within > a .caret { transform: rotate(180deg); }

.dropdown-menu { list-style: none; margin: 0; padding: 0; }

.main-nav .has-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 270px;
  background: var(--charcoal);
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 36px rgba(0,0,0,0.4);
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 60;
}
.main-nav .has-dropdown:hover .dropdown-menu,
.main-nav .has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.main-nav .dropdown-menu a {
  display: block;
  padding: 0.65rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--text-inverse);
  opacity: 0.82;
  border-radius: 4px;
  white-space: nowrap;
}
.main-nav .dropdown-menu a:hover { opacity: 1; color: var(--red-light); background: rgba(244,245,246,0.06); }

.mobile-drawer .dropdown-menu {
  padding-left: 1.1rem;
  margin: 0.4rem 0 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.mobile-drawer .dropdown-menu a { font-size: 0.85em; opacity: 0.75; }

.main-nav a {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-inverse);
  opacity: 0.85;
  transition: opacity 0.2s ease, color 0.2s ease;
  position: relative;
}
.main-nav a:hover { opacity: 1; color: var(--red-light); }
.main-nav a.is-active { opacity: 1; color: var(--red-light); }
.main-nav a:focus-visible, .footer-nav a:focus-visible, .mobile-drawer a:focus-visible {
  outline: 2px solid var(--red-light);
  outline-offset: 4px;
  border-radius: 2px;
}

.header-cta { display: flex; align-items: center; gap: 0.9rem; }

.phone-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-inverse);
  font-family: var(--font-head);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.phone-pill svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--red-light); }

.nav-toggle { display: none; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  /* Always reserve room below the fixed header, regardless of viewport height —
     on short/wide viewports a bottom-aligned hero can otherwise grow tall enough
     (large clamp() headline) to collide with the header. min-height lets the
     section grow past 100svh if the content + this padding needs more room. */
  padding-top: clamp(7.5rem, 14vw, 10rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
  color: var(--white);
  isolation: isolate;
}

.hero-media { position: absolute; inset: 0; z-index: -3; overflow: hidden; background: var(--black); }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  animation: heroSlide 20s infinite;
}
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  animation: heroKenburns 20s infinite;
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(1) img { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 5s; }
.hero-slide:nth-child(2) img { animation-delay: 5s; }
.hero-slide:nth-child(3) { animation-delay: 10s; }
.hero-slide:nth-child(3) img { animation-delay: 10s; }
.hero-slide:nth-child(4) { animation-delay: 15s; }
.hero-slide:nth-child(4) img { animation-delay: 15s; }

@keyframes heroSlide {
  0%, 2% { opacity: 0; }
  4%, 22% { opacity: 1; }
  27%, 100% { opacity: 0; }
}
@keyframes heroKenburns {
  0% { transform: scale(1.02); }
  100% { transform: scale(1.14); }
}

.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 20, 22,0.6) 0%, rgba(20, 20, 22,0.3) 32%, rgba(20, 20, 22,0.9) 100%),
    linear-gradient(90deg, rgba(20, 20, 22,0.78) 0%, rgba(20, 20, 22,0.2) 58%);
}

.hero-topscrim {
  position: absolute;
  inset: 0 0 auto 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(12,12,13,0.85) 0%, rgba(12,12,13,0) 100%);
  z-index: -1;
  pointer-events: none;
}

.hero-stripe {
  position: absolute;
  right: -10%;
  top: 15%;
  width: 46%;
  height: 85%;
  background: var(--red);
  clip-path: polygon(38% 0, 100% 0, 100% 100%, 8% 100%);
  z-index: -1;
  opacity: 0.88;
  mix-blend-mode: multiply;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide, .hero-slide img { animation: none; opacity: 1; }
  .hero-slide:not(:first-child) { display: none; }
}

.hero-content { max-width: 780px; }

.hero-kicker {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--font-head); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--red-light);
  margin-bottom: 1.1rem;
}
.hero-kicker::before { content: ''; width: 32px; height: 3px; background: var(--red-light); }

.hero h1 { margin-bottom: 1.3rem; }
.hero h1 em { font-style: normal; color: var(--red-light); }

.hero .lede { color: rgba(244,245,246,0.88); max-width: 52ch; margin-bottom: 2.1rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.6rem; }

.trust-strip {
  display: flex; flex-wrap: wrap; gap: 1.8rem 2.6rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(244,245,246,0.2);
}

.trust-item { display: flex; align-items: center; gap: 0.7rem; }
.trust-item strong { font-family: var(--font-head); font-size: 1.4rem; letter-spacing: 0.02em; display: block; }
.trust-item span { font-size: 0.78rem; color: rgba(244,245,246,0.75); text-transform: uppercase; letter-spacing: 0.08em; }
.trust-stars { color: var(--red-light); font-size: 1rem; letter-spacing: 0.1em; }

.scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(244,245,246,0.7); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  font-family: var(--font-head);
}
.scroll-cue .line { width: 1px; height: 34px; background: linear-gradient(to bottom, rgba(244,245,246,0.9), transparent); animation: scrollcue 1.8s ease-in-out infinite; }
@keyframes scrollcue { 0% { transform: scaleY(0.3); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0.3); transform-origin: bottom; } }

/* ===== Marquee strip ===== */
.marquee-strip {
  background: var(--black);
  color: var(--text-inverse);
  overflow: hidden;
  padding-block: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 3px solid var(--red);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
  gap: 3rem;
}
.marquee-track span {
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 3rem;
  white-space: nowrap;
  opacity: 0.85;
}
.marquee-track span::after { content: '\2726'; color: var(--red); margin-left: 3rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== Services ===== */
.services {
  background: var(--concrete);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--concrete-dark);
  border: 1px solid var(--concrete-dark);
}

.service-card {
  background: var(--concrete);
  padding: 2.6rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: background 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card:hover { background: var(--white); transform: translateY(-3px); }
.service-card:hover .service-num { color: var(--red); }

.service-num {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--steel);
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}

.service-card h3 { color: var(--text); }
.service-card p { color: var(--text-muted); font-size: 0.98rem; line-height: 1.6; }

.service-icon { width: 40px; height: 40px; color: var(--red); }

/* Photo-led service cards (used on the home services overview) */
.service-card.has-photo { padding: 0; gap: 0; }
.service-card.has-photo:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,0.14); }
.service-card-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.service-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(.2,.7,.2,1); }
.service-card.has-photo:hover .service-card-media img { transform: scale(1.06); }
.service-card-media.is-icon {
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 30% 20%, rgba(213,38,26,0.35), transparent 60%), linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
}
.service-card-media.is-icon svg { width: 30%; height: 30%; color: var(--white); }
.service-card-body { padding: 1.6rem 1.7rem 1.9rem; display: flex; flex-direction: column; gap: 0.6rem; }
.service-card-body .service-num { margin-bottom: 0.2rem; }

.service-card.is-extra { display: none; }
.services-grid.is-expanded .service-card.is-extra {
  display: flex;
  animation: fadeInUp 0.55s cubic-bezier(.2,.7,.2,1) both;
}

.services-more { text-align: center; margin-top: 2.6rem; display: flex; flex-direction: column; align-items: center; gap: 0.9rem; }
.services-more-link { font-size: 0.88rem; color: var(--text-muted); }
.services-more-link a { color: var(--red); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.btn-toggle svg { transition: transform 0.3s ease; }
.btn-toggle.is-open svg { transform: rotate(180deg); }

/* Subtle real-photo texture behind flat dark sections */
.section-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.section-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.22; }
.section-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,20,22,0.82) 0%, rgba(20,20,22,0.95) 100%); }
.why .container, .contact .container { position: relative; z-index: 1; }

/* ===== Why / stats ===== */
.why {
  background: var(--black);
  color: var(--text-inverse);
}
.why .eyebrow { color: var(--red-light); }
.why .eyebrow::before { background: var(--red-light); }
.why .section-head .lede { color: rgba(244,245,246,0.72); }

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.why-points { display: flex; flex-direction: column; gap: 1.6rem; }
.why-point { display: flex; gap: 1.1rem; align-items: flex-start; }
.why-point svg { width: 26px; height: 26px; color: var(--red-light); flex-shrink: 0; margin-top: 0.2rem; }
.why-point h4 { font-family: var(--font-head); font-size: 1.05rem; letter-spacing: 0.02em; margin-bottom: 0.3rem; text-transform: uppercase; }
.why-point p { color: rgba(244,245,246,0.68); font-size: 0.95rem; }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(244,245,246,0.16);
}
.stat-cell {
  padding: 2.2rem 1.2rem;
  text-align: center;
  border-right: 1px solid rgba(244,245,246,0.16);
}
.stat-cell:last-child { border-right: none; }
.stat-cell strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--red-light);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.stat-cell span { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(244,245,246,0.65); }

/* ===== Gallery ===== */
.gallery { background: var(--concrete); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 0.6rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(20, 20, 22,0.82) 100%);
  opacity: 0; transition: opacity 0.3s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-cap {
  position: absolute; left: 1.1rem; bottom: 1rem; right: 1rem;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-item:hover .gallery-cap { opacity: 1; transform: translateY(0); }

.gallery-item.span-2 { grid-column: span 2; }
.gallery-item.span-2-row { grid-row: span 2; }

/* ===== Reviews ===== */
.reviews { background: var(--white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--concrete-dark);
  border-radius: var(--radius-md);
  box-shadow: 0 1px 2px rgba(0,0,0,0.06), 0 6px 18px rgba(0,0,0,0.05);
  padding: 1.6rem 1.7rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.review-stars { color: var(--red); letter-spacing: 0.15em; font-size: 0.95rem; }
.review-head { display: flex; align-items: center; gap: 0.8rem; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-family: var(--font-head); font-size: 1.05rem; font-weight: 600;
}
.review-who { flex-grow: 1; min-width: 0; }
.review-who strong { display: block; font-family: var(--font-body); font-size: 0.92rem; font-weight: 700; color: #202124; letter-spacing: 0; }
.review-who span { font-size: 0.76rem; color: var(--text-muted); }
.review-google-link {
  flex-shrink: 0; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background 0.2s ease;
}
.review-google-link:hover { background: var(--concrete); }
.review-google-link svg { width: 18px; height: 18px; }
.review-stars-row { display: flex; align-items: center; gap: 0.55rem; }
.review-stars-row .stars { display: flex; gap: 2px; }
.review-stars-row .stars svg { width: 15px; height: 15px; color: #FBBC04; }
.review-stars-row time { font-size: 0.76rem; color: var(--text-muted); }
.review-card p.review-text { color: #3c4043; font-size: 0.93rem; line-height: 1.6; flex-grow: 1; }
.review-reply {
  font-size: 0.82rem; color: var(--text-muted);
  border-top: 1px solid var(--concrete-dark); padding-top: 0.7rem; margin-top: 0.2rem;
}
.review-reply strong { color: var(--text); }
.review-source-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.78rem; font-weight: 700; color: #1a73e8; margin-top: 0.2rem;
}
.review-source-link svg { width: 13px; height: 13px; }
.review-source-link:hover { text-decoration: underline; }

.reviews-foot {
  margin-top: 2.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.reviews-foot strong { color: var(--text); }

/* ===== Zones / locations ===== */
.zones { background: var(--concrete-dark); }
.zones-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}
.zone-card {
  background: var(--white);
  border: 1px solid var(--concrete-dark);
  display: flex;
  flex-direction: column;
}
.zone-map { height: 220px; width: 100%; filter: grayscale(0.25) contrast(1.05); border: 0; }
.zone-body { padding: 1.8rem 1.9rem 2rem; display: flex; flex-direction: column; gap: 0.7rem; }
.zone-body h3 { display: flex; align-items: center; gap: 0.6rem; }
.zone-tag { display: inline-block; font-family: var(--font-head); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); background: rgba(213,38,26,0.1); padding: 0.25rem 0.6rem; border-radius: 3px; margin-bottom: 0.3rem; width: fit-content; }
.zone-body address { font-style: normal; color: var(--text-muted); font-size: 0.95rem; }
.zone-links { display: flex; gap: 1.2rem; margin-top: 0.5rem; flex-wrap: wrap; }
.zone-links a { font-size: 0.88rem; font-weight: 700; color: var(--text); display: flex; align-items: center; gap: 0.4rem; border-bottom: 2px solid var(--red); padding-bottom: 2px; }
.zone-links svg { width: 15px; height: 15px; color: var(--red); }

/* ===== Contact / CTA ===== */
.contact { background: var(--black); color: var(--text-inverse); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
}
.contact-info { display: flex; flex-direction: column; gap: 1.8rem; }
.contact-info .lede { color: rgba(244,245,246,0.72); }
.contact-line { display: flex; align-items: center; gap: 0.9rem; }
.contact-line svg { width: 22px; height: 22px; color: var(--red-light); flex-shrink: 0; }
.contact-line a, .contact-line span { font-size: 1.05rem; }
.contact-line strong { font-family: var(--font-head); letter-spacing: 0.02em; display: block; font-size: 0.72rem; text-transform: uppercase; color: rgba(244,245,246,0.55); margin-bottom: 0.15rem; }

.contact-form-wrap {
  background: var(--charcoal);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  border: 1px solid rgba(244,245,246,0.1);
}
.form-row { display: flex; flex-direction: column; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(244,245,246,0.6); font-family: var(--font-head); }
.field input, .field textarea, .field select {
  background: rgba(244,245,246,0.05);
  border: 1px solid rgba(244,245,246,0.18);
  color: var(--white);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(244,245,246,0.35); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--red-light); background: rgba(244,245,246,0.08);
}
.field textarea { resize: vertical; min-height: 110px; }
.field-check { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.82rem; color: rgba(244,245,246,0.6); }
.field-check input { width: 16px; height: 16px; margin-top: 0.2rem; accent-color: var(--red); }

/* ===== Footer ===== */
.site-footer { background: var(--charcoal); color: rgba(244,245,246,0.6); padding-block: 2.6rem; }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 0.7rem; }
.footer-brand img { height: 32px; }
.footer-brand span { font-family: var(--font-head); color: var(--text-inverse); letter-spacing: 0.04em; font-size: 0.95rem; }
.footer-nav { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.footer-nav a { font-size: 0.85rem; }
.footer-nav a:hover { color: var(--red-light); }
.footer-legal { font-size: 0.78rem; text-align: right; }

/* ===== Responsive ===== */
@media (max-width: 1180px) {
  .main-nav, .header-cta .phone-pill { display: none; }
  .nav-toggle {
    display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center;
    border: 1px solid rgba(244,245,246,0.3); border-radius: var(--radius-sm); color: var(--white);
  }
  .nav-toggle svg { width: 20px; height: 20px; }
}

@media (max-width: 980px) {
  .hero { align-items: flex-start; min-height: 100svh; padding-bottom: 3rem; }
  .scroll-cue { display: none; }
  .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-item.span-2 { grid-column: span 2; }
  .reviews-grid { grid-template-columns: 1fr; }
  .zones-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  .stat-cell { border-right: none; border-bottom: 1px solid rgba(244,245,246,0.16); }
  .stat-cell:last-child { border-bottom: none; }
  .footer-legal { text-align: left; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; }
  .hero-stripe { display: none; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .site-header .header-cta .btn-primary { display: none; }
  .site-header { background: rgba(20, 20, 22, 0.94); backdrop-filter: blur(6px); }
  .brand-word { font-size: 0.88rem; }
  .brand img { height: 36px; }
  .header-cta { gap: 0.6rem; }
}

/* ===================================================== */
/* ===== Sub-page banner (Servicios/Galería/Opiniones/Ofertas/Zonas/Contacto) ===== */
/* ===================================================== */
.page-hero {
  position: relative;
  padding-top: clamp(8rem, 16vw, 11rem);
  padding-bottom: clamp(3.5rem, 8vw, 5.5rem);
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.page-hero-media { position: absolute; inset: 0; z-index: -2; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.32; }
.page-hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,20,22,0.65) 0%, rgba(20,20,22,0.94) 100%);
}
.page-hero-stripe {
  position: absolute; right: -12%; top: -10%; width: 42%; height: 80%;
  background: var(--red);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  z-index: -1; opacity: 0.85; mix-blend-mode: multiply;
}
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-head); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(244,245,246,0.55); margin-bottom: 1.2rem;
}
.breadcrumb a { color: rgba(244,245,246,0.8); }
.breadcrumb a:hover { color: var(--red-light); }
.page-hero h1 { max-width: 20ch; }
.page-hero .lede { color: rgba(244,245,246,0.78); margin-top: 1rem; }
.page-hero-stats { display: flex; flex-wrap: wrap; gap: 2.2rem; margin-top: 2rem; }
.page-hero-stats .trust-item strong { color: var(--white); }

/* ===== Service detail blocks (servicios.html) ===== */
.service-detail-list { display: flex; flex-direction: column; }
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-block: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--concrete-dark);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.is-reversed .service-detail-media { order: 2; }
.service-detail-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-md);
}
.service-detail-media img { width: 100%; height: 100%; object-fit: cover; }
.service-detail-media.is-icon {
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(213,38,26,0.35), transparent 60%),
    linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
}
.service-detail-index {
  position: absolute; top: 1rem; left: 1rem;
  font-family: var(--font-head); font-size: 0.85rem; letter-spacing: 0.1em;
  color: var(--white); background: rgba(20,20,22,0.55); backdrop-filter: blur(4px);
  padding: 0.35rem 0.7rem; border-radius: var(--radius-sm);
}
.service-detail-body .eyebrow { margin-bottom: 0.8rem; }
.service-detail-body h2 { margin-bottom: 1rem; }
.service-detail-body p { color: var(--text-muted); font-size: 1.02rem; line-height: 1.7; margin-bottom: 1.4rem; }
.service-detail-list-items { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.6rem; }
.service-detail-list-items li { display: flex; align-items: center; gap: 0.7rem; font-size: 0.95rem; }
.service-detail-list-items svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; }

/* ===== Process steps ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.process-step { text-align: left; position: relative; padding-top: 1rem; }
.process-step::before {
  content: '';
  position: absolute; top: 0; left: 0; width: 40px; height: 3px; background: var(--red);
}
.process-step-num { font-family: var(--font-head); font-size: 2.6rem; color: var(--concrete-dark); line-height: 1; margin-bottom: 0.6rem; display: block; }
.process-step h4 { font-family: var(--font-head); text-transform: uppercase; font-size: 1.02rem; margin-bottom: 0.5rem; }
.process-step p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.55; }

/* ===== Promo / ofertas cards ===== */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.promo-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--concrete-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.promo-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.promo-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.promo-card:hover .promo-media img { transform: scale(1.05); }
.promo-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--red); color: var(--white);
  font-family: var(--font-head); font-weight: 700; font-size: 1.3rem;
  padding: 0.5rem 0.9rem; border-radius: var(--radius-sm); line-height: 1;
  box-shadow: 0 8px 20px rgba(213,38,26,0.4);
}
.promo-badge span { display: block; font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; margin-top: 0.15rem; }
.promo-body { padding: 1.6rem 1.7rem 1.8rem; display: flex; flex-direction: column; gap: 0.7rem; flex-grow: 1; }
.promo-body h3 { font-size: 1.15rem; }
.promo-body p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.55; flex-grow: 1; }
.promo-terms { font-size: 0.76rem; color: var(--steel); font-style: italic; }

/* ===== Lightbox ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(12,12,13,0.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox-img-wrap { max-width: min(90vw, 1100px); max-height: 85vh; position: relative; }
.lightbox-img-wrap img { max-width: 100%; max-height: 85vh; object-fit: contain; border-radius: var(--radius-sm); }
.lightbox-cap { color: var(--text-inverse); text-align: center; margin-top: 1rem; font-family: var(--font-head); letter-spacing: 0.05em; text-transform: uppercase; font-size: 0.85rem; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; width: 46px; height: 46px; border-radius: 50%;
  background: rgba(244,245,246,0.1); border: 1px solid rgba(244,245,246,0.25);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--red); border-color: var(--red); }
.lightbox-close { top: -1rem; right: -1rem; }
.lightbox-prev { left: clamp(-3rem, -6vw, -1rem); top: 50%; transform: translateY(-50%); }
.lightbox-next { right: clamp(-3rem, -6vw, -1rem); top: 50%; transform: translateY(-50%); }
.lightbox-close svg, .lightbox-prev svg, .lightbox-next svg { width: 20px; height: 20px; }
.gallery-item { cursor: zoom-in; }

/* ===== Filter tabs (galería) ===== */
.filter-tabs { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-bottom: 2.4rem; }
.filter-tab {
  font-family: var(--font-head); font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.6rem 1.2rem; border: 1px solid var(--concrete-dark); border-radius: 999px;
  color: var(--text-muted); transition: all 0.2s ease;
}
.filter-tab:hover { border-color: var(--red); color: var(--red); }
.filter-tab.is-active { background: var(--black); border-color: var(--black); color: var(--white); }

/* ===== Opiniones page extras ===== */
.rating-hero {
  display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap;
  background: var(--white); border: 1px solid var(--concrete-dark); border-radius: var(--radius-md);
  padding: 2.2rem 2.4rem; margin-bottom: 3rem;
}
.rating-big { font-family: var(--font-head); font-size: 4rem; line-height: 1; color: var(--red); }
.rating-side { display: flex; flex-direction: column; gap: 0.3rem; }
.rating-side .review-stars { font-size: 1.2rem; }
.rating-side span { color: var(--text-muted); font-size: 0.9rem; }
.rating-sources { display: flex; gap: 1.2rem; margin-left: auto; flex-wrap: wrap; }
.rating-source-card { text-align: center; padding: 0.9rem 1.3rem; border: 1px solid var(--concrete-dark); border-radius: var(--radius-sm); }
.rating-source-card strong { display: block; font-family: var(--font-head); font-size: 1.3rem; color: var(--red); }
.rating-source-card span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); }

/* ===== FAQ section ===== */
.faq-list { max-width: 820px; margin-inline: auto; }

/* ===== Counter (JS driven number, same visual as stat-cell) ===== */
[data-counter] { font-variant-numeric: tabular-nums; }

/* ===== Related services strip (bottom of individual service pages) ===== */
.related-services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.9rem;
}
.related-service-card {
  display: flex; flex-direction: column; gap: 0.6rem;
  border: 1px solid var(--concrete-dark); border-radius: var(--radius-md);
  overflow: hidden; background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.related-service-card:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(0,0,0,0.08); }
.related-service-media { aspect-ratio: 4/3; overflow: hidden; }
.related-service-media img { width: 100%; height: 100%; object-fit: cover; }
.related-service-media.is-icon { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--black), var(--charcoal)); }
.related-service-media.is-icon svg { width: 36%; height: 36%; color: var(--white); }
.related-service-card span { padding: 0 0.9rem 0.9rem; font-family: var(--font-head); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.25; }

@media (max-width: 980px) {
  .related-services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .related-services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .service-detail { grid-template-columns: 1fr; }
  .service-detail.is-reversed .service-detail-media { order: 0; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-grid { grid-template-columns: 1fr; }
  .rating-hero { flex-direction: column; align-items: flex-start; }
  .rating-sources { margin-left: 0; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .lightbox-close { top: 1rem; right: 1rem; }
}

@media (max-width: 640px) {
  .process-grid { grid-template-columns: 1fr; }
}
