/* Sierra Mechanical Corporation — Editorial theme (charcoal + burnt orange) */

:root {
  /* Self-hosted Inter + Archivo (see fonts/fonts.css) */
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Archivo', 'Inter', system-ui, sans-serif;
  --ink: #0E0F12;             /* deep charcoal, per design brief */
  --ink-2: #1A1B1F;
  --text: #0E0F12;
  --mute: #475569;            /* WCAG AA: passes 4.5:1 on white, paper-2, and bone */
  --mute-2: #94A3B8;
  --line-soft: #E5E7EB;
  --line: #E2E8F0;
  --paper: #FFFFFF;
  --paper-2: #F8FAFC;
  --bone: #F1F5F9;
  /* --primary is now an alias of --ink so legacy selectors stay structural. */
  --primary: #0E0F12;
  --primary-deep: #1A1B1F;
  --primary-soft: #E8E5DE;    /* warm beige — formerly DBEAFE pastel blue */
  --accent: #C2410C;          /* burnt orange — single brand accent */
  --accent-rgb: 194, 65, 12;
  --accent-deep: #C2410C;
  --accent-soft: rgba(var(--accent-rgb), 0.14);
  --accent-text: #C2410C;
  --accent-on-dark: #C2410C;
  --primary-pill-bg: rgba(var(--accent-rgb), 0.14);
  --maxw: 1280px;
  --pad: 40px;
  --nav-h: 76px;
  --r-lg: 14px;
  --r-card: 16px;
  --r-md: 10px;
  --r-sm: 6px;
  --shadow-sm: 0 1px 2px rgba(15,23,42,0.04);
  --shadow-md: 0 4px 16px rgba(15,23,42,0.06);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.text-link {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.text-link:hover {
  color: var(--accent-text);
  border-bottom-color: var(--accent-text);
}

.eyebrow-on-dark {
  color: var(--accent-on-dark) !important;
}
.eyebrow-on-dark .dot { color: var(--accent-on-dark) !important; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:visited { color: inherit; }   /* override browser default purple — keep parent text color */
.bcrumb a:visited,
.footer-col li a:visited,
.region-list li a:visited,
.mobile-link:visited,
.nav-link:visited { color: inherit; }
button { font-family: inherit; }

/* ---------- Accessibility: skip link + focus-visible ---------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -200px;
  left: 12px;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  z-index: 100;
  transition: top 0.18s ease-out;
}
.skip-link:focus,
.skip-link:focus-visible {
  top: 12px;
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

:focus { outline: none; }   /* reset default so we can apply :focus-visible cleanly */

a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible,
.svc-card:focus-visible,
.recent-card:focus-visible,
.project-row:focus-visible,
.brand-cell:focus-visible,
.filter-pill:focus-visible,
.faq-item summary:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 6px;
}
.form-input:focus-visible,
.form-select:focus-visible,
.form-textarea:focus-visible,
.form-check:focus-within {
  outline: 3px solid var(--primary);
  outline-offset: 1px;
}
.nav-cta:focus-visible,
.btn-primary:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}
.mobile-menu a:focus-visible,
.footer a:focus-visible,
.cta-big a:focus-visible,
.section-dark a:focus-visible,
.contact-aside a:focus-visible,
.site-chat-panel button:focus-visible,
.site-chat-panel a:focus-visible,
.site-chat-input:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}
.site-chat-fab:focus-visible,
.sticky-bid-bar a:focus-visible {
  outline: 3px solid var(--accent-on-dark);
  outline-offset: 3px;
}

/* ---------- Reduced motion (WCAG 2.3.3 + 2.2.2) ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .btn:hover { transform: none !important; box-shadow: var(--shadow-sm) !important; }
  .brand-cell:hover { transform: none !important; }
  .site-chat-fab:hover { transform: none !important; }
  .project-row:hover .project-arrow { transform: none !important; }
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; margin: 0; line-height: 1.08; color: var(--ink); }
p { margin: 0; }

.font-display { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; }
.font-mono { font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }

/* Legacy pill labels — removed site-wide; keep selector hidden for stale prerender */
.eyebrow { display: none !important; }
/* CSS dot — avoids misaligned ● glyph in mono fonts */
.eyebrow .dot {
  position: relative;
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  font-size: 0;
  line-height: 0;
  color: transparent;
  overflow: hidden;
}
.eyebrow .dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--accent-text);
}
.eyebrow-on-dark .dot::before {
  background: var(--accent-on-dark);
}

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

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.brand { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.brand-mark {
  width: 40px; height: 40px;
  flex-shrink: 0;
  display: block;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  background: transparent;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.brand-mark::after { content: none; }
.brand-name {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 17px;
  text-transform: none;
  color: var(--ink);
  line-height: 1.1;
}
.brand-sub {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0;
  color: var(--mute);
  text-transform: none;
  margin-top: 1px;
  font-weight: 500;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--mute);
  cursor: pointer;
  background: transparent;
  border: none;
  border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav-link:hover { color: var(--ink); background: var(--bone); }
.nav-link.active { color: var(--primary); background: var(--primary-pill-bg); }
.nav-link.active::before { content: none; }

.nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--ink);
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-phone:hover { background: var(--bone); color: var(--ink); }
.nav-phone svg { color: var(--primary); }

.nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 11px 20px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: filter 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
}
.nav-cta:hover { filter: brightness(0.92); }

.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* ---------- Hamburger button + mobile menu ---------- */
.nav-burger {
  display: none;
  width: 44px; height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-burger:hover { background: var(--bone); }
.nav-burger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.18s, opacity 0.18s;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  bottom: 0;
  background: var(--ink);
  color: #fff;
  overflow-y: auto;
  z-index: 49;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.18s ease-out, visibility 0.18s;
}
.mobile-menu.open { visibility: visible; opacity: 1; }
.mobile-menu-inner {
  padding: 32px var(--pad) 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-link {
  padding: 18px 4px;
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
}
.mobile-link:hover, .mobile-link.active { color: var(--accent); }
.mobile-link-call {
  margin-top: 24px;
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  border-bottom: none;
  padding: 14px 0;
}
.mobile-link-call svg { color: var(--accent); }
.mobile-cta {
  margin-top: 12px;
  background: var(--accent);
  color: #fff;
  padding: 18px 22px;
  border-radius: 10px;
  text-align: center;
  border-bottom: none;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
}
.mobile-cta:hover { filter: brightness(0.92); background: var(--accent); color: #fff; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  border: none;
  border-radius: 10px;
  transition: background .15s, transform .15s, border-color .15s;
}
.btn:hover { box-shadow: var(--shadow-md); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { filter: brightness(0.92); background: var(--accent); }
.btn-ghost {
  background: #fff; color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-ghost-on-dark {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn-ghost-on-dark:hover {
  background: rgba(255,255,255,0.08);
  border-color: #fff;
  color: #fff;
}
.btn-dark {
  background: var(--primary); color: #fff;
}
.btn-dark:hover { background: var(--primary-deep); }
.btn-arrow {
  width: 18px; height: 18px;
  display: inline-grid; place-items: center;
  background: transparent; color: inherit;
  font-size: 14px;
}
.btn-primary .btn-arrow, .btn-dark .btn-arrow { background: transparent; color: #fff; }

/* ---------- SECTIONS ---------- */
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-dark { background: var(--ink); color: #fff; }
.section-paper { background: var(--paper); }
.section-bone { background: var(--bone); }
.section-soft { background: var(--paper-2); }

.hr { height: 1px; background: var(--line-soft); width: 100%; }

.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  background: var(--bone);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
}
.chip-light { background: rgba(255,255,255,0.12); color: #fff; }
.chip .dot { width: 6px; height: 6px; background: var(--primary); border-radius: 50%; }

/* placeholder image */
.ph {
  position: relative;
  background:
    radial-gradient(circle at 1px 1px, rgba(15,23,42,0.08) 1px, transparent 0) 0 0/16px 16px,
    var(--bone);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  display: grid; place-items: center;
  overflow: hidden;
}
.ph-dark {
  background:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.07) 1px, transparent 0) 0 0/16px 16px,
    #1E293B;
  border: 1px solid rgba(255,255,255,0.08);
}
.ph-label {
  font-family: var(--font-body), monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--mute);
  padding: 6px 12px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
}
.ph-dark .ph-label { background: rgba(0,0,0,0.4); color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.12); }

/* Photo mode — when .ph has a real <img>, swap to caption-overlay layout */
.ph-photo { background: var(--ink); border-color: transparent; }
.ph-photo .ph-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}
.ph-photo .ph-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(14,15,18,0.85);
  color: rgba(255,255,255,0.95);
  border-color: rgba(255,255,255,0.2);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  pointer-events: none;
}
/* Real photos: no bracket captions — reads like a finished site, not a wireframe */
.ph-photo:has(.ph-img) .ph-label {
  display: none;
}
.ph-photo .tick { color: rgba(255,255,255,0.55); z-index: 2; }


/* Blueprint corner ticks — engineering-drawing signal on every placeholder + dark callout */
.tick {
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
  color: var(--ink);
}
.tick::before, .tick::after {
  content: "";
  position: absolute;
  background: currentColor;
}
.tick::before { width: 14px; height: 1.5px; top: 0; left: 0; }
.tick::after  { width: 1.5px; height: 14px; top: 0; left: 0; }
.tick.tl { top: 8px;  left: 8px; }
.tick.tr { top: 8px;  right: 8px;  transform: scaleX(-1); }
.tick.bl { bottom: 8px; left: 8px;  transform: scaleY(-1); }
.tick.br { bottom: 8px; right: 8px; transform: scale(-1, -1); }
.ph-dark .tick { color: rgba(255,255,255,0.55); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
  padding: 80px 0 64px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 1px 1px, rgba(15,23,42,0.04) 1px, transparent 0) 0 0/32px 32px;
  opacity: .35;
  pointer-events: none;
}
.hero::after { content: none; }
.hero-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-content { padding: 0; display: block; min-width: 0; }
.hero-media { min-width: 0; }
.hero-photo-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-height: min(72vh, 640px);
}
.hero-photo-frame .ph-img { width: 100%; height: 100%; object-fit: cover; }
.hero-meta { display: none; }

.hero-headline {
  font-family: var(--font-display), sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--ink);
  max-width: 14ch;
  margin: 28px 0 24px;
}
.hero-headline .accent { color: var(--accent-text); }
.hero-headline .outline { color: var(--ink); -webkit-text-stroke: 0; }

.hero-bottom { display: block; margin-top: 0; }
.hero-lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--mute);
  max-width: 60ch;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Bid desk strip inside the hero — operator-voice direct line */
.hero-direct {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body), monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--mute);
  text-transform: uppercase;
}
.hero-direct-arrow { color: var(--accent-text); font-size: 16px; margin-right: 2px; }
.hero-direct-label { color: var(--ink); font-weight: 700; }
.hero-direct a {
  color: var(--ink);
  font-weight: 700;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
}
.hero-direct a:hover { color: var(--accent-text); border-color: var(--accent-text); }
.hero-direct-sep { color: var(--mute-2); }
.hero-direct-meta { color: var(--mute); font-weight: 500; }

/* Service-agreement tier cards */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tier-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.tier-featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.tier-badge {
  position: absolute;
  top: -11px;
  left: 28px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body), monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.tier-name {
  font-family: var(--font-display), sans-serif;
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.tier-cadence {
  font-family: var(--font-body), monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-top: 4px;
}
.tier-best {
  font-size: 14px;
  color: var(--mute);
  line-height: 1.5;
  margin: 14px 0 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
}
@media (max-width: 1024px) { .tier-grid { grid-template-columns: 1fr; } }

/* Platform thesis grid (About — Where We're Going) */
.thesis-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.14);
  border-left: 1px solid rgba(255,255,255,0.14);
}
.thesis-item {
  padding: 32px;
  border-right: 1px solid rgba(255,255,255,0.14);
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.thesis-num {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.thesis-h {
  font-family: var(--font-display), sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 10px;
}
.thesis-p { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.6; }
@media (max-width: 640px) { .thesis-grid { grid-template-columns: 1fr; } }

/* Responsive Google Maps embed wrapper */
.map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--bone);
  border: 1px solid var(--line-soft);
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media (max-width: 640px) {
  .map-embed { aspect-ratio: 4 / 5; }
}

/* Credential rail — replaces the stat quartet */
.credential-rail {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.credential-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 18px;
  font-family: var(--font-body), monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
}
.credential-row .sep { color: var(--mute-2); font-weight: 700; }
.credential-row a {
  color: inherit;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.credential-row a:hover {
  color: var(--accent-text);
  border-bottom-color: var(--accent-text);
}
.credential-row-sub {
  margin-top: 6px;
  font-weight: 500;
  color: var(--mute);
  letter-spacing: 0.12em;
}
.credential-row-sub .sep { color: var(--mute-2); }
@media (max-width: 640px) {
  .credential-row { font-size: 11px; gap: 8px 12px; }
}

/* ---------- SECTION HEAD ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
  align-items: start;
  margin-bottom: 56px;
}
.section-head h2 { font-size: clamp(36px, 4.5vw, 56px); letter-spacing: -0.03em; }
.section-head--compact h2 { font-size: clamp(28px, 3.2vw, 40px); }
.section-head--compact:has(> div:only-child) {
  grid-template-columns: 1fr;
}
.section-head--stacked {
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 40px;
}
.section-head--stacked h2 { font-size: clamp(28px, 3.2vw, 44px); max-width: 24ch; }
.section-head--stacked .lede { max-width: 62ch; }
.section-head .lede { font-size: 17px; line-height: 1.55; color: var(--mute); max-width: 50ch; }
.section-head-dark .lede { color: rgba(255,255,255,0.7); }
.section-head-dark h2 { color: #fff; }

/* ---------- SERVICES GRID ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  border: none;
}
.svc-card {
  padding: 0;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-card);
  position: relative;
  cursor: pointer;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  min-height: auto;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.svc-card:hover { box-shadow: var(--shadow-md); border-color: var(--accent-soft); }
.svc-card-photo { margin: 0; border-radius: 0; }
.svc-card-photo .ph-img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.svc-card-body { padding: 28px 32px 32px; display: flex; flex-direction: column; flex: 1; position: relative; }
.svc-card-cta {
  margin-top: auto;
  padding-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.svc-num {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 12px;
}
.svc-card-photo-wrap { overflow: hidden; border-radius: var(--r-card) var(--r-card) 0 0; }
.svc-card-photo-wrap img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.svc-title { font-size: 24px; letter-spacing: -0.02em; margin-bottom: 10px; max-width: 18ch; }
.svc-desc { font-size: 15px; color: var(--mute); line-height: 1.6; max-width: 50ch; flex: 1; margin-bottom: 16px; }
.svc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.svc-list li {
  font-family: var(--font-body);
  font-size: 13.5px; font-weight: 500;
  color: var(--ink);
  display: flex; align-items: center; gap: 10px;
}
.svc-list li::before {
  content: ""; width: 16px; height: 16px;
  background: var(--primary-pill-bg);
  border-radius: 50%;
  background-image: radial-gradient(circle, var(--primary) 30%, transparent 32%);
}
.svc-arrow { display: none; }
.svc-proof {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  font-size: 13px;
  line-height: 1.6;
  color: var(--mute);
}
.svc-proof span { color: var(--accent-text); font-weight: 600; }

/* ---------- WHY ---------- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.why-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.why-item {
  padding: 24px 0 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  border-left: 2px solid rgba(var(--accent-rgb), 0.55);
}
.why-item--tile {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 24px;
  border-bottom: none;
  border-left: 3px solid var(--accent);
  border-radius: var(--r-card);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.why-item--tile:hover {
  background: rgba(255, 255, 255, 0.07);
  border-left-color: #e85a24;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transform: translateY(-1px);
}
.why-num {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  color: var(--accent-on-dark);
  padding-top: 4px;
}
.why-item-body { min-width: 0; }
.why-grid .ph-rounded { border-radius: var(--r-card); overflow: hidden; }
.why-grid .ph-rounded .ph-img { border-radius: var(--r-card); }
.why-h {
  font-family: 'Lexend', var(--font-display), sans-serif;
  font-size: clamp(17px, 1.6vw, 19px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 0 8px;
  color: #fff;
}
.why-p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.6;
}
.why-list--tiles {
  border-top: none;
  gap: 14px;
}

/* ---------- BADGES ---------- */
.badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  border: none;
}
.badge {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-card);
  display: flex; flex-direction: column; gap: 8px;
}
.badge-mark {
  width: 44px; height: 44px;
  border: none;
  display: grid; place-items: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  background: var(--primary-pill-bg);
  color: var(--primary);
  border-radius: 10px;
  margin-bottom: 4px;
}
.badge-mark.accent { background: var(--accent-soft); color: var(--accent); }
.badge-t { font-family: var(--font-body); font-weight: 700; font-size: 15px; color: var(--ink); }
.badge-s { font-family: var(--font-body); font-size: 13px; color: var(--mute); letter-spacing: 0; text-transform: none; font-weight: 500; }

/* ---------- BIG CTA ---------- */
.cta-big { background: var(--ink); color: #fff; padding: 96px 0; position: relative; overflow: hidden; }
.cta-big::before, .cta-big::after { content: none; }
.cta-big .container { position: relative; z-index: 2; }
.cta-h { font-size: clamp(40px, 6vw, 72px); letter-spacing: -0.03em; max-width: 22ch; margin-bottom: 20px; color: #fff; }
.cta-h .accent { color: var(--accent-on-dark); }
.cta-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.cta-meta-hint {
  font-family: var(--font-body), monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-left: 4px;
}
@media (max-width: 640px) {
  .cta-meta-hint { width: 100%; margin-left: 0; margin-top: 4px; }
}

/* ---------- FOOTER ---------- */
.footer { background: var(--ink); color: #fff; padding: 72px 0 28px; border-top: none; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .brand-name { color: #fff; font-size: 18px; }
.footer-brand .brand-sub { color: rgba(255,255,255,0.6); }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.6; margin-top: 18px; max-width: 38ch; }
.footer-col h5, .footer-col-h {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin: 0 0 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.footer-col li a, .footer-col li { color: rgba(255,255,255,0.75); font-size: 14px; cursor: pointer; transition: color .15s; }
.footer-col li a { display: inline-flex; align-items: center; min-height: 24px; padding: 4px 0; }
.footer-col li a:hover { color: var(--accent); }
.footer-bottom { padding-top: 28px; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-body); font-size: 13px; letter-spacing: 0; text-transform: none; color: rgba(255,255,255,0.72); flex-wrap: wrap; gap: 16px; }
.footer-bottom a { color: rgba(255,255,255,0.7); }

/* ---------- PAGE HEADER ---------- */
.page-head { background: var(--paper-2); color: var(--ink); padding: 56px 0 72px; position: relative; overflow: hidden; border-bottom: 1px solid var(--line-soft); }
.page-head::after { content: none; }
.page-head::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 1px 1px, rgba(15,23,42,0.06) 1px, transparent 0) 0 0/24px 24px;
  opacity: .5;
}
.page-head .container { position: relative; z-index: 2; }
.page-head-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 48px; align-items: start; margin-top: 4px; }
.page-head h1 { font-family: var(--font-display), sans-serif; font-weight: 900; font-size: clamp(36px, 4.5vw, 52px); line-height: 1.05; letter-spacing: -0.03em; color: var(--ink); margin: 0; }
.page-head .lede-fine { margin-top: 28px; font-size: 13px; color: var(--mute); font-style: italic; max-width: 70ch; line-height: 1.55; }
.page-head h1 .accent { color: var(--accent-text); }
.page-head .lede { font-size: 17px; line-height: 1.55; color: var(--mute); max-width: 48ch; margin: 0; align-self: start; }
.crumb {
  display: inline-flex; gap: 8px; align-items: center;
  margin-bottom: 24px;
  padding: 6px 14px;
  background: var(--primary-pill-bg);
  color: var(--primary);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}
.crumb b { color: var(--primary); font-weight: 700; }

/* ---------- SERVICES PAGE detail ---------- */
.svc-detail { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; padding: 80px 0; border-bottom: 1px solid var(--line-soft); align-items: start; }
.svc-detail > * { min-width: 0; }
.svc-detail-media { min-width: 0; max-width: 100%; }
.svc-detail-media .ph { width: 100%; }

.svc-process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.svc-process-card {
  padding: 16px;
  background: rgba(0, 0, 0, 0.02);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.svc-detail:nth-child(even) { background: var(--paper-2); }
.svc-detail-num { font-family: var(--font-body); font-weight: 600; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-text); margin-bottom: 14px; display: block; }
.svc-detail-title { font-size: clamp(28px, 3.2vw, 40px); letter-spacing: -0.03em; margin-bottom: 16px; }
.svc-detail-desc { font-size: 17px; line-height: 1.6; color: var(--mute); margin-bottom: 24px; }
.svc-detail-img { aspect-ratio: 4/5; width: 100%; }
.svc-detail .ph-rounded,
.ph-rounded { border-radius: var(--r-card); overflow: hidden; }
.svc-detail .ph-rounded .ph-img { border-radius: var(--r-card); }
.spec-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--line-soft); }
.spec-list li { padding: 14px 0; border-bottom: 1px solid var(--line-soft); display: flex; align-items: center; gap: 10px; font-size: 14px; }
.spec-list li::before { content: "✓"; color: var(--primary); font-weight: 700; width: 20px; height: 20px; background: var(--primary-pill-bg); border-radius: 50%; display: grid; place-items: center; font-size: 12px; }

/* ---------- ABOUT ---------- */
.about-intro { display: grid; grid-template-columns: 0.5fr 1fr; gap: 56px; padding: 96px 0; }
.about-intro h2 { font-family: var(--font-display), sans-serif; font-size: clamp(32px, 3.5vw, 48px); letter-spacing: -0.03em; line-height: 1.1; }
.about-intro h2 .accent { color: var(--accent-text); }
.about-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; font-size: 16px; line-height: 1.7; color: var(--ink); }
.about-cols p { margin-bottom: 16px; color: var(--mute); }

.timeline { display: grid; grid-template-columns: repeat(4, 1fr); border: none; background: var(--paper-2); color: var(--ink); gap: 16px; padding: 48px 40px; max-width: var(--maxw); margin: 0 auto; }
.tl-cell { padding: 28px; background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-lg); min-height: 200px; display: flex; flex-direction: column; gap: 10px; box-shadow: var(--shadow-sm); }
.tl-year { font-family: var(--font-body); font-weight: 800; font-size: 22px; letter-spacing: -0.02em; color: var(--primary); }
.tl-h { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
.tl-p { font-size: 14px; color: var(--mute); line-height: 1.6; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; border: none; }
.value { padding: 36px; border: 1px solid var(--line-soft); background: #fff; border-radius: var(--r-card); box-shadow: var(--shadow-sm); }
.value-num {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 16px;
}
.value h3 { font-size: 22px; letter-spacing: -0.015em; margin-bottom: 12px; }
.value p { color: var(--mute); font-size: 15px; line-height: 1.6; }

/* ---------- PROJECTS ---------- */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; padding-bottom: 0; border-bottom: none; }
.filter-pill {
  padding: 10px 16px;
  border: 1px solid var(--line-soft);
  background: #fff;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  cursor: pointer;
  transition: all .15s;
}
.filter-pill:hover { border-color: var(--primary); color: var(--primary); }
.filter-pill.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.filter-pill .count {
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5em;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  background: rgba(15, 23, 42, 0.08);
  color: inherit;
  opacity: 1;
}
.filter-pill.active .count { background: rgba(255, 255, 255, 0.22); }

.project-list { display: flex; flex-direction: column; gap: 12px; }
.project-list-item { display: flex; flex-direction: column; }
button.project-row {
  width: 100%;
  text-align: left;
  font: inherit;
  color: inherit;
  appearance: none;
}
.project-row {
  display: grid; grid-template-columns: 0.5fr 1fr 1fr 60px; gap: 24px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-card);
  align-items: center; cursor: pointer;
  transition: box-shadow .2s, transform .2s, border-color .2s, border-radius .2s;
}
.project-row:hover { box-shadow: var(--shadow-md); border-color: var(--accent-soft); }
.project-row:hover .project-arrow { color: var(--accent); transform: translateX(4px); }
.project-row:first-child { border-top: 1px solid var(--line-soft); }
.project-row--expanded {
  border-color: var(--primary-soft);
  box-shadow: var(--shadow-md);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  transform: none;
}
.project-row--expanded .project-arrow { color: var(--accent); transform: none; }
.project-detail-panel {
  padding: 24px 28px 28px;
  background: #fff;
  border: 1px solid var(--primary-soft);
  border-top: none;
  border-radius: 0 0 var(--r-card) var(--r-card);
  box-shadow: var(--shadow-md);
}
.project-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 32px;
  margin: 0 0 24px;
}
.project-detail-field { margin: 0; }
.project-detail-field dt {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 6px;
}
.project-detail-field dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
}
.project-detail-field:last-child { grid-column: 1 / -1; }
.project-detail-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-text);
  border-bottom: 1px solid var(--accent-text);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.project-detail-cta:hover { color: var(--primary); border-color: var(--primary); }
.project-meta { font-family: var(--font-body); font-size: 13px; letter-spacing: 0; text-transform: none; color: var(--mute); display: flex; flex-direction: column; gap: 4px; }
.project-meta .num { display: none; }
.project-meta .type { color: var(--primary); font-weight: 600; font-size: 13px; }
.project-name { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
.project-loc { font-size: 13px; color: var(--mute); margin-top: 2px; }
.project-scope { font-family: var(--font-body); font-size: 13px; letter-spacing: 0; color: var(--ink); display: flex; flex-direction: column; gap: 4px; }
.project-scope b { color: var(--mute); font-weight: 500; letter-spacing: 0; text-transform: none; font-size: 12px; }
.project-arrow { font-size: 18px; color: var(--mute); transition: color .2s, transform .2s; }

/* featured project */
.featured { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line-soft); margin-bottom: 56px; border-radius: var(--r-card); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); }
.featured-img { aspect-ratio: 4/3; border-radius: 0; }
.featured-body { padding: 44px; display: flex; flex-direction: column; justify-content: space-between; }
.featured-tag { display: inline-block; padding: 6px 12px; background: var(--accent-soft); color: var(--accent); border-radius: 999px; font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 0; text-transform: none; margin-bottom: 20px; }
.featured h3 { font-size: 32px; letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 18px; }
.featured p { font-size: 15px; color: var(--mute); line-height: 1.65; margin-bottom: 24px; }
.featured-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; padding-top: 20px; border-top: 1px solid var(--line-soft); }
.featured-stat .n { font-family: var(--font-body); font-weight: 800; font-size: 28px; letter-spacing: -0.02em; color: var(--primary); }
.featured-stat .l { font-family: var(--font-body); font-size: 12px; letter-spacing: 0; text-transform: none; color: var(--mute); margin-top: 2px; }

/* ---------- CONTACT ---------- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; padding: 80px 0; align-items: start; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-label { display: block; font-family: var(--font-body); font-size: 13px; letter-spacing: 0; text-transform: none; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.form-label .req { color: var(--accent-text); }
.form-input, .form-select, .form-textarea { width: 100%; padding: 12px 14px; border: 1.5px solid rgba(15, 23, 42, 0.22); background: #fff; border-radius: var(--r-md); font-family: var(--font-body); font-size: 15px; color: var(--ink); outline: none; transition: border-color .15s, box-shadow .15s; }
.form-panel, .contact-success { background: #fff; border: 1.5px solid rgba(15, 23, 42, 0.18); border-radius: var(--r-card); box-shadow: var(--shadow-sm); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(14,15,18,0.12); }
.form-textarea { min-height: 120px; resize: vertical; font-family: inherit; }
.form-checkbox-group { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.form-check { display: flex; align-items: center; gap: 12px; font-size: 14px; cursor: pointer; padding: 12px 14px; border: 1.5px solid rgba(15, 23, 42, 0.2); background: #fff; border-radius: 8px; transition: all .15s; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin: 0; accent-color: var(--primary); cursor: pointer; }
.form-check:hover { border-color: rgba(15, 23, 42, 0.35); }
.form-check.checked { border-color: var(--primary); background: var(--primary-pill-bg); color: var(--primary); font-weight: 600; }
.form-steps { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 12px; margin-bottom: 8px; padding-bottom: 20px; border-bottom: 1px solid var(--line-soft); font-family: var(--font-body); font-size: 12px; color: var(--mute); }
.form-step { font-weight: 600; color: var(--ink); }
.form-step-sep { color: var(--mute); font-size: 11px; user-select: none; }
.form-file { width: 100%; padding: 10px 14px; border: 1.5px dashed rgba(15, 23, 42, 0.22); border-radius: var(--r-md); font-family: var(--font-body); font-size: 14px; color: var(--ink); background: var(--paper-2, #f9fafb); cursor: pointer; }
.form-file:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(14,15,18,0.12); }
.form-file-hint { margin-top: 8px; font-size: 12.5px; color: var(--mute); line-height: 1.5; }

/* Captcha */
.captcha-row { background: #f9fafb; border: 1px dashed var(--line-soft); border-radius: 10px; padding: 16px; }
.captcha-challenge { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.captcha-eq { font-family: ui-monospace, 'Courier New', monospace; font-size: 22px; letter-spacing: 1px; color: var(--ink); user-select: none; padding: 8px 16px; background: #fff; border: 1px solid var(--line-soft); border-radius: 6px; }
.captcha-eq b { color: var(--accent); font-weight: 700; }
.captcha-input { max-width: 120px; font-family: ui-monospace, 'Courier New', monospace; font-size: 18px; text-align: center; }
.captcha-refresh { background: transparent; border: 1px solid var(--line-soft); color: var(--mute); font-family: var(--font-body); font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; padding: 8px 12px; border-radius: 6px; cursor: pointer; transition: all 0.15s; }
.captcha-refresh:hover { color: var(--ink); border-color: var(--ink); }
.captcha-err { margin-top: 10px; padding: 10px 14px; background: rgba(220, 38, 38, 0.08); border-left: 3px solid #dc2626; color: #b91c1c; font-size: 13px; font-weight: 600; border-radius: 4px; }
.captcha-hint { margin-top: 12px; font-size: 12.5px; color: var(--mute); line-height: 1.5; }
.captcha-hint b { color: var(--ink); }
.turnstile-mount { min-height: 65px; }

/* ---------- SITE CHAT WIDGET ---------- */
.site-chat {
  position: fixed;
  bottom: 24px;
  right: 24px;
  left: auto;
  z-index: 47;
  font-family: var(--font-body);
}
.site-chat-fab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: none;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.22);
  transition: transform 0.15s, box-shadow 0.15s;
}
.site-chat-fab:hover { box-shadow: 0 12px 32px rgba(15, 23, 42, 0.28); border-color: var(--accent-soft); }
.site-chat-fab-icon { display: flex; color: var(--accent); }
.site-chat-panel {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  left: auto;
  width: min(380px, calc(100vw - 48px));
  max-height: min(520px, calc(100vh - 120px));
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
  overflow: hidden;
}
.site-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--paper-2);
}
.site-chat-header-main {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.site-chat-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.02em;
  box-shadow: 0 2px 8px rgba(var(--accent-rgb), 0.35);
}
.site-chat-header-text { min-width: 0; }
.site-chat-title { display: block; font-size: 15px; letter-spacing: -0.01em; }
.site-chat-sub { display: block; font-size: 12px; color: var(--mute); margin-top: 2px; }
.site-chat-close {
  border: none;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: var(--mute);
  padding: 0 4px;
}
.site-chat-close:hover { color: var(--ink); }
.site-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 160px;
  max-height: 280px;
}
.site-chat-bubble {
  max-width: 92%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.55;
}
.site-chat-bubble p { margin: 0; }
.site-chat-bubble--user {
  align-self: flex-end;
  background: var(--primary);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.site-chat-bubble--assistant {
  align-self: flex-start;
  background: var(--bone);
  color: var(--ink);
  border: 1px solid var(--line-soft);
  border-bottom-left-radius: 4px;
}
.site-chat-bubble--typing { display: flex; align-items: center; gap: 8px; color: var(--mute); font-size: 13px; }
.site-chat-typing {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: site-chat-pulse 1s ease infinite;
}
@keyframes site-chat-pulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}
.site-chat-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-text);
}
.site-chat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 16px 12px;
}
.site-chat-quick-btn,
.site-chat-link {
  cursor: pointer;
}
.site-chat-quick-btn {
  padding: 6px 10px;
  font-size: 12px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  color: var(--ink);
}
.site-chat-quick-btn:hover { border-color: var(--primary); color: var(--primary); }
.site-chat-footer {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--line-soft);
  align-items: flex-end;
}
.site-chat-input {
  flex: 1;
  resize: none;
  padding: 10px 12px;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 14px;
}
.site-chat-send { flex-shrink: 0; padding: 10px 16px; min-height: 44px; }
.site-chat-disclaimer {
  margin: 0;
  padding: 8px 16px 12px;
  font-size: 12px;
  color: var(--mute);
  line-height: 1.55;
  border-top: 1px dashed var(--line-soft);
}
.site-chat-disclaimer a { color: var(--accent-text); }
@media (max-width: 768px) {
  .site-chat { bottom: 88px; right: 16px; left: auto; }
  .site-chat-fab-label { display: none; }
  .site-chat-fab { padding: 14px; border-radius: 50%; }
}

.contact-aside { background: var(--ink); color: #fff; padding: 36px; border-radius: var(--r-card); }
.contact-aside h3 { font-size: 24px; margin-bottom: 24px; letter-spacing: -0.02em; color: #fff; }
.contact-line { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; gap: 4px; }
.contact-line:last-child { border-bottom: none; }
.contact-line .l { font-family: var(--font-body); font-size: 12px; letter-spacing: 0; text-transform: none; color: rgba(147,197,253,1); font-weight: 600; }
.contact-line .v { font-size: 16px; font-weight: 600; }
.contact-line .v a:hover { color: var(--accent-text); }
.contact-sub { font-size: 13px; color: rgba(255,255,255,0.72); }

/* ---------- GC ---------- */
.gc-hero { background: var(--paper-2); color: var(--ink); padding: 80px 0; position: relative; overflow: hidden; border-bottom: 1px solid var(--line-soft); }
.gc-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 1px 1px, rgba(15,23,42,0.06) 1px, transparent 0) 0 0/24px 24px; opacity: .5; }
.gc-hero .container { position: relative; z-index: 2; }
.gc-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: end; }
.gc-hero h1 { font-family: var(--font-display), sans-serif; font-weight: 900; font-size: clamp(36px, 4.5vw, 52px); line-height: 1.05; letter-spacing: -0.03em; color: var(--ink); }
.gc-hero h1 .accent { color: var(--accent-text); }

.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 56px; }
.process-step { padding: 28px; background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-card); position: relative; box-shadow: var(--shadow-sm); }
.process-step + .process-step::before { content: none; }
.process-num { font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-text); margin-bottom: 12px; display: block; }
.process-h { font-size: 17px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.01em; color: var(--ink); }
.process-p { font-size: 13px; color: var(--mute); line-height: 1.55; }

.qual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; padding: 96px 0; }
.doc-list { display: flex; flex-direction: column; gap: 8px; border-top: none; }
.doc-item { padding: 18px 20px; border: 1px solid var(--line-soft); border-radius: var(--r-card); display: grid; grid-template-columns: 36px 1fr auto; gap: 14px; align-items: center; background: #fff; }
.doc-icon { width: 36px; height: 36px; background: var(--primary-pill-bg); color: var(--primary); display: grid; place-items: center; border-radius: 8px; font-family: var(--font-body); font-size: 11px; font-weight: 700; }
.doc-name { font-weight: 600; font-size: 15px; color: var(--ink); }
.doc-meta { font-family: var(--font-body); font-size: 13px; color: var(--mute); letter-spacing: 0; text-transform: none; }
.doc-stat { font-family: var(--font-body); font-size: 12px; letter-spacing: 0; color: var(--accent); background: var(--accent-soft); padding: 4px 10px; border-radius: 999px; text-transform: none; font-weight: 600; }

/* ---------- MAP ---------- */
.map-wrap { background: var(--bone); color: var(--ink); padding: 96px 0; position: relative; overflow: hidden; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.map-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: center; }
.map-stage { position: relative; aspect-ratio: 4/3; border: 1px solid var(--line-soft); border-radius: var(--r-lg); background: linear-gradient(rgba(14,15,18,0.05) 1px, transparent 1px) 0 0/40px 40px, linear-gradient(90deg, rgba(14,15,18,0.05) 1px, transparent 1px) 0 0/40px 40px, #fff; }
.map-pin { position: relative; width: 12px; height: 12px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 0 4px rgba(var(--accent-rgb),0.18), 0 0 0 12px rgba(var(--accent-rgb),0.08); flex-shrink: 0; transition: transform 0.15s ease; }
.map-pin.hq { width: 20px; height: 20px; box-shadow: 0 0 0 6px rgba(var(--accent-rgb),0.25), 0 0 0 18px rgba(var(--accent-rgb),0.1); }
.map-pin.hq::after { content: "HQ"; position: absolute; top: 100%; left: 50%; transform: translate(-50%, 8px); font-family: var(--font-body), ui-monospace, monospace; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; color: var(--accent-text); white-space: nowrap; }
.map-pin-hit {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 44px;
  min-height: 44px;
  padding: 6px;
  transform: translate(-50%, -50%);
  color: inherit;
  text-decoration: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: transform 0.15s ease;
  z-index: 2;
}
.map-pin-hit:not(.map-pin-hit--hq) {
  flex-direction: row;
  justify-content: flex-start;
  transform: translate(0, -50%);
  margin-left: -6px;
}
.map-pin-hit--hq {
  justify-content: center;
}
.map-pin-hit:hover .map-pin,
.map-pin-hit:focus-visible .map-pin {
  transform: scale(1.15);
  transition: transform 0.15s ease;
}
.map-pin-hit:hover .map-label,
.map-pin-hit:focus-visible .map-label {
  color: var(--accent-text);
  font-weight: 600;
}
.map-pin-hit:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
.map-label { position: relative; font-family: var(--font-body); font-size: 11px; letter-spacing: 0; text-transform: none; color: var(--mute); font-weight: 500; white-space: nowrap; pointer-events: none; }
.region-list { list-style: none; padding: 0; margin: 24px 0 0; columns: 2; column-gap: 32px; }
.region-list li { padding: 12px 0; border-bottom: 1px solid var(--line-soft); font-size: 14px; break-inside: avoid; display: flex; justify-content: space-between; align-items: center; }
.region-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  color: inherit;
  cursor: pointer;
  transition: color 0.2s;
}
.region-list li a:hover .city { color: var(--accent-text); }
.region-list li .city { font-weight: 600; color: var(--ink); }
.region-list li .miles { font-family: var(--font-body), ui-monospace, monospace; font-size: 12px; color: var(--accent-text); letter-spacing: 0.04em; font-weight: 600; }
.map-wrap .map-accent { color: var(--accent-text); }
.map-title {
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 24px;
}
@media (min-width: 900px) {
  .map-title { white-space: nowrap; }
}

/* Sticky mobile bid bar */
.sticky-bid-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 48;
  padding: 10px var(--pad);
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.96);
  border-top: 1px solid var(--line-soft);
  box-shadow: 0 -4px 24px rgba(15,23,42,0.08);
  backdrop-filter: blur(8px);
}
.sticky-bid-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  gap: 10px;
  align-items: center;
}
.sticky-bid-bar .btn { flex: 1; justify-content: center; min-height: 44px; }
.sticky-bid-phone {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: var(--paper);
}
.sticky-bid-phone:hover { border-color: var(--ink); }

#main > section[id],
#main > .credential-rail,
.map-wrap { scroll-margin-top: calc(var(--nav-h) + 16px); }

.recent-cta {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-text);
}
.map-wrap .eyebrow { background: rgba(var(--accent-rgb),0.1); color: var(--accent); }

/* ---------- MARQUEE ---------- */
.split-rule { display: flex; align-items: center; gap: 16px; font-family: var(--font-body); font-size: 13px; letter-spacing: 0; text-transform: none; color: var(--mute); margin: 24px 0; font-weight: 600; }
.split-rule::before, .split-rule::after { content: ""; flex: 1; height: 1px; background: var(--line-soft); }
.split-rule.dark { color: rgba(255,255,255,0.6); }
.split-rule.dark::before, .split-rule.dark::after { background: rgba(255,255,255,0.1); }

/* brand strip */
.brand-strip { background: #F5F5F5; padding: 64px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.brand-strip-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 32px; gap: 32px; }
.brand-strip-head h3 { font-family: var(--font-display), sans-serif; font-weight: 800; font-size: clamp(28px, 3.5vw, 40px); letter-spacing: -0.025em; }
.brand-strip-head h3 span { color: var(--accent-text); }
.brand-strip-head p { font-size: 14px; color: var(--mute); max-width: 36ch; line-height: 1.5; }
.brand-strip-note {
  font-size: 12px;
  color: var(--mute);
  margin: -16px 0 20px;
  max-width: 52ch;
  line-height: 1.5;
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-card);
  overflow: hidden;
  background: #fff;
}
.brand-cell {
  padding: 20px 16px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-soft);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-size: 15px;
  min-height: 72px;
  transition: color 0.15s;
}
.brand-cell:hover { border-color: var(--line); }
.brand-cell .sub { display: block; font-family: var(--font-body); font-size: 11px; font-weight: 500; letter-spacing: 0; text-transform: none; color: var(--mute); margin-top: 4px; }

/* responsive */
@media (max-width: 1024px) {
  :root { --pad: 24px; }
  .nav-links { display: none; }
  .nav:not(.nav--mock) .nav-inner {
    height: auto;
    min-height: var(--nav-h);
    padding-top: 12px;
    padding-bottom: 12px;
    flex-wrap: wrap;
  }
  .nav:not(.nav--mock) .nav-links {
    order: 3;
    display: flex;
    flex: 1 0 100%;
    flex-wrap: wrap;
    gap: 4px;
  }
  .nav:not(.nav--mock) .nav-link {
    padding: 8px 10px;
    font-size: 13px;
  }
  .nav-burger { display: inline-flex; }
  .nav-phone .nav-phone-text { display: none; }
  .nav-phone { padding: 10px; min-height: 44px; min-width: 44px; justify-content: center; }
  .nav-cta { display: none; }
  .sticky-bid-bar { display: block; }
  body { padding-bottom: 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-media { order: -1; max-width: 560px; }
  .hero-photo-frame { max-height: 360px; }
  .hero-bottom { display: block; }
  .svc-grid, .badges, .timeline, .brand-grid { grid-template-columns: 1fr 1fr; }
  .why-grid, .about-intro, .svc-detail, .featured, .contact-grid, .gc-hero-grid, .qual-grid, .map-grid { grid-template-columns: 1fr; gap: 32px; }
  .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .svc-process-grid { grid-template-columns: 1fr; }
  .spec-list { grid-template-columns: 1fr; }
  .project-row { grid-template-columns: 1fr; gap: 8px; }
  .project-detail-grid { grid-template-columns: 1fr; gap: 16px; }
  .project-detail-field:last-child { grid-column: auto; }
  .values-grid { grid-template-columns: 1fr; }
  .about-cols { grid-template-columns: 1fr; }
  .form-checkbox-group { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  :root { --pad: 18px; }
  .svc-grid, .badges, .timeline, .footer-top, .process-grid, .brand-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}

/* ---------- BREADCRUMB ---------- */
.bcrumb {
  margin-bottom: 24px;
  padding: 8px 0;
  font-size: 13px;
  color: var(--mute);
}
.bcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
}
.bcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body), monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.bcrumb a {
  color: var(--mute);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  display: inline-block;
  min-height: 24px;
  padding: 2px 0;
}
.bcrumb a:hover {
  color: var(--accent-text);
  border-bottom-color: var(--accent-text);
}
.bcrumb span[aria-current="page"] {
  color: var(--ink);
  font-weight: 700;
}
.bcrumb-sep {
  color: var(--mute);
  opacity: 0.5;
  font-size: 14px;
}
.page-head .bcrumb {
  color: var(--mute);
  margin-bottom: 40px;
  padding-top: 0;
}
.page-head .bcrumb a { color: var(--mute); }
.page-head .bcrumb a:hover { color: var(--accent-text); border-bottom-color: var(--accent-text); }
.page-head .bcrumb span[aria-current="page"] { color: var(--ink); }
.page-head .bcrumb-sep { color: var(--mute); opacity: 0.4; }

.gc-hero .bcrumb a { color: var(--mute); }
.gc-hero .bcrumb a:hover { color: var(--accent-text); border-bottom-color: var(--accent-text); }
.gc-hero .bcrumb span[aria-current="page"] { color: var(--ink); }
.gc-hero .bcrumb-sep { color: var(--mute); opacity: 0.4; }

/* anchor scrolling offset for sticky nav */
section[id], h2[id], h3[id] { scroll-margin-top: 100px; }

/* ---------- RECENT WORK PREVIEW GRID ---------- */
.recent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.recent-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-card);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.recent-card .ph-img {
  border-radius: 0;
}
.recent-card:hover {
  border-color: var(--accent-soft);
  box-shadow: var(--shadow-md);
}
.recent-card .ph { border: none; }
.recent-body { padding: 24px; position: relative; }
/* recent-card meta tag — accent-text used for 4.5:1 contrast on white */
.recent-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-text);
  font-weight: 700;
  margin-bottom: 12px;
}
.recent-h {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  line-height: 1.25;
}
.recent-loc {
  font-size: 13px;
  color: var(--mute);
}
.recent-arrow {
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-size: 20px;
  color: var(--ink);
  transition: transform 0.2s, color 0.2s;
}
.recent-arrow { display: none; }
.recent-card:hover .recent-cta { color: var(--accent); }

/* ---------- FAQ ACCORDION ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line-soft);
  transition: border-color 0.15s;
}
.faq-item[open] { border-color: var(--accent); }
.faq-item summary {
  padding: 22px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary > span:first-child { flex: 1; padding-right: 24px; }
.faq-toggle {
  font-size: 28px;
  color: var(--accent-text);
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item[open] .faq-toggle { transform: rotate(45deg); }
.faq-a {
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--mute);
  max-width: 72ch;
}

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

.hero { overflow: hidden; }

/* ---------- JOURNEY COUNTER ---------- */
.journey-section {
  background: var(--ink); color: #FAF8F2;
  padding: 120px 0; position: relative; overflow: hidden;
}
.journey-section::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(var(--accent-rgb),0.08) 0%, transparent 50%);
  pointer-events: none;
}
.journey-section .container { position: relative; z-index: 2; }
.journey-eyebrow { color: var(--accent); margin-bottom: 32px; }
.journey-h {
  font-family: var(--font-display), sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #FAF8F2;
  margin: 0;
}
.journey-num {
  display: inline-block;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  margin-right: 0.15em;
}
.journey-unit {
  display: inline-block;
  font-size: 0.35em;
  font-family: var(--font-body), monospace;
  font-weight: 600;
  letter-spacing: 0.05em;
  vertical-align: super;
  color: rgba(255,255,255,0.5);
  margin-right: 0.2em;
}
.journey-tail {
  display: block;
  font-size: 0.45em;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-top: 0.3em;
  max-width: 18ch;
  line-height: 1.15;
}
.journey-sub {
  font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.6);
  max-width: 56ch; margin-top: 32px;
}

/* ---------- SERVICES PAGE — jump nav ---------- */
.services-jump {
  position: sticky;
  top: var(--nav-h);
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(8px);
}
.services-jump-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 0;
}
.services-jump a {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  transition: border-color 0.15s, color 0.15s;
}
.services-jump a:hover { border-color: var(--accent-text); color: var(--accent-text); }

/* ---------- ABOUT — story block ---------- */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
  padding-top: 64px;
  padding-bottom: 96px;
}
.about-story h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 24px;
}
.about-story .ph-rounded { border-radius: var(--r-card); overflow: hidden; }
.about-photo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}
.about-photo-grid .ph { border-radius: var(--r-card); overflow: hidden; }

/* ---------- CITY LANDING PAGES ---------- */
.city-distance {
  margin-top: 32px;
  padding: 16px 20px;
  background: var(--bone);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-card);
  font-size: 14px;
  line-height: 1.6;
  max-width: 64ch;
  color: var(--ink);
}
.city-distance strong { color: var(--accent-text); font-weight: 700; }
.city-section { padding-top: 64px; padding-bottom: 64px; }
.city-section h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.city-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.city-chip {
  display: inline-block;
  padding: 8px 14px;
  background: var(--bone);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.city-work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.city-work-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-card);
}
.city-work-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.city-work-card p { font-size: 14px; line-height: 1.6; color: var(--mute); }
.city-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
}
.city-split-panel {
  padding: 36px;
  border-radius: var(--r-card);
  font-size: 16px;
  line-height: 1.7;
}
.city-split-panel--dark { background: var(--ink); color: rgba(255, 255, 255, 0.88); }
.city-split-panel--accent { background: var(--accent-soft); color: var(--ink); }
.city-related {
  padding: 32px 36px;
  background: var(--bone);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-card);
}
.city-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}
.city-related-card {
  cursor: pointer;
  display: block;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-card);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.city-related-card:hover { border-color: var(--accent-text); box-shadow: var(--shadow-sm); }
.city-related-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.city-related-card p { font-size: 13px; color: var(--mute); }
.gc-relief-item { padding: 32px 32px 32px 0; border-right: 1px solid rgba(255,255,255,0.12); }
.gc-relief-item:last-child { border-right: none; }
.gc-relief-num { display: none; }
@media (max-width: 1024px) {
  .about-story, .about-photo-grid { grid-template-columns: 1fr; }
  .about-photo-grid .ph[style*="grid-row"] { grid-row: auto !important; }
  .gc-relief-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding: 24px 0; }
}
