/* =========================================================
   Universal Landscape Services — Stylesheet
   Palette: Safety Blue, Neon Yellow, Metallic Silver, White
   Font: Archivo (Google Fonts)
   ========================================================= */

:root {
  --safety-blue: #0057B7;
  --safety-blue-dark: #003E82;
  --safety-blue-light: #1E6FCC;
  --neon-yellow: #E8FF00;
  --neon-yellow-soft: #F2FF66;
  --silver: #C8CCD0;
  --silver-light: #E8EAED;
  --silver-dark: #8A9099;
  --ink: #0A1929;
  --ink-soft: #1A2A3C;
  --text: #2A3441;
  --text-muted: #5A6776;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(10, 25, 41, 0.06);
  --shadow-md: 0 6px 20px rgba(10, 25, 41, 0.08);
  --shadow-lg: 0 14px 40px rgba(10, 25, 41, 0.12);
  --radius: 6px;
  --radius-lg: 12px;
  --max-w: 1240px;
  --transition: 220ms cubic-bezier(0.2, 0.6, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Archivo', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--white);
  font-size: 17px;
  line-height: 1.65;
  background: var(--safety-blue);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: var(--neon-yellow); text-decoration: none; }
a:hover { color: var(--white); }

/* Default eyebrow color: neon yellow on the blue body.
   Cards override to safety blue per their own rules. */
.eyebrow { color: var(--neon-yellow) !important; }
.eyebrow.on-dark { color: var(--neon-yellow); }


/* Cards are white islands on the blue body — restore dark text inside them. */
.service-card,
.area-card,
.audience-card,
.faq-item,
.city-list,
.process-step,
.testimonial,
.overview-card,
.form,
.bg-white {
  color: var(--text);
}
.service-card h1, .service-card h2, .service-card h3, .service-card h4,
.area-card h1, .area-card h2, .area-card h3, .area-card h4,
.audience-card h1, .audience-card h2, .audience-card h3, .audience-card h4,
.faq-item h1, .faq-item h2, .faq-item h3, .faq-item h4,
.city-list h1, .city-list h2, .city-list h3, .city-list h4,
.process-step h1, .process-step h2, .process-step h3, .process-step h4,
.testimonial h1, .testimonial h2, .testimonial h3, .testimonial h4,
.overview-card h1, .overview-card h2, .overview-card h3, .overview-card h4,
.form h1, .form h2, .form h3, .form h4 {
  color: var(--ink);
}
.service-card p, .area-card p, .audience-card p, .faq-item p,
.city-list p, .process-step p, .testimonial p, .overview-card p, .form p {
  color: var(--text-muted);
}
.service-card .eyebrow, .area-card .eyebrow, .audience-card .eyebrow,
.faq-item .eyebrow, .city-list .eyebrow, .process-step .eyebrow,
.testimonial .eyebrow, .overview-card .eyebrow, .form .eyebrow {
  color: var(--safety-blue) !important;
}
.service-card a, .area-card a, .audience-card a, .faq-item a,
.city-list a, .process-step a, .testimonial a, .overview-card a, .form a {
  color: var(--safety-blue);
}

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

section { padding: 80px 0; }
@media (max-width: 640px) { section { padding: 56px 0; } }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Archivo', sans-serif;
  color: var(--white);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); text-transform: uppercase; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); text-transform: uppercase; letter-spacing: -0.015em; }
h3 { font-size: 1.35rem; font-weight: 700; }
h4 { font-size: 1.12rem; font-weight: 700; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--safety-blue);
  margin-bottom: 14px;
}
.eyebrow.on-dark { color: var(--neon-yellow); }

.lead {
  font-size: 1.18rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 0;
  line-height: 1.6;
}

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--ink);
  color: var(--silver);
  font-size: 0.82rem;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: var(--silver); }
.topbar a:hover { color: var(--neon-yellow); }
.topbar .left, .topbar .right { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.topbar .sep { color: var(--silver-dark); }
@media (max-width: 640px) {
  .topbar { font-size: 0.72rem; padding: 6px 0; }
  .topbar .container { gap: 6px 12px; }
  /* On mobile, hide the topbar phone link (it's in the sticky bottom bar already),
     but keep the EN/ES toggle visible so users can switch language. */
  .topbar .right > a[href^="tel:"],
  .topbar .right > a[href^="tel:"] + .sep { display: none; }
  .topbar .right { gap: 8px; align-items: center; }
}

/* ---------- Main navigation ---------- */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--silver-light);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-sm);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}
.wordmark {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  line-height: 1;
  text-decoration: none;
}
.wordmark .brand-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: block;
}
/* (Old footer-flag outline rule removed — circular logo mark doesn't need it.) */
.wordmark .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.wordmark .word-main {
  font-weight: 900;
  font-size: 1.65rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
}
.wordmark .word-sub {
  font-weight: 700;
  font-size: 0.825rem;
  letter-spacing: 0.14em;
  color: var(--safety-blue);
  margin-top: 4px;
  text-transform: uppercase;
}
/* Trademark mark — small superscript next to brand name (common-law TM use) */
.wordmark .tm {
  font-size: 0.5em;
  font-weight: 700;
  vertical-align: super;
  margin-left: 2px;
  letter-spacing: 0;
  opacity: 0.7;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--safety-blue); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  background: var(--neon-yellow);
}
.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--ink);
}
.mobile-toggle svg { width: 28px; height: 28px; }

@media (max-width: 960px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    border-bottom: 1px solid var(--silver-light);
    gap: 0;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li { border-top: 1px solid var(--silver-light); }
  .nav-links a {
    display: block;
    padding: 16px 24px;
    font-size: 1rem;
  }
  .nav-cta .btn:not(.btn-primary) { display: none; }
  .mobile-toggle { display: block; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.88rem;
  font-family: 'Archivo', sans-serif;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  line-height: 1.2;
  text-align: center;
}
.btn-primary {
  background: var(--neon-yellow);
  color: var(--ink);
  border-color: var(--neon-yellow);
}
.btn-primary:hover {
  background: var(--ink);
  color: var(--neon-yellow);
  border-color: var(--ink);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: var(--safety-blue);
  color: var(--white);
  border-color: var(--safety-blue);
}
.btn-secondary:hover {
  background: var(--safety-blue-dark);
  border-color: var(--safety-blue-dark);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--safety-blue);
  border-color: var(--safety-blue);
}
.btn-outline:hover { background: var(--safety-blue); color: var(--white); }

.btn-sm { padding: 10px 18px; font-size: 0.78rem; }
.btn-lg { padding: 18px 32px; font-size: 0.95rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background-color: var(--ink);
  color: var(--white);
  padding: 120px 0 100px;
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}
.hero-slide.is-active { opacity: 1; }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Neutral dark gradient — lets the project photo colors come through on
     the right while keeping the rotating headline readable on the left. */
  background: linear-gradient(95deg, rgba(10, 25, 41, 0.78) 0%, rgba(10, 25, 41, 0.50) 40%, rgba(10, 25, 41, 0.18) 100%);
  z-index: 1;
  pointer-events: none;
}
/* Bottom fade — same pattern as page-hero. The hero blends into the
   safety-blue body instead of meeting it at a stripe. */
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 110px;
  background: linear-gradient(to bottom, rgba(0, 87, 183, 0) 0%, var(--safety-blue) 100%);
  z-index: 2;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
}
.hero-inner {
  max-width: 760px;
  position: relative;
  z-index: 2;
}
.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero-headline {
  transition: opacity 0.6s ease-in-out;
}
.hero-headline.is-fading { opacity: 0; }
@media (prefers-reduced-motion: reduce) {
  .hero-headline { transition: none; }
}
.hero .lead {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.15rem;
  max-width: 640px;
  margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 24px 36px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.hero-badges .dot { color: rgba(255,255,255,0.4); }

/* ---------- Section header ---------- */
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.section-head.left { text-align: left; margin-left: 0; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: rgba(255, 255, 255, 0.82); font-size: 1.05rem; }

/* ---------- Service grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--silver-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: var(--safety-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  border-color: var(--safety-blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--safety-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition);
}
.service-card:hover .icon {
  background: var(--neon-yellow);
  color: var(--ink);
}
.service-card .icon svg { width: 26px; height: 26px; }
.service-card h3 { margin-bottom: 10px; color: var(--ink); }
.service-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ---------- Two-column feature ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
}
.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5 / 4;
  background: var(--silver-light);
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }

.feature-list {
  list-style: none;
  margin-top: 28px;
}
.feature-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--silver-light);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--safety-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  margin-top: 2px;
}
.feature-list strong { color: var(--ink); font-weight: 700; }
.feature-list p { color: var(--text-muted); font-size: 0.95rem; margin-top: 2px; }

/* ---------- Dark section ---------- */
.section-dark {
  background: var(--ink);
  color: var(--silver-light);
}
.section-dark h2 { color: var(--white); }
.section-dark .lead { color: rgba(255,255,255,0.78); }
.section-dark .section-head p { color: rgba(255,255,255,0.72); }

/* ---------- Stats ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
}
.stat {
  text-align: center;
  padding: 24px 16px;
}
.stat .num {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--neon-yellow);
  line-height: 1;
  margin-bottom: 8px;
  font-family: 'Archivo', sans-serif;
}
.stat .label {
  color: rgba(255,255,255,0.82);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(10,25,41,0.85) 100%);
  color: var(--white);
}
.gallery-item .caption .tag {
  display: inline-block;
  background: var(--neon-yellow);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 8px;
}
.gallery-item h4 { color: var(--white); }

/* ---------- Areas list ---------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.area-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 22px;
  border: 1px solid var(--silver-light);
  display: flex;
  align-items: center;
  gap: 14px;
}
.area-card .pin {
  width: 36px;
  height: 36px;
  background: var(--safety-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.area-card strong { color: var(--ink); display: block; }
.area-card small { color: var(--text-muted); font-size: 0.82rem; }

/* ---------- CTA strip ---------- */
.cta-strip {
  background: var(--ink);
  color: var(--white);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(232,255,0,0.08) 100%);
}
.cta-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
}
.cta-strip h2 { color: var(--white); margin-bottom: 8px; }
.cta-strip p { color: rgba(255,255,255,0.88); }

/* ---------- Form ---------- */
.form-wrap {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 880px) {
  .form-wrap { grid-template-columns: 1fr; }
}
.form {
  background: var(--white);
  border: 1px solid var(--silver-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  font-family: 'Archivo', sans-serif;
  font-size: 0.98rem;
  background: var(--white);
  color: var(--ink);
  transition: border-color var(--transition);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--safety-blue);
  box-shadow: 0 0 0 3px rgba(0, 87, 183, 0.12);
}
.form-field textarea { resize: vertical; min-height: 120px; }

/* Form validation & state */
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: #D14848;
  box-shadow: 0 0 0 3px rgba(209, 72, 72, 0.12);
}
.field-error {
  color: #D14848;
  font-size: 0.82rem;
  margin-top: 6px;
  font-weight: 600;
}
.form-banner {
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 20px;
  font-size: 0.96rem;
  line-height: 1.5;
}
.form-banner strong { font-weight: 800; display: block; margin-bottom: 4px; font-size: 1.05rem; }
.form-banner a { font-weight: 700; }
.form-banner.success {
  background: #E8FFEA;
  border: 1px solid #34C759;
  color: var(--ink);
}
.form-banner.error {
  background: #FFEAEA;
  border: 1px solid #D14848;
  color: var(--ink);
}
.form-banner.warning {
  background: #FFF4CC;
  border: 2px solid #E8B800;
  color: var(--ink);
}
.form-banner.success a, .form-banner.error a { color: var(--ink); text-decoration: underline; }
.form-banner.warning a { color: var(--ink); text-decoration: underline; }
button[disabled] { opacity: 0.6; cursor: wait; }
.file-info { color: var(--text-muted); font-size: 0.82rem; margin-top: 6px; display: block; }
.file-info.has-files { color: var(--safety-blue); font-weight: 600; }

.contact-info {
  background: var(--ink);
  color: var(--silver-light);
  padding: 36px;
  border-radius: var(--radius-lg);
}
.contact-info h3 { color: var(--white); margin-bottom: 20px; }
.contact-info .info-row {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.contact-info .info-row:first-of-type { border-top: none; }
.contact-info .info-row svg {
  width: 22px; height: 22px;
  color: var(--neon-yellow);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info small {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.contact-info a { color: var(--white); }
.contact-info a:hover { color: var(--neon-yellow); }

/* ---------- Audience grid ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.audience-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--silver-light);
}
.audience-card .ico {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--silver-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--safety-blue);
}
.audience-card h4 { margin-bottom: 6px; color: var(--ink); }
.audience-card p { color: var(--text-muted); font-size: 0.92rem; }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer a { color: rgba(255,255,255,0.72); font-size: 0.94rem; }
.footer a:hover { color: var(--neon-yellow); }
.footer .wordmark .word-main { color: var(--white); }
.footer .wordmark .word-sub { color: var(--neon-yellow); }
.footer p { font-size: 0.94rem; margin-top: 14px; line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.social-links { display: flex; gap: 12px; margin-top: 18px; }
.social-links a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition);
}
.social-links a:hover { background: var(--neon-yellow); color: var(--ink); }
.social-links svg { width: 18px; height: 18px; }

/* ---------- Page sub-hero (non-home pages) ---------- */
.page-hero {
  position: relative;
  background: var(--ink);
  color: var(--white);
  padding: 80px 0;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Neutral ink overlay so the project photo colors come through instead
     of being washed into the body's safety blue. Heavier on the left
     where the title sits; near-clear on the right. */
  background:
    linear-gradient(95deg, rgba(10, 25, 41, 0.80) 0%, rgba(10, 25, 41, 0.55) 50%, rgba(10, 25, 41, 0.22) 100%),
    url('../images/projects/project1.jpg') center/cover no-repeat;
  z-index: 0;
}
/* Thin line in body color — no yellow punctuation at the seam between
   the dark hero photo and the safety-blue body. */
.page-hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: var(--safety-blue);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 640px; font-size: 1.05rem; }
.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--neon-yellow); }

/* ---------- Service detail ---------- */
/* ---------- Services overview (jump grid above details) ---------- */
.services-overview {
  padding-top: 0;
  padding-bottom: 24px;
}
.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1080px) {
  .services-overview-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services-overview-grid { grid-template-columns: 1fr; }
}
.overview-card {
  display: block;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--silver-light);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
  position: relative;
}
.overview-card::after {
  content: '→';
  position: absolute;
  top: 20px;
  right: 22px;
  color: var(--safety-blue);
  font-weight: 700;
  opacity: 0;
  transform: translateX(-4px);
  transition: all var(--transition);
}
.overview-card:hover {
  border-color: var(--safety-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.overview-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}
.overview-card .overview-eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--safety-blue);
  margin-bottom: 6px;
}
.overview-card h3 {
  font-size: 1.05rem;
  margin: 0 0 6px;
  color: var(--ink);
}
.overview-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.45;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--silver-light);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
@media (max-width: 880px) {
  .service-detail, .service-detail.reverse { grid-template-columns: 1fr; direction: ltr; gap: 32px; }
}
.service-detail .img {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.service-detail .img img { width: 100%; height: 100%; object-fit: cover; }
.service-detail h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 14px; }
.service-detail ul {
  list-style: none;
  margin-top: 18px;
}
.service-detail ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text);
}
.service-detail ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 16px;
  width: 14px;
  height: 3px;
  background: var(--neon-yellow);
}

/* ---------- Sticky mobile Call bar ---------- */
.mobile-call-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--neon-yellow);
  color: var(--ink);
  z-index: 100;
  padding: 14px 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  box-shadow: 0 -4px 16px rgba(10, 25, 41, 0.18);
  border-top: 3px solid var(--ink);
}
.mobile-call-bar a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  flex: 1;
  justify-content: center;
  font-size: 1.05rem;
}
.mobile-call-bar a + a {
  border-left: 2px solid rgba(10, 25, 41, 0.2);
}
.mobile-call-bar a svg { width: 20px; height: 20px; }
.mobile-call-bar a.secondary {
  font-size: 0.92rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .mobile-call-bar { display: flex; }
  body { padding-bottom: 64px; }
}

/* ---------- Language toggle ---------- */
/* ---------- FAQ ---------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--silver-light);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  padding: 22px 26px;
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  font-size: 1.05rem;
  list-style: none;
  position: relative;
  padding-right: 56px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--safety-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
  transition: transform var(--transition);
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item summary:hover { color: var(--safety-blue); }
.faq-item .answer {
  padding: 0 26px 22px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---------- City list (service area) ---------- */
.city-list {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 32px;
  border: 1px solid var(--silver-light);
}
.city-list h4 {
  text-align: center;
  margin-bottom: 16px;
  color: var(--ink);
}
.city-list p {
  text-align: center;
  color: var(--text);
  line-height: 1.9;
  font-size: 1.02rem;
}
.city-list strong { color: var(--ink); }

/* ---------- Phone CTA (hero) — single line, matches .btn-lg height ---------- */
.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--neon-yellow);
  color: var(--ink);
  padding: 18px 36px;
  border: 2px solid var(--neon-yellow);
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  transition: all var(--transition);
  font-family: 'Archivo', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}
.btn-phone svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-phone:hover {
  background: var(--ink);
  color: var(--neon-yellow);
  border-color: var(--ink);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ---------- Founder note (centered, no portrait) ---------- */
.founder-note {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding-top: 24px;
}
.founder-note::before {
  content: '"';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4rem;
  line-height: 1;
  color: var(--neon-yellow);
  font-weight: 900;
  font-family: Georgia, serif;
  opacity: 0.9;
}
.founder-note .eyebrow { display: inline-block; margin-bottom: 18px; }
.founder-note h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin-bottom: 22px;
}
.founder-note .quote {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 28px;
}
.founder-note .signature {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-top: 24px;
  border-top: 2px solid var(--silver);
  margin-top: 8px;
}
.founder-note .signature strong {
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 800;
}
.founder-note .signature small {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

/* ---------- Process steps ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.process-step {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--silver-light);
  position: relative;
  counter-increment: step;
}
.process-step::before {
  content: counter(step);
  position: absolute;
  top: -18px;
  left: 28px;
  width: 44px;
  height: 44px;
  background: var(--safety-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(0, 87, 183, 0.3);
}
.process-step h3 {
  margin-top: 18px;
  margin-bottom: 8px;
  color: var(--ink);
}
.process-step p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--silver-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.testimonial .stars {
  color: var(--neon-yellow);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
  -webkit-text-stroke: 1px #c7a900;
}
.testimonial blockquote {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial cite {
  display: block;
  font-style: normal;
  padding-top: 16px;
  border-top: 1px solid var(--silver-light);
}
.testimonial cite strong {
  color: var(--ink);
  display: block;
  font-size: 1rem;
}
.testimonial cite small {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ---------- Map ---------- */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--silver-light);
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

/* ---------- Utility ---------- */
.bg-light { background: var(--safety-blue-dark); }
.bg-white { background: var(--white); }
.text-center { text-align: center; }
.mt-4 { margin-top: 32px; }
.muted { color: var(--text-muted); }

/* ---------- Lead-magnet callout (HOA checklist on commercial page) ---------- */
.lead-magnet {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  box-shadow: var(--shadow-md);
  border-left: 5px solid var(--neon-yellow);
}
@media (max-width: 880px) {
  .lead-magnet { grid-template-columns: 1fr; text-align: left; padding: 24px; }
}
.lead-magnet-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--safety-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lead-magnet-icon svg { width: 26px; height: 26px; }
.lead-magnet-body h2 {
  color: var(--ink);
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  margin: 6px 0 8px;
}
.lead-magnet-body p {
  color: var(--text);
  font-size: 0.98rem;
  margin: 0;
  max-width: 56ch;
}
.lead-magnet-body .eyebrow { color: var(--safety-blue) !important; }
.lead-magnet-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.lead-magnet-cta small {
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

/* ---------- Safety-blue body overrides ----------
   Final cascade pass: outside-card section-level content was originally styled
   for a white surface. Flip it for the blue body. Cards keep their own dark
   text via specificity in their component rules. */
.founder-note .quote { color: var(--white); }
.founder-note::before { color: rgba(255, 255, 255, 0.18); }
.founder-note .signature strong { color: var(--white); }
.founder-note .signature small { color: rgba(255, 255, 255, 0.7); }
.feature-list strong { color: var(--white); }
.feature-list p { color: rgba(255, 255, 255, 0.82); }
.feature-list li { border-bottom-color: rgba(255, 255, 255, 0.15); }
.service-detail ul li { color: rgba(255, 255, 255, 0.92); }
section > .container > .muted,
section .service-detail p.muted,
.section-head p.muted { color: rgba(255, 255, 255, 0.82); }
