@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800&family=IBM+Plex+Sans:ital,wght@0,400;0,450;0,500;0,600;1,400&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #0d2547;
  --primary-dark:   #081830;
  --primary-mid:    #163a6e;
  --accent:         #4A7C59;
  --accent-light:   #5e9470;
  --canvas:         #F7F6F2;
  --surface:        #FFFFFF;
  --ink:            #14181D;
  --ink-mid:        #2c3340;
  --muted:          #5C6068;
  --muted-light:    #8a9099;
  --border:         rgba(13,37,71,0.14);
  --border-light:   rgba(13,37,71,0.08);
  --shadow-sm:      0 2px 8px rgba(13,37,71,0.08);
  --shadow-md:      0 8px 32px -8px rgba(13,37,71,0.16);
  --shadow-lg:      0 20px 56px -16px rgba(13,37,71,0.22);
  --radius:         4px;
  --radius-md:      8px;
  --header-height:  72px;
  --section-py:     clamp(80px, 10vh, 128px);
  --content-max:    1320px;
  --font-display:   'Archivo', sans-serif;
  --font-body:      'IBM Plex Sans', sans-serif;
  --font-mono:      'IBM Plex Mono', monospace;
}

@media (max-width: 900px) {
  :root { --header-height: 60px; }
}

/* ============================================================
   RESET + GLOBALS
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 450;
  line-height: 1.7;
  color: var(--ink);
  background: var(--canvas);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

section img:not(.hero-bg):not([class*="full-bleed"]):not([class*="fullbleed"]) {
  max-height: 640px;
  object-fit: cover;
}

.nav img, header img, .header img, .nav-logo img, .logo img {
  max-height: 64px !important; max-width: 220px !important;
  width: auto !important; align-self: flex-start !important;
  object-fit: contain !important; flex: 0 0 auto !important;
}
.footer img, footer img {
  max-height: 48px !important; max-width: 200px !important;
  width: auto !important; align-self: flex-start !important;
  object-fit: contain !important; flex: 0 0 auto !important;
}

.hero { position: relative; overflow: hidden; }
.hero-bg, .hero > img:first-of-type {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%; z-index: 0;
}
.hero-inner, .hero > :not(img):not(.hero-bg):not(.hero-overlay):not(.hero-hairline) {
  position: relative; z-index: 2;
}
.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.page-header, [class*="page-header"], .about-feature, .about-hero {
  position: relative; overflow: hidden; max-height: 64vh;
}
.page-header > img, [class*="page-header"] > img, .page-header-bg,
.about-feature > img:first-of-type, .about-hero-bg,
.page-header img:first-of-type {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%; z-index: 0;
}
section > img:first-child:not([class*="logo"]):not(.nav-logo) {
  max-height: 64vh; object-fit: cover;
}
section img:not(.hero-bg):not(.page-header-bg):not([class*="full-bleed"]):not([class*="logo"]) {
  max-height: 720px;
}

[class*="gallery-grid"] > [class*="gallery-tile"],
[class*="gallery-grid"] > a, [class*="gallery-grid"] > figure {
  grid-column: auto; width: auto; max-width: 100%; height: auto; min-height: 0;
}
[class*="gallery-tile"] { aspect-ratio: 4 / 3; overflow: hidden; }
[class*="gallery-tile"] > img { width: 100%; height: 100%; object-fit: cover; }

h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

a { color: var(--primary); text-decoration: none; transition: color 150ms; }
a:hover { color: var(--primary-mid); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }

ul { list-style: none; padding: 0; }

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
h1, .h1 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.eyebrow, .section-eyebrow, .page-header-eyebrow, .credentials-eyebrow,
.about-story-eyebrow, .about-bridge-eyebrow, .gallery-section-eyebrow,
.cta-banner-eyebrow, .cta-banner-label {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(11px, 1.1vw, 13px);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

/* ============================================================
   LAYOUT CONTAINERS
   ============================================================ */
.inner, .container {
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 4vw, 48px);
  padding-right: clamp(20px, 4vw, 48px);
}
.wide-container {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 4vw, 48px);
  padding-right: clamp(20px, 4vw, 48px);
}

/* ============================================================
   SCROLL PROGRESS
   ============================================================ */
.scroll-progress, #scrollProgress, #scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 9999;
  height: 3px; width: 0%;
  background: var(--primary);
  transition: width 100ms linear;
  pointer-events: none;
}

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--canvas);
  border-bottom: 1px solid var(--border-light);
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 36px);
  height: var(--header-height);
}

.nav-logo { flex: 0 0 auto; }
.nav-logo img { max-height: 44px !important; max-width: 200px !important; }

.nav-pages {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
}
.nav-pages ul, ul.nav-pages { display: flex; gap: 28px; align-items: center; list-style: none; }
.nav-pages li { list-style: none; }
.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: color 150ms;
}
.nav-pages a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; }
.nav-pages a[aria-current="page"] { color: var(--primary); border-bottom: 2px solid var(--primary); }

.nav-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--canvas);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 150ms;
  font-family: var(--font-body);
}
.nav-cta:hover { color: var(--canvas); filter: brightness(1.15); text-decoration: none; }
.nav-cta svg { width: 16px; height: 16px; flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--ink);
  font-size: 24px;
  cursor: pointer;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  padding: 0;
}

@media (max-width: 899px) {
  .nav-toggle { display: flex; }
  .nav-pages {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--canvas);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px clamp(16px, 4vw, 36px);
    gap: 8px;
    border-bottom: 1px solid var(--border-light);
    z-index: 800;
  }
  .nav-pages.open { display: flex; }
  .nav-cta span { display: none; }
  .nav-cta { padding: 10px 14px; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: filter 150ms, background 150ms, color 150ms, border-color 150ms;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary, .btn-cta-primary, .btn-cta-filled {
  background: var(--primary);
  color: var(--canvas);
  border-color: var(--primary);
}
.btn-primary:hover, .btn-cta-primary:hover, .btn-cta-filled:hover {
  filter: brightness(1.15);
  color: var(--canvas);
  text-decoration: none;
}

.btn-ghost, .btn-cta-outline {
  background: transparent;
  color: var(--canvas);
  border-color: rgba(247,246,242,0.55);
}
.btn-ghost:hover, .btn-cta-outline:hover {
  background: rgba(247,246,242,0.12);
  color: var(--canvas);
  text-decoration: none;
}

.btn-white, .btn-light {
  background: var(--surface);
  color: var(--primary);
  border-color: var(--surface);
}
.btn-white:hover, .btn-light:hover { filter: brightness(0.96); color: var(--primary); text-decoration: none; }

.btn-form-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--canvas);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 32px;
  cursor: pointer;
  transition: filter 150ms;
}
.btn-form-submit:hover { filter: brightness(1.15); }
.btn-form-submit svg { width: 18px; height: 18px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-overlay {
  background: linear-gradient(
    160deg,
    rgba(13,37,71,0.72) 0%,
    rgba(20,24,29,0.55) 60%,
    rgba(20,24,29,0.38) 100%
  );
}

.hero-hairline {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--primary);
  z-index: 3;
}

.hero-inner {
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 80px) clamp(64px, 8vh, 96px);
  max-width: calc(var(--content-max) + 96px);
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(11px, 1.1vw, 13px);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: rgba(247,246,242,0.7);
  margin-bottom: 20px;
}

.hero-title, .hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 7vw, 120px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--canvas);
  max-width: 18ch;
  margin-bottom: 24px;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.55;
  color: rgba(247,246,242,0.8);
  max-width: 52ch;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.trust-chip {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--canvas);
  border: 1px solid rgba(247,246,242,0.35);
  border-radius: var(--radius);
  padding: 7px 14px;
  background: rgba(13,37,71,0.35);
  backdrop-filter: blur(4px);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .hero { min-height: 100svh; }
  .hero-inner { padding: 40px 20px 60px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  position: relative;
  z-index: 1;
  max-height: 64px;
}

.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  align-items: center;
}

.marquee-strip:hover .marquee-track { animation-play-state: paused; }

.marquee-item {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(12px, 1.2vw, 14px);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--ink);
  line-height: 1.2;
  flex-shrink: 0;
}

.marquee-dot {
  color: var(--primary);
  font-size: 18px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   TRUST STRIP (full-width surface band)
   ============================================================ */
.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border-light);
  padding: clamp(32px, 4vh, 48px) 0;
}

.trust-strip-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  background: var(--surface);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--ink);
  transition: background 150ms;
}
.trust-badge:hover { background: rgba(13,37,71,0.04); }

.tbico, .trust-badge svg {
  width: 16px; height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--canvas);
  padding: var(--section-py) 0;
}

.services-top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.services-top-row h2 {
  font-size: clamp(36px, 4.5vw, 64px);
}

.services-registry {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
  margin-bottom: 56px;
}

.service-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-light);
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  transition: background 150ms;
}
.service-row:hover { background: rgba(13,37,71,0.03); text-decoration: none; color: var(--ink); }

.svc-idx {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(18px, 2vw, 28px);
  color: var(--muted-light);
  line-height: 1;
  padding-left: 4px;
}

.svc-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 2.4vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 6px;
}

.svc-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 60ch;
}

.svc-arrow {
  width: 28px; height: 28px;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 200ms;
}
.service-row:hover .svc-arrow { transform: translateX(4px); }

/* Service panels */
.service-panels { display: flex; flex-direction: column; gap: 0; }

.service-panel {
  display: none;
  grid-template-columns: 45% 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
}
.service-panel.active { display: grid; }

.service-panel > img, .service-panel img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  max-height: 440px;
  object-fit: cover;
  display: block;
}

.svc-panel-body {
  padding: clamp(28px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.svc-panel-body h3 {
  font-size: clamp(22px, 2.5vw, 36px);
}

.svc-panel-tag {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--accent);
}

.svc-panel-body p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-mid);
}

.svc-panel-body a {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 2px;
  text-decoration: none;
  transition: gap 150ms;
}
.svc-panel-body a:hover { gap: 12px; text-decoration: none; }

@media (max-width: 900px) {
  .service-panel.active { grid-template-columns: 1fr; }
  .service-panel > img { min-height: 200px; max-height: 280px; order: -1; }
}

/* ============================================================
   GALLERY (homepage preview)
   ============================================================ */
.gallery-preview-section {
  background: var(--surface);
  padding: var(--section-py) 0;
  overflow: visible;
}

.gallery-hdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.gallery-hdr h2 { font-size: clamp(32px, 4vw, 56px); }

.gallery-feature {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 7;
  background: var(--ink);
}
.gallery-feature > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms ease-out;
  max-height: none;
}
.gallery-feature:hover > img { transform: scale(1.03); }

.gallery-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,37,71,0.75) 0%, transparent 55%);
  z-index: 1;
}

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: clamp(24px, 3vw, 40px);
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.gallery-caption-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 2.8vw, 40px);
  color: var(--canvas);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.gallery-caption-sub {
  font-size: 14px;
  color: rgba(247,246,242,0.7);
  margin-top: 6px;
}

.gallery-caption a {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  color: var(--primary);
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: filter 150ms;
}
.gallery-caption a:hover { filter: brightness(0.96); text-decoration: none; color: var(--primary); }

/* ============================================================
   GALLERY FULL PAGE
   ============================================================ */
.gallery-full {
  background: var(--canvas);
  padding: var(--section-py) 0;
}

.gallery-top-row {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
  flex-wrap: wrap;
}

.gallery-top-row h2 { font-size: clamp(28px, 3.5vw, 48px); }

.gallery-count-label {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gallery-filters {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.gallery-filters button, .filter-pill {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  transition: background 150ms, color 150ms, border-color 150ms;
}
.gallery-filters button:hover, .filter-pill:hover { border-color: var(--primary); color: var(--primary); }
.gallery-filters button.active, .filter-pill.active {
  background: var(--primary); color: var(--canvas); border-color: var(--primary);
}

.gallery-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.gallery-card {
  background: var(--surface);
  overflow: hidden;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.gallery-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.gallery-card-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.gallery-card-img-wrap > img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 400ms ease-out;
}
.gallery-card:hover .gallery-card-img-wrap > img { transform: scale(1.05); }

.gallery-card-body {
  padding: 20px;
}

.gallery-card-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--accent);
  margin-bottom: 6px;
}

.gallery-card-body h3 {
  font-size: clamp(16px, 1.5vw, 20px);
  margin-bottom: 6px;
}

.gallery-card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.gallery-card-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.gallery-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.gallery-meta-chip svg { width: 13px; height: 13px; }

.gallery-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px;
  color: var(--muted);
  font-size: 15px;
}

@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  background: var(--canvas);
  padding: var(--section-py) 0;
}

.reviews > .inner > h2 { font-size: clamp(32px, 4vw, 56px); margin-bottom: 48px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }
@media (min-width: 640px) and (max-width: 900px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }

.review-card {
  background: var(--surface);
  border-radius: var(--radius);
  border-top: 3px solid var(--primary);
  padding: 28px;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.review-stars svg { width: 18px; height: 18px; color: var(--primary); fill: var(--primary); }

.review-bigmark {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: rgba(13,37,71,0.10);
  line-height: 0.8;
  display: block;
  margin-bottom: 8px;
}

.review-quote {
  font-size: clamp(16px, 1.4vw, 18px);
  font-style: italic;
  line-height: 1.55;
  color: var(--ink-mid);
  margin-bottom: 20px;
  max-width: 46ch;
}

.review-attribution {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.review-rating-block {
  background: var(--primary);
  color: var(--canvas);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.rating-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(56px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--canvas);
}

.rating-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: rgba(247,246,242,0.65);
}

.rating-stars { display: flex; gap: 4px; justify-content: center; }
.rating-stars svg { width: 20px; height: 20px; color: var(--canvas); fill: var(--canvas); }
.review-rating-block p { font-size: 13px; color: rgba(247,246,242,0.65); line-height: 1.5; }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas {
  background: var(--surface);
  padding: var(--section-py) 0;
}

.service-areas > .inner > h2 { font-size: clamp(28px, 3.5vw, 48px); margin-bottom: 12px; }

.section-lead {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 56ch;
}

.areas-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  background: var(--canvas);
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  padding: 8px 16px;
  transition: background 150ms, color 150ms;
}
.area-chip:hover { background: var(--primary); color: var(--canvas); }

/* Areas strip (services page) */
.areas-strip {
  background: var(--primary);
  padding: 18px 0;
  overflow: hidden;
}
.areas-strip-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.areas-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: rgba(247,246,242,0.55);
  margin-right: 8px;
  flex-shrink: 0;
}
.area-pill {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(247,246,242,0.85);
  border: 1px solid rgba(247,246,242,0.25);
  border-radius: var(--radius);
  padding: 5px 12px;
}

/* Service area pills (contact page) */
.service-areas-block { margin-top: 24px; }
.service-areas-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
  margin-bottom: 10px;
  display: block;
}
.service-area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.area-pill { white-space: nowrap; }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--canvas);
  padding: var(--section-py) 0;
}

.faq > .inner > h2 { font-size: clamp(28px, 3.5vw, 48px); margin-bottom: 40px; }

.faq-list { max-width: 780px; }

.faq-list details, details.faq {
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.faq-list details summary, details.faq > summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.4;
  color: var(--ink);
  padding: 22px 0;
  list-style: none;
  gap: 24px;
}
.faq-list details summary::-webkit-details-marker,
details.faq > summary::-webkit-details-marker { display: none; }

.faq-chev, .faq-list details summary svg {
  width: 20px; height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 200ms;
}

.faq-list details[open] summary svg,
.faq-list details[open] .faq-chev,
details.faq[open] > summary .faq-chev { transform: rotate(45deg); }

.faq-body, .faq-list details p {
  padding: 0 0 22px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 66ch;
}

details.faq > summary::after { display: none; }

/* ============================================================
   TEAM CTA BAND
   ============================================================ */
.team-cta {
  background: var(--primary);
  padding: clamp(48px, 6vh, 72px) 0;
}

.team-cta-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.team-cta-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 42px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--canvas);
  max-width: 38ch;
}

.team-cta-sub {
  font-size: 15px;
  color: rgba(247,246,242,0.7);
  margin-top: 8px;
  line-height: 1.55;
}

.team-cta-inner a {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--canvas);
  color: var(--primary);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: filter 150ms;
}
.team-cta-inner a:hover { filter: brightness(0.96); text-decoration: none; color: var(--primary); }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
  background: var(--canvas);
  padding: var(--section-py) 0;
}

.contact > .inner > h2 { font-size: clamp(28px, 3.5vw, 48px); margin-bottom: 48px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* Contact page */
.contact-section {
  background: var(--canvas);
  padding: var(--section-py) 0;
}

.contact-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
}

@media (max-width: 900px) { .contact-inner { grid-template-columns: 1fr; } }

.contact-section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.contact-form-wrap h2 { font-size: clamp(24px, 3vw, 40px); margin-bottom: 12px; }

.contact-form-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

.contact-info-card {
  background: var(--surface);
  border-top: 3px solid var(--primary);
  border-radius: var(--radius);
  padding: 32px;
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.info-card-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

.info-card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 28px;
}

.info-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
  margin-bottom: 20px;
}

.info-icon {
  width: 40px; height: 40px;
  background: rgba(13,37,71,0.06);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 18px; height: 18px; color: var(--primary); }

.info-content-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  display: block;
  margin-bottom: 3px;
}

.info-content-val {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}
.info-content-val a { color: var(--primary); }

.open-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: var(--radius);
  margin-left: 8px;
  vertical-align: middle;
}

.info-hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  font-size: 14px;
  color: var(--ink-mid);
  margin-top: 4px;
}

.info-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.info-social-link {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: border-color 150ms, color 150ms;
}
.info-social-link:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }
.info-social-link svg { width: 18px; height: 18px; }

/* ============================================================
   FORMS
   ============================================================ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-group, .form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-group label, .form-field label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.form-group input, .form-group textarea, .form-group select,
.form-field input, .form-field textarea, .form-field select {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  transition: border-color 150ms, box-shadow 150ms;
  width: 100%;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus,
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13,37,71,0.10);
}

.form-group textarea, .form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

.form-group.full { grid-column: 1 / -1; }

.form-submit {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* ============================================================
   DISCOUNTS BOX + CHIPS
   ============================================================ */
.discounts-box, .discounts-strip {
  background: rgba(74,124,89,0.08);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 24px;
}

.discounts-label, .discounts-strip-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}

.discount-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.discount-chip {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: rgba(74,124,89,0.12);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 5px 12px;
}

/* ============================================================
   CONTACT INFO ITEMS (index.html contact section)
   ============================================================ */
.contact-info-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
  margin-bottom: 20px;
}

.ci-icon {
  width: 40px; height: 40px;
  background: rgba(13,37,71,0.06);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon svg { width: 18px; height: 18px; color: var(--primary); }

.ci-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 3px;
}

.ci-val {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}
.ci-val a { color: var(--primary); }

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: clamp(280px, 40vh, 480px);
  background: var(--primary);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.page-header-overlay {
  background: linear-gradient(160deg, rgba(13,37,71,0.78) 0%, rgba(13,37,71,0.45) 100%);
  z-index: 1;
}

.page-header-hairline {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--primary);
  z-index: 3;
}

.page-header-inner {
  position: relative; z-index: 2;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 48px) clamp(40px, 5vw, 64px);
}

.page-header-inner h1 {
  font-size: clamp(36px, 5.5vw, 80px);
  color: var(--canvas);
  margin-bottom: 12px;
}

.page-header-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: rgba(247,246,242,0.6);
  display: block;
  margin-bottom: 16px;
}

.page-header-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(247,246,242,0.75);
  line-height: 1.55;
  max-width: 52ch;
  margin-top: 10px;
}

.page-header-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  list-style: none;
}

.page-header-chip {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--canvas);
  border: 1px solid rgba(247,246,242,0.35);
  border-radius: var(--radius);
  padding: 7px 14px;
}

/* ============================================================
   SERVICES DETAIL PAGE
   ============================================================ */
.services-detail {
  background: var(--canvas);
  padding: var(--section-py) 0;
}

.services-detail-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.services-detail-inner h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  margin-bottom: 56px;
}

.service-block {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 0;
  margin-bottom: 72px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
}

.service-block:nth-child(even) { direction: rtl; }
.service-block:nth-child(even) > * { direction: ltr; }

.service-block-photo {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.service-block-photo > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
}

.service-block-index {
  position: absolute;
  top: 20px; left: 20px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: var(--canvas);
  background: var(--primary);
  border-radius: var(--radius);
  padding: 4px 12px;
  z-index: 1;
  letter-spacing: 0.06em;
}

.service-block-body {
  padding: clamp(28px, 3.5vw, 52px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.service-block-body h3 {
  font-size: clamp(22px, 2.5vw, 36px);
}

.service-block-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-mid);
}

.service-block-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-block-bullets li {
  font-size: 14px;
  color: var(--ink-mid);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.service-block-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.service-block-body a {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--canvas);
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: filter 150ms;
  margin-top: 4px;
}
.service-block-body a:hover { filter: brightness(1.15); text-decoration: none; color: var(--canvas); }

@media (max-width: 900px) {
  .service-block { grid-template-columns: 1fr; direction: ltr; }
  .service-block:nth-child(even) { direction: ltr; }
  .service-block-photo { min-height: 220px; max-height: 280px; }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--primary);
  padding: clamp(64px, 8vh, 96px) 0;
  position: relative;
  overflow: hidden;
}

.cta-banner > img.hero-bg,
.cta-banner > img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.18;
  z-index: 0;
  max-height: none;
}

.cta-banner-inner {
  position: relative; z-index: 1;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: center;
}

@media (max-width: 900px) { .cta-banner-inner { grid-template-columns: 1fr; gap: 40px; } }

.cta-banner-text h2 {
  font-size: clamp(32px, 4.5vw, 64px);
  color: var(--canvas);
  margin-bottom: 16px;
}

.cta-banner-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(247,246,242,0.75);
  line-height: 1.6;
  margin-bottom: 28px;
}

.cta-banner-text a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--canvas);
  color: var(--primary);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: filter 150ms;
}
.cta-banner-text a:hover { filter: brightness(0.96); text-decoration: none; color: var(--primary); }

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-banner-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: filter 150ms, background 150ms;
}
.cta-banner-actions a:first-child {
  background: var(--canvas);
  color: var(--primary);
}
.cta-banner-actions a:last-child {
  background: transparent;
  color: var(--canvas);
  border: 2px solid rgba(247,246,242,0.45);
}
.cta-banner-actions a:hover { filter: brightness(0.94); text-decoration: none; }
.cta-banner-actions a:last-child:hover { background: rgba(247,246,242,0.1); }

.cta-banner-form {
  background: var(--canvas);
  border-radius: var(--radius-md);
  padding: 32px;
}

.cta-banner-form-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 24px;
}

.cta-banner-form .form-row,
.cta-banner-form .form-field {
  margin-bottom: 14px;
}

.cta-banner-form input,
.cta-banner-form select,
.cta-banner-form textarea {
  background: var(--surface);
}

.cta-banner-form button[type="submit"] {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* ============================================================
   ABOUT STORY
   ============================================================ */
.about-story {
  background: var(--canvas);
  padding: var(--section-py) 0;
}

.about-story-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}

@media (max-width: 900px) { .about-story-grid { grid-template-columns: 1fr; } }

.about-portrait-col { grid-column: 1; }
.about-story-content { grid-column: 2; }

@media (max-width: 900px) {
  .about-portrait-col { grid-column: 1; order: -1; }
  .about-story-content { grid-column: 1; }
}

.about-portrait-col > img {
  width: 100%;
  border-radius: var(--radius);
  max-height: 580px;
  object-fit: cover;
}

.about-portrait-caption {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 12px;
}

.about-story-eyebrow { margin-bottom: 16px; }

.about-story-content h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  margin-bottom: 28px;
}

.about-story-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.about-story-body p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-mid);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.value-card {
  background: var(--surface);
  border-top: 3px solid var(--primary);
  border-radius: var(--radius);
  padding: 20px 22px;
}

.value-card-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.value-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 6px;
}

.value-card-body {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

/* ============================================================
   CREDENTIALS SECTION (unique move)
   ============================================================ */
.credentials {
  background: var(--surface);
  padding: var(--section-py) 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.credentials-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.credentials-eyebrow { margin-bottom: 16px; }

.credentials-inner h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  margin-bottom: 40px;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 900px) { .credentials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .credentials-grid { grid-template-columns: 1fr; } }

.cred-card {
  background: var(--canvas);
  border-top: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.cred-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.cred-card-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 8px;
}

.cred-card-value {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(14px, 1.5vw, 18px);
  color: var(--primary);
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 8px;
}

.cred-card-sub {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

/* ============================================================
   ABOUT BRIDGE
   ============================================================ */
.about-bridge {
  background: var(--primary);
  padding: var(--section-py) 0;
}

.about-bridge-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}

@media (max-width: 900px) { .about-bridge-grid { grid-template-columns: 1fr; } }

.about-bridge-grid > div:first-child { grid-column: 1; }
.about-bridge-content { grid-column: 2; }

@media (max-width: 900px) {
  .about-bridge-grid > div:first-child,
  .about-bridge-content { grid-column: 1; }
  .about-bridge-grid > div:first-child { order: -1; }
}

.about-bridge-grid > div:first-child > img {
  width: 100%;
  border-radius: var(--radius);
  max-height: 480px;
  object-fit: cover;
}

.about-bridge-eyebrow {
  color: rgba(247,246,242,0.55);
  margin-bottom: 16px;
}

.about-bridge-content h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--canvas);
  margin-bottom: 20px;
}

.about-bridge-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 40px);
  color: var(--canvas);
  margin-bottom: 16px;
}

.about-bridge-body {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(247,246,242,0.75);
  margin-bottom: 28px;
}

.about-bridge-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--canvas);
  font-weight: 700;
  font-size: 15px;
  border-bottom: 2px solid rgba(247,246,242,0.4);
  padding-bottom: 3px;
  text-decoration: none;
  transition: border-color 150ms, gap 150ms;
}
.about-bridge-link svg { width: 20px; height: 20px; }
.about-bridge-link:hover { border-color: var(--canvas); gap: 14px; text-decoration: none; color: var(--canvas); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(247,246,242,0.75);
  padding: clamp(56px, 7vw, 88px) 0 0;
}

.footer-inner, .footer-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 280px 1fr 1fr 260px;
  gap: 48px;
  margin-bottom: 56px;
}

@media (max-width: 1100px) {
  .footer-inner, .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .footer-inner, .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand, .footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-biz-name, .footer-brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  color: var(--canvas);
  letter-spacing: -0.01em;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(247,246,242,0.5);
  line-height: 1.5;
}

.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.footer-social-link, .footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(247,246,242,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(247,246,242,0.6);
  transition: border-color 150ms, color 150ms;
}
.footer-social-link:hover, .footer-socials a:hover {
  border-color: rgba(247,246,242,0.55);
  color: var(--canvas);
  text-decoration: none;
}
.footer-social-link svg, .footer-socials a svg { width: 18px; height: 18px; }

.footer-col-label, .footer-col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: rgba(247,246,242,0.35);
  margin-bottom: 16px;
  display: block;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}
.footer-links a {
  color: rgba(247,246,242,0.6);
  font-size: 14px;
  text-decoration: none;
  transition: color 150ms;
}
.footer-links a:hover { color: var(--canvas); text-decoration: none; }

.footer-contact-item, .footer-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(247,246,242,0.6);
  margin-bottom: 10px;
}
.footer-contact-item svg, .footer-contact-row svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.footer-contact-item a, .footer-contact-row a {
  color: rgba(247,246,242,0.7);
  text-decoration: none;
}
.footer-contact-item a:hover, .footer-contact-row a:hover { color: var(--canvas); text-decoration: none; }

.fce {
  margin-bottom: 12px;
}
.fce-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(247,246,242,0.3);
  margin-bottom: 3px;
}
.fce-val {
  font-size: 14px;
  color: rgba(247,246,242,0.65);
}
.fce-val a { color: rgba(247,246,242,0.7); }
.fce-val a:hover { color: var(--canvas); text-decoration: none; }

.footer-areas-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: rgba(247,246,242,0.5);
}

.footer-bottom {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 24px clamp(20px, 4vw, 48px);
  border-top: 1px solid rgba(247,246,242,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy, .footer-bottom-copy {
  font-size: 13px;
  color: rgba(247,246,242,0.35);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(247,246,242,0.35);
  border: 1px solid rgba(247,246,242,0.12);
  border-radius: var(--radius);
  padding: 4px 10px;
}

.footer-lic, .footer-cred, .footer-bottom-trust {
  font-size: 13px;
  color: rgba(247,246,242,0.3);
}

/* ============================================================
   MOBILE CALL PILL / STICKY CTA
   ============================================================ */
.mobile-cta,
.mobile-cta-sticky,
.mobile-sticky-cta {
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 999;
  display: flex;
}

.mobile-cta a,
.mobile-cta-btn,
.mobile-cta-sticky a,
.mobile-sticky-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--canvas);
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  transition: filter 150ms, transform 150ms;
  white-space: nowrap;
}
.mobile-cta a:hover,
.mobile-cta-btn:hover,
.mobile-cta-sticky a:hover,
.mobile-sticky-cta a:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--canvas);
}

.mobile-cta svg,
.mobile-cta a svg,
.mobile-cta-btn svg,
.mobile-cta-sticky a svg,
.mobile-sticky-cta a svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
}

@media (min-width: 900px) {
  .mobile-cta,
  .mobile-cta-sticky,
  .mobile-sticky-cta { display: none; }
}

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scale-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up.visible,
.fade-left.visible,
.fade-right.visible,
.scale-in.visible {
  opacity: 1;
  transform: none;
}

.stagger > *:nth-child(1) { transition-delay: 0ms; }
.stagger > *:nth-child(2) { transition-delay: 80ms; }
.stagger > *:nth-child(3) { transition-delay: 160ms; }
.stagger > *:nth-child(4) { transition-delay: 240ms; }
.stagger > *:nth-child(5) { transition-delay: 320ms; }
.stagger > *:nth-child(6) { transition-delay: 400ms; }
.stagger > *:nth-child(7) { transition-delay: 480ms; }
.stagger > *:nth-child(8) { transition-delay: 560ms; }
.stagger > *:nth-child(n+9) { transition-delay: 640ms; }

/* ============================================================
   SERVICE CARD HOVER
   ============================================================ */
.service-card {
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18);
}

/* ============================================================
   HEADING ANCHOR FIX
   ============================================================ */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

/* ============================================================
   MISC + RESPONSIVE POLISH
   ============================================================ */
.section-heading, .section-title {
  font-size: clamp(28px, 3.5vw, 48px);
  margin-bottom: 48px;
}

.section-eyebrow { display: block; }

p + p { margin-top: 0; }

@media (max-width: 640px) {
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .services-detail-inner h2 { margin-bottom: 32px; }
}

/* ============================================================
   TABLE CELLS (scoped thead only)
   ============================================================ */
.services-table thead .col-service,
.services-table thead .col-desc,
.services-table thead .col-timeline,
.services-table thead .col-price {
  background: var(--primary);
  color: var(--canvas);
}

/* Tbody inherits light bg */
.services-table tbody td {
  background: var(--surface);
  color: var(--ink);
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.svc-idx { grid-column: 1 / -1; }
.svc-arrow { grid-column: 1 / -1; }
.svc-panel-img { grid-column: 1 / -1; }
.svc-panel-body { grid-column: 1 / -1; }
.ci-icon { grid-column: 1 / -1; }
.service-block-photo { grid-column: 1 / -1; }
.service-block-body { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.cta-banner-eyebrow { grid-column: 1 / -1; }
.cta-banner-title { grid-column: 1 / -1; }
.cta-banner-sub { grid-column: 1 / -1; }
.cta-banner-actions { grid-column: 1 / -1; }
.footer-grid { grid-column: 1 / -1; }
.footer-bottom { grid-column: 1 / -1; }
.value-card { grid-column: 1 / -1; }
.footer-brand-col { grid-column: 1 / -1; }
.info-icon { grid-column: 1 / -1; }
.info-content { grid-column: 1 / -1; }
/* validator patch: hero must never crop its headline */
#hero, .hero { overflow: visible !important; }
:where(#hero, .hero) { padding-top: max(var(--header-height, 72px), 72px); }
/* validator patch: keep the hero photo visible, no smothering dark band */
.hero-overlay { background: linear-gradient(to top, rgba(0,0,0,0.66), rgba(0,0,0,0.34) 38%, rgba(0,0,0,0.12) 68%, rgba(0,0,0,0) 100%), linear-gradient(to right, rgba(0,0,0,0.30), rgba(0,0,0,0) 58%) !important; }
