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

:root {
  --lime: #AACC00;
  --lime-bright: #C8F000;
  --lime-dark: #7A9900;
  --lime-pale: #F0F9CC;
  --yellow: #E8D800;
  --charcoal: #30363B;
  --charcoal-2: #3A4247;
  --charcoal-3: #4C565C;
  --ink: #262C31;
  --white: #FFFFFF;
  --off-white: #F8FAF0;
  --mid: #5A6640;
  --muted: #8A9870;
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'Nunito', system-ui, sans-serif;
  --max: 1100px;
  --r: 14px;
  --r-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(38,44,49,0.72);
  padding: 0 2rem;
  box-shadow: 0 14px 44px rgba(38,44,49,0.18);
  backdrop-filter: blur(16px) saturate(130%);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-logo img {
  height: 52px;
  width: auto;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.72rem;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
}
.nav-logo-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 1px;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 1rem;
  font-weight: 800;
  color: rgba(255,255,255,0.94);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links .nav-cta {
  background: var(--white);
  color: var(--charcoal);
  padding: 0.68rem 1.5rem;
  border-radius: 100px;
  font-weight: 900;
  font-size: 0.98rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
  transition: background 0.2s, transform 0.15s;
}
.nav-links .nav-cta:hover { background: var(--off-white); transform: translateY(-2px); }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.46);
  outline: none;
}
.menu-toggle-lines {
  width: 22px;
  height: 16px;
  position: relative;
  display: block;
}
.menu-toggle-lines::before,
.menu-toggle-lines::after,
.menu-toggle-lines span {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: top 0.2s, transform 0.2s, opacity 0.2s;
}
.menu-toggle-lines::before { top: 0; }
.menu-toggle-lines span { top: 7px; }
.menu-toggle-lines::after { top: 14px; }
.menu-open .menu-toggle-lines::before {
  top: 7px;
  transform: rotate(45deg);
}
.menu-open .menu-toggle-lines span { opacity: 0; }
.menu-open .menu-toggle-lines::after {
  top: 7px;
  transform: rotate(-45deg);
}

/* ─── HERO ─── */
.hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  padding: 7rem 2rem 0;
  background:
    linear-gradient(to top, rgba(38,44,49,0.9) 0%, rgba(38,44,49,0.58) 40%, rgba(38,44,49,0.18) 100%),
    url('../assets/images/modernhouse.webp') center center / cover no-repeat;
}

/* diagonal lime slash across bottom of hero */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 90px;
  background: var(--off-white);
  clip-path: polygon(0 60%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 2;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  padding-bottom: 3rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--lime);
  color: var(--charcoal);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.hero-badge::before {
  content: '';
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: currentColor;
}
.emergency-pulse {
  color: #b00020;
  animation: emergencyPulse 1.1s ease-in-out infinite;
}

@keyframes emergencyPulse {
  0%, 100% {
    color: #b00020;
    text-shadow: 0 0 0 rgba(176,0,32,0);
  }
  50% {
    color: #ff102f;
    text-shadow: 0 0 10px rgba(255,16,47,0.5);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 9vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.hero h1 .highlight {
  color: var(--lime);
  display: inline-block;
  position: relative;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin-bottom: 1.75rem;
  font-weight: 400;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.hero-action-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-badge-img {
  width: 168px;
  max-width: 100%;
  display: block;
}

.btn-primary {
  background: var(--lime);
  color: var(--charcoal);
  padding: 0.9rem 2.25rem;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 900;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
}
.btn-primary:hover { background: var(--lime-bright); transform: translateY(-2px) scale(1.02); }

.btn-ghost {
  color: rgba(255,255,255,0.8);
  padding: 0.9rem 1.75rem;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.25);
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-ghost:hover { border-color: var(--lime); color: var(--lime); transform: translateY(-1px); }

/* ─── EMERGENCY BANNER ─── */
.emergency {
  background: var(--lime);
  padding: 1.5rem 2rem;
  position: relative;
  z-index: 3;
}
.emergency-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.emergency-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.bolt-icon {
  width: 42px; height: 42px;
  background: var(--charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  animation: zap 2.5s ease-in-out infinite;
}
.bolt-icon.emergency-pulse {
  color: #ff102f;
  animation: emergencyBadgePulse 1.1s ease-in-out infinite;
}
@keyframes emergencyBadgePulse {
  0%, 100% {
    color: #b00020;
    box-shadow: 0 0 0 0 rgba(176,0,32,0);
    transform: scale(1);
  }
  50% {
    color: #ff102f;
    box-shadow: 0 0 0 7px rgba(255,16,47,0.22);
    transform: scale(1.08);
  }
}
@keyframes zap {
  0%, 90%, 100% { transform: rotate(0deg); }
  92% { transform: rotate(-12deg); }
  96% { transform: rotate(12deg); }
}
.emergency-text strong {
  color: var(--charcoal);
  font-weight: 900;
  font-size: 1rem;
}
.emergency-text p {
  color: var(--charcoal-3);
  font-size: 0.85rem;
  margin-top: 0.1rem;
}
.emergency a {
  background: var(--charcoal);
  color: var(--lime);
  padding: 0.7rem 1.75rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.03em;
}
.emergency a:hover { background: var(--ink); transform: translateY(-1px); }

/* ─── SHARED SECTION ─── */
section { padding: 6rem 2rem; }
.section-inner { max-width: var(--max); margin: 0 auto; }

.label {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lime-dark);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.label::before {
  content: '';
  display: inline-block;
  width: 20px; height: 3px;
  background: var(--lime);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--charcoal);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.section-sub {
  font-size: 1rem;
  color: var(--mid);
  max-width: 520px;
  line-height: 1.7;
}

/* ─── SERVICES ─── */
.services { background: var(--lime-dark); position: relative; overflow: hidden; }
.services::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.services .label {
  color: var(--white);
  font-size: 0.9rem;
}
.services .label::before { background: var(--lime); }
.services .section-title { color: var(--white); }
.services .section-sub {
  color: rgba(255,255,255,0.96);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.55;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: rgba(48,54,59,0.32);
  border: 2px solid rgba(255,255,255,0.28);
  border-radius: var(--r);
  padding: 2rem;
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-4px);
  background: rgba(48,54,59,0.42);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card h3 {
  font-size: 1.18rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.6rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.service-card p {
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1.58;
}
.service-tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--white);
  text-transform: uppercase;
  background: rgba(255,255,255,0.18);
  padding: 0.42rem 0.82rem;
  border-radius: 100px;
}

/* ─── WORK ─── */
.work { background: var(--off-white); }

.work-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.work-categories {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.cat-btn {
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 800;
  border: 2px solid rgba(26,30,18,0.15);
  background: transparent;
  color: var(--mid);
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cat-btn.active, .cat-btn:hover {
  background: var(--lime);
  color: var(--charcoal);
  border-color: var(--lime);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  appearance: none;
  border-radius: var(--r-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  background: var(--charcoal-2);
  border: 0;
  cursor: pointer;
  padding: 0;
}
.gallery-item.is-hidden {
  display: none;
}
.gallery-item.is-mobile-collapsed {
  display: none;
}
.gallery-item:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(38,44,49,0.78) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.gallery-more-btn {
  display: none;
  margin: 1.25rem auto 0;
  padding: 0.8rem 1.25rem;
  border: 0;
  border-radius: 100px;
  background: var(--charcoal);
  color: #fff;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.gallery-more-btn:hover,
.gallery-more-btn:focus-visible {
  background: var(--lime);
  color: var(--charcoal);
  outline: none;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  justify-items: center;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2.5rem);
  background: rgba(10, 12, 9, 0.92);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.lightbox-image {
  max-width: min(100%, 1180px);
  max-height: calc(100vh - 8rem);
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);
}
.lightbox-caption {
  color: var(--off-white);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}
.lightbox-btn {
  position: absolute;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--off-white);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.lightbox-btn:hover,
.lightbox-btn:focus-visible {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--charcoal);
  outline: none;
}
.lightbox-prev { left: clamp(1rem, 4vw, 3rem); top: 50%; transform: translateY(-50%); }
.lightbox-next { right: clamp(1rem, 4vw, 3rem); top: 50%; transform: translateY(-50%); }
.lightbox-close {
  top: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  font-size: 1.8rem;
}
.body-no-scroll { overflow: hidden; }

/* ─── CREDENTIALS ─── */
.credentials-section { background: var(--lime); position: relative; overflow: hidden; }
.credentials-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60px;
  background: var(--off-white);
  clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
}
.credentials-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: var(--off-white);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}
.credentials-section .section-inner { position: relative; z-index: 1; padding-top: 2rem; }
.credentials-section .label { color: var(--charcoal-3); }
.credentials-section .label::before { background: var(--charcoal); }
.credentials-section .section-title { color: var(--charcoal); }
.credentials-section .section-sub { color: var(--charcoal-3); }

.credentials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 3rem;
}

.cred-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.35);
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: var(--r-sm);
  transition: background 0.2s, transform 0.2s;
}
.cred-item:hover { background: rgba(255,255,255,0.55); transform: translateX(4px); }

.cred-check {
  width: 28px; height: 28px;
  background: var(--charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.cred-check::after {
  content: '';
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--lime);
  border-bottom: 2px solid var(--lime);
  transform: rotate(-45deg) translate(1px, -1px);
}
.cred-item span {
  font-size: 0.925rem;
  color: var(--charcoal);
  font-weight: 700;
}

/* ─── TESTIMONIALS ─── */
.trust { background: var(--off-white); position: relative; overflow: hidden; }
.trust .label { color: var(--lime-dark); }
.trust .label::before { background: var(--lime); }
.trust .section-title { color: var(--charcoal); }
.trust .section-sub { color: var(--charcoal-3); }
.trust .section-sub a {
  color: var(--lime-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.trust .section-sub a:hover { color: var(--charcoal); }

.reviews-widget {
  margin-top: 3rem;
}

.reviews-summary {
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  padding: 1.75rem 1.25rem 1.55rem;
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(26,30,18,0.12);
  border-radius: var(--r-sm);
  box-shadow: 0 16px 38px rgba(38,44,49,0.07);
}
.reviews-grade {
  color: var(--charcoal);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}
.star-row {
  display: flex;
  align-items: center;
  gap: 4px;
}
.star-row::before {
  content: '★★★★★';
  color: #f6b900;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  line-height: 1;
}
.reviews-count {
  color: var(--charcoal-3);
  font-size: 0.9rem;
  font-weight: 800;
}
.reviews-source {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  color: rgba(29,37,45,0.48);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.reviews-source::before,
.review-topline::before {
  content: 'G';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: conic-gradient(from -45deg, #4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0 100%);
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.review-feed {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.review-card {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  min-height: 260px;
  padding: 1.15rem;
  background: var(--white);
  border: 1px solid rgba(26,30,18,0.12);
  border-radius: var(--r-sm);
  box-shadow: 0 14px 34px rgba(38,44,49,0.07);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.review-card:hover {
  border-color: rgba(170,204,0,0.45);
  box-shadow: 0 18px 42px rgba(38,44,49,0.11);
  transform: translateY(-2px);
}

.review-topline {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  color: rgba(29,37,45,0.44);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.review-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.review-author {
  color: var(--charcoal);
  font-size: 0.98rem;
  font-weight: 900;
}
.review-date {
  color: rgba(29,37,45,0.5);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}
.review-verify {
  color: rgba(29,37,45,0.46);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
}
.review-text {
  color: var(--charcoal);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
}

/* ─── COVERAGE ─── */
.coverage { background: var(--charcoal); padding-top: 7rem; }
.coverage .label { color: var(--lime); }
.coverage .label::before { background: var(--lime); }
.coverage .section-title { color: var(--white); }
.coverage .section-sub { color: var(--muted); }

.coverage-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.pill {
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 800;
  background: rgba(170,204,0,0.1);
  border: 2px solid rgba(170,204,0,0.25);
  color: var(--lime);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s;
}
.pill:hover { background: rgba(170,204,0,0.2); border-color: var(--lime); }

/* ─── FAQ ─── */
.faq { background: var(--off-white); }
.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.faq-item {
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid rgba(26,30,18,0.12);
  border-radius: var(--r-sm);
  box-shadow: 0 14px 34px rgba(38,44,49,0.06);
}
.faq-item h3 {
  color: var(--charcoal);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 0.55rem;
}
.faq-item p {
  color: var(--mid);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.55;
}

/* ─── CONTACT ─── */
.contact { background: var(--charcoal-2); }
.contact .label { color: var(--lime); }
.contact .label::before { background: var(--lime); }
.contact .section-title { color: var(--white); }
.contact .section-sub { color: var(--muted); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(170,204,0,0.1);
}
.contact-line:last-child { border-bottom: none; }

.contact-line-icon {
  width: 40px; height: 40px;
  background: rgba(170,204,0,0.12);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-line-icon svg {
  width: 18px; height: 18px;
  stroke: var(--lime);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-line-body strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 0.25rem;
}
.contact-line-body a, .contact-line-body span {
  font-size: 1rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
}
.contact-line-body a:hover { color: var(--lime); }

.contact-cta-box {
  background: var(--lime);
  border-radius: var(--r);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.contact-cta-box::before {
  content: '';
  position: absolute;
  right: -10px; top: -10px;
  width: 7rem;
  height: 7rem;
  border: 1rem solid var(--charcoal);
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
}

.contact-cta-box h4 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.contact-cta-box p {
  font-size: 0.95rem;
  color: var(--charcoal-3);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.contact-cta-box a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--charcoal);
  color: var(--lime);
  padding: 1rem 2rem;
  border-radius: 100px;
  font-weight: 900;
  font-size: 1.05rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
}
.contact-cta-box a:hover { background: var(--ink); transform: translateY(-2px); }

/* ─── FOOTER ─── */
footer {
  background: var(--ink);
  padding: 2.5rem 2rem;
  border-top: 3px solid var(--lime);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.footer-logo img {
  height: 46px;
  width: auto;
  border-radius: 6px;
}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1;
}
.footer-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  font-weight: 400;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .credentials { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .review-feed { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .faq-list { grid-template-columns: 1fr; }
}

@media (max-width: 1180px) {
  nav { padding: 0 1rem; }
  .nav-inner {
    height: 70px;
    position: relative;
  }
  .nav-logo {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 58px);
  }
  .nav-logo img { height: 42px; }
  .nav-logo-text {
    overflow: hidden;
    font-size: 1.1rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .nav-logo-text small { display: none; }
  .menu-toggle {
    position: absolute;
    top: 50%;
    right: 0;
    display: flex;
    flex: 0 0 46px;
    transform: translateY(-50%);
  }
  .nav-links {
    position: absolute;
    top: calc(100% + 0.7rem);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 0.55rem;
    background: rgba(38,44,49,0.96);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: var(--r-sm);
    box-shadow: 0 20px 44px rgba(0,0,0,0.32);
    backdrop-filter: blur(16px) saturate(130%);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }
  .menu-open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-links li { list-style: none; }
  .nav-links a {
    display: block;
    padding: 0.88rem 0.9rem;
    border-radius: 6px;
  }
  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: rgba(255,255,255,0.1);
    outline: none;
  }
  .nav-links .nav-cta {
    text-align: center;
    margin-top: 0.35rem;
    padding: 0.82rem 1rem;
  }
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .cat-btn {
    padding: 0.42rem 0.85rem;
    font-size: 0.72rem;
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.55rem;
  }
  .gallery-item {
    aspect-ratio: 1;
  }
  .gallery-more-btn:not([hidden]) {
    display: block;
  }
  .lightbox { padding: 4.5rem 1rem 1.5rem; }
  .lightbox-image { max-height: calc(100vh - 10rem); }
  .lightbox-btn { width: 2.6rem; height: 2.6rem; font-size: 1.7rem; }
  .lightbox-prev { left: 0.75rem; }
  .lightbox-next { right: 0.75rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .credentials { grid-template-columns: 1fr; }
  .reviews-widget { margin-top: 2rem; }
  .reviews-summary { padding: 1.4rem 1rem; }
  .review-feed { grid-template-columns: 1fr; }
  .review-card { padding: 1rem; }
  .review-meta {
    display: grid;
    gap: 0.15rem;
  }
  .review-date { white-space: normal; }
}
