/* ── Tokens ──────────────────────────────────────────────────────────────────── */
:root {
  --black:        #0A0A0A;
  --dark:         #1A1A1A;
  --mid:          #2D2D2D;
  --yellow:       #F5C000;
  --yellow-light: #FFDA30;
  --white:        #FFFFFF;
  --off-white:    #FAF9F6;
  --muted:        #9A9A9A;
  --light-bg:     #F2F2F0;

  --font-display: &#039;Barlow Condensed&#039;, sans-serif;
  --font-body:    &#039;Inter&#039;, sans-serif;

  --radius:     4px;
  --radius-lg:  8px;
  --transition: 150ms ease-out;
  --container:  1200px;
  --section-py: clamp(4rem, 8vw, 7rem);
}

/* ── Reset ───────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }

/* ── Skip link ───────────────────────────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -40px; left: 1rem;
  background: var(--yellow); color: var(--black);
  padding: .5rem 1rem; border-radius: var(--radius);
  font-weight: 700; z-index: 9999;
  transition: top var(--transition);
}
.skip-link:focus { top: 1rem; }

/* ── Container ───────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

/* ── Typography ──────────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); text-transform: uppercase; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
p  { font-size: clamp(1rem, 1.5vw, 1.125rem); }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--yellow);
  margin-bottom: .75rem;
}
.text-yellow { color: var(--yellow); }
.section-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 65ch;
  margin-top: 1rem;
}

/* ── Buttons ─────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 1.75rem;
  font-family: var(--font-display);
  font-weight: 700; font-size: .95rem;
  text-transform: uppercase; letter-spacing: .06em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--yellow); color: var(--black);
  border-color: var(--yellow);
}
.btn-primary:hover {
  background: var(--yellow-light); border-color: var(--yellow-light);
  box-shadow: 0 0 20px rgba(245,192,0,.35);
}
.btn-secondary {
  background: transparent; color: var(--yellow);
  border-color: var(--yellow);
}
.btn-secondary:hover {
  background: var(--yellow); color: var(--black);
}
.btn-dark {
  background: var(--black); color: var(--yellow);
  border-color: var(--black);
}
.btn-dark:hover { background: #1A1A1A; }
.btn-dark-outline {
  background: transparent; color: var(--black);
  border-color: var(--black);
}
.btn-dark-outline:hover { background: var(--black); color: var(--yellow); }

/* ── Header ──────────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
  padding-block: 1.25rem;
}
.site-header.scrolled {
  background: var(--black);
  box-shadow: 0 2px 20px rgba(0,0,0,.6);
  padding-block: .75rem;
}
.header-inner {
  display: flex; align-items: center; gap: 2rem;
}
.site-logo { flex-shrink: 0; }
.logo-text {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.4rem;
  text-transform: uppercase; letter-spacing: .05em;
  color: var(--yellow);
  display: flex; flex-direction: column; line-height: 1;
}
.logo-text .logo-sub {
  font-size: .6em; letter-spacing: .2em; color: var(--white);
  font-weight: 600;
}
/* Logo image — constrain to header height */
.custom-logo-link { display: flex; align-items: center; }
.custom-logo-link img,
.site-logo .custom-logo { height: 44px; width: auto; max-width: 220px; object-fit: contain; }
.site-header.scrolled .custom-logo-link img,
.site-header.scrolled .site-logo .custom-logo { height: 34px; }

.primary-nav { flex: 1; }
.nav-list {
  display: flex; align-items: center; gap: 2rem;
}
.nav-list a {
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  text-transform: uppercase; letter-spacing: .06em; color: var(--white);
  transition: color var(--transition);
}
.nav-list a:hover { color: var(--yellow); }

.header-cta {
  display: flex; align-items: center; gap: .4rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  color: var(--yellow);
  background: rgba(245,192,0,.1);
  border: 2px solid var(--yellow);
  padding: .5rem 1rem;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.header-cta:hover { background: var(--yellow); color: var(--black); }

.mobile-menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: .5rem; margin-left: auto;
}
.mobile-menu-toggle span {
  display: block; width: 24px; height: 2px; background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

.mobile-menu {
  background: var(--dark); padding: 1.5rem;
  border-top: 1px solid var(--mid);
}
.mobile-nav-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.mobile-nav-list a {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.1rem; text-transform: uppercase;
  letter-spacing: .06em; color: var(--white);
}
.mobile-cta {
  display: block; text-align: center;
  background: var(--yellow); color: var(--black);
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.1rem; padding: 1rem; border-radius: var(--radius);
}

/* ── Sections ────────────────────────────────────────────────────────────────── */
.section-black { background: var(--black); padding-block: var(--section-py); }
.section-dark  { background: var(--dark);  padding-block: var(--section-py); }
.section-yellow {
  background: var(--yellow); color: var(--black);
  padding-block: var(--section-py);
}
.section-yellow .eyebrow { color: var(--black); opacity: .7; }
.section-yellow h2 { color: var(--black); }

/* ── Hero ────────────────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: 6rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  filter: brightness(.35) contrast(1.1);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,.3) 0%, rgba(10,10,10,.8) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  padding-block: 4rem 2rem;
  max-width: 820px;
}
.hero-headline {
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.85);
  max-width: 55ch;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-bottom: 3rem;
}
.hero-trust {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem;
  padding-bottom: 3rem;
  padding-inline: clamp(1rem, 4vw, 2rem);
  max-width: var(--container);
  width: 100%;
  margin-inline: auto;
}
.trust-pill {
  background: rgba(245,192,0,.12);
  border: 1px solid rgba(245,192,0,.3);
  color: var(--yellow);
  font-family: var(--font-display); font-weight: 600;
  font-size: .8rem; text-transform: uppercase; letter-spacing: .08em;
  padding: .4rem 1rem; border-radius: 100px;
}

/* ── Problem section ─────────────────────────────────────────────────────────── */
.section-problem h2 { margin-bottom: 3rem; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.problem-card {
  background: var(--mid);
  border-left: 4px solid var(--yellow);
  padding: 2rem;
  border-radius: var(--radius-lg);
}
.problem-icon { margin-bottom: 1.25rem; }
.problem-card h3 { margin-bottom: .75rem; font-size: 1.3rem; }
.problem-card p { color: var(--muted); font-size: .95rem; line-height: 1.7; }

/* ── Services ────────────────────────────────────────────────────────────────── */
.section-services h2 { margin-bottom: .75rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--dark); border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--mid);
  transition: border-color var(--transition), transform var(--transition);
}
.service-card:hover { border-color: var(--yellow); transform: translateY(-4px); }
.service-card-img { aspect-ratio: 16/9; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-card:hover .service-card-img img { transform: scale(1.04); }
.service-card-body { padding: 2rem; }
.service-icon { margin-bottom: 1rem; }
.service-card-body h3 { margin-bottom: .75rem; }
.service-card-body p { color: var(--muted); font-size: .95rem; margin-bottom: 1.25rem; }
.service-features {
  list-style: none; margin-bottom: 1.5rem;
  display: flex; flex-direction: column; gap: .4rem;
}
.service-features li {
  font-size: .9rem; color: var(--muted);
  padding-left: 1.2rem; position: relative;
}
.service-features li::before {
  content: &#039;✓&#039;; color: var(--yellow);
  position: absolute; left: 0; font-weight: 700;
}

/* ── Stats ───────────────────────────────────────────────────────────────────── */
.section-stats { padding-block: var(--section-py); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-item { padding: 1rem; }
.stat-number {
  font-family: var(--font-display);
  font-weight: 800; font-size: clamp(3rem, 7vw, 5rem);
  color: var(--black); line-height: 1;
}
.stat-suffix {
  font-family: var(--font-display);
  font-weight: 800; font-size: clamp(2rem, 4vw, 3rem);
  color: var(--black);
}
.stat-label {
  font-family: var(--font-display); font-weight: 600;
  font-size: .85rem; text-transform: uppercase;
  letter-spacing: .1em; color: var(--black);
  margin-top: .5rem; opacity: .7;
}

/* ── Before / After ──────────────────────────────────────────────────────────── */
.section-before-after h2 { margin-bottom: .75rem; }
.before-after-wrap {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 1rem; align-items: center; margin-top: 3rem;
}
.before-panel, .after-panel {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
}
.before-panel img, .after-panel img {
  width: 100%; height: 100%;
  object-fit: cover; aspect-ratio: 4/3;
}
.ba-label {
  position: absolute; top: 1rem; left: 1rem;
  font-family: var(--font-display); font-weight: 700;
  font-size: .8rem; letter-spacing: .15em;
  background: var(--yellow); color: var(--black);
  padding: .25rem .75rem; border-radius: var(--radius);
}
.ba-divider {
  width: 2px; height: 60%;
  background: var(--yellow);
  border-radius: 2px;
  align-self: center;
}

/* ── Pillars ─────────────────────────────────────────────────────────────────── */
.section-pillars h2 { margin-bottom: 3rem; }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.pillar-card {
  background: var(--mid); padding: 2.5rem;
  border-radius: var(--radius-lg);
  position: relative;
}
.pillar-card::after {
  content: &#039;&#039;;
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--yellow);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.pillar-number {
  font-family: var(--font-display); font-weight: 800;
  font-size: 4rem; line-height: 1;
  color: rgba(245,192,0,.15);
  margin-bottom: 1rem;
}
.pillar-card h3 { margin-bottom: 1rem; font-size: 1.4rem; }
.pillar-card p { color: var(--muted); font-size: .95rem; line-height: 1.7; }

/* ── Cities grid ─────────────────────────────────────────────────────────────── */
.section-areas h2 { margin-bottom: .75rem; }
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: .5rem;
  margin-top: 2.5rem;
}
.cities-grid a {
  font-size: .875rem; color: var(--muted);
  transition: color var(--transition);
}
.cities-grid a:hover { color: var(--yellow); }

/* ── Final CTA ───────────────────────────────────────────────────────────────── */
.cta-inner {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 2rem;
}
.cta-copy h2 { color: var(--black); margin-bottom: .5rem; }
.cta-copy p { color: rgba(0,0,0,.65); max-width: 45ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ── Footer ──────────────────────────────────────────────────────────────────── */
.site-footer { background: #050505; border-top: 1px solid var(--mid); }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-block: 4rem;
}
.footer-logo .logo-text { font-size: 1.2rem; }
.footer-tagline { color: var(--muted); font-size: .9rem; margin: 1rem 0; line-height: 1.6; }
.footer-phone {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.4rem; color: var(--yellow);
}
.footer-heading {
  font-family: var(--font-display); font-weight: 700;
  font-size: .85rem; text-transform: uppercase;
  letter-spacing: .12em; color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-services ul, .footer-areas ul {
  display: flex; flex-direction: column; gap: .6rem;
}
.footer-services a, .footer-areas a {
  font-size: .875rem; color: var(--muted);
  transition: color var(--transition);
}
.footer-services a:hover, .footer-areas a:hover { color: var(--yellow); }
.footer-phone-cta {
  display: block; margin-bottom: .5rem;
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.25rem; color: var(--yellow);
}
.footer-contact p { font-size: .875rem; color: var(--muted); margin-bottom: .75rem; }
.footer-hours { font-size: .8rem; color: var(--muted); margin-top: .25rem; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  padding-block: 1.5rem;
  border-top: 1px solid var(--mid);
  font-size: .8rem; color: var(--muted);
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: var(--muted); transition: color var(--transition); }
.footer-legal a:hover { color: var(--yellow); }

/* ── Inner page ──────────────────────────────────────────────────────────────── */
.page-main { padding-top: 80px; }
.page-hero {
  padding-block: 4rem;
  border-bottom: 1px solid var(--mid);
}
.page-title {
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  color: var(--yellow);
  margin-bottom: .5rem;
}
.page-excerpt { color: var(--muted); max-width: 65ch; }
.page-content { padding-block: 4rem; }
.entry-content { color: var(--muted); line-height: 1.8; max-width: 75ch; }
.entry-content h2, .entry-content h3 { color: var(--white); margin: 2rem 0 1rem; }
.entry-content p { margin-bottom: 1rem; }
.entry-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.entry-content li { margin-bottom: .4rem; }
.page-cta { padding-block: clamp(3rem, 6vw, 5rem); }

/* ── Accessibility ───────────────────────────────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Responsive ──────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .primary-nav, .header-cta { display: none; }
  .mobile-menu-toggle { display: flex; }

  .hero { min-height: 100svh; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }

  .before-after-wrap {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .ba-divider { display: none; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-block: 2.5rem;
  }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Reduced motion ──────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}