/* =========================================================
   Hermanos Fences LLC — Clean professional redesign
   Brand: navy #062d5b · accent #2ea3f2 · Inter typography
   ========================================================= */

:root {
  --navy: #062d5b;
  --navy-deep: #03142e;
  --navy-soft: #0a3a73;
  --blue: #2ea3f2;
  --blue-deep: #1d7fc4;
  --bg: #ffffff;
  --bg-alt: #f5f7fa;
  --bg-deep: #eef1f6;
  --ink: #1a2230;
  --ink-soft: #3a4250;
  --gray-700: #475061;
  --gray-500: #6b7280;
  --gray-400: #9aa3b0;
  --gray-300: #d4d7dc;
  --gray-200: #e6e8ec;
  --gray-100: #f1f3f6;
  --white: #ffffff;
  --shadow-xs: 0 1px 2px rgba(15, 30, 60, 0.06);
  --shadow-sm: 0 2px 8px rgba(15, 30, 60, 0.06), 0 1px 3px rgba(15, 30, 60, 0.04);
  --shadow-md: 0 8px 22px rgba(15, 30, 60, 0.08);
  --shadow-lg: 0 16px 40px rgba(15, 30, 60, 0.12);
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --max: 1240px;
  --pad: clamp(20px, 4vw, 48px);
  --t: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
::selection { background: var(--blue); color: white; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.78);
  font-size: 13px;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  flex-wrap: wrap;
}
.topbar__left, .topbar__right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.topbar a { color: inherit; transition: color .15s var(--t); display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: var(--blue); }
.topbar svg { width: 13px; height: 13px; flex-shrink: 0; }
.topbar .pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.topbar .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.18);
}
.topbar__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s var(--t);
}
.topbar__icon:hover { background: var(--blue); color: white; }
.topbar__icon svg { width: 13px; height: 13px; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow .2s var(--t);
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.brand { display: flex; align-items: center; }
.brand img { height: 44px; width: auto; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  position: relative;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink-soft);
  border-radius: var(--radius-sm);
  transition: color .15s var(--t);
}
.nav a:hover, .nav a.active { color: var(--navy); }
.nav a.active::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 14px; right: 14px;
  height: 2px;
  background: var(--blue);
}

.cta-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--navy);
  color: white;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.005em;
  transition: background .15s var(--t);
  box-shadow: var(--shadow-xs);
}
.cta-call:hover { background: var(--blue); }
.cta-call svg { width: 14px; height: 14px; flex-shrink: 0; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  background: var(--navy);
  border-radius: 8px;
  color: white;
  align-items: center;
  justify-content: center;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--bg);
  padding: clamp(48px, 6vw, 88px) 0 clamp(56px, 7vw, 100px);
  border-bottom: 1px solid var(--gray-200);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 6px;
  background: var(--bg-alt);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}
.hero__eyebrow .badge20 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  background: var(--navy);
  color: white;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 800;
}
.hero__title {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(36px, 4.8vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--navy-deep);
  margin-bottom: 18px;
}
.hero__title .accent { color: var(--blue-deep); }
.hero__lede {
  font-size: clamp(15.5px, 1.2vw, 17.5px);
  color: var(--gray-700);
  max-width: 540px;
  margin-bottom: 28px;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.005em;
  transition: all .15s var(--t);
  white-space: nowrap;
  line-height: 1.2;
}
.btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.btn--primary { background: var(--navy); color: white; }
.btn--primary:hover { background: var(--blue); }
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--gray-300);
}
.btn--ghost:hover { background: var(--navy); color: white; border-color: var(--navy); }
.btn--accent { background: var(--blue); color: white; }
.btn--accent:hover { background: var(--navy); }

.hero__trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--gray-700);
  font-weight: 600;
}
.hero__trust-item svg {
  width: 16px; height: 16px;
  color: var(--blue-deep);
  flex-shrink: 0;
}

.hero__visual {
  position: relative;
  aspect-ratio: 5/6;
  max-height: 580px;
}
.hero__visual-frame {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--gray-100);
}
.hero__visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__visual-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: white;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--gray-200);
}
.hero__visual-card .stat-num {
  font-size: 30px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero__visual-card .stat-text {
  font-size: 11.5px;
  color: var(--gray-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero__visual-pill {
  position: absolute;
  top: 18px;
  right: -12px;
  background: var(--navy);
  color: white;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.hero__visual-pill .stars { color: #fbbf24; margin-right: 4px; letter-spacing: 1px; }

/* ---------- Hero quick-quote form ---------- */
.quick-quote {
  margin: 0 0 28px;
  padding: 18px;
  background: var(--bg-alt);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  max-width: 560px;
}
.quick-quote__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.quick-quote .field { margin: 0; }
.quick-quote input,
.quick-quote select {
  width: 100%;
  padding: 12px 14px;
  font-size: 14.5px;
  font-family: inherit;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--ink);
  outline: none;
  transition: border-color .15s var(--t), box-shadow .15s var(--t);
}
.quick-quote input:focus,
.quick-quote select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(46,163,242,0.18);
}
.quick-quote .field:nth-child(3) { grid-column: 1 / -1; }
.quick-quote__btn {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  background: var(--navy);
  color: white;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.005em;
  transition: background .15s var(--t);
  width: 100%;
  height: 46px;
  line-height: 1;
}
.quick-quote__btn:hover { background: var(--blue); }
.quick-quote__btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.quick-quote__note {
  font-size: 12.5px;
  color: var(--gray-500);
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.quick-quote__note a { color: var(--navy); font-weight: 700; }
.quick-quote__note svg { color: #16a34a; flex-shrink: 0; width: 14px; height: 14px; }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--bg-alt);
  padding: 26px 0;
  border-bottom: 1px solid var(--gray-200);
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-strip__item strong {
  display: block;
  color: var(--navy-deep);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 1px;
}
.trust-strip__item span {
  font-size: 12.5px;
  color: var(--gray-500);
}
.trust-icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  color: var(--blue-deep);
}
.trust-stars {
  color: #fbbf24;
  font-size: 18px;
  letter-spacing: 1.5px;
  flex-shrink: 0;
}

/* ---------- Offers strip ---------- */
.offers {
  background: var(--navy);
  color: white;
  padding: 22px 0;
}
.offers__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
}
.offer {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.offer strong {
  color: white;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-size: 12px;
  display: block;
  margin-bottom: 1px;
}
.offer__icon {
  flex: 0 0 38px;
  width: 38px; height: 38px;
  background: rgba(46,163,242,0.18);
  color: var(--blue);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
}
.offer__icon svg { width: 18px; height: 18px; }

/* ---------- Sections ---------- */
section { padding: clamp(60px, 7vw, 100px) 0; }
.section-head {
  max-width: 720px;
  margin-bottom: clamp(32px, 4vw, 56px);
}
.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 12px;
}
h2.section-title {
  font-family: var(--font);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy-deep);
  margin-bottom: 14px;
}
h2.section-title .accent { color: var(--blue-deep); }
.section-head p {
  font-size: clamp(15px, 1.1vw, 16.5px);
  color: var(--gray-700);
}

/* ---------- About ---------- */
.about {
  background: var(--bg);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.about__media {
  position: relative;
}
.about__media-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5/6;
  box-shadow: var(--shadow-md);
}
.about__media-main img {
  width: 100%; height: 100%; object-fit: cover;
}
.about__media-tile {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 50%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid white;
}
.about__media-tile img { width: 100%; height: 100%; object-fit: cover; }

.about__pillars {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.pillar {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
}
.pillar__icon {
  flex: 0 0 40px;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: var(--blue);
  display: grid; place-items: center;
}
.pillar__icon svg { width: 18px; height: 18px; }
.pillar h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 4px;
}
.pillar p {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.55;
}

/* ---------- Services ---------- */
.services {
  background: var(--bg-alt);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service {
  position: relative;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .2s var(--t), box-shadow .2s var(--t);
  display: flex;
  flex-direction: column;
}
.service:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}
.service__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--t);
}
.service:hover .service__media img { transform: scale(1.04); }
.service__num {
  position: absolute; top: 14px; left: 14px;
  background: white;
  color: var(--navy);
  padding: 5px 10px;
  border-radius: var(--radius-xs);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  z-index: 2;
}
.service__body {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.service p {
  font-size: 14.5px;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.service__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.service__link svg {
  width: 12px; height: 12px;
  transition: transform .2s var(--t);
}
.service:hover .service__link svg { transform: translateX(3px); }
.service__link::after {
  content: "";
  position: absolute;
  inset: 0;
}

.mid-cta {
  margin-top: 56px;
}
.mid-cta__inner {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 38px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.mid-cta h3 {
  font-size: clamp(20px, 2vw, 26px);
  color: white;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.mid-cta p {
  color: rgba(255,255,255,0.78);
  font-size: 14.5px;
}
.mid-cta__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ---------- Credentials / stats ---------- */
.creds {
  background: var(--navy-deep);
  color: white;
}
.creds__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.creds h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 14px;
}
.creds h2 .accent { color: var(--blue); }
.creds p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 26px;
  max-width: 480px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  padding: 22px;
}
.stat-card .num {
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-card .lbl {
  font-size: 13.5px;
  color: white;
  font-weight: 700;
  letter-spacing: 0.005em;
}
.stat-card .desc {
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

/* ---------- Gallery ---------- */
.gallery { background: var(--bg-alt); }
.gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(32px, 4vw, 56px);
  flex-wrap: wrap;
}
.gallery-head .section-head { margin-bottom: 0; max-width: 600px; }
.gallery__masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 170px;
  gap: 12px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: var(--gray-200);
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--t);
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(6,45,91,0.55));
  opacity: 0;
  transition: opacity .2s var(--t);
}
.gallery__item:hover::after { opacity: 1; }
.gallery__item .label {
  position: absolute;
  left: 12px; bottom: 10px;
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .2s var(--t), transform .2s var(--t);
  z-index: 2;
}
.gallery__item:hover .label { opacity: 1; transform: translateY(0); }
.gallery__item .zoom {
  position: absolute;
  top: 12px; right: 12px;
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.94);
  color: var(--navy);
  border-radius: 50%;
  display: grid; place-items: center;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity .2s var(--t), transform .2s var(--t);
  z-index: 2;
}
.gallery__item:hover .zoom { opacity: 1; transform: scale(1); }
.gallery__item .zoom svg { width: 14px; height: 14px; }
.gallery__item.span-2-col { grid-column: span 2; }
.gallery__item.span-2-row { grid-row: span 2; }

.gallery-cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(3, 20, 46, 0.94);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity .2s var(--t);
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox__img {
  max-width: 92vw;
  max-height: 86vh;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  object-fit: contain;
}
.lightbox__close, .lightbox__nav {
  position: absolute;
  width: 46px; height: 46px;
  background: rgba(255,255,255,0.10);
  color: white;
  border-radius: 50%;
  display: grid; place-items: center;
  transition: background .15s var(--t);
}
.lightbox__close { top: 24px; right: 24px; }
.lightbox__close:hover { background: rgba(255,255,255,0.22); }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
.lightbox__nav:hover { background: rgba(255,255,255,0.22); }
.lightbox__counter {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

/* ---------- Process ---------- */
.process { background: var(--bg); }
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step {
  padding: 26px 22px;
  border-radius: var(--radius-md);
  background: var(--bg-alt);
  border: 1px solid var(--gray-200);
  transition: border-color .2s var(--t), background .2s var(--t);
}
.step:hover {
  border-color: var(--navy);
  background: white;
  box-shadow: var(--shadow-sm);
}
.step__num {
  font-size: 14px;
  font-weight: 800;
  color: var(--blue-deep);
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 14px;
  display: inline-block;
  padding: 5px 9px;
  background: rgba(46,163,242,0.12);
  border-radius: var(--radius-xs);
}
.step h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 6px;
}
.step p {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.55;
}

/* ---------- Testimonial ---------- */
.testimonial {
  background: var(--bg-alt);
}
.quote-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 56px);
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.quote-stars {
  color: #fbbf24;
  font-size: 22px;
  letter-spacing: 4px;
  margin-bottom: 22px;
}
.quote-text {
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin-bottom: 24px;
}
.quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.quote-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 16px;
}
.quote-meta { text-align: left; }
.quote-meta strong { display: block; color: var(--navy-deep); font-size: 14.5px; }
.quote-meta span { font-size: 12.5px; color: var(--gray-500); }

/* ---------- Areas ---------- */
.areas { background: var(--bg); }
.areas__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.areas__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.area-tag {
  padding: 12px 16px;
  background: var(--bg-alt);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all .15s var(--t);
}
.area-tag::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
.area-tag:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.area-tag:hover::before { background: white; }

/* ---------- FAQ ---------- */
.faq { background: var(--bg-alt); }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: white;
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: border-color .15s var(--t);
}
.faq-item.open {
  border-color: var(--blue);
}
.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy-deep);
  background: white;
  cursor: pointer;
  transition: color .15s var(--t);
}
.faq-q:hover { color: var(--blue-deep); }
.faq-icon {
  position: relative;
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--blue-deep);
  transition: transform .2s var(--t);
}
.faq-icon::before {
  top: 8px; left: 0;
  width: 18px; height: 2px;
}
.faq-icon::after {
  top: 0; left: 8px;
  width: 2px; height: 18px;
}
.faq-item.open .faq-icon::after { transform: scaleY(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s var(--t);
}
.faq-item.open .faq-a {
  max-height: 320px;
}
.faq-a p {
  padding: 0 22px 20px;
  font-size: 14.5px;
  color: var(--gray-700);
  line-height: 1.6;
}

/* ---------- Contact ---------- */
.contact {
  background: var(--navy);
  color: white;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.contact h2 { color: white; }
.contact h2 .accent { color: var(--blue); }
.contact .section-head p { color: rgba(255,255,255,0.75); }
.contact-info {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.contact-info__item {
  display: flex;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  transition: background .15s var(--t);
}
.contact-info__item:hover { background: rgba(255,255,255,0.08); }
.contact-info__item .icon {
  flex: 0 0 38px;
  width: 38px; height: 38px;
  background: var(--blue);
  color: white;
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
}
.contact-info__item .icon svg { width: 16px; height: 16px; }
.contact-info__item .label {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  font-weight: 700;
  margin-bottom: 2px;
}
.contact-info__item .val {
  font-size: 16px;
  font-weight: 600;
  color: white;
}
.contact-info__item--featured {
  background: rgba(46,163,242,0.16);
  border-color: rgba(46,163,242,0.30);
}
.contact-info__item--featured .val {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.contact-info__item a.val:hover { color: var(--blue); }

.hours-block {
  margin-top: 16px;
  padding: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
}
.hours-block h4 {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 12px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  padding: 3px 0;
  color: rgba(255,255,255,0.85);
}
.hours-row span:first-child { font-weight: 600; }

/* ---------- Form ---------- */
.form {
  background: white;
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3.5vw, 36px);
}
.form h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.form .lede {
  font-size: 14px;
  color: var(--gray-700);
  margin-bottom: 22px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.field { display: flex; flex-direction: column; }
.field label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy-deep);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.field input, .field textarea, .field select {
  font-family: inherit;
  font-size: 14.5px;
  padding: 12px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--ink);
  transition: border-color .15s var(--t), box-shadow .15s var(--t);
  outline: none;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(46,163,242,0.18);
}
.field--full { grid-column: 1 / -1; }

.form-more { margin-bottom: 12px; }
.form-more summary {
  display: inline-block;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-deep);
  letter-spacing: 0.01em;
  margin-bottom: 6px;
  list-style: none;
  user-select: none;
}
.form-more summary::-webkit-details-marker { display: none; }
.form-more summary::before { content: "+ "; font-weight: 800; }
.form-more[open] summary::before { content: "− "; }
.form-more summary:hover { color: var(--navy); }

.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  padding: 0 22px;
  background: var(--navy);
  color: white;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.005em;
  transition: background .15s var(--t);
  margin-top: 4px;
  line-height: 1;
}
.form-submit:hover { background: var(--blue); }
.form-submit svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.form-note {
  font-size: 12.5px;
  color: var(--gray-500);
  margin-top: 12px;
  text-align: center;
}
.form-success {
  display: none;
  padding: 14px;
  background: #ecfdf5;
  border: 1px solid #34d399;
  border-radius: var(--radius-sm);
  color: #065f46;
  font-weight: 600;
  font-size: 14px;
  margin-top: 14px;
}
.form-success.show { display: block; }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.72);
  padding: 60px 0 24px;
  font-size: 14px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer__brand img { filter: brightness(0) invert(1); height: 42px; margin-bottom: 14px; }
.footer__brand p { line-height: 1.6; max-width: 320px; margin-bottom: 16px; font-size: 13.5px; }
.footer__social { display: flex; gap: 8px; }
.footer__social a {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: grid;
  place-items: center;
  color: white;
  transition: background .15s var(--t);
}
.footer__social a:hover { background: var(--blue); }
.footer__social svg { width: 14px; height: 14px; }

.footer h5 {
  color: white;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 7px; }
.footer ul a { transition: color .15s var(--t); font-size: 13.5px; }
.footer ul a:hover { color: var(--blue); }

.footer__pay {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.footer__pay span {
  padding: 5px 9px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-xs);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Mobile sticky call-bar ---------- */
.mobilebar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: none;
  z-index: 60;
  background: white;
  border-top: 1px solid var(--gray-200);
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  gap: 6px;
  box-shadow: 0 -6px 18px rgba(15,30,60,0.10);
}
.mobilebar__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.01em;
  transition: transform .1s var(--t);
}
.mobilebar__btn svg { width: 14px; height: 14px; }
.mobilebar__btn--primary { background: var(--navy); color: white; }
.mobilebar__btn--secondary { background: var(--blue); color: white; }
.mobilebar__btn--ghost { background: var(--bg-alt); color: var(--navy-deep); border: 1px solid var(--gray-200); }
.mobilebar__btn:active { transform: scale(0.97); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s var(--t), transform .6s var(--t);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 56px; }
  .hero__visual { max-width: 480px; margin: 0 auto; aspect-ratio: 5/4; }
  .about__grid, .creds__inner, .contact__inner, .areas__inner { grid-template-columns: 1fr; gap: 44px; }
  .services__grid, .process__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__masonry { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer__col--last { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; flex-direction: column; padding: 14px; gap: 4px; box-shadow: var(--shadow-md); border-bottom: 1px solid var(--gray-200); }
  .nav.open { display: flex; }
  .nav a { padding: 12px 14px; border-radius: var(--radius-sm); }
  .nav a:hover { background: var(--bg-alt); }
  .nav-toggle { display: grid; }
  .header__cta { display: none; }
  .topbar__inner { font-size: 12px; gap: 10px; }
  .topbar__left { gap: 10px; }
  .topbar__right { gap: 8px; }
  .offers__inner { grid-template-columns: 1fr; gap: 14px; }
  .services__grid { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr 1fr; }
  .gallery__masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
  .gallery__item.span-2-col, .gallery__item.span-2-row { grid-column: span 1; grid-row: span 1; }
  .areas__list { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .stats { grid-template-columns: 1fr; }
  .mobilebar { display: flex; }
  body { padding-bottom: 80px; }
  .quick-quote__row { grid-template-columns: 1fr; }
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 18px 14px; }
  .mid-cta__inner { grid-template-columns: 1fr; }
  .about__media-tile { width: 56%; bottom: -18px; right: -10px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .trust-strip__grid { grid-template-columns: 1fr; gap: 16px; }
}

/* =========================================================
   v2 — Image-led hero, redesigned form, portfolio page
   ========================================================= */

/* ---------- Hero v2 (full-bleed image background) ---------- */
.hero-v2 {
  position: relative;
  min-height: clamp(560px, 78vh, 760px);
  background: var(--navy-deep);
  color: white;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
}
.hero-v2__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-v2__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-v2__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(3, 20, 46, 0.92) 0%, rgba(3, 20, 46, 0.78) 38%, rgba(3, 20, 46, 0.30) 70%, rgba(3, 20, 46, 0.10) 100%),
    linear-gradient(180deg, rgba(3, 20, 46, 0.40) 0%, rgba(3, 20, 46, 0.0) 50%);
}
.hero-v2__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(56px, 7vw, 96px) 0;
}
.hero-v2__copy {
  max-width: 620px;
}
.hero-v2__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 8px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-v2__eyebrow .badge20 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  background: var(--blue);
  color: white;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0;
}
.hero-v2 h1 {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(40px, 5.6vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: white;
  margin-bottom: 18px;
  text-wrap: balance;
}
.hero-v2 h1 .accent { color: var(--blue); }
.hero-v2__lede {
  font-size: clamp(16px, 1.3vw, 18.5px);
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.55;
}
.hero-v2__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-v2 .btn--primary {
  background: var(--blue);
  padding: 14px 24px;
  font-size: 15px;
}
.hero-v2 .btn--primary:hover { background: white; color: var(--navy); }
.hero-v2 .btn--ghost {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: white;
  border-color: rgba(255,255,255,0.25);
  padding: 14px 24px;
  font-size: 15px;
}
.hero-v2 .btn--ghost:hover { background: white; color: var(--navy); border-color: white; }

.hero-v2__trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-v2__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}
.hero-v2__trust-item svg {
  width: 16px; height: 16px;
  color: var(--blue);
  flex-shrink: 0;
}
.hero-v2__trust-stars {
  color: #fbbf24;
  letter-spacing: 1.5px;
  font-size: 16px;
}

.hero-v2__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-v2__scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  position: relative;
}
.hero-v2__scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 12px;
  background: white;
  animation: scroll-down 2s var(--t) infinite;
}
@keyframes scroll-down {
  0% { top: 0; opacity: 1; }
  100% { top: 32px; opacity: 0; }
}

/* ---------- Contact v3 (centered head + 2-column quote card) ---------- */
.contact { padding: clamp(64px, 7vw, 96px) 0; }
.contact .container { position: relative; }
.contact__head {
  max-width: 680px;
  margin: 0 auto clamp(36px, 4vw, 56px);
  text-align: center;
}
.contact__head .section-title { color: white; }
.contact__head p {
  color: rgba(255,255,255,0.78);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto;
}
.contact__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}

/* ---------- Estimate card (form) ---------- */
.estimate-card {
  background: white;
  color: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(3,20,46,0.28), 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
  position: relative;
}
.estimate-card__head {
  padding: clamp(28px, 3vw, 36px) clamp(28px, 3vw, 40px) clamp(20px, 2.4vw, 28px);
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-bottom: 1px solid var(--gray-200);
  position: relative;
}
.estimate-card__head::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-deep) 100%);
}
.estimate-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px 5px 8px;
  background: rgba(46,163,242,0.10);
  color: var(--blue-deep);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.estimate-card__badge svg { width: 14px; height: 14px; }
.estimate-card__head h3 {
  font-size: clamp(22px, 2.2vw, 26px);
  font-weight: 800;
  color: var(--navy-deep);
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 6px;
}
.estimate-card__head p {
  font-size: 14px;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.5;
}
.estimate-card__body {
  padding: clamp(24px, 2.8vw, 32px) clamp(28px, 3vw, 40px) clamp(28px, 3vw, 36px);
}
.qc-row { margin-bottom: 16px; }
.qc-row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.qc-field { display: block; }
.qc-field label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 7px;
  letter-spacing: 0.005em;
}
.qc-field label .req { color: #ef4444; margin-left: 2px; }
.qc-field input,
.qc-field textarea,
.qc-field select {
  width: 100%;
  padding: 12px 14px;
  font-size: 14.5px;
  font-family: inherit;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  color: var(--ink);
  transition: border-color .15s var(--t), box-shadow .15s var(--t), background .15s var(--t);
  outline: none;
  height: 46px;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
.qc-field textarea {
  height: auto;
  min-height: 110px;
  resize: vertical;
  padding: 12px 14px;
  line-height: 1.5;
}
.qc-field input::placeholder,
.qc-field textarea::placeholder { color: var(--gray-400); }
.qc-field input:focus,
.qc-field textarea:focus,
.qc-field select:focus {
  border-color: var(--blue);
  background: white;
  box-shadow: 0 0 0 4px rgba(46,163,242,0.14);
}

/* Service chips */
.qc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.qc-chips input[type="radio"] {
  position: absolute;
  width: 1px; height: 1px;
  opacity: 0; pointer-events: none;
}
.qc-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--bg-alt);
  border: 1.5px solid var(--gray-200);
  border-radius: 999px;
  cursor: pointer;
  transition: all .15s var(--t);
  user-select: none;
  margin: 0;
}
.qc-chip:hover {
  border-color: var(--blue);
  color: var(--navy);
  background: rgba(46,163,242,0.06);
}
.qc-chips input[type="radio"]:checked + .qc-chip {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
  box-shadow: 0 4px 14px rgba(6,45,91,0.25);
}
.qc-chips input[type="radio"]:focus-visible + .qc-chip {
  outline: 3px solid rgba(46,163,242,0.35);
  outline-offset: 2px;
}

/* Submit button */
.estimate-card__submit {
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 54px;
  padding: 0 24px;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: white;
  border: 0;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform .15s var(--t), box-shadow .15s var(--t), background .15s var(--t);
  margin-top: 8px;
  line-height: 1;
  box-sizing: border-box;
  box-shadow: 0 8px 22px rgba(6,45,91,0.30);
  position: relative;
  overflow: hidden;
}
.estimate-card__submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-deep) 100%);
  opacity: 0;
  transition: opacity .2s var(--t);
}
.estimate-card__submit > * { position: relative; z-index: 1; }
.estimate-card__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(46,163,242,0.40);
}
.estimate-card__submit:hover::before { opacity: 1; }
.estimate-card__submit:active { transform: translateY(0); }
.estimate-card__submit svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform .2s var(--t);
}
.estimate-card__submit:hover svg { transform: translateX(3px); }

/* Assurance row */
.estimate-card__assurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 24px);
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-200);
  flex-wrap: wrap;
}
.qc-assure {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gray-700);
}
.qc-assure svg {
  width: 15px; height: 15px;
  color: var(--blue);
  flex-shrink: 0;
}

/* Success message */
.estimate-card__success {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  background: #ecfdf5;
  border: 1px solid #34d399;
  border-radius: var(--radius-sm);
  color: #065f46;
  font-weight: 600;
  font-size: 14px;
  align-items: center;
  gap: 10px;
}
.estimate-card__success.show { display: flex; }
.estimate-card__success svg {
  width: 20px; height: 20px;
  color: #10b981;
  flex-shrink: 0;
}

/* ---------- Contact sidebar ---------- */
.contact-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-side__call {
  display: block;
  padding: clamp(22px, 2.6vw, 28px);
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: white;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: transform .2s var(--t), box-shadow .2s var(--t);
  box-shadow: 0 14px 36px rgba(46,163,242,0.30);
}
.contact-side__call::after {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.contact-side__call:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(46,163,242,0.40);
}
.contact-side__call-eyebrow {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 6px;
}
.contact-side__call-num {
  display: block;
  font-size: clamp(26px, 2.8vw, 30px);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin-bottom: 12px;
}
.contact-side__call-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  padding: 5px 11px;
  background: rgba(255,255,255,0.15);
  border-radius: 999px;
}
.contact-side__call-meta svg { width: 13px; height: 13px; }

.contact-side__list {
  list-style: none;
  margin: 0;
  padding: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  display: grid;
  gap: 16px;
}
.contact-side__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.contact-side__icon {
  flex: 0 0 36px;
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(46,163,242,0.18);
  color: var(--blue);
  display: grid;
  place-items: center;
}
.contact-side__icon svg { width: 16px; height: 16px; }
.contact-side__list strong {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: white;
  line-height: 1.35;
}
.contact-side__lbl {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 3px;
}
.contact-side__pay {
  padding: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
}
.contact-side__pay-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.contact-side__pay-tags span {
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  padding: 5px 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
}

/* Responsive */
@media (max-width: 900px) {
  .contact__layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .contact-side { order: -1; }
}
@media (max-width: 560px) {
  .qc-row--2 { grid-template-columns: 1fr; gap: 14px; }
  .estimate-card__assurance { gap: 12px; }
}

/* Legacy form-v2 compatibility (kept minimal) */
.form-v2__success { display: none; }
.form-v2__success.show { display: block; }

/* ---------- Gallery page v3 ---------- */

/* Breadcrumb */
.breadcrumb {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--gray-200);
}
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 14px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--gray-500);
}
.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb li + li::before {
  content: "›";
  color: var(--gray-400);
  margin-right: 0;
}
.breadcrumb a {
  color: var(--navy);
  font-weight: 600;
  transition: color .15s var(--t);
}
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb [aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
}

/* Eyebrow accent variant */
.eyebrow--accent { color: var(--blue); }

/* Gallery hero */
.gallery-hero {
  background: var(--bg);
  padding: clamp(48px, 6vw, 80px) 0 clamp(40px, 5vw, 64px);
}
.gallery-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.gallery-hero__copy h1 {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--navy-deep);
  margin: 14px 0 18px;
  text-wrap: balance;
}
.gallery-hero__copy h1 .accent { color: var(--blue); }
.gallery-hero__copy p {
  font-size: clamp(15.5px, 1.2vw, 17.5px);
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 520px;
}
.gallery-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.gallery-hero__actions .btn--primary {
  background: var(--navy);
  padding: 14px 22px;
}
.gallery-hero__actions .btn--primary:hover { background: var(--blue); }
.gallery-hero__actions .btn--ghost {
  background: white;
  color: var(--navy);
  border-color: var(--gray-200);
  padding: 14px 22px;
}
.gallery-hero__actions .btn--ghost:hover { border-color: var(--navy); }

.gallery-hero__media {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  aspect-ratio: 1.05 / 1;
}
.gallery-hero__tile {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.gallery-hero__tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--t);
}
.gallery-hero__tile:hover img { transform: scale(1.05); }
.gallery-hero__tile--1 { grid-row: 1 / 3; }
.gallery-hero__tile--2 { grid-column: 2; grid-row: 1; }
.gallery-hero__tile--3 { grid-column: 2; grid-row: 2; transform: translateY(0); }
.gallery-hero__tile--4 { display: none; }

/* Stats */
.gallery-stats-section {
  background: var(--bg);
  padding: clamp(20px, 3vw, 32px) 0 clamp(40px, 5vw, 60px);
}
.gallery-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2.5vw, 28px) clamp(20px, 3vw, 36px);
  box-shadow: var(--shadow-sm);
}
.gallery-stat {
  text-align: center;
  padding: 8px 12px;
  border-right: 1px solid var(--gray-200);
}
.gallery-stat:last-child { border-right: 0; }
.gallery-stat__num {
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 800;
  color: var(--navy-deep);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 6px;
}
.gallery-stat__num .accent { color: var(--blue); }
.gallery-stat__num--stars {
  color: #fbbf24;
  letter-spacing: 2px;
  font-size: clamp(20px, 2vw, 26px);
}
.gallery-stat__lbl {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Featured Work — 3 detailed projects */
.featured-work {
  background: var(--bg-alt);
  padding: clamp(64px, 7vw, 100px) 0;
}
.featured-work__head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto clamp(40px, 4vw, 56px);
}
.featured-work__head .section-title { color: var(--navy-deep); }
.featured-work__head p {
  color: var(--gray-700);
  font-size: 15.5px;
  margin-top: 12px;
}
.featured-work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 28px);
}
.feat-project {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .25s var(--t), box-shadow .25s var(--t);
}
.feat-project:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feat-project__media {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-200);
  cursor: pointer;
  isolation: isolate;
}
.feat-project__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--t);
}
.feat-project__media:hover img { transform: scale(1.06); }
.feat-project__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(3,20,46,0) 60%, rgba(3,20,46,0.50) 100%);
  opacity: 0;
  transition: opacity .25s var(--t);
}
.feat-project__media:hover::after { opacity: 1; }
.feat-project__num {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.95);
  color: var(--navy);
  border-radius: 50%;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.01em;
}
.feat-project__body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.feat-project__cat {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--blue-deep);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.feat-project__body h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--navy-deep);
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 8px;
}
.feat-project__body p {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}
.feat-project__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}
.feat-project__meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gray-500);
}
.feat-project__meta svg {
  width: 14px; height: 14px;
  color: var(--blue);
  flex-shrink: 0;
}

/* All projects */
.all-projects {
  background: var(--bg);
  padding: clamp(64px, 7vw, 100px) 0;
}
.all-projects__toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(28px, 3vw, 40px);
  flex-wrap: wrap;
}
.all-projects__toolbar .section-title {
  color: var(--navy-deep);
  margin-top: 6px;
}
.all-projects__toolbar p {
  color: var(--gray-700);
  font-size: 14.5px;
  margin-top: 8px;
}
.all-projects__filters {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  background: var(--bg-alt);
  padding: 5px;
  border-radius: 999px;
  border: 1px solid var(--gray-200);
}
.proj-filter {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: all .15s var(--t);
  letter-spacing: 0.005em;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.proj-filter:hover { color: var(--navy); background: white; }
.proj-filter.active {
  background: var(--navy);
  color: white;
  box-shadow: 0 4px 12px rgba(6,45,91,0.20);
}
.proj-filter__count {
  font-size: 11px;
  font-weight: 700;
  padding: 1px 7px;
  background: var(--gray-200);
  color: var(--gray-500);
  border-radius: 999px;
}
.proj-filter.active .proj-filter__count {
  background: rgba(255,255,255,0.18);
  color: white;
}

.all-projects__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.proj-tile {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--gray-200);
  cursor: pointer;
  isolation: isolate;
}
.proj-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--t), filter .25s var(--t);
}
.proj-tile:hover img {
  transform: scale(1.06);
}
.proj-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(3,20,46,0) 45%, rgba(3,20,46,0.85) 100%);
  opacity: 0;
  transition: opacity .25s var(--t);
}
.proj-tile:hover::after { opacity: 1; }
.proj-tile__overlay {
  position: absolute;
  left: 14px; right: 14px; bottom: 12px;
  z-index: 2;
  color: white;
  transform: translateY(6px);
  opacity: 0;
  transition: opacity .25s var(--t), transform .25s var(--t);
}
.proj-tile:hover .proj-tile__overlay {
  opacity: 1;
  transform: translateY(0);
}
.proj-tile__cat {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.proj-tile__title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.25;
}

.all-projects__empty {
  display: none;
  text-align: center;
  padding: 60px 20px;
  color: var(--gray-500);
}
.all-projects__empty.show { display: block; }

/* Trust band */
.trust-band {
  background: var(--bg-alt);
  padding: clamp(36px, 4vw, 56px) 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.trust-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-band__item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-band__icon {
  flex: 0 0 44px;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: white;
  border: 1px solid var(--gray-200);
  color: var(--blue);
  display: grid;
  place-items: center;
}
.trust-band__icon svg { width: 18px; height: 18px; }
.trust-band__item strong {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.25;
  margin-bottom: 2px;
}
.trust-band__item span {
  font-size: 12.5px;
  color: var(--gray-500);
}

/* Gallery CTA v2 */
.gallery-cta-v2 {
  background: var(--navy);
  color: white;
  padding: clamp(64px, 7vw, 96px) 0;
  position: relative;
  overflow: hidden;
}
.gallery-cta-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(46,163,242,0.18), transparent 45%),
    radial-gradient(circle at 100% 100%, rgba(46,163,242,0.10), transparent 45%);
}
.gallery-cta-v2__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.gallery-cta-v2__copy h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: white;
  margin: 14px 0 16px;
}
.gallery-cta-v2__copy h2 .accent { color: var(--blue); }
.gallery-cta-v2__copy p {
  font-size: clamp(15px, 1.2vw, 17px);
  color: rgba(255,255,255,0.80);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 24px;
}
.gallery-cta-v2__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.gallery-cta-v2__quote {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 32px);
  position: relative;
}
.gallery-cta-v2__stars {
  color: #fbbf24;
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.gallery-cta-v2__quote blockquote {
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 600;
  color: white;
  line-height: 1.45;
  letter-spacing: -0.005em;
  margin-bottom: 14px;
}
.gallery-cta-v2__quote cite {
  font-style: normal;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* Gallery responsive */
@media (max-width: 1024px) {
  .all-projects__grid { grid-template-columns: repeat(3, 1fr); }
  .featured-work__grid { grid-template-columns: 1fr 1fr; }
  .featured-work__grid > :last-child { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }
  .trust-band__grid { grid-template-columns: 1fr 1fr; }
  .gallery-cta-v2__inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .gallery-hero__inner { grid-template-columns: 1fr; }
  .gallery-hero__media { aspect-ratio: 1.4 / 1; }
  .gallery-stats { grid-template-columns: repeat(2, 1fr); padding: 18px; }
  .gallery-stat { border-right: 0; padding: 10px; }
  .gallery-stat:nth-child(odd) { border-right: 1px solid var(--gray-200); }
  .gallery-stat:nth-child(1), .gallery-stat:nth-child(2) { border-bottom: 1px solid var(--gray-200); }
  .featured-work__grid { grid-template-columns: 1fr; }
  .featured-work__grid > :last-child { grid-column: auto; max-width: none; }
  .all-projects__grid { grid-template-columns: repeat(2, 1fr); }
  .all-projects__toolbar { flex-direction: column; align-items: stretch; }
}
@media (max-width: 480px) {
  .all-projects__filters { overflow-x: auto; flex-wrap: nowrap; padding: 4px; }
  .proj-filter { flex-shrink: 0; }
  .trust-band__grid { grid-template-columns: 1fr; gap: 18px; }
}

/* Legacy portfolio compatibility (kept tiny so old anchors still work) */
.portfolio-section, .portfolio-grid, .portfolio-card,
.portfolio-card__meta, .portfolio-card__title, .portfolio-card__cat,
.portfolio-card__zoom, .portfolio-cta, .portfolio-cta__actions,
.portfolio-hero, .portfolio-stats, .portfolio-stat,
.portfolio-toolbar, .portfolio-filters, .portfolio-filter { /* no-op */ }

/* ---------- Featured projects (home page improvement) ---------- */
.featured-projects {
  background: var(--bg);
  padding: clamp(64px, 7vw, 100px) 0;
}
.featured-projects__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: clamp(420px, 56vw, 580px);
}
.featured-projects__grid > a {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--gray-200);
  cursor: pointer;
  isolation: isolate;
}
.featured-projects__grid > a:nth-child(1) { grid-row: 1 / 3; }
.featured-projects__grid > a img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--t);
}
.featured-projects__grid > a:hover img { transform: scale(1.05); }
.featured-projects__grid > a::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(3,20,46,0) 55%, rgba(3,20,46,0.70) 100%);
}
.featured-projects__label {
  position: absolute;
  left: 18px; bottom: 16px;
  z-index: 2;
  color: white;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -0.005em;
}
.featured-projects__label small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

/* ---------- Section flow improvements ---------- */
.divider-strip {
  background: var(--navy);
  color: white;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.divider-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}
.divider-strip__text {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  letter-spacing: -0.005em;
}
.divider-strip__text .accent { color: var(--blue); }

/* Service tiles refinement */
.service__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,20,46,0) 60%, rgba(3,20,46,0.50));
  z-index: 1;
}

/* ---------- Responsive overrides for v2 ---------- */
@media (max-width: 1024px) {
  .featured-projects__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    height: auto;
    aspect-ratio: 1.2 / 1;
  }
  .featured-projects__grid > a:nth-child(1) {
    grid-column: 1 / -1;
    grid-row: 1 / 2;
    aspect-ratio: 16/9;
  }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-stats { grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 22px 24px; }
  .portfolio-stat { border-right: 0; }
  .portfolio-stat:nth-child(odd) { border-right: 1px solid var(--gray-200); }
}
@media (max-width: 720px) {
  .hero-v2 { min-height: clamp(540px, 80vh, 640px); }
  .hero-v2__lede { font-size: 15px; }
  .hero-v2__bg::after {
    background: linear-gradient(180deg, rgba(3,20,46,0.92) 0%, rgba(3,20,46,0.78) 60%, rgba(3,20,46,0.55) 100%);
  }
  .form-v2 .field-grid { grid-template-columns: 1fr; gap: 12px; }
  .featured-projects__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    aspect-ratio: auto;
  }
  .featured-projects__grid > a {
    aspect-ratio: 4/3;
    grid-column: auto !important;
    grid-row: auto !important;
  }
  .featured-projects__grid > a:first-child { aspect-ratio: 16/10; }
  .portfolio-grid { grid-template-columns: 1fr; gap: 12px; }
  .portfolio-toolbar { flex-direction: column; align-items: flex-start; }
  .portfolio-stats { grid-template-columns: repeat(2, 1fr); margin: -40px auto 0; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
