/* ============================================
   TLC CONSTRUCTION LLC — STYLESHEET
   Altoona, Iowa | Family-Owned Since Day One
   ============================================ */

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: #374151;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* VARIABLES */
:root {
  --navy:       #1B2E4B;
  --navy-mid:   #243a5e;
  --navy-dark:  #111E30;
  --orange:     #E87722;
  --orange-dk:  #C45E0A;
  --gray-bg:    #F4F5F7;
  --gray-bd:    #E5E7EB;
  --gray-text:  #5A6470;
  --gray-lt:    #6B7480;
  --white:      #ffffff;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 14px rgba(0,0,0,0.1);
  --shadow-lg:  0 10px 32px rgba(0,0,0,0.15);
  --max-w:      1200px;
  --sp:         clamp(56px, 8vw, 96px);
  --font-head:  'Barlow Condensed', sans-serif;
  --font-body:  'Inter', sans-serif;
}

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

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; color: var(--navy); }
p { color: var(--gray-text); line-height: 1.7; }

/* SECTION LABEL */
.label {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .8125rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #8B3F00;
  display: block;
  margin-bottom: 8px;
}
/* On dark navy backgrounds, the orange-dk label color fails AA — switch to a near-white tone */
.page-hero .label,
.cta-banner .label,
.bg-navy .label,
.navy-section .label { color: #FFD9B8; }

/* DIVIDERS */
.divider { width: 56px; height: 4px; background: var(--orange); border-radius: 2px; margin: 14px auto 28px; display: block; }
.divider.left { margin-left: 0; }
@media (max-width: 768px) {
  .divider { width: 60px; height: 5px; margin: 12px auto 22px; }
  .divider.left { margin-left: 0; }
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700;
  font-size: 1rem; padding: 14px 28px;
  border-radius: var(--radius-sm); border: 2px solid transparent;
  cursor: pointer; transition: all .2s ease; letter-spacing: .3px;
}
.btn-orange { background: var(--orange); color: #1A1306; border-color: var(--orange); font-weight: 800; }
.btn-orange:hover { background: var(--orange-dk); color: #fff; border-color: var(--orange-dk); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-mid); }
.btn-outline-wh { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn-outline-wh:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: .875rem; }

/* ===================================================
   HEADER
   =================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 10px rgba(0,0,0,.2);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 80px;
}

/* LOGO */
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 72px; width: auto; display: block; flex-shrink: 0; }
.site-footer .logo-img { height: 90px; }
/* legacy — kept for safety */
.logo-mark { width: 40px; height: 40px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--white); letter-spacing: 1px; }
.logo-sub  { font-family: var(--font-head); font-weight: 600; font-size: .6rem; color: var(--orange); letter-spacing: 2.5px; text-transform: uppercase; margin-top: 2px; }

/* DESKTOP NAV */
.main-nav { display: flex; align-items: center; gap: 2px; }
.nav-link {
  font-family: var(--font-head); font-weight: 600; font-size: .875rem;
  color: rgba(255,255,255,.75); padding: 8px 13px;
  border-radius: var(--radius-sm); text-transform: uppercase;
  letter-spacing: .5px; transition: all .2s;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.1); }
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,.08);
  position: relative;
}
.nav-link.active::after {
  content: ''; position: absolute; left: 13px; right: 13px; bottom: 2px;
  height: 2px; background: var(--orange); border-radius: 1px;
}
.nav-cta {
  background: var(--orange); color: #1A1306 !important;
  border-radius: var(--radius-sm); padding: 10px 18px;
  font-family: var(--font-head); font-weight: 800; font-size: .85rem;
  letter-spacing: .5px; margin-left: 8px;
  display: inline-flex; align-items: center; gap: 6px; transition: all .2s;
}
.nav-cta:hover { background: var(--orange-dk); color: #fff !important; transform: translateY(-1px); }

/* HAMBURGER */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; cursor: pointer; background: none; border: none; border-radius: 4px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; display: block; }

/* MOBILE NAV */
.mobile-nav {
  display: none; background: var(--navy-mid);
  padding: 10px 24px 20px; border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  color: rgba(255,255,255,.8); padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06);
  letter-spacing: .5px; text-transform: uppercase; transition: color .2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--white); }
.mobile-nav a.active { color: var(--white); border-left: 3px solid var(--orange); padding-left: 10px; }
.mobile-cta {
  display: flex !important; align-items: center; justify-content: center; gap: 8px;
  background: var(--orange); color: #1A1306 !important; margin-top: 14px; font-weight: 800;
  padding: 14px; border-radius: var(--radius-sm); text-transform: none !important;
}

/* ===================================================
   PAGE HERO (inner pages)
   =================================================== */
.page-hero { background: var(--navy); padding: 72px 0 64px; text-align: center; }
.page-hero h1 { color: var(--white); font-size: clamp(2.25rem, 5vw, 3.25rem); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 580px; margin: 0 auto; }

/* BREADCRUMB */
.breadcrumb {
  background: var(--gray-bg); border-bottom: 1px solid var(--gray-bd); padding: 10px 0;
}
.breadcrumb nav { display: flex; align-items: center; gap: 8px; font-size: .875rem; color: var(--gray-text); }
.breadcrumb a { color: var(--gray-text); transition: color .2s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .cur { color: var(--navy); font-weight: 600; }

/* ===================================================
   FOOTER
   =================================================== */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,.6); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.footer-tagline { font-size: .875rem; color: rgba(255,255,255,.78); margin-top: 16px; line-height: 1.65; }
.footer-col h4 {
  font-family: var(--font-head); font-weight: 700; font-size: .7rem;
  text-transform: uppercase; letter-spacing: 2.5px; color: var(--orange); margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.78); font-size: .875rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }
.foot-contact { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.foot-contact i { color: var(--orange); font-size: .85rem; margin-top: 3px; flex-shrink: 0; width: 14px; }
.foot-contact p, .foot-contact a { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.5; }
.foot-contact a { color: rgba(255,255,255,.75); transition: color .2s; }
.foot-contact a:hover { color: var(--orange); }
.footer-brand { display: flex; flex-direction: column; }
.footer-brand .logo-img { height: 80px; width: auto; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.12); color: rgba(255,255,255,.85); font-size: 1rem; transition: background .2s, color .2s; }
.footer-social a:hover { background: var(--orange); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: .8rem; color: rgba(255,255,255,.3);
}
.footer-bottom a { color: rgba(255,255,255,.78); transition: color .2s; }
.footer-bottom a:hover { color: var(--white); }
.footer-bottom p, .footer-col p { color: rgba(255,255,255,.78); }
.footer-col h4 { color: var(--white); }

/* ===================================================
   HOME HERO
   =================================================== */
.home-hero {
  position: relative; overflow: hidden;
  min-height: 90vh; display: flex; align-items: center;
  background-color: var(--navy);
  background-image:
    linear-gradient(to right,
      rgba(15,27,50,0.93) 0%,
      rgba(15,27,50,0.88) 42%,
      rgba(15,27,50,0.55) 68%,
      rgba(15,27,50,0.30) 100%
    ),
    url('../photos/hero-bg.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
.hero-texture {
  position: absolute; inset: 0; z-index: 0;
  background-image: repeating-linear-gradient(
    45deg, transparent, transparent 48px,
    rgba(255,255,255,.012) 48px, rgba(255,255,255,.012) 96px
  );
}
.hero-content { position: relative; z-index: 2; padding: clamp(60px,10vw,120px) 0; max-width: 720px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,119,34,.15); border: 1px solid rgba(232,119,34,.3);
  color: var(--orange); font-family: var(--font-head); font-weight: 700;
  font-size: .75rem; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 24px; margin-bottom: 24px;
}
.hero-h1 {
  color: var(--white); font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2.75rem, 6vw, 4.75rem); line-height: 1.05; margin-bottom: 24px;
}
.hero-h1 .accent { color: var(--orange); }
.hero-desc { color: rgba(255,255,255,.7); font-size: 1.1rem; line-height: 1.75; margin-bottom: 36px; max-width: 580px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.65); font-size: .875rem; }
.trust-item i { color: var(--orange); font-size: .85rem; }

/* STATS BAR */
.stats-bar { background: linear-gradient(90deg, var(--orange), var(--orange-dk)); padding: 22px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: center; color: var(--white); }
.stat-num { font-family: var(--font-head); font-weight: 800; font-size: 2.25rem; line-height: 1; margin-bottom: 4px; }
.stat-lbl { font-size: .8rem; opacity: .85; }

/* ===================================================
   SECTIONS
   =================================================== */
.section { padding: var(--sp) 0; }
.section-hd { margin-bottom: 14px; font-size: clamp(1.75rem, 4vw, 2.5rem); }
.section-desc { max-width: 580px; margin: 0 auto 44px; font-size: 1rem; line-height: 1.7; }
.section-desc.left { margin-left: 0; }

/* ===================================================
   SERVICE CARDS
   =================================================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* --- Photo service cards (home page) --- */
.svc-photo-card {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  height: 320px; background-size: cover; background-position: center;
  cursor: pointer; text-decoration: none; display: block;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.svc-photo-card:hover { transform: translateY(-5px); box-shadow: 0 24px 56px rgba(0,0,0,.30); }
.svc-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(10,20,40,.96) 0%,
    rgba(10,20,40,.72) 45%,
    rgba(10,20,40,.18) 100%
  );
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 26px 24px;
  transition: background .3s ease;
}
.svc-photo-card:hover .svc-photo-overlay {
  background: linear-gradient(to top,
    rgba(10,20,40,1) 0%,
    rgba(10,20,40,.8) 55%,
    rgba(10,20,40,.3) 100%
  );
}
.spc-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--orange); display: flex; align-items: center;
  justify-content: center; margin-bottom: 12px;
  font-size: 1rem; color: #fff; flex-shrink: 0;
}
.spc-title {
  font-family: var(--font-head); font-weight: 800; font-size: 1.35rem;
  color: #fff; margin: 0 0 8px; line-height: 1.2;
}
.spc-desc {
  font-size: .85rem; color: rgba(255,255,255,.78); line-height: 1.55;
  margin: 0 0 16px;
}
.spc-link {
  color: var(--orange); font-family: var(--font-head); font-weight: 700;
  font-size: .8rem; letter-spacing: .5px; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .2s;
}
.spc-link:hover { gap: 10px; }

/* keep old service-card for any non-home uses */
.service-card {
  background: var(--white); border: 1px solid var(--gray-bd);
  border-radius: var(--radius-md); padding: 32px 26px;
  text-align: center; box-shadow: var(--shadow-sm); transition: all .25s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--orange); }
.service-card.dark { background: var(--navy); border-color: var(--navy); }
.service-card.dark h3 { color: var(--white); }
.service-card.dark p { color: rgba(255,255,255,.55); }
.svc-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.svc-icon i { color: var(--white); font-size: 1.5rem; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.service-card p { font-size: .9rem; line-height: 1.65; margin-bottom: 20px; }
.svc-link {
  color: var(--orange); font-family: var(--font-head); font-weight: 700; font-size: .875rem;
  display: inline-flex; align-items: center; gap: 6px; transition: gap .2s;
}
.svc-link:hover { gap: 10px; }

/* ===================================================
   GALLERY
   =================================================== */
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius-md); cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 240px; object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item.lg img { height: 380px; }
.gallery-item.md img { height: 190px; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(27,46,75,.9) 0%, rgba(27,46,75,.15) 60%, transparent 100%);
  opacity: 0; transition: opacity .3s ease;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.ov-cat {
  background: var(--orange); color: var(--white);
  font-family: var(--font-head); font-weight: 700; font-size: .7rem;
  letter-spacing: 1px; text-transform: uppercase; padding: 3px 10px;
  border-radius: 20px; display: inline-block; margin-bottom: 6px; width: fit-content;
}
.ov-cap { color: var(--white); font-family: var(--font-head); font-weight: 600; font-size: .9rem; line-height: 1.3; }

/* Photo placeholder */
.photo-ph {
  width: 100%; height: 240px; background: #E8ECF0; border-radius: var(--radius-md);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; color: #B0BAC5;
}
.photo-ph.lg { height: 380px; }
.photo-ph i { font-size: 2rem; }
.photo-ph span { font-size: .8rem; font-weight: 500; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.93); z-index: 1000;
  align-items: center; justify-content: center; padding: 20px;
}
.lightbox.open { display: flex; }
.lb-inner { position: relative; max-width: 900px; width: 100%; }
.lb-inner img { width: 100%; max-height: 80vh; object-fit: contain; border-radius: var(--radius-sm); }
.lb-cap { color: rgba(255,255,255,.65); text-align: center; font-size: .875rem; margin-top: 12px; }
.lb-close {
  position: absolute; top: -44px; right: 0; background: rgba(255,255,255,.1);
  border: none; color: var(--white); font-size: 1.25rem; cursor: pointer;
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background .2s;
}
.lb-close:hover { background: rgba(255,255,255,.2); }

/* Filter tabs */
.filter-bar {
  background: var(--white); border-bottom: 1px solid var(--gray-bd);
  padding: 13px 0; position: sticky; top: 68px; z-index: 50;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.filter-inner { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.filter-btn {
  background: var(--white); border: 2px solid var(--gray-bd);
  color: var(--navy); font-family: var(--font-head); font-weight: 700; font-size: .85rem;
  padding: 7px 18px; border-radius: 24px; cursor: pointer; transition: all .2s;
}
.filter-btn:hover { border-color: var(--orange); color: var(--orange); }
.filter-btn.active { background: var(--orange); border-color: var(--orange); color: var(--white); }

/* ===================================================
   TESTIMONIALS
   =================================================== */
.review-card {
  background: var(--white); border: 1px solid var(--gray-bd);
  border-radius: var(--radius-md); padding: 28px; box-shadow: var(--shadow-sm);
}
.stars { color: #FCD34D; margin-bottom: 14px; font-size: .95rem; }
.review-text { color: #374151; font-size: .9375rem; line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.r-avatar {
  width: 40px; height: 40px; background: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: .95rem; flex-shrink: 0;
}
.r-name { font-family: var(--font-head); font-weight: 700; font-size: .9rem; color: var(--navy); }
.r-loc  { font-size: .75rem; color: var(--gray-lt); margin-top: 2px; }
.r-source { display: flex; align-items: center; gap: 5px; color: var(--gray-lt); font-size: .8rem; margin-left: auto; }

/* ===================================================
   PROCESS STEPS
   =================================================== */
.steps-wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps-wrap::before {
  content: ''; position: absolute; top: 26px; left: 12.5%; right: 12.5%;
  height: 2px; background: var(--gray-bd); z-index: 0;
}
.step { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 52px; height: 52px; background: var(--orange); color: var(--white);
  border-radius: 50%; font-family: var(--font-head); font-weight: 800; font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(232,119,34,.35);
}
.step-ico {
  width: 44px; height: 44px; background: var(--white); border: 2px solid var(--gray-bd);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; box-shadow: var(--shadow-sm);
}
.step-ico i { color: var(--navy); font-size: 1rem; }
.step h4 { font-size: 1rem; margin-bottom: 8px; }
.step p { font-size: .85rem; line-height: 1.6; }

/* ===================================================
   ABOUT PAGE
   =================================================== */
.stat-box { background: var(--navy); border-radius: var(--radius-md); padding: 20px; text-align: center; }
.stat-box .num { font-family: var(--font-head); font-weight: 800; font-size: 1.75rem; color: var(--white); margin-bottom: 4px; }
.stat-box .lbl { font-size: .75rem; color: rgba(255,255,255,.78); }

.value-card {
  background: var(--white); border: 1px solid var(--gray-bd);
  border-radius: var(--radius-md); padding: 30px 24px; text-align: center;
  box-shadow: var(--shadow-sm); transition: all .25s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--orange); }
.val-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
}
.val-icon i { color: var(--white); font-size: 1.25rem; }
.value-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.value-card p { font-size: .875rem; line-height: 1.65; }

.quote-block {
  background: var(--navy); border-radius: var(--radius-lg); padding: clamp(40px,6vw,64px);
  text-align: center; position: relative; overflow: hidden;
}
.quote-block::after {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,119,34,.12), transparent);
}
.quote-icon { color: var(--orange); font-size: 2.5rem; opacity: .5; margin-bottom: 24px; }
.quote-text {
  color: var(--white); font-family: var(--font-head); font-weight: 700;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem); line-height: 1.55; margin-bottom: 20px;
  max-width: 700px; margin-left: auto; margin-right: auto;
}
.quote-attr { color: rgba(255,255,255,.4); font-size: .875rem; }

.cred-card {
  background: var(--white); border-radius: var(--radius-md); padding: 24px 18px;
  text-align: center; box-shadow: var(--shadow-sm);
}
.cred-icon {
  width: 48px; height: 48px; background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 12px;
}
.cred-icon i { color: var(--white); font-size: 1rem; }
.cred-card h4 { font-size: .95rem; margin-bottom: 6px; }
.cred-card p { font-size: .8rem; line-height: 1.5; }

/* ===================================================
   SERVICES PAGE
   =================================================== */
.quick-nav {
  background: var(--white); border-bottom: 1px solid var(--gray-bd);
  padding: 13px 0; position: sticky; top: 68px; z-index: 50;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.quick-nav-inner { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.qn-link {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gray-bg); color: var(--navy);
  font-family: var(--font-head); font-weight: 600; font-size: .85rem;
  padding: 8px 16px; border-radius: 24px; transition: all .2s;
}
.qn-link:hover { background: var(--orange); color: var(--white); }
.qn-link i { font-size: .75rem; }

.svc-detail {
  border: 1px solid var(--gray-bd); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 28px;
  scroll-margin-top: 150px;
}
.svc-detail-hd {
  background: var(--navy); padding: 24px 32px;
  display: flex; align-items: center; gap: 20px;
}
.svc-detail-ico {
  width: 56px; height: 56px; background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.svc-detail-ico i { color: var(--white); font-size: 1.35rem; }
.svc-detail-hd h2 { color: var(--white); font-size: 1.5rem; margin-bottom: 4px; }
.svc-detail-hd p { color: rgba(255,255,255,.85); font-size: .875rem; }
.svc-detail-body {
  background: var(--white); padding: 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.svc-bullets { list-style: none; }
.svc-bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 0; font-size: .875rem; color: #374151;
  border-bottom: 1px solid var(--gray-bd);
}
.svc-bullets li:last-child { border-bottom: none; }
.svc-bullets li i { color: var(--orange); font-size: .8rem; margin-top: 3px; flex-shrink: 0; }

/* Service photo strip */
.svc-photo-strip {
  background: var(--gray-bg); border-top: 1px solid var(--gray-bd);
  padding: 20px 32px 28px;
}
.svc-strip-label {
  font-family: var(--font-head); font-weight: 800; font-size: .7rem;
  letter-spacing: 2px; text-transform: uppercase; color: #8B3F00;
  margin-bottom: 14px;
}
.svc-strip-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 12px;
}
.svc-strip-grid .gallery-item img { height: 160px; }

/* ===================================================
   CONTACT
   =================================================== */
.form-label { display: block; font-family: var(--font-head); font-weight: 700; font-size: .875rem; color: var(--navy); margin-bottom: 6px; }
.req { color: var(--orange); }
.form-field { width: 100%; padding: 12px 16px; border: 2px solid var(--gray-bd); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: .9rem; color: #111827; background: var(--white); transition: border-color .2s; outline: none; }
.form-field:focus { border-color: var(--orange); }
.form-field.err { border-color: #EF4444; }
textarea.form-field { resize: vertical; min-height: 120px; }

.contact-item { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.contact-item:last-of-type { border-bottom: none; }
.ci-icon { width: 40px; height: 40px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-icon i { color: var(--white); font-size: .875rem; }
.ci-lbl { color: rgba(255,255,255,.85); font-size: .7rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.ci-val { color: var(--white); font-weight: 500; font-size: .9375rem; }
.ci-sub { color: rgba(255,255,255,.78); font-size: .75rem; margin-top: 2px; }

.form-success {
  display: none; background: #F0FDF4; border: 2px solid #86EFAC;
  border-radius: var(--radius-md); padding: 32px; text-align: center; margin-bottom: 24px;
}
.form-success.show { display: block; }
.form-success i { color: #16A34A; font-size: 2.5rem; margin-bottom: 14px; display: block; }
.form-success h3 { color: #166534; font-size: 1.25rem; margin-bottom: 8px; }
.form-success p { color: #166534; font-size: .9rem; }

/* ===================================================
   AREA TAGS
   =================================================== */
.area-wrap { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.area-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white); border: 1px solid var(--gray-bd);
  color: var(--navy); font-size: .85rem; font-weight: 500;
  padding: 7px 14px; border-radius: 24px; box-shadow: var(--shadow-sm);
}
.area-tag i { color: var(--orange); font-size: .75rem; }

/* ===================================================
   WHY TLC ITEMS
   =================================================== */
.why-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.why-ico {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.why-ico i { color: var(--white); font-size: .875rem; }
.why-item h4 { font-size: 1rem; margin-bottom: 4px; }
.why-item p { font-size: .875rem; line-height: 1.65; }

/* ===================================================
   CTA BANNERS
   =================================================== */
.cta-banner { padding: 64px 0; text-align: center; }
.cta-navy { background: var(--navy); }
.cta-orange { background: var(--orange); }
.cta-banner h2 { color: var(--white); font-size: clamp(1.6rem, 3.5vw, 2.25rem); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,.85); margin-bottom: 32px; max-width: 540px; margin-left: auto; margin-right: auto; }
/* Orange CTA: dark text on bright orange passes AA where white text would fail */
.cta-orange h2 { color: #1A1306; }
.cta-orange p { color: rgba(26,19,6,.88); }
.cta-orange .btn-outline-wh { color: #1A1306; border-color: #1A1306; background: transparent; }
.cta-orange .btn-outline-wh:hover { background: rgba(26,19,6,.1); border-color: #1A1306; }
.cta-group { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* BEFORE/AFTER LABELS */
.ba-label {
  display: inline-block; font-family: var(--font-head); font-weight: 700;
  font-size: .7rem; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 20px; margin-bottom: 10px;
}
.ba-before { background: #374151; color: var(--white); }
.ba-after  { background: var(--orange); color: var(--white); }

/* FLOATING BADGE */
.float-badge {
  position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  color: var(--white); border-radius: var(--radius-sm); padding: 10px 20px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px; white-space: nowrap;
}
.float-badge .fb-title { font-family: var(--font-head); font-weight: 800; font-size: .9rem; }
.float-badge .fb-sub   { font-size: .7rem; opacity: .85; }

/* ===================================================
   BUILD STORY TIMELINE
   =================================================== */
.build-story { margin-bottom: 56px; }
.build-story-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 8px;
}
.build-story-header .bs-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.build-story-header .bs-icon i { color: white; font-size: .875rem; }
.build-story-header h2 { font-size: 1.5rem; margin: 0; }
.build-story-header p { font-size: .85rem; margin: 0; color: var(--gray-text); }
.build-story-intro {
  font-size: .95rem; color: var(--gray-text); margin-bottom: 28px;
  max-width: 600px; line-height: 1.6;
}

/* The scrolling track */
.bs-track-wrapper {
  position: relative;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 24px;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) var(--gray-bg);
}
.bs-track-wrapper::-webkit-scrollbar { height: 6px; }
.bs-track-wrapper::-webkit-scrollbar-track { background: var(--gray-bg); border-radius: 3px; }
.bs-track-wrapper::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

.bs-track {
  display: flex; gap: 0;
  position: relative;
  padding: 0 4px;
  min-width: max-content;
}

/* The connecting progress line behind all cards */
.bs-track::before {
  content: '';
  position: absolute;
  top: 38px; /* center on step number */
  left: 28px; right: 28px;
  height: 3px;
  background: linear-gradient(90deg, var(--gray-bd) 0%, var(--orange) 50%, var(--orange-dk) 100%);
  border-radius: 2px;
  z-index: 0;
}

/* Individual step card */
.bs-step {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 220px;
  display: flex; flex-direction: column; align-items: center;
  position: relative;
  z-index: 1;
  padding: 0 8px;
}

/* Step number circle */
.bs-num {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1rem;
  margin-bottom: 14px;
  position: relative; z-index: 2;
  transition: transform .2s ease, box-shadow .2s ease;
}
.bs-step:hover .bs-num { transform: scale(1.1); }

/* Phase colors */
.bs-num.phase-start  { background: var(--navy); color: var(--white); box-shadow: 0 0 0 4px var(--gray-bg), 0 0 0 6px var(--navy); }
.bs-num.phase-frame  { background: #3B5998; color: var(--white); box-shadow: 0 0 0 4px var(--gray-bg), 0 0 0 6px #3B5998; }
.bs-num.phase-build  { background: #D97706; color: var(--white); box-shadow: 0 0 0 4px var(--gray-bg), 0 0 0 6px #D97706; }
.bs-num.phase-finish { background: var(--orange); color: var(--white); box-shadow: 0 0 0 4px var(--gray-bg), 0 0 0 6px var(--orange); }
.bs-num.phase-done   { background: #16A34A; color: var(--white); box-shadow: 0 0 0 4px var(--gray-bg), 0 0 0 6px #16A34A; }

/* Phase label */
.bs-phase {
  font-family: var(--font-head); font-weight: 700;
  font-size: .65rem; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 3px 12px; border-radius: 20px;
  margin-bottom: 10px; white-space: nowrap;
}
.bs-phase.phase-start  { background: rgba(27,46,75,.1); color: var(--navy); }
.bs-phase.phase-frame  { background: rgba(59,89,152,.1); color: #3B5998; }
.bs-phase.phase-build  { background: rgba(217,119,6,.1); color: #D97706; }
.bs-phase.phase-finish { background: rgba(232,119,34,.1); color: var(--orange-dk); }
.bs-phase.phase-done   { background: rgba(22,163,74,.1); color: #16A34A; }

/* Photo thumbnail */
.bs-photo {
  width: 200px; height: 160px;
  border-radius: var(--radius-md);
  overflow: hidden; cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.bs-photo:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: var(--shadow-lg);
}
.bs-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.bs-photo:hover img { transform: scale(1.08); }

/* Completion badge overlay on last step */
.bs-photo .bs-complete-badge {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  background: #16A34A; color: white;
  font-family: var(--font-head); font-weight: 700;
  font-size: .65rem; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 20px;
  display: flex; align-items: center; gap: 5px;
  box-shadow: 0 2px 8px rgba(22,163,74,.4);
}

/* Caption below photo */
.bs-caption {
  margin-top: 10px; text-align: center;
  font-size: .8rem; color: var(--navy); font-weight: 600;
  font-family: var(--font-head);
  max-width: 200px; line-height: 1.3;
}
.bs-caption span {
  display: block; font-family: var(--font-body);
  font-size: .72rem; color: var(--gray-text); font-weight: 400;
  margin-top: 2px;
}

/* Final step gets a bigger photo */
.bs-step.final .bs-photo {
  width: 240px; height: 190px;
}
.bs-step.final { width: 260px; }

/* Scroll hint arrow */
.bs-scroll-hint {
  display: flex; align-items: center; gap: 8px;
  margin-top: 16px;
  font-size: .78rem; color: var(--gray-lt);
  font-family: var(--font-head); font-weight: 600;
  letter-spacing: .5px;
}
.bs-scroll-hint i { animation: nudgeRight 1.5s ease-in-out infinite; }
@keyframes nudgeRight {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

/* ===================================================
   STICKY MOBILE TOP CTA BAR
   =================================================== */
.mobile-top-cta {
  display: none;
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1001;
  background: var(--orange);
  padding: 10px 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
  text-align: center;
}
.mobile-top-cta a {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--white); font-family: var(--font-head);
  font-weight: 700; font-size: .9rem;
  text-transform: uppercase; letter-spacing: .5px;
}
.mobile-top-cta a:hover { opacity: .9; }

/* ===================================================
   STICKY MOBILE BOTTOM CTA BAR
   =================================================== */
.mobile-cta-bar {
  display: none; /* hidden on desktop */
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 99;
  background: var(--navy);
  padding: 10px 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.25);
  border-top: 2px solid var(--orange);
}
.mobile-cta-bar .mcb-inner {
  display: flex; gap: 10px;
  max-width: var(--max-w); margin: 0 auto;
}
.mobile-cta-bar .mcb-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: .85rem;
  padding: 12px 10px; border-radius: var(--radius-sm);
  text-transform: uppercase; letter-spacing: .5px;
  transition: all .2s; border: none; cursor: pointer;
  text-decoration: none;
}
.mcb-btn.mcb-call {
  background: var(--orange); color: var(--white);
}
.mcb-btn.mcb-call:hover { background: var(--orange-dk); }
.mcb-btn.mcb-quote {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.35);
}
.mcb-btn.mcb-quote:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

/* ===================================================
   BACK TO TOP
   =================================================== */
.back-to-top {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 98;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy); color: var(--white);
  border: 2px solid rgba(255,255,255,.15);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease, background .2s ease;
}
.back-to-top.visible {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.back-to-top:hover {
  background: var(--orange); border-color: var(--orange);
}

/* ===================================================
   STICKY GALLERY FILTER BAR
   =================================================== */
.filter-bar.sticky {
  position: sticky; top: 80px; z-index: 50;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

/* SCROLL ANIMATION */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps-wrap::before { display: none; }
}
@media (max-width: 768px) {
  :root { --sp: 48px; }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  /* Stack offer/why section on mobile */
  .offer-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .steps-wrap { grid-template-columns: 1fr; }
  .svc-detail-body { grid-template-columns: 1fr; padding: 24px; }
  .svc-detail-hd { padding: 20px 24px; }
  .quote-block { padding: 36px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-ctas { flex-direction: column; }
  .cta-group { flex-direction: column; align-items: center; }
  .bs-step { width: 180px; }
  .bs-photo { width: 160px; height: 130px; }
  .bs-step.final .bs-photo { width: 180px; height: 150px; }
  .bs-step.final { width: 200px; }
  .bs-num { width: 36px; height: 36px; font-size: .85rem; }
  .bs-track::before { top: 32px; }
  /* Stack inline-style grids on mobile (gallery, about, contact, reviews) */
  [data-section] > div[style*="grid-template-columns"],
  div[style*="grid-template-columns:1fr 1fr"],
  div[style*="grid-template-columns:1fr 2fr"],
  div[style*="grid-template-columns: 1fr 1fr"],
  div[style*="grid-template-columns: 1fr 2fr"] { grid-template-columns: 1fr !important; }
  div[style*="repeat(4"] { grid-template-columns: repeat(2,1fr) !important; }
  div[style*="repeat(3"] { grid-template-columns: repeat(2,1fr) !important; }
  /* Prevent any image overflow */
  img, figure, picture, video { max-width: 100%; height: auto; }
  /* Mobile sticky bars */
  .mobile-top-cta { display: block; }
  .mobile-cta-bar { display: block; }
  body { padding-top: 44px; padding-bottom: 72px; }
  .site-header { top: 44px; }
  .back-to-top { bottom: 84px; }
  .filter-bar.sticky { top: 80px; }
}
@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 2.35rem; }
}


/* ============================================================
   SEO & MARKETING OVERHAUL — New Components
   ============================================================ */

/* Hero Trust Badges */
.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.htb {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.9);
  font-size: .78rem;
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 7px 14px;
  border-radius: 40px;
  backdrop-filter: blur(4px);
}
.htb i {
  color: var(--orange);
  font-size: .7rem;
}

/* Social Proof Strip */
.social-proof-strip {
  background: var(--navy);
  padding: 14px 0;
  border-bottom: 3px solid var(--orange);
}
.sps-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.sps-quote {
  color: rgba(255,255,255,.85);
  font-size: .88rem;
  font-style: italic;
}
.sps-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  font-family: var(--font-head);
  font-weight: 600;
}
.sps-stars {
  color: #FCD34D;
  font-size: .7rem;
  display: inline-flex;
  gap: 2px;
}
.sps-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  transition: color .2s;
}
.sps-phone:hover {
  color: #f59e42;
}

/* City Pills */
.city-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.city-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-bg);
  color: var(--navy);
  font-size: .85rem;
  font-family: var(--font-head);
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 40px;
  border: 1px solid var(--gray-bd);
  transition: all .2s;
}
.city-pill:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.city-pill-home {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.city-pill-home:hover {
  background: var(--orange-dk);
  border-color: var(--orange-dk);
  color: var(--white);
}

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--gray-bd);
}
.faq-item:first-child {
  border-top: 1px solid var(--gray-bd);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 4px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  transition: color .2s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { display: none; content: ""; }
.faq-q:hover { color: var(--orange); }
.faq-arrow {
  font-size: .75rem;
  color: var(--orange);
  transition: transform .25s ease;
  flex-shrink: 0;
}
details[open] .faq-arrow {
  transform: rotate(180deg);
}
.faq-a {
  padding: 0 4px 20px;
  font-size: .93rem;
  line-height: 1.7;
  color: var(--gray-text);
}

/* Review Cards (updated — no dashed border) */
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-bd);
  display: flex;
  flex-direction: column;
}
.review-text {
  font-size: .93rem;
  line-height: 1.7;
  color: #374151;
  flex: 1;
  margin-bottom: 20px;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.r-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.r-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  color: var(--navy);
}
.r-loc {
  font-size: .78rem;
  color: var(--gray-lt);
}
.r-source {
  font-size: .75rem;
  color: #1877F2;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.stars {
  display: flex;
  gap: 2px;
}
.stars i {
  color: #FCD34D;
  font-size: .85rem;
}

/* Contact Trust Row */
.contact-trust-row {
  background: var(--white);
  border-bottom: 1px solid var(--gray-bd);
  padding: 16px 0;
}
.ctr-inner {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.ctr-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy);
}
.ctr-item i {
  color: var(--orange);
  font-size: .8rem;
}

/* ============================================================
   RESPONSIVE — New Components
   ============================================================ */
@media (max-width: 768px) {
  .hero-trust-badges {
    justify-content: center;
  }
  .htb {
    font-size: .7rem;
    padding: 6px 11px;
  }
  .sps-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .sps-quote {
    font-size: .82rem;
  }
  .city-pills {
    gap: 8px;
  }
  .city-pill {
    font-size: .78rem;
    padding: 6px 14px;
  }
  .ctr-inner {
    gap: 16px;
  }
  .ctr-item {
    font-size: .78rem;
  }
  .review-card {
    padding: 22px;
  }
}

@media (max-width: 480px) {
  .sps-phone {
    display: none;
  }
  .ctr-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

/* ============================================
   HOMEPAGE REDESIGN — STORY-DRIVEN LAYOUT
   ============================================ */

/* SLIM HERO OVERRIDE */
.home-hero--slim {
  padding: clamp(56px, 10vw, 120px) 0 clamp(40px, 7vw, 80px);
}
.home-hero--slim .hero-desc {
  font-size: 1rem;
  line-height: 1.7;
  opacity: .9;
}
.home-hero--slim .hero-ctas {
  gap: 0;
}

/* ===== STORY BEATS ===== */
.story-beats {
  /* wrapper — no extra styles needed */
}

.story-beat {
  padding: clamp(72px, 12vw, 140px) 0;
}

.story-beat--light {
  background: #fff;
}

.story-beat--warm {
  background: var(--gray-bg);
}

.story-beat--navy {
  background: var(--navy);
}

.story-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 4px;
  color: var(--orange);
  margin-bottom: 24px;
  position: relative;
  padding-left: 40px;
}

.story-num::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 2px;
  background: var(--orange);
  transform: translateY(-50%);
}

.story-quote {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.3;
  color: var(--navy);
  max-width: 780px;
  letter-spacing: -0.01em;
}

/* navy beat overrides */
.story-beat--navy .story-quote {
  color: var(--white);
}

.story-beat--navy .story-num {
  color: var(--orange);
}

.story-highlight {
  color: var(--orange);
}

.story-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
  transition: color 0.25s ease;
}

.story-link:hover {
  color: var(--orange);
}

/* ===== BEFORE / AFTER SHOWCASE ===== */
.ba-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 44px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.ba-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ba-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.ba-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.ba-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.ba-tag--before {
  background: rgba(0,0,0,0.65);
  color: #fff;
}

.ba-tag--after {
  background: var(--orange);
  color: #fff;
}

.ba-caption {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--gray-text);
  font-style: italic;
}

/* ===== CLEAN SERVICES LIST ===== */
.svc-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 44px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.svc-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
}

.svc-row:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--orange);
}

.svc-row-icon {
  width: 46px;
  height: 46px;
  background: var(--gray-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.svc-row:hover .svc-row-icon {
  background: var(--orange);
  color: #fff;
}

.svc-row-info h3 {
  font-size: 0.95rem;
  margin-bottom: 2px;
  color: var(--navy);
}

.svc-row-info p {
  font-size: 0.8rem;
  color: var(--gray-lt);
  margin: 0;
  line-height: 1.4;
}

.svc-row-go {
  margin-left: auto;
  color: var(--gray-bd);
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: color 0.25s ease;
}

.svc-row:hover .svc-row-go {
  color: var(--orange);
}

/* ===== RESPONSIVE — NEW SECTIONS ===== */
@media (max-width: 768px) {
  .story-beat {
    padding: clamp(56px, 10vw, 96px) 0;
  }

  .story-quote {
    font-size: clamp(1.35rem, 5.5vw, 2rem);
  }

  .ba-showcase {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .svc-list {
    grid-template-columns: 1fr;
  }

  .svc-row {
    padding: 16px 20px;
  }
}

/* ============================================
   BLUEPRINT HERO — Animated Construction Drawing
   ============================================ */

/* Override: blueprint hero replaces photo background */
.home-hero--blueprint {
  position: relative;
  background: var(--navy-dark);
  background-image: none;
  color: var(--white);
  padding: clamp(40px, 6vw, 72px) 0 clamp(40px, 6vw, 72px);
  overflow: hidden;
}

/* Blueprint grid background */
.blueprint-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: 0;
}

/* SVG container — fills the background */
.blueprint-drawing {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 92%;
  max-width: 1200px;
  opacity: 0.85;
  z-index: 1;
  pointer-events: none;
}

.blueprint-drawing svg {
  width: 100%;
  height: auto;
  stroke-width: 3;
  filter: drop-shadow(0 0 6px rgba(232,119,34,.45));
}

/* Line draw animation */
@keyframes bpDraw {
  to { stroke-dashoffset: 0; }
}

@keyframes bpFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.bp-draw {
  stroke: var(--orange);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: bpDraw 1s ease forwards;
}

/* Circles need fill animation too */
circle.bp-draw {
  stroke-width: 1.5;
  fill: none;
  stroke: var(--orange);
}

.bp-dim {
  stroke: rgba(232,119,34,0.4);
  stroke-width: 1;
  stroke-linecap: round;
  fill: none;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: bpDraw 0.8s ease forwards;
}

/* Staggered delays — builds from foundation up */
.bp-d1 { animation-delay: 0.2s; }     /* Foundation */
.bp-d2 { animation-delay: 0.7s; }     /* Wall studs */
.bp-d3 { animation-delay: 1.3s; }     /* Top plates + door header */
.bp-d4 { animation-delay: 1.8s; }     /* Windows */
.bp-d5 { animation-delay: 2.2s; }     /* Roof rafters */
.bp-d6 { animation-delay: 2.7s; }     /* Ridge + collar tie + joints */
.bp-d7 { animation-delay: 3.1s; }     /* Diagonal bracing */
.bp-d8 { animation-delay: 3.5s; }     /* Dimension lines */

/* Hero text on top of blueprint */
.home-hero--blueprint > .container {
  width: 100%;
}

.home-hero--blueprint .hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  margin-left: 0;
  margin-right: auto;
  background: linear-gradient(135deg, rgba(17,30,48,.88) 0%, rgba(17,30,48,.65) 100%);
  padding: 40px 44px;
  border-radius: 12px;
  backdrop-filter: blur(2px);
}

.home-hero--blueprint .hero-h1 {
  text-shadow: 0 2px 30px rgba(0,0,0,0.7), 0 0 60px rgba(17,30,48,0.9);
}

.home-hero--blueprint .hero-desc {
  text-shadow: 0 1px 12px rgba(0,0,0,0.6), 0 0 40px rgba(17,30,48,0.8);
}

.home-hero--blueprint .hero-badge {
  box-shadow: 0 0 20px rgba(17,30,48,0.8);
}

/* Responsive */
@media (max-width: 1024px) {
  .blueprint-drawing {
    width: 95%;
    opacity: 0.75;
  }
}

@media (max-width: 768px) {
  /* Show the orange blueprint house BEHIND the text on mobile */
  .home-hero--blueprint .hero-content {
    background: transparent !important;
    backdrop-filter: none !important;
    padding: 8px 0 !important;
    border-radius: 0 !important;
  }
  /* Stronger shadows so the white text stays readable over the orange lines */
  .home-hero--blueprint .hero-h1 {
    text-shadow: 0 2px 6px rgba(0,0,0,.95), 0 0 22px rgba(15,30,51,1), 0 0 44px rgba(15,30,51,.95);
  }
  /* Lighter backing so more of the orange house shows through behind body text */
  .home-hero--blueprint .hero-desc {
    text-shadow: 0 1px 6px rgba(0,0,0,.98), 0 0 14px rgba(15,30,51,1), 0 0 28px rgba(15,30,51,.9);
    background: rgba(15,30,51,.35);
    padding: 10px 12px;
    border-radius: 8px;
  }
  .home-hero--blueprint .hero-badge {
    background: rgba(15,30,51,.85);
    border: 1px solid rgba(232,119,34,.45);
  }
  /* House sits prominently behind the hero text */
  .blueprint-drawing {
    width: 110%;
    max-width: none;
    opacity: 0.9;
    top: 58%;
  }
  .blueprint-drawing svg { stroke-width: 2.5; }
}
