/* =========================================================================
   Excel Outdoor Lighting Co. — Design System
   "Beautifully Lit, Every Night"
   ========================================================================= */

:root {
  /* ===== Excel Outdoor Lighting brand system =====
     Deep night-navy is the brand; warm AMBER GLOW is the accent (CTAs / light);
     warm cream/sand neutrals; Fraunces headings + Inter body.
     The palette evokes a beautifully lit property after dark. */

  /* Canonical brand tokens */
  --color-primary:       #14294A;   /* deep night navy */
  --color-primary-dark:  #0B182C;   /* near-black navy (dark grounds) */
  --color-primary-light: #2C4A78;
  --color-secondary:      #E7D6B2;   /* warm sand */
  --color-secondary-dark: #C9B487;
  --color-secondary-light:#F3E9D3;
  --color-accent:      #E39A2B;   /* warm amber glow — CTA / highlight */
  --color-accent-dark: #C27E18;
  --color-ink:     #16202B;
  --color-muted:   #5C6773;
  --color-bg:      #FFFFFF;
  --color-surface: #F6F3EC;       /* warm cream */
  --color-border:  #E2DDD1;       /* warm hairline */
  --color-overlay: rgba(11, 24, 44, 0.60);

  /* --- Legacy variable names remapped onto the brand (so components inherit it) --- */
  --green-800: var(--color-primary-dark);
  --green-700: var(--color-primary);        /* links / headings */
  --green-600: var(--color-primary);        /* icons, eyebrows */
  --green-500: var(--color-primary-light);
  --green-400: #E9B96B;                      /* warm glow accent on dark grounds */
  --green-200: #C6D2E2;
  --green-100: #E9EDF4;                      /* icon tile / soft navy */
  --green-50:  #EFF2F7;

  /* Amber accent aliases */
  --accent: var(--color-accent);
  --accent-dark: var(--color-accent-dark);

  /* Sister brand (Excel Pest) cross-links */
  --navy-700: #0B2444;
  --navy-600: #10315B;
  --navy-400: #6f9fd4;
  --navy-soft: #E9EEF5;

  --gold-500: #E39A2B;    /* review stars (warm amber) */

  /* Neutrals */
  --ink:   var(--color-ink);
  --ink-2: #33404E;
  --muted: var(--color-muted);
  --line:  var(--color-border);
  --bg:    #FFFFFF;
  --bg-soft: var(--color-surface);
  --white: #FFFFFF;

  /* Deep-navy dark grounds (hero / footer / CTA / dark sections) */
  --dark:      var(--color-primary-dark);
  --dark-2:    #13243B;
  --dark-line: #2A3D57;
  --dark-ink:  #E8EDF4;
  --dark-muted:#9FB0C5;

  --shadow-sm: 0 1px 2px rgba(31, 42, 33, .07);
  --shadow:    0 4px 16px rgba(31, 42, 33, .10);
  --shadow-lg: 0 14px 36px rgba(31, 42, 33, .14);

  --radius: 12px;
  --radius-lg: 16px;
  --radius-sm: 8px;
  --maxw: 1160px;
  --font-sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
}

/* ------------------------------------------------------------------ reset */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-700); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; letter-spacing: -.01em; color: var(--color-primary); text-wrap: balance; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); margin: 0 0 .5em; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin: 0 0 .6em; }
h3 { font-size: 1.25rem; margin: 0 0 .4em; }
p  { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.2em; }
li { margin-bottom: .4em; }

/* --------------------------------------------------------------- layout */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 64px 0; }
.section--soft { background: #F7F4EC; }
.section--dark { background: var(--dark); color: var(--dark-ink); }
.section--dark h2, .section--dark h3 { color: #fff; }
/* Excel Pest (sister brand) sections carry the brief's navy coding */
.section--pest { background: #101a2b; color: var(--dark-ink); }
.section--pest h2, .section--pest h3 { color: #fff; }
.section--pest .eyebrow { color: var(--navy-400); }
.narrow { max-width: 760px; }
.center { text-align: center; }
.eyebrow {
  display: inline-block; letter-spacing: .16em; text-transform: uppercase;
  font-size: .72rem; font-weight: 700; color: var(--green-600); margin: 0 0 14px;
}
.section--dark .eyebrow { color: var(--color-secondary); }
.lead { font-size: 1.12rem; color: var(--ink-2); line-height: 1.65; }
.muted { color: var(--muted); }

/* --------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px; border-radius: var(--radius-sm); font-weight: 600; font-size: 1rem;
  border: 2px solid transparent; cursor: pointer; transition: all .18s ease;
  text-decoration: none; line-height: 1; white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex: 0 0 auto; }
/* Primary CTA = terracotta accent (brief rule 1.1.1: accent for CTAs only) */
.btn--primary { background: var(--color-accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--color-accent-dark); text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--ghost { background: transparent; color: var(--color-primary); border-color: var(--color-secondary-dark); }
.btn--ghost:hover { background: var(--color-secondary-light); text-decoration: none; }
.btn--white { background: #fff; color: var(--color-primary); }
.btn--white:hover { background: var(--color-secondary-light); text-decoration: none; transform: translateY(-1px); }
.btn--lg { padding: 18px 34px; font-size: 1.06rem; }
:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 3px; }

/* --------------------------------------------------------------- header */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.94);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand__mark { width: 40px; height: 40px; flex: 0 0 auto; }
.brand__mark--glow {
  display: inline-flex; align-items: center; justify-content: center; border-radius: 11px;
  background:
    radial-gradient(circle at 50% 38%, rgba(233,176,92,.34), rgba(20,41,74,0) 70%),
    linear-gradient(160deg, #14294A, #0B182C);
  box-shadow: 0 2px 8px rgba(11,24,44,.18);
}
.brand__mark--glow svg { width: 22px; height: 22px; stroke: var(--green-400); }
.brand__co { color: var(--muted); font-weight: 600; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; color: var(--color-primary); letter-spacing: -.01em; white-space: nowrap; }
.brand__tag  { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
@media (max-width: 380px) { .brand__name, .brand__tag { white-space: normal; } }
.nav__links { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  padding: 9px 12px; border-radius: 9px; color: var(--ink-2); font-weight: 600; font-size: .95rem;
  white-space: nowrap;
}
.nav__links a:hover { background: var(--green-50); color: var(--green-800); text-decoration: none; }

/* Services hover dropdown (mega-menu) */
.site-header .wrap { position: relative; }
.has-dropdown { position: static; }
.caret { font-size: .68em; opacity: .8; }
.dropdown {
  position: absolute; top: 100%; left: 0; z-index: 60;
  display: grid; grid-template-columns: repeat(5, 178px); align-items: start; gap: 4px 20px;
  background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--color-accent);
  border-radius: 0 0 14px 14px; box-shadow: var(--shadow-lg); padding: 22px 26px;
  max-width: calc(100vw - 32px);
  /* hidden by default; stays interactive for a beat after hover-out so it is easy to click into */
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .16s ease, transform .16s ease, visibility 0s linear .35s;
}
/* invisible hover bridge so the menu stays open while the cursor crosses the gap to it */
.dropdown::before { content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px; }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: none;
  transition: opacity .16s ease, transform .16s ease, visibility 0s;
}
.dropdown__col { display: flex; flex-direction: column; min-width: 0; }
.dropdown .dropdown__head {
  display: block; font-family: var(--font-display); font-weight: 700; color: var(--color-primary);
  font-size: .95rem; padding: 0 0 8px; margin-bottom: 6px; border-bottom: 1px solid var(--line);
  white-space: normal;
}
.dropdown .dropdown__link {
  display: block; color: var(--ink-2); font-size: .875rem; padding: 5px 0; font-weight: 500;
  line-height: 1.28; white-space: normal;
}
.dropdown a:hover { color: var(--color-accent); background: none; text-decoration: none; }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__phone { font-weight: 700; color: var(--color-accent); white-space: nowrap; }
.nav__phone:hover { text-decoration: none; color: var(--color-accent-dark); }
.nav__toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px; border-radius: 8px;
}
.nav__call-mobile { display: none; }
.mobile-actions { display: none; }
.nav__toggle svg { width: 26px; height: 26px; stroke: var(--ink); }

@media (max-width: 1280px) {
  .nav__links {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch;
    background: #fff; border-bottom: 1px solid var(--line); padding: 12px 16px 20px;
    box-shadow: var(--shadow); transform: translateY(-130%); transition: transform .25s ease;
    gap: 2px;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { padding: 13px; font-size: 1.05rem; }
  .nav__call-mobile { display: block; }
  .nav__call-mobile a { color: var(--color-accent); font-weight: 800; }
  .dropdown { position: static; display: grid !important; grid-template-columns: 1fr; min-width: 0; box-shadow: none; border: 0; border-radius: 0; padding: 2px 0 8px 14px; gap: 0; opacity: 1 !important; visibility: visible !important; transform: none !important; }
  .dropdown__head { padding-top: 8px; }
  .caret { display: none; }
  .mobile-actions { display: grid; grid-template-columns: 1fr 1fr; position: fixed; inset: auto 0 0; z-index: 60; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -5px 18px rgba(31,42,33,.12); }
  .mobile-actions a { min-height: 56px; display: flex; align-items: center; justify-content: center; gap: 8px; font-weight: 800; color: var(--color-primary); }
  .mobile-actions a + a { background: var(--color-accent); color: #fff; }
  .mobile-actions a svg, .nav__call-mobile a svg { width: 20px; height: 20px; flex: 0 0 auto; }
  body { padding-bottom: 56px; }
  .nav__toggle { display: inline-flex; }
  .nav__phone--desktop { display: none; }
}

/* --------------------------------------------------------------- hero */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: var(--dark);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 86% 16%, rgba(233, 176, 92, .34), transparent 32%),
    radial-gradient(circle at 22% 88%, rgba(227, 154, 43, .18), transparent 40%),
    linear-gradient(116deg, #0B182C 0%, #14294A 55%, #1D3660 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,.08), transparent 38%, rgba(0,0,0,.16));
}
.hero__inner { position: relative; z-index: 1; padding: 82px 0 70px; max-width: 680px; }
.hero h1 { color: #fff; }
.hero__tagline {
  letter-spacing: .16em; text-transform: uppercase; font-size: .74rem; font-weight: 700;
  color: var(--color-secondary); margin: 0 0 18px;
}
.hero__sub { font-size: 1.2rem; color: var(--dark-ink); margin-bottom: 32px; max-width: 60ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 12px 20px; font-size: .88rem; color: var(--dark-ink); }
.hero__trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero__trust b { color: #fff; }
.hero__trust svg { width: 19px; height: 19px; flex: 0 0 auto; color: var(--green-400); }
/* Compact inner-page header — about a quarter of the home hero's height */
.hero--page .hero__inner { padding: 20px 0 18px; max-width: 820px; }
.hero--page h1 { font-size: clamp(1.5rem, 3vw, 2.05rem); margin-bottom: .3em; }
.hero--page .hero__tagline { margin-bottom: 8px; }
.hero--page .hero__sub { font-size: 1rem; margin-bottom: 14px; max-width: 68ch; }
.hero--page .hero__actions { margin-bottom: 4px; }

/* ------------------------------------------------------------ trust bar */
.trustbar { background: #fff; color: var(--ink-2); border-bottom: 1px solid var(--line); }
.trustbar__row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px;
  padding: 16px 0; font-size: .92rem; text-align: center;
}
.trustbar__row span { display: inline-flex; align-items: center; gap: 8px; }
.trustbar__row b { color: var(--green-800); }
.trustbar svg { width: 18px; height: 18px; color: var(--green-600); }

/* --------------------------------------------------------------- grids */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 920px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* Centered variant — trailing/orphan cards in the last row stay centered */
.grid--center { display: flex; flex-wrap: wrap; justify-content: center; }
.grid--center > * { flex: 0 1 calc((100% - 44px) / 3); max-width: calc((100% - 44px) / 3); }
@media (max-width: 920px) { .grid--center > * { flex-basis: calc((100% - 22px) / 2); max-width: calc((100% - 22px) / 2); } }
@media (max-width: 640px) { .grid--center > * { flex-basis: 100%; max-width: 100%; } }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 30px; } }

/* --------------------------------------------------------------- cards */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease; overflow: hidden;
}
.card--link:hover { transform: translateY(-3px); box-shadow: var(--shadow); text-decoration: none; }
.card__photo { height: 172px; overflow: hidden; margin: -28px -28px 22px; background: var(--green-100); position: relative; }
.card__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(11,24,44,.18), rgba(11,24,44,.02)); pointer-events: none; }
.card__photo .media__image { border-radius: var(--radius) var(--radius) 0 0; filter: saturate(.78) contrast(.95) brightness(.93); }
.card__body { min-height: 1px; }
.card__icon {
  width: 52px; height: 52px; border-radius: 13px; background: var(--green-100);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.card__icon svg { width: 28px; height: 28px; stroke: var(--green-700); }
.card__icon--lg { width: 64px; height: 64px; border-radius: 16px; margin-bottom: 20px; }
.card__icon--lg svg { width: 34px; height: 34px; }
.card--accent { background: var(--green-50, #F1F6EE); border-color: var(--green-200, #cfe0c6); display: flex; flex-direction: column; align-items: flex-start; }
.card--accent .btn { width: 100%; justify-content: center; }
.card h3 { color: var(--green-800); }
.card__more { font-weight: 700; color: var(--green-600); font-size: .95rem; display: inline-flex; align-items: center; gap: 6px; }
.card--link:hover .card__more { gap: 10px; }

/* ------------------------------------------------------------- feature img */
.media {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  aspect-ratio: 4 / 3; position: relative;
  background: linear-gradient(135deg, var(--green-500), var(--green-800));
}
.media--tall { aspect-ratio: 3 / 4; }
.media__image { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform .45s ease; }
.media:hover .media__image { transform: scale(1.035); }
.card--link:hover .card__photo .media__image { transform: scale(1.06); }

/* Scroll-reveal animation (only active when JS runs; content always visible without JS) */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .7s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal, .js .reveal.in { opacity: 1 !important; transform: none !important; transition: none !important; } }
.media__leaf { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: .35; }
.media__leaf svg { width: 46%; height: 46%; stroke: #fff; fill: none; }
.media .scene { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Night-glow panel — stands in for a hero photo with the brand's lighting feel */
.glowpanel {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 32px; color: #fff; box-shadow: var(--shadow-lg);
  background:
    radial-gradient(circle at 50% 32%, rgba(233, 176, 92, .40), transparent 46%),
    radial-gradient(circle at 82% 84%, rgba(227, 154, 43, .18), transparent 40%),
    linear-gradient(160deg, #14294A 0%, #0B182C 100%);
  border: 1px solid rgba(233, 185, 107, .18);
}
.glowpanel--alt { aspect-ratio: 4 / 3; }
.glowpanel__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 76px; height: 76px; border-radius: 50%; margin-bottom: 18px;
  background: radial-gradient(circle, rgba(233,176,92,.30), rgba(233,176,92,0) 70%);
}
.glowpanel__icon svg { width: 40px; height: 40px; stroke: var(--green-400); }
.glowpanel__title { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; margin: 0 0 8px; color: #fff; }
.glowpanel__sub { margin: 0; font-size: .92rem; letter-spacing: .04em; color: var(--green-400); text-transform: none; }
.media__label {
  position: absolute; left: 14px; bottom: 14px; background: rgba(20,48,26,.82);
  color: #fff; font-size: .76rem; font-weight: 700; letter-spacing: .02em; padding: 6px 10px; border-radius: 6px;
}

/* --------------------------------------------------------------- stats */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2,1fr); } }
.stat { text-align: center; padding: 24px 14px; }
.stat__n { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; color: var(--green-600); letter-spacing: -.03em; line-height: 1; }
.section--dark .stat__n { color: var(--green-400); }
.stat__l { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-top: 8px; }
.section--dark .stat__l { color: #a9c0a2; }

/* ------------------------------------------------------------ checklist */
.checks { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.checks li { display: flex; align-items: flex-start; gap: 12px; margin: 0; }
.checks svg { width: 22px; height: 22px; flex: 0 0 auto; margin-top: 3px; stroke: var(--green-600); }

/* -------------------------------------------------------------- reviews */
.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 30px; box-shadow: var(--shadow-sm);
}
.review__stars { color: var(--gold-500); letter-spacing: 2px; font-size: 1.1rem; margin-bottom: 12px; }
.review__quote { font-size: 1.12rem; color: var(--ink-2); font-style: italic; margin-bottom: 16px; }
.review__author { font-weight: 800; color: var(--green-800); }
.review__context { font-size: .88rem; color: var(--muted); }

/* Scrolling reviews marquee */
.reviews-marquee { overflow: hidden; position: relative; padding: 8px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.reviews-track { display: flex; gap: 22px; width: max-content; animation: reviews-scroll 44s linear infinite; }
.reviews-marquee:hover .reviews-track { animation-play-state: paused; }
.review-card { flex: 0 0 min(440px, 84vw); background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 28px; box-shadow: var(--shadow-sm); margin: 0; }
.review-card .review__stars { color: var(--gold-500); letter-spacing: 2px; }
.review-card blockquote { font-size: 1.04rem; color: var(--ink-2); font-style: italic; margin: 12px 0 16px; border: 0; padding: 0; }
.review-card .review__author { font-weight: 800; color: var(--color-primary); }
@keyframes reviews-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .reviews-track { animation: none; } .reviews-marquee { overflow-x: auto; } }

/* -------------------------------------------------------------- CTA band */
.cta-band {
  position: relative; overflow: hidden;
  background: var(--dark);
  color: #fff; border-radius: var(--radius-lg); padding: 56px 52px; text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(80% 140% at 15% 0%, rgba(63,125,58,.34) 0%, rgba(63,125,58,0) 55%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--dark-ink); font-size: 1.15rem; max-width: 56ch; margin: 0 auto 28px; }
.cta-band .btn { margin: 6px; }

/* ------------------------------------------------ brand accents (brief) */
/* Navy = Excel Pest sister brand, echoing the discovery brief's coding */
.btn--navy { background: var(--navy-600); color: #fff; }
.btn--navy:hover { background: var(--navy-700); text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow); }
.chip--navy { background: var(--navy-soft); border-color: #cfe0f3; color: var(--navy-700); }
/* Thin colored top bar on cards — the brief's card signature */
.brandbar { height: 4px; border-radius: 4px 4px 0 0; margin: -28px -28px 20px; }
.brandbar--turf { background: var(--green-600); }
.brandbar--pest { background: var(--navy-600); }

/* -------------------------------------------------------------- chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; list-style: none; margin: 0; }
.chip {
  background: var(--green-50); border: 1px solid var(--green-200); color: var(--green-800);
  padding: 8px 15px; border-radius: 100px; font-size: .92rem; font-weight: 600;
}
.chip--strong { background: var(--green-600); color: #fff; border-color: var(--green-600); }

/* -------------------------------------------------------------- badges */
.badges { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.badge {
  display: inline-flex; align-items: center; gap: 9px; background: #fff;
  border: 1px solid var(--line); border-radius: 100px; padding: 9px 16px;
  font-weight: 700; font-size: .9rem; color: var(--ink-2); box-shadow: var(--shadow-sm);
}
.badge svg { width: 18px; height: 18px; stroke: var(--green-600); }

/* -------------------------------------------------------------- FAQ */
.faq { max-width: 800px; margin: 0 auto; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 4px 22px; margin-bottom: 12px; box-shadow: var(--shadow-sm);
}
.faq summary {
  list-style: none; cursor: pointer; padding: 18px 34px 18px 0; position: relative;
  font-weight: 700; color: var(--green-800); font-size: 1.06rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 2px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 400; color: var(--green-600); line-height: 1;
}
.faq details[open] summary::after { content: "\2013"; }
.faq details[open] summary { padding-bottom: 6px; }
.faq p { margin: 0 0 18px; color: var(--ink-2); }

/* --------------------------------------------------------- process steps */
.process { counter-reset: step; }
.process__item { position: relative; padding-top: 8px; }
.process__num {
  width: 46px; height: 46px; border-radius: 50%; background: var(--green-600); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.2rem;
  margin-bottom: 16px; box-shadow: var(--shadow-sm);
}
.process__item h3 { color: var(--green-800); }

/* -------------------------------------------------------------- prose */
.prose { max-width: 760px; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.3em; color: var(--green-800); }
.prose ul { padding-left: 1.3em; }
.prose__body { margin-top: 2em; padding-top: 1.6em; border-top: 1px solid var(--line, #e6e0d6); }
.prose__body h3:first-child { margin-top: 0; }
.prose__body p { color: var(--ink-2); line-height: 1.75; }

/* -------------------------------------------------------- breadcrumbs */
.crumbs { font-size: .86rem; color: var(--muted); padding: 18px 0 0; }
.crumbs a { color: var(--green-700); }
.crumbs span { margin: 0 7px; opacity: .6; }

/* -------------------------------------------------------------- forms */
.form { display: grid; gap: 16px; }
.form label { font-weight: 700; font-size: .92rem; color: var(--ink-2); display: block; margin-bottom: 6px; }
.form input, .form select, .form textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 11px;
  font: inherit; font-size: 1rem; background: #fff; color: var(--ink);
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--green-500); box-shadow: 0 0 0 3px var(--green-100);
}
.form textarea { min-height: 130px; resize: vertical; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }
.form__note { font-size: .85rem; color: var(--muted); }
.form__status { min-height: 1.25em; margin: 10px 0 0; color: var(--color-primary); font-weight: 700; }

/* -------------------------------------------------------------- footer */
.site-footer { background: var(--dark); color: var(--dark-muted); padding: 40px 0 20px; font-size: .88rem; border-top: 3px solid var(--green-600); }
.site-footer a { color: var(--dark-ink); }
.site-footer a:hover { color: #fff; }
.site-footer p { margin-bottom: .6em; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.1fr 1fr; gap: 22px 30px; margin-bottom: 26px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 22px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: #fff; font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; margin: 0 0 10px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 6px; }
.footer-grid .footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer__brand .brand__name { color: #fff; }
.footer__brand .brand__tag { color: var(--green-400); }
.footer__legal {
  border-top: 1px solid var(--dark-line); padding-top: 22px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; color: var(--dark-muted); font-size: .85rem;
}

/* ------------------------------------------------------------- utility */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; } .mb-2 { margin-bottom: 2rem; }
.stack > * + * { margin-top: 1rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; background: var(--green-700); color: #fff;
  padding: 10px 16px; border-radius: 8px; z-index: 100; transition: top .2s;
}
.skip-link:focus { top: 12px; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}


/* Photo-led editorial refinements */
.hero--page::before { background-position: center; }
@media (max-width: 700px) {
  .hero::before { background: linear-gradient(120deg, #0B182C, #1D3660); }
  .hero__inner { padding: 64px 0 58px; }
  .hero__trust { display: grid; gap: 10px; }
  .card__photo { height: 190px; }
}


/* Purpose-built visual panels prevent recycled stock photography from weakening the work. */
.feature-panel, .service-visual {
  min-height: 300px; border-radius: var(--radius-lg); padding: 34px;
  color: #fff; display: flex; flex-direction: column; justify-content: flex-end;
  background:
    radial-gradient(circle at 82% 16%, rgba(216, 201, 174, .32), transparent 26%),
    linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  box-shadow: var(--shadow);
}
.feature-panel--terracotta {
  background:
    radial-gradient(circle at 80% 18%, rgba(255,255,255,.13), transparent 28%),
    linear-gradient(135deg, #8e4021, #b4562c);
}
.feature-panel__kicker {
  color: var(--color-secondary); font-size: .73rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .14em; margin-bottom: 12px;
}
.feature-panel strong { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.4rem); line-height: 1.13; max-width: 18ch; }
.feature-panel p { color: rgba(255,255,255,.82); max-width: 42ch; margin: 16px 0 0; }
.service-visual { min-height: 360px; align-items: flex-start; gap: 16px; }
.service-visual__icon { width: 76px; height: 76px; border-radius: 20px; display: grid; place-items: center; background: rgba(255,255,255,.13); }
.service-visual__icon svg { width: 42px; height: 42px; stroke: #fff; }
.service-visual > span { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; }


/* Original brand lockup: keep the business’s established wordmark prominent and uncluttered. */
.brand__logo { width: 176px; height: auto; max-height: 58px; object-fit: contain; object-position: left center; }
@media (max-width: 520px) { .brand__logo { width: 142px; max-height: 50px; } }


/* Original, non-repeating project photography */
.hero { position: relative; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,24,44,.92) 0%, rgba(11,24,44,.72) 46%, rgba(11,24,44,.30) 100%); }
.hero__media .hero__image { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.82) contrast(.98) brightness(.78); }
.hero > .wrap { position: relative; z-index: 1; }
@media (max-width: 700px) { .hero__media::after { background: linear-gradient(120deg, rgba(11,24,44,.94), rgba(11,24,44,.72)); } }


/* Approved Excel Outdoor Lighting project video */
.video-frame { overflow: hidden; border-radius: var(--radius-lg); background: #0B182C; box-shadow: var(--shadow-lg); aspect-ratio: 16 / 9; }
.video-frame video { display: block; width: 100%; height: 100%; object-fit: cover; background: #0B182C; }

/* =====================================================================
   Homepage below-hero layout — editorial rows, credentials, spotlight
   ===================================================================== */
/* Credentials row */
.creds { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 42px; }
.cred { text-align: center; padding: 24px 14px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.cred__n { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; color: var(--color-primary); }
.cred__l { display: block; font-size: .82rem; color: var(--muted); margin-top: 6px; }
@media (max-width: 720px) { .creds { grid-template-columns: repeat(2, 1fr); } }

/* Services as editorial rows with imagery */
.feature-rows { display: flex; flex-direction: column; }
.feature-row { display: grid; grid-template-columns: 230px 1fr auto; gap: 28px; align-items: center; padding: 24px 0; border-top: 1px solid var(--line); }
.feature-rows .feature-row:last-child { border-bottom: 1px solid var(--line); }
.feature-row__img { display: block; width: 230px; height: 150px; border-radius: var(--radius); overflow: hidden; position: relative; background: var(--green-100); }
.feature-row__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.feature-row__img:hover img { transform: scale(1.05); }
.feature-row__num { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--color-accent); letter-spacing: .05em; }
.feature-row__body h3 { margin: 2px 0 4px; }
.feature-row__body h3 a { color: var(--green-800); }
.feature-row__body h3 a:hover { color: var(--color-accent); text-decoration: none; }
.feature-row__subs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.feature-row__subs .chip { font-size: .82rem; padding: 5px 12px; }
.feature-row__cta { white-space: nowrap; }
@media (max-width: 900px) {
  .feature-row { grid-template-columns: 180px 1fr; }
  .feature-row__img { width: 180px; height: 130px; }
  .feature-row__cta { grid-column: 1 / -1; justify-self: start; }
}
@media (max-width: 560px) {
  .feature-row { grid-template-columns: 1fr; }
  .feature-row__img { width: 100%; height: 190px; }
}

/* Full-bleed spotlight band */
.spotlight { position: relative; overflow: hidden; padding: 84px 0; color: #fff; }
.spotlight__media { position: absolute; inset: 0; z-index: 0; }
.spotlight__media img { width: 100%; height: 100%; object-fit: cover; }
.spotlight::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(11,24,44,.9) 0%, rgba(11,24,44,.74) 100%); }
.spotlight__inner { position: relative; z-index: 2; margin: 0 auto; }
.spotlight h2 { color: #fff; }
.pill-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 24px; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 100px; border: 1px solid rgba(255,255,255,.24); background: rgba(255,255,255,.08); color: #fff; font-size: .9rem; font-weight: 600; }
.pill svg { width: 18px; height: 18px; stroke: var(--green-400); }

/* Horizontal process */
.process-line { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.process-line__step { text-align: center; }
.process-line__num { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; background: var(--color-primary); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; margin-bottom: 14px; }
@media (max-width: 720px) { .process-line { grid-template-columns: 1fr; gap: 26px; } }

/* Static reviews grid */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.reviews-grid .review-card { flex: none; width: auto; margin: 0; }
@media (max-width: 860px) { .reviews-grid { grid-template-columns: 1fr; } }
