/* ═══════════════════════════════════════════════════════════════
   Finesse Energy & Electrical
   Red #D94F3D · Cream #EDE0BE · Dark #1E1E1E
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Barlow:wght@400;500;600&display=swap');

/* ── Custom properties ──────────────────────────────────────── */
:root {
  --red:        #D94F3D;
  --red-dark:   #b83a2b;
  --red-light:  #e8705f;
  --cream:      #EDE0BE;
  --cream-dark: #d9cc9e;
  --dark:       #1a1a1a;
  --dark-mid:   #2a2a2a;
  --mid:        #666;
  --light:      #f7f5f0;
  --white:      #fff;

  --font-head: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  --font-body: 'Barlow', system-ui, -apple-system, sans-serif;

  --radius-sm: 3px;
  --radius:    8px;
  --radius-lg: 14px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.10);
  --shadow:    0 4px 20px rgba(0,0,0,.14);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.18);

  --container: 1200px;
  --gap: clamp(1rem, 2.5vw, 1.75rem);
  --header-h: 80px;
  --trans: .2s ease;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--dark);
}

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

/* ── Section base ───────────────────────────────────────────── */
.section        { padding-block: clamp(5rem, 9vw, 8rem); }
.section--light { background: var(--light); }
.section--dark  { background: var(--dark);  color: var(--white); }
.section--red   { background: var(--red);   color: var(--white); }
.section--cream { background: var(--cream); }

.section-header { text-align: center; max-width: 700px; margin-inline: auto; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-header--light .section-title   { color: var(--white); }
.section-header--light .section-subtitle { color: rgba(255,255,255,.7); }

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .6rem;
}
.section--dark  .section-label { color: var(--cream); }

.section-title   { font-size: clamp(2rem, 4vw, 3.2rem); color: var(--dark); margin-bottom: .6rem; }
.section-subtitle { font-size: 1.05rem; color: var(--mid); font-family: var(--font-body); font-weight: 400; text-transform: none; letter-spacing: 0; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85em 2em;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--trans), color var(--trans), border-color var(--trans), transform var(--trans), box-shadow var(--trans);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; box-shadow: var(--shadow); }
.btn svg { width: 1.1em; height: 1.1em; flex-shrink: 0; }
.btn-lg { padding: 1em 2.5em; font-size: 1.05rem; }

.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); color: var(--white); }

.btn-cream { background: var(--cream); color: var(--dark); border-color: var(--cream); }
.btn-cream:hover { background: var(--cream-dark); border-color: var(--cream-dark); color: var(--dark); }

.btn-dark { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-dark:hover { background: var(--dark-mid); border-color: var(--dark-mid); color: var(--white); }

.btn-outline { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline:hover { background: var(--red); color: var(--white); }

.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: var(--white); color: var(--white); }

/* ── Header ─────────────────────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 200; transition: transform .3s ease; }

/* Top bar */
.header-topbar {
  background: var(--red);
  padding: .4rem 0;
}
.header-topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .82rem;
}
.topbar-left  { display: flex; align-items: center; gap: 1.5rem; }
.topbar-right { display: flex; align-items: center; gap: 1.5rem; }
.topbar-label { color: rgba(255,255,255,.9); display: flex; align-items: center; gap: .4rem; }
.topbar-label svg { width: .9rem; height: .9rem; }
.header-topbar .phone-link { color: var(--white); font-weight: 700; font-family: var(--font-head); font-size: .9rem; letter-spacing: .04em; display: flex; align-items: center; gap: .35rem; }
.header-topbar .phone-link svg { width: .9rem; height: .9rem; }
.header-topbar a:hover { text-decoration: underline; }

/* Main header */
.header-main { background: var(--dark); }
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: var(--header-h);
}

/* Logo */
.site-logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.site-logo img { height: 56px; width: auto; }
.logo-text {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
  line-height: 1;
}
.logo-text span { color: var(--red); }

/* Nav */
.primary-nav { margin-left: auto; }
.nav-menu { display: flex; align-items: center; gap: 0; list-style: none; }
.nav-menu > li > a {
  display: block;
  padding: .55rem .8rem;
  color: rgba(255,255,255,.8);
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-bottom: 3px solid transparent;
  transition: color var(--trans), border-color var(--trans);
}
.nav-menu > li > a:hover,
.nav-menu .current-menu-item > a,
.nav-menu .current-page-ancestor > a {
  color: var(--white);
  border-bottom-color: var(--red);
  text-decoration: none;
}

/* Dropdown */
.nav-menu .menu-item-has-children { position: relative; }
.nav-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: var(--dark-mid);
  border-top: 3px solid var(--red);
  box-shadow: var(--shadow-lg);
  z-index: 100;
}
.nav-menu .menu-item-has-children:hover > .sub-menu,
.nav-menu .menu-item-has-children:focus-within > .sub-menu { display: block; }
.nav-menu .sub-menu a {
  display: block;
  padding: .65rem 1.1rem;
  color: rgba(255,255,255,.75);
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  border-bottom-width: 0;
}
.nav-menu .sub-menu li:not(:last-child) a { border-bottom-width: 1px; }
.nav-menu .sub-menu a:hover { color: var(--cream); background: rgba(255,255,255,.05); text-decoration: none; }

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; margin-left: 1rem; }

/* Nav toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--white); padding: .4rem; }
.nav-toggle svg { width: 1.6rem; height: 1.6rem; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu  { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* Scroll states */
.header--hidden { transform: translateY(-100%); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--dark);
  background-image: var(--hero-bg, none);
  background-size: cover;
  background-position: center 30%;
  color: var(--white);
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(20,20,20,.90) 0%, rgba(20,20,20,.75) 50%, rgba(20,20,20,.55) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-block: clamp(4rem, 8vw, 6rem);
  width: 100%;
}
.hero-content { max-width: 600px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(217,79,61,.2);
  border: 1px solid rgba(217,79,61,.5);
  color: var(--cream);
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35em .9em;
  border-radius: 99px;
  margin-bottom: 1.25rem;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}

.hero-heading {
  font-size: clamp(3rem, 7.5vw, 6rem);
  line-height: .98;
  letter-spacing: -.005em;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.hero-heading em { font-style: normal; color: var(--red); }

.hero-subheading {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.8);
  margin-bottom: 2rem;
  max-width: 500px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  line-height: 1.65;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; margin-bottom: 2rem; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.hero-trust-item svg { width: 1rem; height: 1rem; color: var(--red); flex-shrink: 0; }

/* Hero quote panel */
.hero-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  overflow: hidden;
}
.hero-panel-inner { padding: 2.25rem; }

.hero-panel-badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--light);
  flex-wrap: wrap;
}
.hero-panel-stars { display: flex; color: #F5A623; }
.hero-panel-stars svg { width: .95rem; height: .95rem; }
.hero-panel-badge strong { font-size: .85rem; color: var(--dark); }

.hero-panel-title {
  font-size: 1.75rem;
  color: var(--dark);
  margin-bottom: .25rem;
}
.hero-panel-sub {
  font-size: .85rem;
  color: var(--mid);
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.hero-panel-btn { width: 100%; justify-content: center; }

.hero-panel-divider {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-block: 1rem;
  color: #ccc;
  font-size: .8rem;
}
.hero-panel-divider::before,
.hero-panel-divider::after { content: ''; flex: 1; height: 1px; background: #e5e5e5; }
.hero-panel-divider span { font-family: var(--font-body); text-transform: none; letter-spacing: 0; }

.hero-panel-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  padding: .75rem;
  background: var(--light);
  border-radius: var(--radius-sm);
  color: var(--dark);
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: background var(--trans);
}
.hero-panel-phone:hover { background: var(--cream); text-decoration: none; color: var(--dark); }
.hero-panel-phone svg { width: 1.1rem; height: 1.1rem; color: var(--red); }

.hero-panel-features {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.hero-panel-features li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--mid);
  font-family: var(--font-body);
}
.hero-panel-features svg { width: .9rem; height: .9rem; color: var(--red); flex-shrink: 0; }

/* ── Stats ──────────────────────────────────────────────────── */
.stats-section { background: var(--dark); padding-block: 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 40px; height: 3px;
  background: var(--red);
  opacity: 0;
  transition: opacity var(--trans);
}
.stat-item:hover::before { opacity: 1; }

.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 1;
  letter-spacing: .02em;
}
.stat-label {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: .4rem;
}

/* ── Services ───────────────────────────────────────────────── */
.services-section { background: var(--light); }
.services-section .section-header { text-align: center; margin-inline: auto; }

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

.service-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0,0,0,.08);
  border-color: #e5e0d2;
}

.service-card-icon {
  width: 64px; height: 64px;
  background: var(--cream);
  color: var(--red);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: .5rem;
}
.service-card-icon svg { width: 1.75rem; height: 1.75rem; }

.service-card-image { display: none; } /* Images hidden on card view */

.service-card-title {
  font-size: 1.25rem;
  color: var(--dark);
  margin: 0;
}
.service-card-title a { color: inherit; }
.service-card-title a:hover { color: var(--red); text-decoration: none; }

.service-card-desc {
  font-size: .9rem;
  color: var(--mid);
  line-height: 1.6;
  flex: 1;
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: .25rem;
}
.service-card-link:hover { text-decoration: underline; }

/* ── Why Us ─────────────────────────────────────────────────── */
.whyus-section { background: var(--light); }
.whyus-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}
.whyus-image {
  position: relative;
}
.whyus-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.whyus-image-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--red);
  color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.whyus-image-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
}
.whyus-image-badge span {
  font-size: .8rem;
  color: rgba(255,255,255,.8);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-family: var(--font-head);
  font-weight: 600;
}

.whyus-content .section-label { display: block; }
.whyus-content .section-title { text-align: left; }
.whyus-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--mid);
  margin-bottom: 2rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.whyus-list { display: flex; flex-direction: column; gap: 1rem; }
.whyus-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--red);
}
.whyus-icon {
  flex-shrink: 0;
  width: 1.5rem; height: 1.5rem;
  color: var(--red);
  margin-top: .1rem;
}
.whyus-icon svg { width: 1.25rem; height: 1.25rem; }
.whyus-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .2rem;
}
.whyus-item p { font-size: .875rem; color: var(--mid); margin: 0; font-family: var(--font-body); font-weight: 400; text-transform: none; letter-spacing: 0; }

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials-section { background: var(--dark-mid); }
.testimonials-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin-bottom: 1rem;
}
.testimonials-badge .stars { display: flex; color: #F5A623; gap: 2px; }
.testimonials-badge .stars svg { width: 1rem; height: 1rem; }
.testimonials-badge span { font-family: var(--font-head); font-size: .9rem; font-weight: 700; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .08em; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.testimonial-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: background var(--trans), transform var(--trans);
}
.testimonial-card:hover { background: rgba(255,255,255,.08); transform: translateY(-3px); }

.testimonial-quote-icon { color: var(--red); }
.testimonial-quote-icon svg { width: 1.75rem; height: 1.75rem; }

.testimonial-stars { display: flex; gap: 2px; color: #F5A623; }
.testimonial-stars svg { width: .9rem; height: .9rem; }

.testimonial-content {
  color: rgba(255,255,255,.82);
  font-size: .95rem;
  font-style: italic;
  flex: 1;
  line-height: 1.7;
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.testimonial-footer { display: flex; align-items: center; gap: .75rem; margin-top: .5rem; padding-top: .75rem; border-top: 1px solid rgba(255,255,255,.08); }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--red); flex-shrink: 0; }
.testimonial-author { display: block; font-family: var(--font-head); font-style: normal; font-weight: 700; font-size: .9rem; color: var(--cream); text-transform: uppercase; letter-spacing: .04em; }
.testimonial-role { display: block; font-size: .78rem; color: rgba(255,255,255,.45); font-family: var(--font-body); text-transform: none; letter-spacing: 0; font-weight: 400; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-section { background: var(--white); }
.faq-container { max-width: 820px; }
.faq-container .section-title { text-align: left; margin-bottom: .5rem; }
.faq-container .section-subtitle { text-align: left; margin-bottom: 2.5rem; }

.faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid #e5e5e5; border-radius: var(--radius); overflow: hidden; }
.faq-item { border-bottom: 1px solid #e5e5e5; }
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  transition: background var(--trans), color var(--trans);
}
.faq-question:hover { background: var(--light); }
.faq-question[aria-expanded="true"] { background: var(--dark); color: var(--white); }

.faq-icon { flex-shrink: 0; transition: transform var(--trans); }
.faq-icon svg { width: 1.2rem; height: 1.2rem; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }

.faq-answer { overflow: hidden; }
.faq-answer-inner {
  padding: 1.25rem 1.5rem 1.5rem;
  color: var(--mid);
  font-size: .95rem;
  line-height: 1.7;
  border-top: 2px solid var(--red);
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.faq-answer[hidden] { display: none; }

/* ── CTA ────────────────────────────────────────────────────── */
.cta-section {
  background: var(--dark);
  background-image: var(--cta-bg, none);
  background-size: cover;
  background-position: center;
  position: relative;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20,20,20,.88);
}
.cta-section .container { position: relative; z-index: 1; }

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.cta-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: .5rem;
}
.cta-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  max-width: 520px;
  margin-bottom: 2rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.cta-actions { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }

/* ── Page banner ────────────────────────────────────────────── */
.page-banner { background: var(--dark); padding-block: clamp(3rem, 6vw, 5rem); }
.page-banner-title { color: var(--cream); font-size: clamp(2rem, 5vw, 3.5rem); }

/* ── Breadcrumbs ────────────────────────────────────────────── */
.breadcrumbs, .breadcrumbs a { font-size: .875rem; color: rgba(255,255,255,.45); font-family: var(--font-body); }
.breadcrumbs a:hover { color: var(--cream); }

/* ── Page body / entry ──────────────────────────────────────── */
.page-body { padding-block: clamp(2.5rem, 5vw, 5rem); }
.main-content { padding-block: clamp(2.5rem, 5vw, 5rem); }

.entry-content { max-width: 75ch; font-family: var(--font-body); }
.entry-content h2,.entry-content h3,.entry-content h4 { margin-top: 2rem; margin-bottom: .75rem; }
.entry-content p  { margin-bottom: 1rem; font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--dark); font-family: var(--font-body); }
.entry-content ul,.entry-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.entry-content li { margin-bottom: .4rem; font-family: var(--font-body); font-weight: 400; text-transform: none; letter-spacing: 0; }
.entry-content img { border-radius: var(--radius); margin-block: 1.5rem; }
.entry-content a { color: var(--red); }
.entry-content blockquote { border-left: 4px solid var(--red); padding: 1rem 1.5rem; background: var(--light); font-style: italic; color: var(--mid); margin-block: 1.5rem; }

/* ── Single post ────────────────────────────────────────────── */
.single-post { max-width: 800px; margin-inline: auto; padding-block: clamp(2.5rem, 5vw, 5rem); }
.entry-thumbnail img { width: 100%; border-radius: var(--radius); margin-bottom: 2rem; }
.entry-meta { font-size: .85rem; color: var(--mid); margin-bottom: .75rem; font-family: var(--font-body); }
.entry-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
.entry-footer { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid #e5e5e5; }
.post-navigation { display: flex; gap: 1rem; justify-content: space-between; margin-top: 1.5rem; font-size: .9rem; }
.post-navigation a { color: var(--red); font-weight: 600; font-family: var(--font-head); }

/* ── Blog grid ──────────────────────────────────────────────── */
.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: var(--gap); margin-bottom: 2rem; }
.post-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; display: flex; flex-direction: column; transition: transform var(--trans), box-shadow var(--trans); }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-card-image img { width: 100%; height: 220px; object-fit: cover; }
.post-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.post-meta { font-size: .8rem; color: var(--mid); margin-bottom: .5rem; font-family: var(--font-body); }
.post-card-title { font-size: 1.2rem; margin-bottom: .5rem; }
.post-card-title a { color: var(--dark); }
.post-card-title a:hover { color: var(--red); text-decoration: none; }
.post-card-excerpt { font-size: .9rem; color: var(--mid); flex: 1; margin-bottom: 1rem; font-family: var(--font-body); font-weight: 400; text-transform: none; letter-spacing: 0; }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer { background: var(--dark); color: rgba(255,255,255,.65); }
.footer-top { padding-block: clamp(3rem, 5vw, 5rem); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
}
.footer-brand .logo-text { color: var(--white); }
.footer-tagline { font-size: .9rem; color: rgba(255,255,255,.5); margin-top: .75rem; margin-bottom: 1.5rem; max-width: 30ch; font-family: var(--font-body); font-weight: 400; text-transform: none; letter-spacing: 0; }
.footer-contact-item { display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; margin-bottom: .6rem; font-family: var(--font-body); }
.footer-contact-item svg { width: 1rem; height: 1rem; flex-shrink: 0; color: var(--red); margin-top: .2rem; }
.footer-contact-item a { color: rgba(255,255,255,.7); }
.footer-contact-item a:hover { color: var(--cream); }
.footer-heading { font-family: var(--font-head); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--cream); margin-bottom: 1.25rem; }
.footer-menu li { margin-bottom: .5rem; }
.footer-menu a { font-size: .875rem; color: rgba(255,255,255,.55); font-family: var(--font-body); transition: color var(--trans); }
.footer-menu a:hover { color: var(--cream); text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-block: 1.25rem; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; }
.copyright, .footer-credit { font-size: .8rem; color: rgba(255,255,255,.3); font-family: var(--font-body); }

/* ── Misc helpers ───────────────────────────────────────────── */
.phone-link { color: inherit; font-weight: 700; }
.phone-link:hover { text-decoration: underline; }
.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; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

/* ── Pagination ─────────────────────────────────────────────── */
.nav-links { display: flex; justify-content: center; gap: .5rem; flex-wrap: wrap; margin-top: 2rem; }
.nav-links a,.nav-links span { display: inline-flex; align-items: center; padding: .5rem .9rem; border-radius: var(--radius-sm); font-family: var(--font-head); font-size: .875rem; border: 2px solid #ddd; color: var(--dark); }
.nav-links a:hover { background: var(--red); color: var(--white); border-color: var(--red); text-decoration: none; }
.nav-links .current { background: var(--red); color: var(--white); border-color: var(--red); }

/* ── Page banner sub ───────────────────────────────────────── */
.page-banner-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,.55);
  margin-top: .5rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

/* ── Service archive ────────────────────────────────────────── */
.service-archive { background: var(--white); }
.service-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.service-archive-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--trans), box-shadow var(--trans);
  border: 1px solid #ebebeb;
}
.service-archive-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-archive-card-img { display: block; overflow: hidden; aspect-ratio: 4/3; }
.service-archive-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-archive-card:hover .service-archive-card-img img { transform: scale(1.04); }
.service-archive-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; gap: .75rem; }
.service-archive-card-title { font-size: 1.3rem; margin: 0; }
.service-archive-card-title a { color: var(--dark); }
.service-archive-card-title a:hover { color: var(--red); text-decoration: none; }
.service-archive-card-desc { font-size: .9rem; color: var(--mid); flex: 1; font-family: var(--font-body); font-weight: 400; text-transform: none; letter-spacing: 0; line-height: 1.6; }

/* ── Single service hero ────────────────────────────────────── */
.service-hero {
  position: relative;
  background: var(--dark);
  background-image: var(--service-hero-bg, none);
  background-size: cover;
  background-position: center 40%;
  color: var(--white);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}
.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(20,20,20,.93) 0%, rgba(20,20,20,.75) 100%);
}
.service-hero-inner {
  position: relative;
  z-index: 1;
}
.service-hero .breadcrumbs { margin-bottom: 1rem; }
.service-hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 1.75rem;
}
.service-hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ── Single service body layout ─────────────────────────────── */
.service-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: flex-start;
}
.service-main { min-width: 0; }
.service-intro { margin-bottom: 2.5rem; }
.service-intro p { font-size: 1.05rem; color: var(--dark); }

.service-section-title {
  font-size: 1.7rem;
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 3px solid var(--red);
  display: inline-block;
}

/* What's included */
.service-includes { margin-bottom: 3rem; }
.service-includes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .85rem;
}
.service-include-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: 1rem 1.1rem;
  background: var(--light);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--red);
}
.service-include-icon { flex-shrink: 0; color: var(--red); margin-top: .15rem; }
.service-include-icon svg { width: 1.1rem; height: 1.1rem; }
.service-include-item strong { display: block; font-family: var(--font-head); font-size: .95rem; font-weight: 700; color: var(--dark); text-transform: uppercase; letter-spacing: .03em; margin-bottom: .2rem; }
.service-include-item p { font-size: .85rem; color: var(--mid); margin: 0; font-family: var(--font-body); font-weight: 400; text-transform: none; letter-spacing: 0; }

/* Process steps */
.service-process { margin-bottom: 3rem; }
.service-process-steps { display: flex; flex-direction: column; gap: 0; }
.service-process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid #e5e5e5;
}
.service-process-step:last-child { border-bottom: none; }
.step-number {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
}
.step-content strong { display: block; font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--dark); text-transform: uppercase; letter-spacing: .03em; margin-bottom: .3rem; }
.step-content p { font-size: .9rem; color: var(--mid); margin: 0; font-family: var(--font-body); font-weight: 400; text-transform: none; letter-spacing: 0; }

/* Service FAQ */
.service-faq { margin-bottom: 1rem; }

/* Sidebar */
.service-sidebar { position: sticky; top: calc(var(--header-h) + 1.5rem); display: flex; flex-direction: column; gap: 1.5rem; }
.service-sidebar-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.75rem;
  border-top: 4px solid var(--red);
}
.service-sidebar-title { font-size: 1.3rem; margin-bottom: .3rem; }
.service-sidebar-sub { font-size: .85rem; color: var(--mid); margin-bottom: 1.25rem; font-family: var(--font-body); font-weight: 400; text-transform: none; letter-spacing: 0; }
.service-sidebar-features {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.service-sidebar-features li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: var(--mid);
  font-family: var(--font-body);
}
.service-sidebar-features svg { width: .9rem; height: .9rem; color: var(--red); flex-shrink: 0; }

.service-sidebar-nav {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid #ebebeb;
  overflow: hidden;
}
.service-sidebar-nav-title {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--dark);
  padding: .85rem 1.25rem;
  margin: 0;
}
.service-sidebar-nav-list { list-style: none; }
.service-sidebar-nav-list li { border-bottom: 1px solid #f0f0f0; }
.service-sidebar-nav-list li:last-child { border-bottom: none; }
.service-sidebar-nav-list a {
  display: flex;
  align-items: center;
  padding: .75rem 1.25rem;
  font-size: .875rem;
  color: var(--dark);
  font-family: var(--font-body);
  transition: background var(--trans), color var(--trans);
}
.service-sidebar-nav-list a::before { content: '→'; margin-right: .6rem; color: var(--red); font-weight: 700; }
.service-sidebar-nav-list a:hover { background: var(--light); color: var(--red); text-decoration: none; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 380px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .service-archive-grid { grid-template-columns: repeat(2, 1fr); }
  .service-layout { grid-template-columns: 1fr 280px; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .whyus-inner { grid-template-columns: 1fr; }
  .whyus-image { display: none; }
  .cta-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .service-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .service-sidebar-nav { order: -1; }
}

@media (max-width: 700px) {
  .nav-toggle { display: flex; margin-left: auto; }
  .header-cta { display: none; }
  .topbar-right { display: none; }

  .primary-nav {
    display: none;
    position: fixed;
    inset: 0;
    top: calc(var(--header-h) + 36px);
    background: var(--dark);
    flex-direction: column;
    padding: 1.5rem;
    overflow-y: auto;
    z-index: 199;
  }
  .primary-nav.is-open { display: flex; }
  .nav-menu { flex-direction: column; gap: 0; width: 100%; }
  .nav-menu > li > a { padding: 1rem; font-size: 1.05rem; border-bottom: 1px solid rgba(255,255,255,.07); border-bottom-width: 1px; }
  .nav-menu .sub-menu { position: static; box-shadow: none; border-top: 0; display: block; background: rgba(255,255,255,.04); }
  .nav-menu .sub-menu a { padding-left: 2rem; }

  .services-grid { grid-template-columns: 1fr; gap: 0; }
  .service-archive-grid { grid-template-columns: 1fr; }
  .service-includes-grid { grid-template-columns: 1fr; }
  .service-hero-actions { flex-direction: column; align-items: flex-start; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media print {
  .site-header, .site-footer, .cta-section { display: none; }
}
