/* ============================================================
   LUMI CONSTRUCTION MANAGEMENT — style.css  v2026063020
   WIDTH SYSTEM (read before editing):
   ─ Every full-bleed band (header, section, footer) uses:
       padding-left/right: var(--px)  (= 5% of viewport)
   ─ Inner content is capped via .inner:
       max-width: var(--W)  (= 1300px)
       margin: 0 auto
   ─ Header topbar, header main, every section inner, and footer
     inner ALL use the same .inner pattern → perfect alignment.
   ============================================================ */

/* ── 1. FONTS ─────────────────────────────────────────────── */
@font-face { font-family:'Montserrat'; font-style:normal; font-weight:700; font-display:swap; src:url('fonts/montserrat-v29-latin-700.woff2') format('woff2'); }
@font-face { font-family:'Montserrat'; font-style:normal; font-weight:600; font-display:swap; src:url('fonts/montserrat-v29-latin-600.woff2') format('woff2'); }
@font-face { font-family:'Montserrat'; font-style:normal; font-weight:400; font-display:swap; src:url('fonts/montserrat-v29-latin-regular.woff2') format('woff2'); }
@font-face { font-family:'Open Sans';  font-style:normal; font-weight:400; font-display:swap; src:url('fonts/opensans-v40-latin-regular.woff2') format('woff2'); }
@font-face { font-family:'Open Sans';  font-style:normal; font-weight:600; font-display:swap; src:url('fonts/opensans-v40-latin-600.woff2') format('woff2'); }

/* ── 2. TOKENS ────────────────────────────────────────────── */
:root {
  --blue:       #27395c;
  --blue-dark:  #1d2b45;
  --blue-light: #344d7a;
  --red:        #ea0b12;
  --red-dark:   #c40910;
  --red-light:  #ff2a30;

  --white:      #ffffff;
  --gray-50:    #f8f9fa;
  --gray-100:   #f1f3f5;
  --gray-200:   #e9ecef;
  --gray-400:   #adb5bd;
  --gray-600:   #6c757d;
  --black:      #0d0f12;

  --text-primary:   #1a1f2e;
  --text-secondary: #4a5568;
  --text-muted:     #718096;
  --text-light:     #a0aec0;

  --font-h: 'Montserrat', system-ui, sans-serif;
  --font-b: 'Open Sans', system-ui, sans-serif;

  --xs:   0.75rem;
  --sm:   0.875rem;
  --base: 1rem;
  --lg:   1.125rem;
  --xl:   1.25rem;
  --2xl:  1.5rem;
  --3xl:  1.875rem;
  --4xl:  2.25rem;
  --5xl:  3rem;

  /* THE width system — change only here */
  --W:    1300px;   /* max content width */
  --px:   5%;       /* horizontal padding on every band */
  --py:   96px;     /* section vertical padding */
  --py-s: 64px;     /* tight section vertical padding */

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-xl: 24px;

  --sh-sm: 0 1px 3px rgba(0,0,0,.08);
  --sh-md: 0 4px 16px rgba(0,0,0,.10);
  --sh-lg: 0 12px 40px rgba(0,0,0,.14);
  --sh-xl: 0 24px 64px rgba(0,0,0,.18);

  --ease: 0.22s ease;
}

/* ── 3. 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-b); color:var(--text-primary); background:var(--white); line-height:1.65; overflow-x:hidden; }
img,video { display:block; max-width:100%; height:auto; }
a { color:inherit; text-decoration:none; }
ul,ol { list-style:none; }
button { cursor:pointer; border:none; background:none; font:inherit; }
address { font-style:normal; }
:focus-visible { outline:3px solid var(--red); outline-offset:3px; }
@media (prefers-reduced-motion:reduce) { *,*::before,*::after { animation-duration:.01ms!important; transition-duration:.01ms!important; } html { scroll-behavior:auto; } }

/* ── 4. TYPOGRAPHY ────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family:var(--font-h); font-weight:700; line-height:1.18;
  color:var(--text-primary); letter-spacing:-.02em;
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
}
h1 { font-size:clamp(2rem,4.5vw,3rem); letter-spacing:-.03em; }
h2 { font-size:clamp(1.6rem,3.2vw,2.25rem); letter-spacing:-.025em; }
h3 { font-size:clamp(1.05rem,1.8vw,1.35rem); letter-spacing:-.01em; font-weight:600; }
h4 { font-size:1.125rem; font-weight:600; }
p  { line-height:1.75; color:var(--text-secondary); }
/* Eyebrow and nav also use Montserrat via --font-h */
.header-nav__link,.header-nav__dropdown a,.header-cta,
.btn,.eyebrow,.section-link,.proof-strip__label,
.team-card__name,.team-card__role,.service-card__name,
.review-card__author,.faq-item__btn {
  -webkit-font-smoothing:antialiased;
}

.eyebrow { display:inline-block; font-family:var(--font-h); font-size:var(--xs); font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--red); margin-bottom:.75rem; }
.section-title { margin-bottom:.5rem; }
.inner .section-title,.inner .eyebrow { display:block; text-align:center; }
.inner .section-subtitle { text-align:center; }
.section-subtitle { font-size:var(--lg); color:var(--text-secondary); max-width:700px; margin:0 auto 3rem; text-align:center; line-height:1.65; }

/* ── 5. WIDTH SYSTEM ──────────────────────────────────────── */
/*
  Every coloured band stretches full-width with padding: 0 var(--px).
  Every inner wrapper is capped with max-width: var(--W) + margin:0 auto.
  This produces pixel-perfect alignment across header, sections, footer.
*/
.band        { padding:var(--py) var(--px); }
.band--tight { padding:var(--py-s) var(--px); }
.inner { width:100%; max-width:var(--W); margin:0 auto; }

/* sections default */
section { padding:var(--py) var(--px); }
section.tight { padding:var(--py-s) var(--px); }

/* Animations */
.fade-in { opacity:0; transform:translateY(24px); transition:opacity .55s ease,transform .55s ease; }
.fade-in.is-visible { opacity:1; transform:none; }
.fade-in-children > * { opacity:0; transform:translateY(20px); transition:opacity .45s ease,transform .45s ease; }
.fade-in-children.is-visible > *:nth-child(1) { opacity:1;transform:none;transition-delay:.05s }
.fade-in-children.is-visible > *:nth-child(2) { opacity:1;transform:none;transition-delay:.12s }
.fade-in-children.is-visible > *:nth-child(3) { opacity:1;transform:none;transition-delay:.19s }
.fade-in-children.is-visible > *:nth-child(4) { opacity:1;transform:none;transition-delay:.26s }
.fade-in-children.is-visible > *:nth-child(5) { opacity:1;transform:none;transition-delay:.33s }
.fade-in-children.is-visible > *:nth-child(6) { opacity:1;transform:none;transition-delay:.40s }
.fade-in-children.is-visible > *:nth-child(7) { opacity:1;transform:none;transition-delay:.47s }
.fade-in-children.is-visible > *:nth-child(8) { opacity:1;transform:none;transition-delay:.54s }

/* ── 6. BUTTONS ───────────────────────────────────────────── */
.btn { display:inline-flex; align-items:center; justify-content:center; gap:.5rem; font-family:var(--font-h); font-size:var(--sm); font-weight:700; letter-spacing:.04em; text-transform:uppercase; padding:0 1.75rem; height:52px; min-height:48px; border-radius:var(--r-sm); transition:background var(--ease),color var(--ease),transform var(--ease),box-shadow var(--ease); white-space:nowrap; }
.btn--red           { background:var(--red);   color:var(--white); }
.btn--red:hover     { background:var(--red-dark); transform:translateY(-1px); box-shadow:var(--sh-md); }
.btn--blue          { background:var(--blue);  color:var(--white); }
.btn--blue:hover    { background:var(--blue-dark); transform:translateY(-1px); }
.btn--outline-white { background:transparent; color:var(--white); border:2px solid rgba(255,255,255,.7); }
.btn--outline-white:hover { background:rgba(255,255,255,.12); border-color:var(--white); }
.btn--outline-blue  { background:transparent; color:var(--blue); border:2px solid var(--blue); }
.btn--outline-blue:hover { background:var(--blue); color:var(--white); }
.btn--white         { background:var(--white); color:var(--blue); }
.btn--white:hover   { background:var(--gray-100); }
.btn--lg   { height:60px; font-size:var(--base); padding:0 2.25rem; }
.btn--full { width:100%; }

/* ── 7. HEADER ────────────────────────────────────────────── */
.site-header { position:sticky; top:0; z-index:100; background:var(--white); box-shadow:0 1px 0 var(--gray-200); transition:box-shadow var(--ease); }
.site-header.is-scrolled { box-shadow:var(--sh-md); }

/* Topbar — full bleed blue, inner aligned with --W */
.header-topbar { background:var(--blue); color:rgba(255,255,255,.85); font-size:var(--xs); font-family:var(--font-h); padding:0 var(--px); }
.header-topbar .inner { display:flex; align-items:center; gap:1.5rem; padding-top:.45rem; padding-bottom:.45rem; }
.header-topbar__address,.header-topbar__hours { display:flex; align-items:center; gap:.35rem; }
.header-topbar__phone { margin-left:auto; color:var(--white); font-weight:700; display:flex; align-items:center; gap:.4rem; }
.header-topbar__phone:hover { color:var(--red-light); }

/* Main nav row — same padding system */
.header-main { background:var(--white); padding:0 var(--px); }
.header-main .inner { display:flex; align-items:center; gap:2rem; padding-top:.85rem; padding-bottom:.85rem; }
.header-logo img { height:52px; width:auto; }
.header-nav { margin-left:auto; }
.header-nav__list { display:flex; align-items:center; gap:.75rem; }
.header-nav__link { display:flex; align-items:center; gap:.25rem; font-family:var(--font-h); font-size:0.9375rem; font-weight:600; color:var(--text-primary); padding:.6rem .75rem; border-radius:var(--r-sm); min-height:48px; white-space:nowrap; transition:color var(--ease),background var(--ease); }
.header-nav__link:hover,.header-nav__link.is-active { color:var(--red); background:var(--gray-50); }
.header-nav__item--has-dropdown { position:relative; display:flex; align-items:center; }
.header-nav__chevron { transition:transform var(--ease); display:block; }
/* Chevron button: desktop = decorative/hidden (hover on parent li opens dropdown),
   mobile = visible tap target, separate from the "Services" link so the link still navigates */
.header-nav__chevron-btn { display:none; align-items:center; justify-content:center; background:none; border:none; cursor:pointer; color:var(--text-primary); padding:.6rem; min-width:44px; min-height:44px; border-radius:var(--r-sm); }
.header-nav__chevron-btn:hover { background:var(--gray-50); color:var(--red); }
.header-nav__dropdown { position:absolute; top:calc(100% + 4px); left:0; background:var(--white); border:1px solid var(--gray-200); border-radius:var(--r-md); box-shadow:var(--sh-lg); min-width:220px; padding:.5rem 0; opacity:0; visibility:hidden; transform:translateY(6px); transition:opacity var(--ease),transform var(--ease),visibility var(--ease); z-index:10; }
.header-nav__item--has-dropdown:hover .header-nav__dropdown,
.header-nav__item--has-dropdown.is-open .header-nav__dropdown { opacity:1; visibility:visible; transform:translateY(0); }
.header-nav__item--has-dropdown:hover .header-nav__chevron,
.header-nav__item--has-dropdown.is-open .header-nav__chevron { transform:rotate(180deg); }
.header-nav__dropdown a { display:block; padding:.55rem 1.25rem; font-family:var(--font-h); font-size:0.9375rem; font-weight:600; color:var(--text-primary); transition:color var(--ease),background var(--ease); }
.header-nav__dropdown a:hover { color:var(--red); background:var(--gray-50); }
.header-cta { margin-left:.5rem; height:44px; font-size:0.8125rem; padding:0 1.25rem; }
.header-hamburger { display:none; flex-direction:column; justify-content:center; gap:5px; width:44px; height:44px; padding:10px; margin-left:auto; border-radius:var(--r-sm); }
.header-hamburger__bar { display:block; width:22px; height:2px; background:var(--blue); border-radius:2px; transition:transform var(--ease),opacity var(--ease); }

/* Ad mode */
.ad-sticky-bar { position:fixed; bottom:0; left:0; right:0; display:flex; z-index:200; box-shadow:0 -2px 12px rgba(0,0,0,.15); }
.ad-sticky-bar__call     { flex:1; border-radius:0; background:var(--blue); color:var(--white); height:56px; display:flex; align-items:center; justify-content:center; gap:.5rem; font-family:var(--font-h); font-size:var(--sm); font-weight:700; }
.ad-sticky-bar__estimate { flex:1; border-radius:0; background:var(--red);  color:var(--white); height:56px; display:flex; align-items:center; justify-content:center; gap:.5rem; font-family:var(--font-h); font-size:var(--sm); font-weight:700; }

/* ── 8. HERO ──────────────────────────────────────────────── */
.hero { position:relative; min-height:92vh; display:flex; align-items:center; overflow:hidden; background:var(--blue-dark); padding:90px var(--px) 70px; }
.hero__img-bg { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
.hero::after { content:''; position:absolute; inset:0; z-index:1; background:linear-gradient(105deg,rgba(13,20,35,.90) 0%,rgba(13,20,35,.70) 55%,rgba(13,20,35,.40) 100%); }
/* YouTube iframe hero video — desktop only */
.hero__video-wrap { position:absolute; inset:-60px; z-index:0; opacity:0; transition:opacity 1s ease; pointer-events:none; }
.hero__video-wrap.is-loaded { opacity:1; }
.hero__video-frame { width:100%; height:100%; border:none; object-fit:cover; }
/* Mobile hero background image — swap src via config when desired */
.hero__mobile-bg { display:none; position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
.hero__inner { position:relative; z-index:2; width:100%; max-width:var(--W); margin:0 auto; }
.hero__content { max-width:800px; color:var(--white); }
.hero__eyebrow { display:inline-flex; align-items:center; gap:.5rem; font-family:var(--font-h); font-size:var(--xs); font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:rgba(255,255,255,.75); margin-bottom:1.25rem; padding:.4rem .9rem; border:1px solid rgba(255,255,255,.25); border-radius:100px; background:rgba(255,255,255,.07); backdrop-filter:blur(4px); }
.hero h1 { color:var(--white); font-size:clamp(2.1rem,4.8vw,3.5rem); line-height:1.1; margin-bottom:1.25rem; letter-spacing:-.03em; }
.hero h1 .accent { color:var(--red); }
.hero__subtitle { font-size:var(--lg); color:rgba(255,255,255,.82); line-height:1.7; margin-bottom:2.25rem; max-width:560px; }
.hero__ctas { display:flex; flex-wrap:wrap; align-items:center; gap:1rem; margin-bottom:1rem; }
.hero__hours { font-family:var(--font-h); font-size:var(--xs); font-weight:600; color:rgba(255,255,255,.55); letter-spacing:.06em; text-transform:uppercase; }
.hero__badges { display:flex; flex-wrap:wrap; gap:1.25rem; margin-top:2.5rem; padding-top:2rem; border-top:1px solid rgba(255,255,255,.14); }
.hero__badge { display:flex; align-items:center; gap:.5rem; font-family:var(--font-h); font-size:0.8125rem; font-weight:700; color:rgba(255,255,255,.85); letter-spacing:.04em; }
.hero__badge svg { flex-shrink:0; color:var(--red); }

/* ── 9. PROOF STRIP ───────────────────────────────────────── */
.proof-strip { background:var(--blue); padding:3.5rem var(--px); }
.proof-strip__grid { display:grid; grid-template-columns:repeat(4,1fr); gap:0; max-width:var(--W); margin:0 auto; }
.proof-strip__item { text-align:center; padding:1rem 2rem; border-right:1px solid rgba(255,255,255,.15); }
.proof-strip__item:last-child { border-right:none; }
.proof-strip__number { font-family:var(--font-h); font-size:clamp(2.5rem,4vw,3.5rem); font-weight:700; color:var(--white); line-height:1; letter-spacing:-.04em; display:block; margin-bottom:.5rem; }
.proof-strip__item--stacked .proof-strip__number { font-size:clamp(2.5rem,4vw,3.5rem); }
.proof-strip__item--stacked .proof-strip__label { margin-top:.5rem; }
.proof-strip__number .unit { font-size:.6em; color:var(--red); }
.proof-strip__label { font-family:var(--font-h); font-size:var(--sm); font-weight:600; color:rgba(255,255,255,.72); text-transform:uppercase; letter-spacing:.04em; line-height:1.2; }

/* ── 10. SERVICES ─────────────────────────────────────────── */
.services-grid-section { background:var(--gray-50); padding:var(--py) var(--px); }
.services-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.25rem; margin:0 auto 3rem; }
.service-card { background:var(--white); border:1px solid var(--gray-200); border-radius:var(--r-lg); padding:2rem 1.5rem; transition:transform var(--ease),box-shadow var(--ease),border-color var(--ease); text-align:center; text-decoration:none; display:flex; flex-direction:column; align-items:center; gap:.75rem; }
.service-card:hover { transform:translateY(-4px); box-shadow:var(--sh-lg); border-color:var(--blue); }
.service-card__icon { display:flex; align-items:center; justify-content:center; width:56px; height:56px; background:rgba(39,57,92,.08); border-radius:12px; color:var(--blue); margin-bottom:.25rem; }
.service-card__icon svg { flex-shrink:0; }
.service-card__name { font-family:var(--font-h); font-size:var(--base); font-weight:700; color:var(--text-primary); }
.service-card:hover .service-card__name { color:var(--red); }
.service-card__desc { font-size:var(--sm); color:var(--text-muted); line-height:1.55; }
.section-link { display:inline-flex; align-items:center; gap:.4rem; font-family:var(--font-h); font-size:var(--sm); font-weight:700; color:var(--red); letter-spacing:.04em; text-transform:uppercase; transition:gap var(--ease); }
.section-link:hover { gap:.7rem; color:var(--red-dark); }

/* ── 11. PROJECTS ─────────────────────────────────────────── */
.projects-section { background:var(--white); padding:var(--py) var(--px); }
.projects-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1.5rem; margin:0 auto 2rem; }
.project-card { position:relative; border-radius:var(--r-lg); overflow:hidden; background:var(--gray-100); aspect-ratio:4/3; display:block; }
.project-card:hover .project-card__img { transform:scale(1.04); }
.project-card__img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.project-card__overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(13,20,35,.90) 0%,rgba(13,20,35,.35) 55%,transparent 100%); display:flex; flex-direction:column; justify-content:flex-end; padding:1.75rem; }
.project-card__meta { font-family:var(--font-h); font-size:var(--xs); font-weight:700; letter-spacing:.1em; text-transform:uppercase; margin-bottom:.3rem; }
/* Meta label: white text on semi-transparent red pill */
.project-card__meta-inner { display:inline-block; background:var(--red); color:var(--white); padding:.2rem .6rem; border-radius:3px; }
.project-card__title { font-family:var(--font-h); font-size:var(--xl); font-weight:700; color:var(--white); margin-bottom:.4rem; line-height:1.2; }
.project-card__desc { font-size:var(--sm); color:rgba(255,255,255,.80); line-height:1.55; margin-bottom:1rem; }
.project-card__cta { display:inline-flex; align-items:center; gap:.4rem; font-family:var(--font-h); font-size:var(--xs); font-weight:700; color:var(--white); text-transform:uppercase; letter-spacing:.08em; background:rgba(255,255,255,.15); border:1px solid rgba(255,255,255,.3); border-radius:var(--r-sm); padding:.45rem 1rem; backdrop-filter:blur(4px); transition:background var(--ease),gap var(--ease); }
.project-card:hover .project-card__cta { background:rgba(255,255,255,.25); gap:.65rem; }
.project-card__overlay { text-align:left; }

/* Video */
.video-block { margin:3rem auto 0; max-width:800px; text-align:center; }
.video-block__title { font-family:var(--font-h); font-size:var(--lg); font-weight:700; color:var(--text-primary); margin-bottom:1.25rem; }
.video-player { position:relative; border-radius:var(--r-lg); overflow:hidden; background:var(--blue-dark); cursor:pointer; }
.video-player--16-9 { aspect-ratio:16/9; }
.video-player--9-16 { aspect-ratio:9/16; }
.video-player img { width:100%; height:100%; object-fit:cover; }
.video-player__play { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; background:rgba(0,0,0,.25); transition:background var(--ease); }
.video-player:hover .video-player__play { background:rgba(0,0,0,.35); }
.video-player__play-btn { width:72px; height:72px; background:var(--red); border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:var(--sh-xl); transition:transform var(--ease),background var(--ease); }
.video-player:hover .video-player__play-btn { transform:scale(1.08); background:var(--red-dark); }
.video-placeholder { border-radius:var(--r-lg); background:var(--blue-dark); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:1rem; color:rgba(255,255,255,.45); font-family:var(--font-h); font-size:var(--sm); font-weight:600; letter-spacing:.06em; text-transform:uppercase; line-height:1.6; }
.video-placeholder--16-9 { aspect-ratio:16/9; }
.video-placeholder--9-16 { aspect-ratio:9/16; }

/* ── 12. TESTIMONIALS VIDEO ───────────────────────────────── */
.testimonial-video-section { background:var(--gray-50); padding:var(--py-s) var(--px); }
/* 3 videos 9:16 side by side */
.testimonial-video-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2.5rem; margin:0 auto; max-width:960px; }

/* ── 13. WHY LUMI ─────────────────────────────────────────── */
.why-lumi { background:var(--blue); padding:var(--py) var(--px); }
.why-lumi .section-title { color:var(--white); }
.why-lumi .section-subtitle { color:rgba(255,255,255,.72); }
.why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.why-card { background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.10); border-radius:var(--r-lg); padding:2.25rem 1.75rem; text-align:left; transition:background var(--ease),transform var(--ease); }
.why-card:hover { background:rgba(255,255,255,.10); transform:translateY(-3px); }
.why-card__icon { display:flex; align-items:center; justify-content:center; width:56px; height:56px; background:rgba(255,255,255,.12); border-radius:12px; color:var(--white); margin-bottom:1.25rem; }
.why-card__icon svg { flex-shrink:0; }
.why-card__title { font-family:var(--font-h); font-size:var(--lg); font-weight:700; color:var(--white); margin-bottom:.75rem; }
.why-card__text { font-size:var(--sm); color:rgba(255,255,255,.72); line-height:1.7; }

/* ── 14. REVIEWS — CAROUSEL ───────────────────────────────── */
.reviews-section { background:var(--gray-50); padding:var(--py) var(--px); }
.reviews-rating-badge { display:inline-flex; align-items:center; gap:.75rem; background:var(--white); border:1px solid var(--gray-200); border-radius:100px; padding:.6rem 1.25rem; margin-bottom:2.5rem; font-family:var(--font-h); font-size:var(--sm); font-weight:700; box-shadow:var(--sh-sm); }
.reviews-rating-badge .stars { color:#f5a623; letter-spacing:2px; }
.reviews-rating-badge .label { color:var(--text-secondary); }

/* Carousel wrapper */
.reviews-carousel-wrap { position:relative; overflow:hidden; margin:0 -1rem; }
.reviews-track { display:flex; gap:1.25rem; padding:0 1rem 1rem; transition:transform .45s cubic-bezier(.25,.46,.45,.94); will-change:transform; }
/* Each card — fixed width so 3 show at once on desktop */
.review-card {
  flex:0 0 calc((100% - 2 * 1.25rem) / 3);
  background:var(--white); border:1px solid var(--gray-200); border-radius:var(--r-lg);
  padding:1.75rem; display:flex; flex-direction:column; gap:1rem; box-shadow:var(--sh-sm);
}
.review-card__stars { color:#f5a623; font-size:1rem; letter-spacing:2px; }
.review-card__text { font-size:var(--sm); color:var(--text-secondary); line-height:1.75; flex:1; font-style:italic; }
.review-card__footer { display:flex; align-items:center; justify-content:space-between; gap:.75rem; padding-top:1rem; border-top:1px solid var(--gray-100); }
.review-card__author { font-family:var(--font-h); font-size:var(--sm); font-weight:700; color:var(--text-primary); }
.review-card__platform { font-size:var(--xs); color:var(--text-muted); font-weight:600; }
.review-card__verify { font-family:var(--font-h); font-size:var(--xs); font-weight:700; color:var(--blue); text-decoration:underline; white-space:nowrap; }
.review-card__verify:hover { color:var(--red); }

/* Carousel controls */
.reviews-controls { display:flex; align-items:center; justify-content:center; gap:1.5rem; margin-top:2rem; }
.reviews-btn { width:44px; height:44px; border-radius:50%; background:var(--white); border:2px solid var(--gray-200); display:flex; align-items:center; justify-content:center; cursor:pointer; transition:border-color var(--ease),background var(--ease); }
.reviews-btn:hover { border-color:var(--blue); background:var(--blue); color:var(--white); }
.reviews-btn svg { display:block; }
.reviews-dots { display:flex; gap:.5rem; }
.reviews-dot { width:8px; height:8px; border-radius:50%; background:var(--gray-200); border:none; cursor:pointer; transition:background var(--ease),transform var(--ease); }
.reviews-dot.is-active { background:var(--blue); transform:scale(1.3); }

/* External review links */
.reviews-links { display:flex; justify-content:center; gap:1.5rem; flex-wrap:wrap; margin-top:2rem; }

/* ── 15. TEAM ─────────────────────────────────────────────── */
.team-section { background:var(--blue); padding:var(--py) var(--px); }

/* 3-column grid of horizontal cards */
.team-list {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.25rem;
  margin:0 auto 2.5rem;
}

.team-row {
  display:flex;
  align-items:center;
  gap:1.25rem;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius:var(--r-lg);
  padding:1.25rem 1.5rem;
  transition:background var(--ease),transform var(--ease);
  text-align:left;
}
.team-row:hover {
  background:rgba(255,255,255,.10);
  transform:translateY(-2px);
}

.team-row__photo-wrap {
  width:80px; height:80px;
  border-radius:50%;
  overflow:hidden;
  flex-shrink:0;
  border:2px solid rgba(255,255,255,.20);
  transition:border-color var(--ease);
}
.team-row:hover .team-row__photo-wrap { border-color:var(--red); }
.team-row__photo { width:100%; height:100%; object-fit:cover; object-position:top; }

.team-row__info { flex:1; min-width:0; }
.team-row__name {
  font-family:var(--font-h);
  font-size:var(--base);
  font-weight:700;
  color:var(--white);
  margin-bottom:.2rem;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.team-row__role {
  font-family:var(--font-h);
  font-size:var(--xs);
  font-weight:700;
  color:var(--red);
  text-transform:uppercase;
  letter-spacing:.07em;
  margin-bottom:.35rem;
  line-height:1.3;
}
.team-row__credential {
  font-size:var(--xs);
  color:rgba(255,255,255,.60);
  line-height:1.45;
}

/* ── 16. CREDENTIALS ──────────────────────────────────────── */
.credentials-section { background:var(--gray-50); padding:var(--py) var(--px); }

/* Centered heading block */
.credentials-header { text-align:center; margin-bottom:3rem; }
.credentials-header .section-title { margin-bottom:.5rem; }
.credentials-header .section-subtitle { max-width:720px; margin:0 auto; }

/* Two equal white cards */
.cred-cards {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1.5rem;
  margin:0 auto 2.5rem;
  max-width:var(--W);
}
.cred-card {
  background:var(--white);
  border:1px solid var(--gray-200);
  border-radius:var(--r-lg);
  padding:2rem 2.25rem;
  box-shadow:var(--sh-sm);
}
.cred-card__header {
  display:flex;
  align-items:center;
  gap:.875rem;
  margin-bottom:1.5rem;
  padding-bottom:1.25rem;
  border-bottom:1px solid var(--gray-100);
}
.cred-card__icon {
  width:44px; height:44px;
  background:rgba(234,11,18,.08);
  border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  color:var(--red);
  flex-shrink:0;
}
.cred-card__title {
  font-family:var(--font-h);
  font-size:var(--base);
  font-weight:700;
  color:var(--text-primary);
  letter-spacing:-.01em;
}

/* License list — label left, value right, bold */
.cred-list {
  display:flex;
  flex-direction:column;
  gap:0;
  list-style:none;
}
.cred-list li {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:.625rem 0;
  border-bottom:1px solid var(--gray-50);
}
.cred-list li:last-child { border-bottom:none; }
.cred-list__label {
  font-size:var(--sm);
  color:var(--text-secondary);
  line-height:1.4;
}
.cred-list__value {
  font-family:var(--font-h);
  font-size:var(--sm);
  font-weight:700;
  color:var(--blue);
  white-space:nowrap;
  flex-shrink:0;
}

/* Badge strip — single row, no wrapping, centered */
.cred-badges {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:0;
  max-width:var(--W);
  margin:0 auto;
  background:var(--white);
  border:1px solid var(--gray-200);
  border-radius:var(--r-lg);
  padding:1.5rem 2rem;
  box-shadow:var(--sh-sm);
}
.cred-badge {
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 2rem;
  border-right:1px solid var(--gray-200);
  flex:1;
}
.cred-badge:last-child { border-right:none; }
.cred-badge img {
  height:52px;
  width:auto;
  max-width:100%;
  object-fit:contain;
  filter:grayscale(15%);
  transition:filter var(--ease),transform var(--ease);
}
.cred-badge img:hover { filter:none; transform:scale(1.06); }

@media (max-width:900px) {
  .cred-cards { grid-template-columns:1fr; }
  .cred-badges { flex-wrap:wrap; gap:1.25rem; padding:1.25rem; }
  .cred-badge { border-right:none; flex:0 0 calc(50% - 1.25rem); padding:.5rem; }
}
@media (max-width:600px) {
  .cred-badge { flex:0 0 calc(50% - .75rem); }
  .cred-list__value { font-size:var(--xs); }
}

/* ── 17. SERVICE AREAS ────────────────────────────────────── */
.service-areas { background:var(--white); padding:var(--py) var(--px); }
.areas-grid { display:grid; grid-template-columns:1fr 1fr; gap:3rem; max-width:var(--W); margin:0 auto; text-align:left; }
.areas-col__title { font-family:var(--font-h); font-size:var(--sm); font-weight:700; color:var(--blue); text-transform:uppercase; letter-spacing:.1em; padding-bottom:.75rem; margin-bottom:1rem; border-bottom:2px solid var(--blue); }
.areas-col__cities { display:flex; flex-wrap:wrap; gap:.4rem .75rem; }
.areas-col__cities a { font-size:var(--sm); color:var(--text-secondary); text-decoration:underline; text-underline-offset:2px; text-decoration-color:transparent; transition:color var(--ease),text-decoration-color var(--ease); }
.areas-col__cities a:hover { color:var(--red); text-decoration-color:var(--red); }
.areas-col__note { margin-top:1.25rem; font-size:var(--sm); color:var(--text-muted); line-height:1.6; }
.areas-col__note a { color:var(--blue); font-weight:700; }

/* ── 18. CTA FORM ─────────────────────────────────────────── */
.cta-form-section { background:linear-gradient(135deg,var(--blue-dark) 0%,var(--blue) 100%); padding:var(--py) var(--px); }
.cta-form-layout { display:grid; grid-template-columns:1fr 1.2fr; gap:4rem; align-items:start; max-width:var(--W); margin:0 auto; }
.cta-form-info__subtitle { font-size:var(--lg); color:rgba(255,255,255,.80); margin-bottom:2rem; line-height:1.65; }
.cta-form-info__steps { display:flex; flex-direction:column; gap:1rem; margin-bottom:2.5rem; }
.cta-form-info__step { display:flex; align-items:flex-start; gap:1rem; }
.cta-form-info__step-num { width:32px; height:32px; background:var(--red); border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:var(--font-h); font-size:var(--sm); font-weight:700; color:var(--white); flex-shrink:0; }
.cta-form-info__step-text { font-size:var(--base); color:rgba(255,255,255,.82); line-height:1.5; }
.cta-form-info__contact { border-top:1px solid rgba(255,255,255,.15); padding-top:1.75rem; }
.cta-form-info__prefer { font-family:var(--font-h); font-size:var(--xs); font-weight:700; color:rgba(255,255,255,.55); text-transform:uppercase; letter-spacing:.1em; margin-bottom:.75rem; }
.cta-form-info__phone { display:block; font-family:var(--font-h); font-size:var(--2xl); font-weight:700; color:var(--white); margin-bottom:.25rem; }
.cta-form-info__phone:hover { color:var(--red-light); }
.cta-form-info__sub { font-size:var(--sm); color:rgba(255,255,255,.55); margin-bottom:.5rem; }
.cta-form-info__email { font-size:var(--sm); color:rgba(255,255,255,.70); text-decoration:underline; }
.cta-form { background:var(--white); border-radius:var(--r-xl); padding:2.5rem; box-shadow:var(--sh-xl); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-group { display:flex; flex-direction:column; gap:.4rem; margin-bottom:1rem; }
.form-label { font-family:var(--font-h); font-size:var(--xs); font-weight:700; color:var(--text-primary); text-transform:uppercase; letter-spacing:.06em; }
.form-input,.form-select,.form-textarea { width:100%; padding:.75rem 1rem; border:1.5px solid var(--gray-200); border-radius:var(--r-md); font-family:var(--font-b); font-size:var(--base); color:var(--text-primary); background:var(--white); min-height:48px; -webkit-appearance:none; appearance:none; transition:border-color var(--ease),box-shadow var(--ease); }
.form-input:focus,.form-select:focus,.form-textarea:focus { outline:none; border-color:var(--blue); box-shadow:0 0 0 3px rgba(39,57,92,.12); }
.form-select { background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%236c757d' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 1rem center; padding-right:2.5rem; cursor:pointer; }
.form-textarea { min-height:100px; resize:vertical; }
.form-submit-btn { margin-top:1.25rem; width:100%; height:56px; font-size:var(--base); }

/* ── 19. FOOTER ───────────────────────────────────────────── */
.site-footer { background:var(--blue-dark); color:rgba(255,255,255,.75); padding:0 var(--px); }
.site-footer__inner { display:grid; grid-template-columns:1.6fr 1fr 1fr 1.2fr; gap:2.5rem; padding:4rem 0 3rem; max-width:var(--W); margin:0 auto; }
.site-footer__brand img { height:48px; width:auto; margin-bottom:1rem; }
.site-footer__tagline { font-family:var(--font-h); font-size:var(--xs); font-weight:700; color:rgba(255,255,255,.45); text-transform:uppercase; letter-spacing:.1em; margin-bottom:1.25rem; }
.site-footer__address { font-size:var(--sm); line-height:1.8; color:rgba(255,255,255,.65); }
.site-footer__address a { color:rgba(255,255,255,.65); }
.site-footer__address a:hover { color:var(--white); }
.site-footer__social { display:flex; gap:.75rem; margin-top:1.25rem; }
.site-footer__social a { width:38px; height:38px; background:rgba(255,255,255,.08); border-radius:var(--r-md); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.65); transition:background var(--ease),color var(--ease); }
.site-footer__social a:hover { background:var(--red); color:var(--white); }
.site-footer__heading { font-family:var(--font-h); font-size:var(--xs); font-weight:700; color:var(--white); text-transform:uppercase; letter-spacing:.1em; margin-bottom:1.25rem; }
.site-footer__links { display:flex; flex-direction:column; gap:.55rem; }
.site-footer__links a { font-size:var(--sm); color:rgba(255,255,255,.62); transition:color var(--ease); }
.site-footer__links a:hover { color:var(--white); }
.site-footer__area-text { font-size:var(--sm); color:rgba(255,255,255,.62); line-height:1.65; }
.site-footer__area-text a { color:rgba(255,255,255,.85); font-weight:600; }
.site-footer__credentials { display:flex; flex-direction:column; gap:.5rem; }
.site-footer__credentials li { font-size:var(--xs); color:rgba(255,255,255,.55); font-family:var(--font-h); font-weight:600; }
.site-footer__badges { display:flex; flex-wrap:wrap; gap:.6rem; margin-top:1.25rem; align-items:center; }
.site-footer__badges img { height:38px; width:auto; max-width:80px; object-fit:contain; filter:grayscale(1) brightness(1.8); opacity:.55; transition:filter var(--ease),opacity var(--ease); }
.site-footer__badges img:hover { filter:grayscale(0) brightness(1); opacity:1; }
.site-footer__bottom { border-top:1px solid rgba(255,255,255,.08); }
.site-footer__bottom .inner { display:flex; justify-content:space-between; align-items:center; padding:1.25rem var(--px); max-width:var(--W); margin:0 auto; font-size:var(--xs); color:rgba(255,255,255,.38); font-family:var(--font-h); font-weight:600; }
.site-footer__bottom .inner a { color:rgba(255,255,255,.55); }
.site-footer__bottom .inner a:hover { color:var(--white); }

/* ── 20. MOBILE STICKY ────────────────────────────────────── */
.mobile-sticky-bar { display:none; position:fixed; bottom:0; left:0; right:0; z-index:200; box-shadow:0 -2px 16px rgba(0,0,0,.18); }
.mobile-sticky-bar__btn { flex:1; height:56px; display:flex; align-items:center; justify-content:center; gap:.5rem; font-family:var(--font-h); font-size:var(--sm); font-weight:700; text-decoration:none; border-radius:0; }
.mobile-sticky-bar__btn--call     { background:var(--blue); color:var(--white); }
.mobile-sticky-bar__btn--estimate { background:var(--red);  color:var(--white); }

/* ── 21. FAQ ──────────────────────────────────────────────── */
.faq-list { max-width:800px; margin:0 auto; display:flex; flex-direction:column; gap:.75rem; }
.faq-item { border:1px solid var(--gray-200); border-radius:var(--r-md); overflow:hidden; }
.faq-item__btn { width:100%; display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:1.25rem 1.5rem; font-family:var(--font-h); font-size:var(--base); font-weight:700; color:var(--text-primary); background:var(--white); text-align:left; cursor:pointer; min-height:48px; transition:background var(--ease),color var(--ease); }
.faq-item__btn:hover { background:var(--gray-50); color:var(--blue); }
.faq-item.is-open .faq-item__btn { background:var(--blue); color:var(--white); }
.faq-item__icon { font-size:1.25rem; flex-shrink:0; transition:transform var(--ease); }
.faq-item.is-open .faq-item__icon { transform:rotate(45deg); }
.faq-item__answer { padding:1.25rem 1.5rem; background:var(--white); border-top:1px solid var(--gray-100); font-size:var(--base); color:var(--text-secondary); line-height:1.75; }

/* ── 22. BREADCRUMB ───────────────────────────────────────── */
.breadcrumb { padding:.75rem var(--px); background:var(--gray-50); border-bottom:1px solid var(--gray-200); }
.breadcrumb .inner { display:flex; align-items:center; gap:.4rem; flex-wrap:nowrap; overflow:hidden; white-space:nowrap; }
.breadcrumb__list { display:flex; align-items:center; gap:.4rem; list-style:none; flex-wrap:nowrap; white-space:nowrap; width:100%; }
.breadcrumb__sep { flex-shrink:0; color:var(--text-light); }
.breadcrumb__item { font-size:var(--xs); font-family:var(--font-h); font-weight:600; color:var(--text-muted); white-space:nowrap; }
.breadcrumb__item:last-child { overflow:hidden; text-overflow:ellipsis; max-width:260px; }
.breadcrumb__item a { color:var(--text-muted); transition:color var(--ease); }
.breadcrumb__item a:hover { color:var(--red); }
.breadcrumb__sep { color:var(--text-light); }

/* ── 23. RESPONSIVE ───────────────────────────────────────── */
@media (max-width:900px) {
  :root { --py:72px; --py-s:48px; }
  .header-topbar__address,.header-topbar__hours { display:none; }
  .header-topbar__phone { margin-left:0; }
  .header-hamburger { display:flex; }
  .header-nav { position:fixed; top:0; left:0; right:0; bottom:0; background:var(--white); z-index:99; display:flex; flex-direction:column; padding:5rem var(--px) 2rem; transform:translateX(-100%); transition:transform var(--ease); overflow-y:auto; }
  .header-nav.is-open { transform:translateX(0); }
  .header-nav__list { flex-direction:column; gap:0; }
  .header-nav__link { font-size:var(--lg); padding:1rem 0; border-radius:0; border-bottom:1px solid var(--gray-100); flex:1; }
  .header-nav__item--has-dropdown { border-bottom:1px solid var(--gray-100); display:flex; flex-wrap:wrap; align-items:center; }
  .header-nav__item--has-dropdown .header-nav__link { border-bottom:none; flex:1; }
  .header-nav__chevron-btn { display:flex; }
  .header-nav__dropdown { position:static; opacity:1; visibility:visible; transform:none; box-shadow:none; border:none; padding:0 0 0 1rem; display:none; background:none; width:100%; }
  .header-nav__item--has-dropdown.is-open .header-nav__dropdown { display:block; }
  .header-nav__dropdown a { font-size:var(--base); padding:.75rem 0; border-bottom:1px solid var(--gray-50); }
  .header-cta { display:none; }

  .hero { min-height:80vh; padding:80px var(--px) 50px; }
  .hero__video-wrap--desktop { display:none !important; }
  .hero__mobile-bg { display:block; }
  .services-grid     { grid-template-columns:repeat(2,1fr); }
  .projects-grid     { grid-template-columns:1fr; }
  .why-grid          { grid-template-columns:repeat(2,1fr); }
  .team-list         { grid-template-columns:1fr 1fr; }
  .proof-strip__grid { grid-template-columns:repeat(2,1fr); }
  .proof-strip__item { border-right:none; border-bottom:1px solid rgba(255,255,255,.15); }
  .proof-strip__item:nth-child(odd)  { border-right:1px solid rgba(255,255,255,.15); }
  .proof-strip__item:nth-last-child(-n+2) { border-bottom:none; }
  .cta-form-layout   { grid-template-columns:1fr; gap:2.5rem; }
  .credentials-grid  { grid-template-columns:1fr; gap:2rem; }
  .areas-grid        { grid-template-columns:1fr; gap:2rem; }
  .site-footer__inner { grid-template-columns:1fr 1fr; gap:2rem; padding:3rem 0 2rem; }
  .testimonial-video-grid { grid-template-columns:1fr; max-width:340px; }
  .review-card { flex:0 0 calc(100% - 2 * 1.25rem / 2); }

  .mobile-sticky-bar { display:flex; }
  body { padding-bottom:56px; }
}

@media (max-width:600px) {
  :root { --py:56px; --py-s:40px; }
  .hero { padding:72px var(--px) 40px; }
  .hero h1 { font-size:clamp(1.65rem,6vw,2.2rem); }
  .hero__subtitle { font-size:var(--base); }
  .hero__ctas { flex-direction:column; }
  .hero__ctas .btn { width:100%; }
  .services-grid     { grid-template-columns:repeat(2,1fr); gap:.75rem; }
  .why-grid          { grid-template-columns:1fr; }
  .team-list         { grid-template-columns:1fr; }
  .site-footer__inner { grid-template-columns:1fr; }
  .site-footer__bottom .inner { flex-direction:column; gap:.5rem; text-align:center; }
  .form-row          { grid-template-columns:1fr; }
  .cta-form          { padding:1.5rem; }
  .review-card       { flex:0 0 85vw; }
  .testimonial-video-grid { max-width:100%; }
}

@media (max-width:380px) {
  .services-grid { grid-template-columns:1fr; }
  .team-grid     { grid-template-columns:1fr; }
}

/* ════════════════════════════════════════════════════════════
   INTERIOR PAGES — added v2026063008
════════════════════════════════════════════════════════════ */

/* ── Page Hero ───────────────────────────────────────────── */
.page-hero {
  padding: 120px var(--px) 90px;
  position: relative;
  overflow: hidden;
}
.page-hero--blue {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: var(--white);
}
/* Force left-align — eyebrow uses .inner which may inherit text-align:center */
.page-hero--blue .inner,
.page-hero--blue .inner .eyebrow,
.page-hero--blue .inner h1,
.page-hero--blue .inner p { text-align: left; }
.page-hero--blue h1 { color: var(--white); font-size: clamp(1.8rem,4vw,3rem); }
.page-hero__subtitle { font-size: var(--lg); color: rgba(255,255,255,.80); line-height: 1.65; margin-top: 1rem; max-width: 680px; }

/* Content width limiter — text occupies ~60% of hero on desktop, leaving 40% open on the right.
   Scoped inside a min-width query so mobile/tablet never inherits these caps. */
@media (min-width:901px) {
  .page-hero .inner > *,
  .page-hero--img .inner > * { max-width: 62%; }
  .page-hero .inner > h1,
  .page-hero--img .inner > h1 { max-width: 62%; }
  .page-hero .inner > .page-hero__subtitle,
  .page-hero--img .inner > .page-hero__subtitle { max-width: 58%; }
  .page-hero .inner > div[style*="display:flex"],
  .page-hero--img .inner > div[style*="display:flex"] { max-width: 62%; }
}

/* Image-backed hero (about-us) */
.page-hero--image { min-height: 50vh; display:flex; align-items:flex-end; overflow:hidden; }
.page-hero--image .inner { position:relative; z-index:2; color:var(--white); padding-bottom:3rem; text-align:left; }
.page-hero--image .inner .eyebrow,
.page-hero--image .inner h1,
.page-hero--image .inner p { text-align:left; }
.page-hero--image h1 { color:var(--white); font-size:clamp(2rem,4.5vw,3.25rem); }
.page-hero--image .page-hero__subtitle { color:rgba(255,255,255,.80); }
.page-hero__overlay { position:absolute; inset:0; background:linear-gradient(to top, rgba(13,20,35,.92) 0%, rgba(13,20,35,.55) 60%, rgba(13,20,35,.25) 100%); z-index:1; }
.page-hero--image > img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }

/* page-hero--img: hero WITH background image
   Stack order (bottom to top):
   1. section bg color (dark blue solid)
   2. .page-hero__bg img (covers entire section)
   3. ::after dark overlay (for text legibility)
   4. .inner content (text + buttons)
*/
.page-hero--img {
  position: relative;
  overflow: hidden;
  background: var(--blue-dark);
}
/* When image is present, override the blue gradient completely */
.page-hero--blue.page-hero--img {
  background: var(--blue-dark) !important;
}
.page-hero--img .page-hero__bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* No z-index — sits naturally above section background, below stacked elements */
}
.page-hero--img::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  background: linear-gradient(105deg,
    rgba(13,20,35,.90) 0%,
    rgba(13,20,35,.72) 55%,
    rgba(13,20,35,.52) 100%
  );
}
.page-hero--img .inner {
  position: relative;
  z-index: 2;
}
.page-hero--img .inner,
.page-hero--img .inner .eyebrow,
.page-hero--img .inner h1,
.page-hero--img .inner p { text-align: left; }
.page-hero--img h1 { color: var(--white); font-size: clamp(1.8rem,4vw,3rem); }
.page-hero--img .page-hero__subtitle { color: rgba(255,255,255,.82); }
.page-hero--img .eyebrow { color: rgba(255,255,255,.60); }

/* ── Contact Page ────────────────────────────────────────── */
.contact-page-section { padding: var(--py) var(--px); }
.contact-page-layout { display:grid; grid-template-columns:1fr 1.6fr; gap:3.5rem; align-items:start; max-width:var(--W); margin:0 auto; }
.contact-info-block { margin-bottom:2.5rem; padding-bottom:2.5rem; border-bottom:1px solid var(--gray-200); }
.contact-info-block:last-child { border-bottom:none; margin-bottom:0; }
.contact-info-block__title { font-family:var(--font-h); font-size:var(--lg); font-weight:700; color:var(--text-primary); margin-bottom:1.25rem; }
.contact-steps { display:flex; flex-direction:column; gap:1.25rem; }
.contact-step { display:flex; align-items:flex-start; gap:1rem; }
.contact-step__num { width:32px; height:32px; background:var(--red); border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:var(--font-h); font-size:var(--sm); font-weight:700; color:var(--white); flex-shrink:0; }
.contact-step strong { display:block; font-family:var(--font-h); font-size:var(--sm); font-weight:700; color:var(--text-primary); margin-bottom:.2rem; }
.contact-step p { font-size:var(--sm); color:var(--text-secondary); line-height:1.5; margin:0; }
.contact-phone-link { display:flex; align-items:center; gap:.75rem; font-family:var(--font-h); font-size:var(--2xl); font-weight:700; color:var(--blue); text-decoration:none; margin-bottom:.35rem; transition:color var(--ease); }
.contact-phone-link:hover { color:var(--red); }
.contact-hours { font-size:var(--sm); color:var(--text-muted); margin-bottom:.5rem; }
.contact-email-link { font-size:var(--sm); color:var(--blue); text-decoration:underline; }
.contact-email-link:hover { color:var(--red); }
.contact-address { font-size:var(--base); color:var(--text-secondary); line-height:1.7; }
.contact-service-area { font-size:var(--sm); color:var(--text-muted); margin-top:.5rem; }
.contact-trust { display:flex; flex-direction:column; gap:.75rem; }
.contact-trust__item { display:flex; align-items:center; gap:.6rem; font-family:var(--font-h); font-size:var(--sm); font-weight:600; color:var(--text-secondary); }
.contact-trust__item svg { color:var(--red); flex-shrink:0; }
.contact-page-form .cta-form { box-shadow:var(--sh-lg); }

/* ── Thank You Page ──────────────────────────────────────── */
.thankyou-section { padding:var(--py) var(--px); background:var(--gray-50); min-height:70vh; display:flex; align-items:center; }
.thankyou-icon { width:88px; height:88px; background:rgba(234,11,18,.08); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 2rem; }
.thankyou-title { font-size:clamp(2rem,4vw,3rem); color:var(--text-primary); margin-bottom:1rem; }
.thankyou-subtitle { font-size:var(--lg); color:var(--text-secondary); max-width:560px; margin:0 auto 3rem; line-height:1.7; }
.thankyou-next { background:var(--white); border:1px solid var(--gray-200); border-radius:var(--r-lg); padding:2rem 2.5rem; max-width:640px; margin:0 auto 2.5rem; }
.thankyou-next h2 { font-size:var(--xl); margin-bottom:1.5rem; }
.thankyou-steps { display:flex; flex-direction:column; gap:1rem; text-align:left; }
.thankyou-step { display:flex; align-items:flex-start; gap:1rem; }
.thankyou-step__num { width:28px; height:28px; background:var(--red); border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:var(--font-h); font-size:var(--xs); font-weight:700; color:var(--white); flex-shrink:0; }
.thankyou-step p { font-size:var(--sm); color:var(--text-secondary); line-height:1.5; margin:0; }
.thankyou-prefer { margin-bottom:2.5rem; }
.thankyou-prefer p { font-size:var(--sm); color:var(--text-muted); margin-bottom:.5rem; }
.thankyou-phone { display:block; font-family:var(--font-h); font-size:var(--2xl); font-weight:700; color:var(--blue); margin-bottom:.25rem; }
.thankyou-phone:hover { color:var(--red); }
.thankyou-hours { font-size:var(--sm); color:var(--text-muted); }
.thankyou-actions { display:flex; justify-content:center; gap:1rem; flex-wrap:wrap; }

/* ── About Us ────────────────────────────────────────────── */
.about-intro { padding:var(--py) var(--px); }
.about-intro__layout { display:grid; grid-template-columns:1fr 400px; gap:4rem; align-items:center; max-width:var(--W); margin:0 auto; }
.about-intro__text h2 { margin-bottom:1.5rem; }
.about-intro__text .eyebrow { text-align:left; display:block; }
.about-intro__text p { margin-bottom:1rem; }
.about-intro__image img { border-radius:var(--r-lg); width:100%; height:500px; object-fit:cover; object-position:top; }
.about-story { padding:var(--py) var(--px); background:var(--gray-50); }
.about-story__layout { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; max-width:var(--W); margin:0 auto; }
.about-story__image img { border-radius:var(--r-lg); width:100%; height:420px; object-fit:cover; }
.about-story__text h2 { margin-bottom:1.5rem; }
.about-story__text .eyebrow { text-align:left; display:block; }
.about-story__text p { margin-bottom:1rem; }
.about-fleet__grid { display:grid; grid-template-columns:1fr 1fr; gap:2rem; margin-top:2.5rem; max-width:var(--W); margin:2.5rem auto 0; }
.about-fleet__item img { border-radius:var(--r-lg); width:100%; height:320px; object-fit:cover; }
.about-fleet__caption { font-size:var(--sm); color:var(--text-muted); margin-top:.75rem; line-height:1.5; }

/* ── Service Page Template ───────────────────────────────── */
.service-hero { position:relative; min-height:60vh; display:flex; align-items:flex-end; overflow:hidden; background:var(--blue-dark); padding:120px var(--px) 90px; }
.service-hero__img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
.service-hero__overlay { position:absolute; inset:0; z-index:1; background:linear-gradient(to top, rgba(13,20,35,.96) 0%, rgba(13,20,35,.80) 50%, rgba(13,20,35,.55) 100%); }
.service-hero .inner { position:relative; z-index:2; }
.service-hero__content { max-width:760px; color:var(--white); }
.service-hero__eyebrow { display:inline-flex; align-items:center; gap:.45rem; font-family:var(--font-h); font-size:var(--xs); font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.90); margin-bottom:1rem; padding:.4rem .9rem; border:1px solid rgba(255,255,255,.35); border-radius:100px; background:rgba(255,255,255,.12); backdrop-filter:blur(4px); }
.service-hero h1 { color:var(--white); font-size:clamp(1.9rem,4.2vw,3.25rem); line-height:1.1; margin-bottom:1.25rem; }
.service-hero__subtitle { font-size:var(--lg); color:rgba(255,255,255,.82); line-height:1.65; margin-bottom:2rem; max-width:640px; }
.service-hero__ctas { display:flex; flex-wrap:wrap; gap:1rem; margin-bottom:1.75rem; }
.service-hero__badges { display:flex; flex-wrap:wrap; gap:1.25rem; padding-top:1.5rem; border-top:1px solid rgba(255,255,255,.15); }

/* Problems section */
.svc-problems { padding:var(--py) var(--px); background:var(--white); }
.svc-problems .section-title { max-width:750px; margin:0 auto 2.5rem; line-height:1.25; }
.svc-problems__grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin:0 auto 2rem; }
.svc-problem-card { background:var(--gray-50); border:1px solid var(--gray-200); border-radius:var(--r-lg); padding:1.75rem; text-align:left; }
.svc-problem-card__icon { display:block; margin-bottom:.75rem; }
.svc-problem-card__quote { font-family:var(--font-h); font-size:var(--base); font-weight:700; color:var(--text-primary); margin-bottom:.75rem; line-height:1.35; }
.svc-problem-card__response { font-size:var(--sm); color:var(--text-secondary); line-height:1.65; }
.svc-transition { font-family:var(--font-h); font-size:var(--lg); font-weight:700; color:var(--blue); text-align:center; max-width:640px; margin:2rem auto 0; line-height:1.4; }

/* Differentiators */
.svc-diff { padding:var(--py) var(--px); }
.svc-diff__grid { display:grid; grid-template-columns:1fr; gap:1.25rem; max-width:800px; margin:0 auto; text-align:left; }
.svc-diff-card { display:flex; align-items:flex-start; gap:1.25rem; background:var(--white); border:1px solid var(--gray-200); border-radius:var(--r-lg); padding:1.5rem 1.75rem; box-shadow:var(--sh-sm); }
.svc-diff-card__check { width:42px; height:42px; background:rgba(234,11,18,.08); border-radius:10px; display:flex; align-items:center; justify-content:center; color:var(--red); flex-shrink:0; }
.svc-diff-card__title { font-family:var(--font-h); font-size:var(--base); font-weight:700; color:var(--text-primary); margin-bottom:.4rem; }
.svc-diff-card__text { font-size:var(--sm); color:var(--text-secondary); line-height:1.65; margin:0; }

/* Steps */
.svc-steps { padding:var(--py) var(--px); }
.svc-steps__grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; max-width:var(--W); margin:0 auto; }
.svc-step { text-align:center; }
.svc-step__num { width:56px; height:56px; background:var(--red); border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:var(--font-h); font-size:var(--xl); font-weight:700; color:var(--white); margin:0 auto 1.25rem; box-shadow:0 4px 16px rgba(234,11,18,.25); }
.svc-step__title { font-family:var(--font-h); font-size:var(--lg); font-weight:700; color:var(--text-primary); margin-bottom:.6rem; }
.svc-step__text { font-size:var(--sm); color:var(--text-secondary); line-height:1.65; }

/* Project section */
.svc-project { padding:var(--py) var(--px); }

/* FAQ section */
.svc-faq { padding:var(--py) var(--px); }

/* ── Services Hub Page ───────────────────────────────────── */
.services-hub-section { padding:var(--py) var(--px); }
.services-hub-grid { display:grid; grid-template-columns:1fr; gap:1rem; max-width:900px; margin:0 auto 3rem; }
.services-hub-card { display:flex; align-items:center; gap:1.5rem; background:var(--white); border:1px solid var(--gray-200); border-radius:var(--r-lg); padding:1.5rem 1.75rem; text-decoration:none; transition:border-color var(--ease),box-shadow var(--ease),transform var(--ease); box-shadow:var(--sh-sm); }
.services-hub-card:hover { border-color:var(--blue); box-shadow:var(--sh-md); transform:translateX(4px); }
.services-hub-card__icon { width:56px; height:56px; background:rgba(39,57,92,.07); border-radius:12px; display:flex; align-items:center; justify-content:center; color:var(--blue); flex-shrink:0; transition:background var(--ease),color var(--ease); }
.services-hub-card:hover .services-hub-card__icon { background:var(--blue); color:var(--white); }
.services-hub-card__body { flex:1; }
.services-hub-card__name { font-family:var(--font-h); font-size:var(--lg); font-weight:700; color:var(--text-primary); margin-bottom:.3rem; }
.services-hub-card:hover .services-hub-card__name { color:var(--blue); }
.services-hub-card__desc { font-size:var(--sm); color:var(--text-secondary); line-height:1.5; margin:0; }
.services-hub-card__arrow { color:var(--gray-400); flex-shrink:0; transition:color var(--ease),transform var(--ease); }
.services-hub-card:hover .services-hub-card__arrow { color:var(--blue); transform:translateX(4px); }

/* Additional services grid */
.additional-services-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:.75rem; max-width:var(--W); margin:0 auto; }
.additional-service-item { display:flex; align-items:center; gap:.5rem; background:var(--white); border:1px solid var(--gray-200); border-radius:var(--r-md); padding:.75rem 1rem; font-size:var(--sm); font-family:var(--font-h); font-weight:600; color:var(--text-secondary); }
.additional-service-item svg { color:var(--blue); flex-shrink:0; }

/* ── Responsive additions ────────────────────────────────── */
@media (max-width:900px) {
  .contact-page-layout { grid-template-columns:1fr; gap:2.5rem; }
  .about-intro__layout,.about-story__layout { grid-template-columns:1fr; gap:2rem; }
  .about-intro__image img,.about-story__image img { height:320px; }
  .about-fleet__grid { grid-template-columns:1fr; }
  .svc-problems__grid { grid-template-columns:1fr; }
  .svc-steps__grid { grid-template-columns:1fr; gap:1.5rem; }
  .service-hero { padding:80px var(--px) 56px; min-height:auto; }
  .service-hero__content { max-width: 85%; }
  .additional-services-grid { grid-template-columns:repeat(2,1fr); }
  .services-hub-card { flex-wrap:wrap; }
}
@media (max-width:600px) {
  .page-hero { padding:80px var(--px) 56px; }
  .service-hero__content { max-width: 100%; }
  .service-hero h1 { font-size:clamp(1.6rem,6vw,2.2rem); }
  .thankyou-next { padding:1.5rem; }
  .additional-services-grid { grid-template-columns:1fr 1fr; }
  .contact-page-layout { gap:2rem; }
  .about-intro__image { display:none; }
}

/* ════════════════════════════════════════════════════════════
   PROJECTS / BLOG / LOCATION / 404 / PRIVACY — v2026063009
════════════════════════════════════════════════════════════ */

/* ── Projects Gallery ────────────────────────────────────── */
.projects-gallery-section { padding:var(--py) var(--px); }
.projects-filter { display:flex; gap:.5rem; flex-wrap:wrap; margin-bottom:2.5rem; }
.projects-filter__btn { font-family:var(--font-h); font-size:var(--sm); font-weight:700; padding:.55rem 1.25rem; border-radius:100px; border:2px solid var(--gray-200); background:var(--white); color:var(--text-secondary); cursor:pointer; transition:all var(--ease); min-height:44px; }
.projects-filter__btn:hover { border-color:var(--blue); color:var(--blue); }
.projects-filter__btn.is-active { background:var(--blue); border-color:var(--blue); color:var(--white); }
.projects-gallery-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.25rem; margin-bottom:2rem; }
.gallery-card { position:relative; border-radius:var(--r-lg); overflow:hidden; aspect-ratio:4/3; display:block; background:var(--gray-100); }
.gallery-card:hover .gallery-card__img { transform:scale(1.04); }
.gallery-card__img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.gallery-card__overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(13,20,35,.92) 0%,rgba(13,20,35,.35) 55%,transparent 100%); display:flex; flex-direction:column; justify-content:flex-end; padding:1.25rem; }
.gallery-card__label { margin-bottom:.3rem; }
.gallery-card__title { font-family:var(--font-h); font-size:var(--base); font-weight:700; color:var(--white); margin-bottom:.25rem; line-height:1.25; }
.gallery-card__location { display:flex; align-items:center; gap:.35rem; font-size:var(--xs); color:rgba(255,255,255,.70); font-family:var(--font-h); margin-bottom:.35rem; }
.gallery-card__desc { font-size:var(--xs); color:rgba(255,255,255,.72); line-height:1.5; margin-bottom:.6rem; }
.gallery-card__cta { font-family:var(--font-h); font-size:var(--xs); font-weight:700; color:rgba(255,255,255,.8); text-transform:uppercase; letter-spacing:.06em; }
.projects-gallery-note { font-size:var(--sm); color:var(--text-muted); text-align:center; margin-top:1rem; }

/* ── Case Study ───────────────────────────────────────────── */
.case-hero { position:relative; min-height:55vh; display:flex; align-items:flex-end; overflow:hidden; background:var(--blue-dark); padding:0 var(--px) 3rem; }
.case-hero__img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
.case-hero__overlay { position:absolute; inset:0; z-index:1; background:linear-gradient(to top,rgba(13,20,35,.90) 0%,rgba(13,20,35,.5) 60%,rgba(13,20,35,.2) 100%); }
.case-hero .inner { position:relative; z-index:2; }
.case-hero__content { max-width:760px; color:var(--white); }
.case-hero__cat,.case-hero__category { display:block; margin-bottom:.75rem; }
.case-hero h1 { color:var(--white); font-size:clamp(1.8rem,3.8vw,3rem); }

.case-body { padding:var(--py) var(--px); }
.case-layout { display:grid; grid-template-columns:1fr 340px; gap:3rem; align-items:start; }
.case-gallery { display:grid; grid-template-columns:repeat(2,1fr); gap:.75rem; margin-bottom:2rem; border-radius:var(--r-lg); overflow:hidden; }
.case-gallery__img { width:100%; height:220px; object-fit:cover; }
.case-gallery__img--main { grid-column:1/-1; height:380px; }
.case-narrative p { font-size:var(--lg); color:var(--text-secondary); line-height:1.8; margin-bottom:1.25rem; }
.case-testimonial { background:var(--blue); border-radius:var(--r-lg); padding:2rem; margin:2.5rem 0; }
.case-testimonial__stars { color:#f5a623; font-size:1.1rem; margin-bottom:.75rem; }
.case-testimonial__text { font-size:var(--lg); color:var(--white); font-style:italic; line-height:1.65; margin-bottom:1rem; }
.case-testimonial__author { font-family:var(--font-h); font-size:var(--sm); font-weight:700; color:rgba(255,255,255,.7); }
.case-inline-cta { background:var(--gray-50); border-radius:var(--r-lg); padding:2rem; margin-top:2.5rem; }
.case-inline-cta p { font-family:var(--font-h); font-size:var(--lg); font-weight:700; color:var(--text-primary); margin-bottom:1rem; }

.case-sidebar { position:sticky; top:100px; }
.case-details-card { background:var(--white); border:1px solid var(--gray-200); border-radius:var(--r-lg); padding:2rem; box-shadow:var(--sh-md); margin-bottom:1.25rem; }
.case-details-card__title { font-family:var(--font-h); font-size:var(--lg); font-weight:700; color:var(--text-primary); margin-bottom:1.5rem; padding-bottom:1rem; border-bottom:1px solid var(--gray-100); }
.case-details-list { display:flex; flex-direction:column; gap:0; }
.case-details-list__item { display:grid; grid-template-columns:90px 1fr; gap:.75rem; padding:.75rem 0; border-bottom:1px solid var(--gray-50); font-size:var(--sm); }
.case-details-list__item:last-child { border-bottom:none; }
.case-details-list__item dt { font-family:var(--font-h); font-weight:700; color:var(--text-muted); text-transform:uppercase; font-size:var(--xs); letter-spacing:.06em; padding-top:.1rem; }
.case-details-list__item dd { color:var(--text-secondary); line-height:1.5; }
.case-license-card { background:var(--blue); border-radius:var(--r-lg); padding:1.25rem 1.5rem; }
.case-license-card__title { font-family:var(--font-h); font-size:var(--xs); font-weight:700; color:rgba(255,255,255,.6); text-transform:uppercase; letter-spacing:.1em; margin-bottom:.5rem; }
.case-license-card__text { font-family:var(--font-h); font-size:var(--sm); font-weight:600; color:rgba(255,255,255,.85); line-height:1.6; }

/* ── Location Pages ───────────────────────────────────────── */
.loc-intro { padding:var(--py) var(--px); }
.loc-intro__layout { display:grid; grid-template-columns:1fr 340px; gap:3rem; align-items:start; }
.loc-intro__text h2 { margin-bottom:1.25rem; }
.loc-intro__text .eyebrow { text-align:left; }
.loc-intro__text p { margin-bottom:1rem; }
.loc-intro__badges { display:flex; flex-wrap:wrap; gap:.75rem; margin-top:1.75rem; }
.loc-badge { display:flex; align-items:center; gap:.45rem; font-family:var(--font-h); font-size:var(--xs); font-weight:700; color:var(--blue); background:rgba(39,57,92,.07); border-radius:100px; padding:.35rem .9rem; }
.loc-badge svg { color:var(--red); flex-shrink:0; }
.loc-contact-card { background:var(--blue); border-radius:var(--r-lg); padding:2rem; position:sticky; top:100px; }
.loc-contact-card h3 { font-family:var(--font-h); font-size:var(--xl); font-weight:700; color:var(--white); margin-bottom:.5rem; }
.loc-contact-card p { font-size:var(--sm); color:rgba(255,255,255,.75); margin-bottom:1rem; }
.loc-contact-card__phone { display:block; font-family:var(--font-h); font-size:var(--2xl); font-weight:700; color:var(--white); margin-bottom:.25rem; transition:color var(--ease); }
.loc-contact-card__phone:hover { color:var(--red-light); }
.loc-contact-card__hours { font-size:var(--xs); color:rgba(255,255,255,.55); margin-bottom:1rem; }

/* ── Blog Hub ─────────────────────────────────────────────── */
.blog-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:2rem; }
.blog-card { background:var(--white); border:1px solid var(--gray-200); border-radius:var(--r-lg); overflow:hidden; text-decoration:none; display:flex; flex-direction:column; transition:box-shadow var(--ease),transform var(--ease); }
.blog-card:hover { box-shadow:var(--sh-lg); transform:translateY(-3px); }
.blog-card__img-wrap { aspect-ratio:16/9; overflow:hidden; }
.blog-card__img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.blog-card:hover .blog-card__img { transform:scale(1.04); }
.blog-card__body { padding:1.75rem; flex:1; display:flex; flex-direction:column; gap:.75rem; }
.blog-card__category { font-family:var(--font-h); font-size:var(--xs); font-weight:700; color:var(--red); text-transform:uppercase; letter-spacing:.1em; }
.blog-card__title { font-family:var(--font-h); font-size:var(--xl); font-weight:700; color:var(--text-primary); line-height:1.3; }
.blog-card:hover .blog-card__title { color:var(--blue); }
.blog-card__excerpt { font-size:var(--sm); color:var(--text-secondary); line-height:1.65; flex:1; }
.blog-card__meta { display:flex; justify-content:space-between; align-items:center; padding-top:.75rem; border-top:1px solid var(--gray-100); }
.blog-card__read { font-size:var(--xs); color:var(--text-muted); font-family:var(--font-h); font-weight:600; }
.blog-card__cta { font-family:var(--font-h); font-size:var(--xs); font-weight:700; color:var(--red); letter-spacing:.04em; }

/* ── Blog Post ────────────────────────────────────────────── */
.blog-post-page { background:var(--white); }
.blog-post-layout { display:grid; grid-template-columns:1fr 300px; gap:3.5rem; align-items:start; }
.blog-post-header { margin-bottom:2rem; }
.blog-post-header h1 { font-size:clamp(1.7rem,3.2vw,2.5rem); margin-bottom:.75rem; }
.blog-post-meta { display:flex; align-items:center; gap:.75rem; font-size:var(--sm); color:var(--text-muted); font-family:var(--font-h); font-weight:600; }
.blog-post-meta__sep { color:var(--gray-400); }
.blog-post-hero-img { width:100%; height:auto; border-radius:var(--r-lg); margin-bottom:2.5rem; max-height:480px; object-fit:cover; }
.blog-post-body h2 { font-size:clamp(1.3rem,2.4vw,1.75rem); margin:2.5rem 0 1rem; color:var(--text-primary); }
.blog-post-body h3 { font-size:var(--lg); margin:2rem 0 .75rem; color:var(--text-primary); }
.blog-post-body p { font-size:var(--base); color:var(--text-secondary); line-height:1.8; margin-bottom:1.25rem; }
.blog-post-body ul,.blog-post-body ol { margin:0 0 1.5rem 1.5rem; display:flex; flex-direction:column; gap:.5rem; }
.blog-post-body li { font-size:var(--base); color:var(--text-secondary); line-height:1.7; }
.blog-post-body strong { color:var(--text-primary); font-weight:700; }
.blog-post-body a { color:var(--blue); text-decoration:underline; text-underline-offset:2px; }
.blog-post-body a:hover { color:var(--red); }
/* Blog tables */
.blog-table { width:100%; border-collapse:collapse; margin:1.5rem 0 2rem; font-size:var(--sm); border-radius:var(--r-md); overflow:hidden; box-shadow:var(--sh-sm); }
.blog-table thead { background:var(--blue); color:var(--white); }
.blog-table th { padding:.85rem 1rem; font-family:var(--font-h); font-size:var(--xs); font-weight:700; text-align:left; letter-spacing:.06em; text-transform:uppercase; }
.blog-table td { padding:.75rem 1rem; border-bottom:1px solid var(--gray-100); color:var(--text-secondary); line-height:1.5; vertical-align:top; }
.blog-table tr:last-child td { border-bottom:none; }
.blog-table tr:nth-child(even) td { background:var(--gray-50); }
/* Blog FAQ within post */
.blog-faq { display:flex; flex-direction:column; gap:1.25rem; margin:2rem 0; }
.blog-faq__item { background:var(--gray-50); border-radius:var(--r-lg); padding:1.5rem; }
.blog-faq__item h3 { font-size:var(--base); color:var(--text-primary); margin-bottom:.65rem; }
.blog-faq__item p { font-size:var(--sm); color:var(--text-secondary); line-height:1.7; margin:0; }
/* Post CTA box */
.blog-post-cta-box { background:var(--blue); border-radius:var(--r-lg); padding:2rem 2.5rem; margin-top:3rem; }
.blog-post-cta-box h3 { font-size:var(--xl); color:var(--white); margin-bottom:.5rem; }
.blog-post-cta-box .btn--outline-blue { border-color:rgba(255,255,255,.7); color:var(--white); }
.blog-post-cta-box .btn--outline-blue:hover { background:rgba(255,255,255,.15); border-color:var(--white); color:var(--white); }
.blog-post-cta-box p { color:rgba(255,255,255,.80); font-size:var(--base); margin-bottom:1.5rem; }
/* Sidebar */
.blog-post-sidebar { position:sticky; top:100px; display:flex; flex-direction:column; gap:1.25rem; }
.blog-sidebar-card { background:var(--white); border:1px solid var(--gray-200); border-radius:var(--r-lg); padding:1.5rem; box-shadow:var(--sh-sm); }
.blog-sidebar-card__title { font-family:var(--font-h); font-size:var(--base); font-weight:700; color:var(--text-primary); margin-bottom:.75rem; }
.blog-sidebar-card__text { font-size:var(--sm); color:var(--text-secondary); margin-bottom:1rem; line-height:1.6; }
.blog-sidebar-card__phone { display:block; font-family:var(--font-h); font-size:var(--lg); font-weight:700; color:var(--blue); margin-top:.75rem; }
.blog-sidebar-card__hours { font-size:var(--xs); color:var(--text-muted); margin-top:.25rem; }
.blog-sidebar-posts { display:flex; flex-direction:column; gap:.6rem; }
.blog-sidebar-posts a { font-size:var(--sm); color:var(--text-secondary); line-height:1.4; text-decoration:underline; text-underline-offset:2px; text-decoration-color:transparent; transition:color var(--ease),text-decoration-color var(--ease); }
.blog-sidebar-posts a:hover { color:var(--blue); text-decoration-color:var(--blue); }
.blog-sidebar-card--creds { background:var(--gray-50); }

/* ── 404 Page ─────────────────────────────────────────────── */
.error-page { padding:var(--py) var(--px); min-height:60vh; display:flex; align-items:center; background:var(--gray-50); }
.error-page__code { font-family:var(--font-h); font-size:clamp(5rem,12vw,8rem); font-weight:700; color:var(--red); line-height:1; letter-spacing:-.04em; margin-bottom:.5rem; }
.error-page__title { font-size:clamp(1.5rem,3vw,2.25rem); color:var(--text-primary); margin-bottom:1rem; }
.error-page__text { font-size:var(--lg); color:var(--text-secondary); max-width:520px; margin:0 auto 2.5rem; line-height:1.65; }
.error-page__links { display:flex; justify-content:center; gap:1rem; flex-wrap:wrap; margin-bottom:3rem; }
.error-page__popular h2 { font-size:var(--lg); color:var(--text-primary); margin-bottom:1rem; }
.error-page__list { display:flex; flex-wrap:wrap; justify-content:center; gap:.5rem 1.5rem; max-width:480px; margin:0 auto; }
.error-page__list a { font-size:var(--sm); color:var(--blue); text-decoration:underline; text-underline-offset:2px; }
.error-page__list a:hover { color:var(--red); }

/* ── Privacy Policy ───────────────────────────────────────── */
.privacy-content { max-width:800px; margin:0 auto; }
.privacy-content h1 { font-size:clamp(1.75rem,3.5vw,2.5rem); margin-bottom:.5rem; }
.privacy-updated { font-size:var(--sm); color:var(--text-muted); margin-bottom:3rem; font-family:var(--font-h); font-weight:600; }
.privacy-content h2 { font-size:var(--xl); color:var(--text-primary); margin:2.5rem 0 1rem; }
.privacy-content h3 { font-size:var(--lg); color:var(--text-primary); margin:1.75rem 0 .75rem; }
.privacy-content p { font-size:var(--base); color:var(--text-secondary); line-height:1.8; margin-bottom:1.25rem; }
.privacy-content ul { margin:0 0 1.5rem 1.5rem; display:flex; flex-direction:column; gap:.5rem; }
.privacy-content li { font-size:var(--base); color:var(--text-secondary); line-height:1.7; }
.privacy-content a { color:var(--blue); text-decoration:underline; text-underline-offset:2px; }
.privacy-contact { background:var(--gray-50); border-radius:var(--r-lg); padding:1.5rem 2rem; margin:1.5rem 0; font-style:normal; font-size:var(--base); color:var(--text-secondary); line-height:2; }
.privacy-contact strong { color:var(--text-primary); }

/* ── Responsive additions ────────────────────────────────────── */
@media (max-width:900px) {
  .projects-gallery-grid { grid-template-columns:repeat(2,1fr); }
  .case-layout { grid-template-columns:1fr; }
  .case-sidebar { position:static; }
  .case-gallery { grid-template-columns:1fr; }
  .case-gallery__img--main { height:280px; }
  .case-gallery__img { height:200px; }
  .loc-intro__layout { grid-template-columns:1fr; }
  .loc-contact-card { position:static; }
  .blog-post-layout { grid-template-columns:1fr; }
  .blog-post-sidebar { position:static; }
  .blog-grid { grid-template-columns:1fr; }
}
@media (max-width:600px) {
  .projects-gallery-grid { grid-template-columns:1fr; }
  .error-page__links { flex-direction:column; align-items:center; }
}
