/* ========================================================================
   NEW VISION AGENCY — DESIGN SYSTEM
   BIM/VDC Coordination for Real Construction
   v1.0 — April 2026
   ======================================================================== */

/* ---------- FONTS ---------- */
@import url('https://api.fontshare.com/v2/css?f[]=clash-display@400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Sans:wght@300;400;500;600;700&display=swap');

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Brand — Orange */
  --orange: #e73d14;
  --orange-dark: #c2300f;
  --orange-light: #ff4f26;
  --orange-tint: #ffe3db;

  /* Brand — Black */
  --black: #1e1e1e;
  --black-deep: #0f0f0f;
  --black-soft: #2a2a2a;
  --black-mid: #3c3c3c;

  /* Brand — White */
  --white: #f5f5f5;
  --grey-50: #eaeaea;
  --grey-100: #d5d5d5;
  --grey-200: #c0c0c0;

  /* Brand — Grey */
  --grey-300: #b0b0b0;
  --grey-400: #9a9a9a;
  --grey-500: #808080;
  --grey-600: #6a6a6a;

  /* Surface / Ink */
  --surface: #ffffff;
  --surface-alt: var(--white);
  --surface-muted: var(--grey-50);
  --surface-dark: var(--black);
  --surface-deeper: var(--black-deep);
  --ink: var(--black);
  --ink-muted: var(--grey-600);
  --ink-subtle: var(--grey-500);
  --ink-inverse: var(--white);
  --hairline: rgba(30,30,30,0.08);
  --hairline-dark: rgba(245,245,245,0.12);

  /* Typography */
  --font-display: 'Clash Display', 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Ubuntu Sans', 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Fluid type scale */
  --fs-eyebrow: 0.78rem;
  --fs-body-sm: 0.92rem;
  --fs-body: 1.02rem;
  --fs-body-lg: 1.18rem;
  --fs-h4: clamp(1.3rem, 1.1rem + 0.7vw, 1.6rem);
  --fs-h3: clamp(1.6rem, 1.2rem + 1.2vw, 2.2rem);
  --fs-h2: clamp(2rem, 1.4rem + 2.6vw, 3.4rem);
  --fs-h1: clamp(2.6rem, 1.4rem + 4.2vw, 5rem);
  --fs-display: clamp(3rem, 1.4rem + 6vw, 6.5rem);

  /* Spacing */
  --s-0: 0;
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-10: 8rem;
  --s-11: 10rem;

  /* Radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadows */
  --sh-sm: 0 1px 2px rgba(0,0,0,0.04);
  --sh-md: 0 8px 24px rgba(15,15,15,0.08);
  --sh-lg: 0 24px 60px rgba(15,15,15,0.16);
  --sh-glow: 0 12px 40px rgba(231,61,20,0.24);

  /* Layout */
  --container-max: 1360px;
  --container-narrow: 960px;
  --gutter: clamp(1.25rem, 3.2vw, 2.5rem);

  /* Motion */
  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --d-fast: 140ms;
  --d-med: 280ms;
  --d-slow: 520ms;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface);
  font-size: var(--fs-body);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg, picture, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; border-radius: 4px; }
::selection { background: var(--orange); color: var(--white); }

/* ---------- TYPOGRAPHY ---------- */
.display, h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1, .h1 { font-size: var(--fs-h1); line-height: 1.02; letter-spacing: -0.03em; }
h2, .h2 { font-size: var(--fs-h2); line-height: 1.05; letter-spacing: -0.025em; }
h3, .h3 { font-size: var(--fs-h3); line-height: 1.1; }
h4, .h4 { font-size: var(--fs-h4); line-height: 1.15; font-weight: 500; }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--orange);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--orange);
}
.eyebrow--muted { color: var(--grey-500); }
.eyebrow--muted::before { background: var(--grey-400); }

.lead {
  font-size: var(--fs-body-lg);
  color: var(--ink-muted);
  line-height: 1.55;
  max-width: 56ch;
}
.muted { color: var(--ink-muted); }
.accent { color: var(--orange); }
.mono {
  font-family: 'JetBrains Mono', 'SFMono-Regular', Menlo, Consolas, monospace;
  font-size: 0.85em;
  letter-spacing: 0;
}

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: clamp(3.5rem, 8vw, 7rem); position: relative; }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--dark { background: var(--surface-dark); color: var(--ink-inverse); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--ink-inverse); }
.section--dark .eyebrow--muted { color: var(--grey-400); }
.section--muted { background: var(--surface-muted); }
.section--soft { background: var(--white); }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--s-5);
  margin-bottom: var(--s-8);
}
.section-head--split {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--s-7);
  align-items: end;
}
@media (max-width: 780px) {
  .section-head--split { grid-template-columns: 1fr; }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.45rem;
  border-radius: var(--r-pill);
  font-weight: 500;
  font-size: var(--fs-body);
  font-family: var(--font-body);
  line-height: 1;
  transition: background var(--d-med) var(--ease-out),
              color var(--d-med) var(--ease-out),
              transform var(--d-med) var(--ease-out),
              box-shadow var(--d-med) var(--ease-out);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn .arrow { transition: transform var(--d-med) var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--sh-sm);
}
.btn--primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: var(--sh-glow);
}

.btn--dark {
  background: var(--black);
  color: var(--white);
}
.btn--dark:hover { background: var(--black-soft); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(30,30,30,0.18);
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}
.section--dark .btn--ghost,
.hero--dark .btn--ghost { color: var(--white); border-color: rgba(245,245,245,0.45); }
.section--dark .btn--ghost:hover,
.hero--dark .btn--ghost:hover { background: var(--white); color: var(--black); border-color: var(--white); }

.btn--soft {
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--sh-sm);
}
.btn--soft:hover {
  transform: translateY(-1px);
  box-shadow: var(--sh-md);
}

.btn--link {
  padding: 0;
  background: transparent;
  color: var(--ink);
  border-radius: 0;
  font-weight: 500;
}
.btn--link:hover { color: var(--orange); }

.btn--sm { padding: 0.6rem 1rem; font-size: var(--fs-body-sm); }
.btn--lg { padding: 1.15rem 1.7rem; font-size: var(--fs-body-lg); }

.arrow { font-family: var(--font-body); font-weight: 400; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(245,245,245,0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: background var(--d-med), border-color var(--d-med), padding var(--d-med);
}
.site-header.scrolled {
  background: rgba(245,245,245,0.96);
  border-bottom-color: var(--hairline);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  height: 84px;
  transition: height var(--d-med);
}
.site-header.scrolled .site-header__inner { height: 64px; }

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.site-logo__mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--white);
  border-radius: 8px;
  position: relative;
  box-shadow: inset 0 0 0 1px var(--hairline);
}
.site-logo__mark svg { width: 22px; height: 22px; }
.site-logo__text {
  display: inline-flex; gap: 0.35rem; align-items: baseline;
}
.site-logo__text b { font-weight: 700; letter-spacing: 0.01em; text-transform: uppercase; font-size: 0.95rem; }
.site-logo__text span { font-weight: 400; color: var(--ink-muted); font-size: 0.85rem; letter-spacing: 0.22em; text-transform: uppercase; }

/* Logo <img> replacement */
.site-logo__img {
  display: block;
  height: 32px;
  width: auto;
  max-width: 100%;
  transition: height var(--d-med, 0.2s);
}
.site-header.scrolled .site-logo__img { height: 26px; }
.site-logo--footer .site-logo__img { height: 44px; }

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: var(--s-6);
}
.site-nav__list {
  display: flex;
  gap: var(--s-6);
  align-items: center;
}
.site-nav__item { position: relative; }
.site-nav__link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.5rem 0;
  font-size: 0.97rem;
  color: var(--ink);
  font-weight: 500;
  transition: color var(--d-fast);
}
.site-nav__link:hover { color: var(--orange); }
.site-nav__link .chev { font-size: 0.7em; opacity: 0.7; transition: transform var(--d-fast); }
.site-nav__item:hover .chev { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 6px); left: -20px;
  background: var(--surface);
  border-radius: var(--r-md);
  padding: var(--s-3);
  box-shadow: var(--sh-lg);
  border: 1px solid var(--hairline);
  min-width: 260px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity var(--d-med), transform var(--d-med), visibility var(--d-med);
}
.dropdown--wide { min-width: 320px; }
.site-nav__item:hover .dropdown,
.site-nav__item:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown__link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.7rem 0.9rem;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: background var(--d-fast), color var(--d-fast);
}
.dropdown__link:hover { background: var(--surface-muted); color: var(--orange); }
.dropdown__link small { color: var(--ink-subtle); font-size: 0.78rem; font-weight: 400; margin-left: 1rem; }

.site-header__cta { margin-left: var(--s-3); }

.hamburger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  margin-left: auto;
}
.hamburger span {
  width: 22px; height: 2px; background: var(--ink);
  position: relative;
}
.hamburger span::before, .hamburger span::after {
  content: ""; position: absolute; left: 0;
  width: 22px; height: 2px; background: var(--ink);
}
.hamburger span::before { top: -7px; }
.hamburger span::after { top: 7px; }

@media (max-width: 940px) {
  .site-nav { display: none; }
  .hamburger { display: inline-flex; }
  .site-header__cta .btn { padding: 0.7rem 1.1rem; }
}

/* ---------- HERO ---------- */
.hero {
  padding-block: clamp(4rem, 8vw, 7rem) clamp(3rem, 6vw, 5rem);
  background: var(--surface-muted);
  position: relative;
  overflow: hidden;
}
.hero--dark {
  background: var(--black);
  color: var(--ink-inverse);
}
/* Compact hero — for catalog-style pages where the role tabs should be visible right away */
.hero--compact { padding-block: clamp(2.4rem, 4vw, 3.4rem) clamp(1.6rem, 2.6vw, 2.4rem); }
.hero--compact .hero__title { font-size: clamp(2rem, 3.6vw, 2.8rem); max-width: 22ch; }
.hero--compact .hero__sub { font-size: 1.05rem; max-width: 56ch; }
.hero--compact .hero__inner { grid-template-columns: minmax(0, 1fr); }
.hero--dark h1, .hero--dark h2 { color: var(--white); }

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
}

.hero__text > * + * { margin-top: var(--s-5); }
.hero__eyebrow { color: var(--orange); }
.hero__title { font-size: var(--fs-h1); max-width: 14ch; }
.hero__sub { max-width: 44ch; font-size: var(--fs-body-lg); color: var(--ink-muted); }
.hero--dark .hero__sub { color: var(--grey-300); }
.hero__actions { display: flex; gap: var(--s-4); flex-wrap: wrap; padding-top: var(--s-3); }

.hero__visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, #ff6a3d 0%, transparent 55%),
    radial-gradient(circle at 80% 70%, #c2300f 0%, transparent 55%),
    linear-gradient(135deg, #ff4f26 0%, #e73d14 60%, #c2300f 100%);
  box-shadow: var(--sh-lg);
}
.hero__visual::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.2));
  pointer-events: none;
}
.hero__visual svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero--dark .hero__visual {
  box-shadow: 0 24px 80px rgba(231,61,20,0.35);
}

/* ---- Photo variant: real render instead of gradient+SVG ---- */
.hero__visual--photo {
  background: #111;
  box-shadow: 0 24px 80px rgba(0,0,0,0.18);
}
.hero__visual--photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero__visual--photo::after {
  /* faint orange glaze to lock into brand without washing the photo out */
  background-image: none;
  background: linear-gradient(135deg, rgba(231,61,20,0.10) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.18) 100%);
  mask-image: none;
}
.hero--dark .hero__visual--photo {
  box-shadow: 0 24px 80px rgba(231,61,20,0.25), 0 0 0 1px rgba(255,255,255,0.04) inset;
}

/* ---- Full-bleed background hero ---- */
/* Accessible: image carries no meaning (decorative render), wrapper is aria-hidden.
   Overlay guarantees ≥ 4.5:1 contrast for body text over any pixel of the photo. */
.hero--bg {
  position: relative;
  isolation: isolate;              /* contain stacking context */
  min-height: clamp(460px, 62vh, 680px);
  display: flex;
  align-items: center;
  padding-block: clamp(5rem, 9vw, 8rem) clamp(4rem, 7vw, 6rem);
}
.hero--bg .hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero--bg .hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Contrast overlay: horizontal gradient darkest where text lives (left),
   plus a vertical floor to ground the hero. Tuned so body text (≈16px / Ubuntu 400)
   clears WCAG AA on the brightest pixels of every image we use. */
.hero--bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.68) 42%, rgba(10,10,10,0.35) 80%, rgba(10,10,10,0.25) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}
.hero--bg .hero__inner {
  position: relative;
  grid-template-columns: minmax(0, 1fr);       /* image takes bg, text goes single-column */
  align-items: start;
}
.hero--bg .hero__text {
  max-width: 58ch;
}
.hero--bg .hero__title {
  max-width: 18ch;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);    /* extra insurance on busy images */
}
.hero--bg .hero__sub {
  color: var(--grey-100, #f0f0f0);
  text-shadow: 0 1px 10px rgba(0,0,0,0.45);
}
/* Force-light text state regardless of hero--dark presence */
.hero--bg .hero__title,
.hero--bg .hero__sub,
.hero--bg .eyebrow {
  color: var(--white);
}
.hero--bg .eyebrow {
  color: var(--orange);
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}
.hero--bg .btn--ghost {
  color: var(--white);
  border-color: rgba(245,245,245,0.6);
  backdrop-filter: blur(2px);
}
.hero--bg .btn--ghost:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
/* Respect users who prefer reduced transparency (iOS / Windows high-contrast) */
@media (prefers-contrast: more) {
  .hero--bg::before {
    background: rgba(0,0,0,0.85);
  }
}

.hero--split-right .hero__text { order: 2; }
.hero--split-right .hero__visual { order: 1; }

/* Split-line hero variant (for sub-pages with simple intro) */
.hero--slim { padding-block: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 3rem); }
.hero--slim .hero__visual { display: none; }
.hero--slim .hero__inner { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); }
.hero--slim .hero__side {
  display: flex; flex-direction: column; gap: var(--s-5);
  align-items: flex-start;
  padding-top: 1rem;
}

/* ---------- LOGO MARQUEE ---------- */
.marquee-section {
  background: var(--surface-muted);
  padding-block: var(--s-7);
  overflow: hidden;
  border-block: 1px solid var(--hairline);
}
.marquee-section__head {
  text-align: center;
  margin-bottom: var(--s-5);
}
.marquee-section__head .eyebrow { color: var(--ink-subtle); }
.marquee-section__head .eyebrow::before { background: var(--grey-300); }

.marquee {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.marquee__track {
  display: flex;
  gap: clamp(3rem, 6vw, 5rem);
  padding-right: clamp(3rem, 6vw, 5rem);
  animation: marquee 60s linear infinite;
  align-items: center;
  flex-shrink: 0;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  color: var(--grey-500);
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: color var(--d-med);
}
.marquee__item:hover { color: var(--ink); }
.marquee__item-dot {
  width: 6px; height: 6px; background: var(--grey-300); border-radius: 50%;
  display: inline-block;
}
@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

/* ---------- CARDS ---------- */
.card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  border: 1px solid var(--hairline);
  transition: transform var(--d-med), box-shadow var(--d-med), border-color var(--d-med);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}

.card--dark {
  background: var(--black-soft);
  border-color: var(--hairline-dark);
  color: var(--white);
}

/* Industry card */
.industry-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--hairline);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  min-height: 320px;
  position: relative;
  overflow: hidden;
  transition: transform var(--d-med), box-shadow var(--d-med);
}
.industry-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.industry-card::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--vis);
  z-index: 0;
  opacity: 0.9;
}
.industry-card > * { position: relative; z-index: 1; }

.industry-card__visual {
  aspect-ratio: 16 / 9;
  border-radius: var(--r-md);
  background:
    linear-gradient(135deg, rgba(231,61,20,0.15), rgba(30,30,30,0.05)),
    var(--surface-muted);
  position: relative;
  overflow: hidden;
}
.industry-card__visual svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.industry-card__title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; letter-spacing: -0.01em; }
.industry-card__desc { color: var(--ink-muted); font-size: var(--fs-body-sm); }
.industry-card__link {
  margin-top: auto;
  display: inline-flex; gap: 0.4rem; align-items: center;
  color: var(--orange); font-weight: 500; font-size: 0.95rem;
}
.industry-card__link .arrow { transition: transform var(--d-med); }
.industry-card:hover .industry-card__link .arrow { transform: translateX(4px); }

.industry-card--large { min-height: 360px; }

/* Grid layouts */
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: var(--s-5); }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: var(--s-5); }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: var(--s-5); }
@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s-5);
}
.industries-grid > .industry-card { min-height: 340px; }
@media (max-width: 900px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .industries-grid { grid-template-columns: 1fr; }
  .industries-grid > .industry-card { min-height: 0; }
}

/* ---------- SERVICES BY ROLE TABS ---------- */
.tabs {
  display: grid;
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
  gap: var(--s-7);
  align-items: start;
}
@media (max-width: 900px) {
  .tabs { grid-template-columns: 1fr; gap: var(--s-5); }
}
.tabs__pills {
  display: flex; flex-direction: column; gap: 6px;
  position: sticky; top: 100px;
}
@media (max-width: 900px) {
  .tabs__pills { position: static; flex-direction: column; }
}

/* Pack pill (flat single-level, icon + label + count/soon) */
.tab-pill {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.95rem 1.15rem;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--hairline);
  font-family: inherit;
  font-weight: 500;
  font-size: 0.97rem;
  color: var(--ink);
  transition: all var(--d-med) var(--ease-out);
  text-align: left;
  width: 100%;
  cursor: pointer;
}
.tab-pill:hover { border-color: var(--grey-200); background: var(--surface-muted); }
.tab-pill.is-active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: var(--sh-glow);
}
.tab-pill__icon {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--surface-muted);
  color: var(--ink-muted);
  flex-shrink: 0;
  transition: all var(--d-med) var(--ease-out);
}
.tab-pill__icon svg { width: 20px; height: 20px; }
.tab-pill:hover .tab-pill__icon { color: var(--ink); }
.tab-pill.is-active .tab-pill__icon {
  background: rgba(255,255,255,0.18);
  color: var(--white);
}
.tab-pill__label {
  flex: 1; min-width: 0;
  line-height: 1.25;
}
.tab-pill__count {
  margin-left: auto;
  font-size: 0.78rem;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: rgba(30,30,30,0.08);
  color: var(--ink-muted);
  flex-shrink: 0;
}
.tab-pill.is-active .tab-pill__count {
  background: rgba(255,255,255,0.25);
  color: var(--white);
}
.tab-pill__soon {
  margin-left: auto;
  font-size: 0.7rem;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: rgba(231, 61, 20, 0.1);
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}
.tab-pill.is-active .tab-pill__soon {
  background: rgba(255,255,255,0.25);
  color: var(--white);
}

/* Panel callout ("Never tried BIM or VDC?" starter CTA — on every pack) */
.panel-callout {
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(1rem, 3vw, 2rem);
  padding: clamp(1.15rem, 2.4vw, 1.75rem) clamp(1.3rem, 2.6vw, 2rem);
  background: var(--ink);
  border: 0;
  border-left: 6px solid var(--orange);
  border-radius: var(--r-md);
  margin-top: var(--s-6);
  flex-wrap: wrap;
}
.panel-callout__body { min-width: 0; flex: 1 1 260px; }
.panel-callout__body .eyebrow { margin-bottom: 0.55rem; }
.panel-callout__title {
  font-family: var(--font-display);
  font-weight: 600;
  color: #f5f5f5;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.panel-callout__desc {
  color: rgba(245,245,245,0.72);
  font-size: 0.92rem;
  margin-top: 0.4rem;
  line-height: 1.55;
  max-width: 52ch;
}
.panel-callout .btn { flex-shrink: 0; }

/* Panel context eyebrow (small uppercase label above pack title) */
.tab-panel__context {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: var(--s-2);
}

/* Learn More CTA below service list */
.tab-panel__cta {
  margin-top: var(--s-6);
  display: flex;
}
.tab-panel__cta .btn { gap: 0.5rem; }

/* Standalone service-phase on pack pages (no surrounding tab__head context) */
.service-phase--standalone { margin-top: 0; }
.service-phase--standalone .service-row {
  padding: 1.1rem 1.25rem;
}

/* "Coming soon" banner on engineering-firms pack page */
.soon-banner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-5);
  padding: var(--s-5) var(--s-6);
  background: var(--surface);
  border: 1px dashed var(--orange);
  border-radius: var(--r-md);
  flex-wrap: wrap;
}
.soon-banner h3 { font-size: var(--fs-h4, 1.4rem); margin-top: 0.4rem; }
.soon-banner p { color: var(--ink-muted); margin-top: 0.5rem; max-width: 60ch; }

/* ---------- Pack page: metrics strip ---------- */
.metrics-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
  padding-block: clamp(1.6rem, 3vw, 2.4rem);
  border-block: 1px solid var(--hairline);
  margin-top: var(--s-6);
}
.metric-tile__value {
  font-family: var(--font-display, 'Clash Display', sans-serif);
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1;
  color: var(--orange);
  font-weight: 500;
}
.metric-tile__label {
  color: var(--ink-muted);
  margin-top: 0.5rem;
  font-size: 0.92rem;
  line-height: 1.4;
}
@media (max-width: 760px) {
  .metrics-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Pack page: Bento-style service grid (hero + 2-up cards) ---------- */
.service-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
  margin-top: var(--s-6);
}
.service-bento__card {
  grid-column: span 3;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--d-med) var(--ease-out), box-shadow var(--d-med) var(--ease-out), border-color var(--d-med) var(--ease-out);
}
.service-bento__card:hover {
  transform: translateY(-3px);
  border-color: var(--grey-200);
  box-shadow: 0 18px 40px -22px rgba(30,30,30,0.25);
}
.service-bento__card--hero {
  grid-column: span 6;
  flex-direction: row;
  background: linear-gradient(120deg, var(--surface), var(--surface-muted));
  border-color: var(--orange);
}
.service-bento__card--full {
  grid-column: span 6;
}
.service-bento__media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--surface-muted);
  overflow: hidden;
  flex-shrink: 0;
}
.service-bento__card--hero .service-bento__media {
  flex: 0 0 45%;
  aspect-ratio: auto;
  align-self: stretch;
}
.service-bento__media svg,
.service-bento__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.service-bento__body {
  padding: clamp(1.1rem, 2vw, 1.6rem);
  display: flex; flex-direction: column;
  flex: 1; min-width: 0;
}
.service-bento__card--hero .service-bento__body {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}
.service-bento__number {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--orange);
}
.service-bento__number::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--orange);
  display: inline-block;
}
.service-bento__card--hero .service-bento__number {
  font-size: 0.78rem;
}
.service-bento__title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 0.55rem;
  line-height: 1.25;
}
.service-bento__card--hero .service-bento__title {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
}
.service-bento__desc {
  color: var(--ink-muted);
  margin-top: 0.6rem;
  line-height: 1.55;
  font-size: 0.92rem;
}
.service-bento__card--hero .service-bento__desc {
  font-size: 1rem;
  margin-top: 0.85rem;
}
.service-bento__list {
  margin-top: 0.9rem;
  display: grid; gap: 0.4rem;
  padding: 0; list-style: none;
}
.service-bento__list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--ink-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}
.service-bento__list li::before {
  content: "✓";
  position: absolute; left: 0; top: 1px;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.85rem;
}
.service-bento__card--hero .service-bento__list { margin-top: 1.1rem; }
.service-bento__card--hero .service-bento__list li { font-size: 0.95rem; }

@media (max-width: 900px) {
  .service-bento { grid-template-columns: 1fr; }
  .service-bento__card,
  .service-bento__card--hero,
  .service-bento__card--full { grid-column: span 1; flex-direction: column; }
  .service-bento__card--hero .service-bento__media { flex: 0 0 auto; aspect-ratio: 16 / 9; }
}

/* ---------- Pack page: process / workflow flow ---------- */
.process-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: var(--s-6);
}
.process-flow__step {
  position: relative;
  padding: 1.4rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
}
.process-flow__step::after {
  content: "→";
  position: absolute;
  right: -0.8rem; top: 50%;
  transform: translateY(-50%);
  width: 1.6rem; height: 1.6rem;
  display: grid; place-items: center;
  font-size: 1.1rem;
  color: var(--ink-subtle);
  background: var(--surface);
  border-radius: 50%;
  z-index: 1;
}
.process-flow__step:last-child::after { display: none; }
.process-flow__num {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  display: grid; place-items: center;
  font-weight: 700; font-size: 0.9rem;
}
.process-flow__title {
  font-weight: 600;
  margin-top: 0.85rem;
  font-size: 1rem;
}
.process-flow__desc {
  font-size: 0.88rem;
  color: var(--ink-muted);
  margin-top: 0.4rem;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .process-flow { grid-template-columns: repeat(2, 1fr); }
  .process-flow__step::after { display: none; }
}
@media (max-width: 480px) {
  .process-flow { grid-template-columns: 1fr; }
}

/* ---------- Pack page: timber phase blocks (LOD progression) ---------- */
.phase-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  margin-top: var(--s-6);
}
.phase-block {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: var(--s-5);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  align-items: start;
}
.phase-block__lod {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.2rem 0.8rem;
  background: linear-gradient(135deg, rgba(231,61,20,0.08), rgba(231,61,20,0.02));
  border: 1px solid var(--orange);
  border-radius: var(--r-md);
}
.phase-block__lod-num {
  font-family: var(--font-display, 'Clash Display', sans-serif);
  font-size: 1.8rem;
  color: var(--orange);
  font-weight: 600;
  line-height: 1;
}
.phase-block__lod-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-subtle);
  margin-top: 0.35rem;
}
.phase-block__title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.25;
}
.phase-block__desc {
  color: var(--ink-muted);
  margin-top: 0.6rem;
  line-height: 1.6;
}
.phase-block__list {
  margin-top: 1rem;
  display: grid; gap: 0.4rem;
  padding: 0; list-style: none;
}
.phase-block__list li {
  position: relative; padding-left: 1.3rem;
  color: var(--ink-muted);
  font-size: 0.92rem;
}
.phase-block__list li::before {
  content: "—"; position: absolute; left: 0;
  color: var(--orange);
}
@media (max-width: 640px) {
  .phase-block { grid-template-columns: 1fr; }
}

.tab-panel { display: none; }
.tab-panel.is-active { display: block; animation: fadeIn var(--d-med) var(--ease-out); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.tab-panel__head { margin-bottom: var(--s-5); max-width: 60ch; }
.tab-panel__head h3 { font-size: var(--fs-h3); }
.tab-panel__head p { color: var(--ink-muted); margin-top: var(--s-3); max-width: 60ch; }

/* Services SECTION gets the pack image as background (swaps on pill click via JS) */
.section--services-bg {
  position: relative;
  overflow: hidden;
}
.section--services-bg > .container {
  position: relative;
  z-index: 1;
}
.services-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.services-bg__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: saturate(0.55);
  opacity: 0.55;
  transition: opacity 0.35s var(--ease-out);
}
.services-bg__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(95deg,
      rgba(245, 245, 245, 0.97) 0%,
      rgba(245, 245, 245, 0.92) 35%,
      rgba(245, 245, 245, 0.78) 70%,
      rgba(245, 245, 245, 0.60) 100%);
}

.service-phase { margin-top: var(--s-6); }
.service-phase__label {
  display: flex; align-items: center; gap: var(--s-3);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-subtle);
  margin-bottom: var(--s-3);
  font-weight: 600;
}
.service-phase__label::after {
  content: ""; flex: 1; height: 1px; background: var(--hairline);
}

.service-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.15rem;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  margin-bottom: 6px;
  transition: all var(--d-med) var(--ease-out);
  gap: var(--s-4);
}
.service-row:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  transform: translateX(3px);
}
.service-row__title { font-weight: 500; font-size: 0.98rem; }
.service-row__desc { font-size: 0.84rem; color: var(--ink-subtle); margin-top: 2px; }
.service-row:hover .service-row__desc { color: var(--grey-300); }
.service-row__arrow {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--surface-muted);
  color: var(--ink);
  transition: all var(--d-med) var(--ease-out);
  flex-shrink: 0;
}
.service-row:hover .service-row__arrow {
  background: var(--orange);
  color: var(--white);
  transform: rotate(-45deg);
}

/* ---------- FEATURES GRID ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s-5);
}
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
}
.feature-item {
  display: flex; gap: var(--s-4);
  padding: var(--s-5);
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--hairline);
  transition: border-color var(--d-med), transform var(--d-med);
}
.feature-item:hover { border-color: var(--orange); transform: translateY(-2px); }
.feature-item__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--orange-tint);
  color: var(--orange);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.feature-item__icon svg { width: 22px; height: 22px; }
.feature-item__label { font-weight: 600; font-size: 1.02rem; margin-bottom: 0.3rem; font-family: var(--font-display); }
.feature-item__desc { color: var(--ink-muted); font-size: 0.94rem; line-height: 1.5; }

/* ---------- METRICS ---------- */
.metrics-section { background: var(--black); color: var(--white); }
.metrics-section h1, .metrics-section h2, .metrics-section h3, .metrics-section h4 { color: var(--white); }
.metrics-section .lead { color: var(--grey-300); }

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--s-5);
  margin-top: var(--s-8);
}
@media (max-width: 900px) { .metrics-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .metrics-grid { grid-template-columns: 1fr; } }

.metric {
  padding: var(--s-5) 0;
  border-top: 1px solid var(--hairline-dark);
}
.metric__value {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 1.8rem + 2.5vw, 4rem);
  color: var(--orange);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.metric__label {
  margin-top: var(--s-3);
  color: var(--grey-300);
  font-size: 0.92rem;
}

/* ---------- QUOTE FORM ---------- */
.quote-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 65% 40%, #ff5a2a 0%, transparent 45%),
    radial-gradient(circle at 95% 85%, #c2300f 0%, transparent 40%),
    linear-gradient(135deg, #ff4f26 0%, #e73d14 60%, #c2300f 100%);
  min-height: 560px;
  display: flex; align-items: center;
  padding-block: clamp(3rem, 6vw, 5rem);
}
.quote-section::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.quote-section__inner {
  position: relative; z-index: 2; width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 480px);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 900px) {
  .quote-section__inner { grid-template-columns: 1fr; gap: 2rem; }
}
.quote-cta { color: var(--white); max-width: 560px; }
.quote-cta__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.85rem;
}
.quote-cta__title {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.05;
  color: var(--white);
  font-family: var(--font-display, 'Clash Display', sans-serif);
  font-weight: 500;
}
.quote-cta__desc {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  margin-top: 1.1rem;
  max-width: 48ch;
}
.quote-cta__contacts {
  margin-top: clamp(1.5rem, 3vw, 2rem);
  display: grid; gap: 0.55rem;
}
.quote-cta__contacts a {
  color: var(--white);
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  transition: border-color var(--d-fast);
  width: fit-content;
}
.quote-cta__contacts a:hover { border-color: var(--white); }

.quote-form {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--sh-lg);
  max-width: 480px;
  display: flex; flex-direction: column; gap: var(--s-4);
}
.quote-form h2 { font-size: var(--fs-h3); }
.quote-form__row { display: flex; flex-direction: column; gap: 0.4rem; }
.quote-form input, .quote-form textarea {
  background: var(--surface-muted);
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  padding: 0.9rem 1.1rem;
  font-size: 0.96rem;
  transition: background var(--d-fast), border-color var(--d-fast);
  width: 100%;
}
.quote-form textarea {
  border-radius: var(--r-md);
  min-height: 100px;
  resize: vertical;
  font-family: var(--font-body);
}
.quote-form input:focus, .quote-form textarea:focus {
  outline: none;
  background: var(--surface);
  border-color: var(--orange);
}
.quote-form__file {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--surface-muted);
  border-radius: var(--r-pill);
  padding: 0.45rem 0.5rem 0.45rem 1.1rem;
  font-size: 0.92rem;
  color: var(--ink-subtle);
}
.quote-form__file-btn {
  background: var(--orange-tint);
  color: var(--orange);
  padding: 0.55rem 1rem;
  border-radius: var(--r-pill);
  font-size: 0.88rem;
  font-weight: 500;
  transition: background var(--d-fast);
}
.quote-form__file-btn:hover { background: #ffcfc2; }
.quote-form__submit { justify-content: center; margin-top: var(--s-2); }
.quote-form__legal {
  font-size: 0.72rem;
  color: var(--ink-subtle);
  line-height: 1.5;
  margin-top: var(--s-2);
}
.quote-form__legal ul { display: flex; flex-direction: column; gap: 0.3rem; padding-left: 1.1rem; list-style: disc; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding-block: var(--s-8) var(--s-5);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: var(--s-7);
  align-items: start;
  padding-bottom: var(--s-7);
  border-bottom: 1px solid var(--hairline-dark);
}
@media (max-width: 840px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}
.site-footer h5 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--grey-400);
  font-weight: 600;
  margin-bottom: var(--s-4);
}
.site-footer ul { display: flex; flex-direction: column; gap: var(--s-3); }
.site-footer a { color: var(--grey-100); font-size: 0.95rem; transition: color var(--d-fast); }
.site-footer a:hover { color: var(--orange); }
.site-footer__tagline { color: var(--grey-300); margin-top: var(--s-4); font-size: 0.92rem; max-width: 28ch; }

.site-footer__socials { display: flex; gap: 0.6rem; margin-top: var(--s-4); }
.site-footer__socials a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--black-soft);
  border-radius: 50%;
  transition: background var(--d-fast);
}
.site-footer__socials a:hover { background: var(--orange); color: var(--white); }

.site-footer__bottom {
  padding-top: var(--s-5);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--s-3);
  font-size: 0.82rem;
  color: var(--grey-400);
}

/* ---------- SERVICE-SPECIFIC BLOCKS ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--s-4);
  counter-reset: step;
}
@media (max-width: 900px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-steps { grid-template-columns: 1fr; } }
.process-step {
  padding: var(--s-5);
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--hairline);
  position: relative;
  counter-increment: step;
  transition: border-color var(--d-med);
}
.process-step:hover { border-color: var(--orange); }
.process-step__num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--orange);
  font-weight: 600;
  line-height: 1;
  margin-bottom: var(--s-3);
}
.process-step__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: var(--s-2);
}
.process-step__desc { font-size: 0.9rem; color: var(--ink-muted); line-height: 1.55; }

/* Tool icons strip */
.tools-section { background: var(--black); color: var(--white); }
.tools-section h1, .tools-section h2, .tools-section h3, .tools-section h4 { color: var(--white); }
.tools-strip {
  display: flex; gap: var(--s-5); flex-wrap: wrap;
  margin-top: var(--s-6);
}
.tool-badge {
  width: 72px; height: 72px;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  background: var(--black-soft);
  border: 1px solid var(--hairline-dark);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  transition: transform var(--d-med);
  position: relative;
}
.tool-badge:hover { transform: translateY(-3px); border-color: var(--orange); }
.tool-badge::after {
  content: attr(data-label);
  position: absolute; bottom: -24px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--grey-400);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.tool-badge--revit { color: #0696d7; }
.tool-badge--autocad { color: #e22b2b; }
.tool-badge--navisworks { color: #2da0ff; }
.tool-badge--bim360 { color: #7b4ad6; }
.tool-badge--assemble { color: #ff7e36; }
.tool-badge--trimble { color: #003d7c; background: var(--white); }
.tool-badge--dusty { color: var(--orange); }

/* FAQ accordion — service-row style (light rows, small marker) */
.faq-list { display: flex; flex-direction: column; gap: 6px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--d-med) var(--ease-out), background var(--d-med) var(--ease-out);
}
.faq-item:hover { border-color: rgba(231,61,20,0.35); }
.faq-item[open] { border-color: rgba(231,61,20,0.5); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
  padding: 1.25rem 1.4rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color var(--d-med);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--orange); }
.faq-item[open] summary { border-bottom: 1px solid var(--hairline); }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--surface-muted);
  color: var(--ink);
  font-size: 1.25rem; line-height: 1;
  transition: all var(--d-med) var(--ease-out);
}
.faq-item summary:hover::after { background: var(--orange-tint); color: var(--orange); }
.faq-item[open] summary::after { content: "\2212"; background: var(--orange); color: #fff; }
.faq-item__answer {
  padding: 1.1rem 1.4rem 1.4rem;
  font-size: 1.02rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* Video cards (NV life, process videos) */
.video-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: var(--s-5); }
@media (max-width: 700px) { .video-grid { grid-template-columns: 1fr; } }
.video-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--hairline);
  transition: transform var(--d-med), box-shadow var(--d-med);
}
.video-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.video-card__thumb {
  aspect-ratio: 16 / 9;
  position: relative;
  background:
    radial-gradient(circle at 40% 40%, rgba(231,61,20,0.25), transparent 50%),
    linear-gradient(135deg, #3c3c3c, #1e1e1e);
  display: grid; place-items: center;
}
.video-card__play {
  width: 60px; height: 60px;
  background: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: var(--sh-md);
  transition: transform var(--d-med);
}
.video-card:hover .video-card__play { transform: scale(1.08); }
.video-card__play::before {
  content: ""; display: block;
  width: 0; height: 0;
  border-left: 14px solid var(--orange);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 3px;
}
.video-card__body { padding: var(--s-5); display: flex; justify-content: space-between; align-items: center; gap: var(--s-4); }
.video-card__title { font-weight: 500; font-family: var(--font-display); font-size: 1.05rem; }

/* ---------- VALUES (About page) ---------- */
.values {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: var(--s-6);
  align-items: start;
}
@media (max-width: 900px) { .values { grid-template-columns: 1fr; } }

.values__list { display: flex; flex-direction: column; gap: 6px; }
.value-pill {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--surface-muted);
  border-radius: var(--r-md);
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: all var(--d-med) var(--ease-out);
  width: 100%;
  text-align: left;
}
.value-pill:hover { border-color: var(--grey-200); }
.value-pill.is-active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.value-pill__icon { opacity: 0.5; transition: transform var(--d-med); }
.value-pill.is-active .value-pill__icon { opacity: 1; transform: rotate(-45deg); }

.values__panel {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  border: 1px solid var(--hairline);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}
.value-panel { display: none; }
.value-panel.is-active { display: flex; flex-direction: column; gap: var(--s-4); animation: fadeIn var(--d-med) var(--ease-out); }
.value-panel__visual {
  aspect-ratio: 16 / 10;
  border-radius: var(--r-md);
  background:
    radial-gradient(circle at 30% 30%, #ff6a3d 0%, transparent 60%),
    linear-gradient(135deg, #e73d14 0%, #c2300f 100%);
  position: relative;
  overflow: hidden;
}
.value-panel__visual::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 40px 40px;
}
.value-panel__title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; }
.value-panel__desc { color: var(--ink-muted); line-height: 1.6; }

/* ---------- CASE STUDIES ---------- */
.filter-bar {
  display: flex; gap: var(--s-3); flex-wrap: wrap;
  padding: var(--s-5) 0;
  margin-bottom: var(--s-6);
  border-bottom: 1px solid var(--hairline);
  position: sticky; top: 84px; background: var(--surface); z-index: 5;
}
.filter-bar__label { font-size: 0.9rem; color: var(--ink-subtle); align-self: center; margin-right: var(--s-2); }
.filter-chip {
  padding: 0.55rem 1rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--hairline);
  background: var(--surface);
  font-size: 0.9rem;
  transition: all var(--d-fast);
  font-weight: 500;
}
.filter-chip:hover { border-color: var(--ink); }
.filter-chip.is-active { background: var(--ink); color: var(--white); border-color: var(--ink); }

.case-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--hairline);
  display: flex; flex-direction: column;
  transition: transform var(--d-med), box-shadow var(--d-med);
}
.case-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.case-card__visual {
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, rgba(231,61,20,0.2), rgba(30,30,30,0.4)),
    var(--surface-muted);
  position: relative;
  overflow: hidden;
}
.case-card__tag {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--surface);
  font-size: 0.72rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.case-card__body { padding: var(--s-5); display: flex; flex-direction: column; gap: var(--s-3); flex: 1; }
.case-card__title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; letter-spacing: -0.01em; }
.case-card__meta { font-size: 0.82rem; color: var(--ink-subtle); display: flex; flex-wrap: wrap; gap: 1rem; }
.case-card__desc { font-size: 0.92rem; color: var(--ink-muted); line-height: 1.5; }
.case-card__link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  color: var(--orange); font-weight: 500; font-size: 0.92rem;
  margin-top: auto;
}

/* Case Study detail — stat bar */
.stat-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--s-4);
  padding-block: var(--s-5);
  border-bottom: 1px solid var(--hairline);
}
@media (max-width: 700px) { .stat-bar { grid-template-columns: repeat(2, 1fr); } }
.stat {
  padding: var(--s-4);
  border-radius: var(--r-md);
  border: 1px solid var(--hairline);
  background: var(--surface);
}
.stat__label {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--orange); font-weight: 600; margin-bottom: var(--s-2);
}
.stat__value { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; }

.block-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s-6);
  align-items: center;
  margin-bottom: var(--s-7);
}
.block-split:nth-child(even) .block-split__media { order: 2; }
@media (max-width: 800px) { .block-split { grid-template-columns: 1fr; } }
.block-split__media {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  background:
    linear-gradient(135deg, rgba(231,61,20,0.1), rgba(30,30,30,0.05)),
    var(--surface-muted);
  border: 1px solid var(--hairline);
  position: relative;
  overflow: hidden;
}
.block-split__body h3 { font-size: var(--fs-h3); margin-bottom: var(--s-4); }
.block-split__body p { color: var(--ink-muted); margin-bottom: var(--s-3); line-height: 1.65; }

/* Utility */
.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.items-center { align-items: center; }
.gap-4 { gap: var(--s-4); }
.mt-4 { margin-top: var(--s-4); }
.mt-6 { margin-top: var(--s-6); }
.text-center { text-align: center; }

/* ---------- MOBILE MENU ---------- */
.mobile-drawer {
  display: none;
  position: fixed; inset: 0;
  background: var(--surface);
  z-index: 80;
  padding: var(--s-6);
  flex-direction: column;
  gap: var(--s-4);
}
.mobile-drawer.is-open { display: flex; }
.mobile-drawer__head { display: flex; justify-content: space-between; align-items: center; }
.mobile-drawer__close { font-size: 1.5rem; }
.mobile-drawer a { padding: 0.8rem 0; font-size: 1.1rem; font-family: var(--font-display); border-bottom: 1px solid var(--hairline); }

/* Inline SVG helpers */
.sv-grid-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ====================================================================
   PAGE-SPECIFIC: INDUSTRIES / CASE STUDIES / ABOUT / CASE DETAIL
   ==================================================================== */

.hero--sm { padding-block: clamp(4rem, 6vw, 7rem) clamp(3rem, 5vw, 5.5rem); }
.hero--sm .hero__title { font-size: clamp(2.4rem, 1.6rem + 3vw, 4.2rem); }
.hero__visual--muted { opacity: 0.9; }

.section--alt { background: var(--surface-muted); }
.section--tight { padding-block: clamp(3rem, 4vw, 5rem); }
.section--dark { background: var(--black); color: var(--white); padding-block: clamp(4rem, 5vw, 6rem); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark .lead { color: var(--grey-400); }
.eyebrow--light { color: #ff8a5c; }

/* Sector quick-nav (industries) */
.sector-nav {
  border-block: 1px solid var(--hairline);
  background: var(--surface);
  position: sticky; top: 64px; z-index: 20;
}
.sector-nav__list {
  display: flex; gap: clamp(1rem, 2vw, 2.5rem);
  overflow-x: auto; padding: 0.9rem 0;
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}
.sector-nav__list a {
  color: var(--ink-muted);
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.sector-nav__list a:hover { color: var(--orange); border-bottom-color: var(--orange); }

/* Industry rows */
.industry-row { padding-block: clamp(3.5rem, 5vw, 6rem); }
.industry-row + .industry-row { border-top: 1px solid var(--hairline); }
.industry-row__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
}
.industry-row--flip .industry-row__inner { grid-template-columns: 1fr 1.1fr; }
.industry-row--flip .industry-row__visual { order: 2; }
.industry-row__visual {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--surface-muted);
  box-shadow: 0 20px 60px -30px rgba(30,30,30,0.25);
}
.industry-row__visual svg { display: block; width: 100%; height: 100%; }
.industry-row__text h2 { margin-bottom: var(--s-4); }
.industry-row__text .lead { margin-bottom: 1.5rem; color: var(--ink-muted); font-size: 1.1rem; line-height: 1.6; }
.industry-row__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* Check list */
.check-list { list-style: none; padding: 0; margin-block: var(--s-4) 0; display: grid; gap: 0.7rem; }
.check-list li {
  padding-left: 2rem; position: relative;
  color: var(--ink-muted); line-height: 1.5;
  font-size: 0.98rem;
}
.check-list li::before {
  content: ''; position: absolute; left: 0; top: 6px;
  width: 18px; height: 18px;
  background: var(--orange);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") no-repeat center / contain;
}
.section--dark .check-list li { color: var(--grey-400); }

/* Stat bar */
.stat-bar-section { padding-block: clamp(3rem, 5vw, 6rem); background: var(--black); color: var(--white); }
.stat-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--hairline-dark);
  border-radius: 20px;
  overflow: hidden;
  background: #2a2a2a;
}
.stat-bar-section .stat-bar { background: transparent; }
.stat-bar__item {
  padding: clamp(1.6rem, 3vw, 2.6rem);
  border-right: 1px solid var(--hairline-dark);
  color: var(--white);
}
.stat-bar__item:last-child { border-right: none; }
.stat-bar__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 1.6rem + 2vw, 3.4rem);
  line-height: 1;
  color: var(--orange);
  margin-bottom: 0.5rem;
}
.stat-bar__label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--grey-400);
}
.section--alt .stat-bar { background: var(--white); border-color: var(--hairline); }
.section--alt .stat-bar__item { border-right-color: var(--hairline); color: var(--black); }
.section--alt .stat-bar__label { color: var(--ink-muted); }
.stat-bar--4 { grid-template-columns: repeat(4, 1fr); }

/* Filter chips */
.filter-chips {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin-block: 2rem;
}
.filter-chip {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  background: var(--surface);
  color: var(--ink-muted);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-chip:hover { border-color: var(--orange); color: var(--orange); }
.filter-chip.is-active { background: var(--black); color: var(--white); border-color: var(--black); }

/* Case grid */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2vw, 2rem);
  margin-top: var(--s-6);
}
.case-grid--two {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 760px) {
  .case-grid--two { grid-template-columns: 1fr; }
}
.case-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--hairline);
  transition: transform 0.3s, box-shadow 0.3s;
}
.case-card:hover { transform: translateY(-4px); box-shadow: 0 30px 80px -40px rgba(30,30,30,0.35); }
.case-card__link { display: block; color: inherit; }
.case-card__visual {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-muted);
}
.case-card__visual svg { width: 100%; height: 100%; display: block; }
.case-card__badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--orange);
  color: var(--white);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.case-card__body { padding: clamp(1.2rem, 2vw, 1.8rem); }
.case-card__meta {
  display: flex; gap: 0.5rem; align-items: center;
  color: var(--ink-muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.case-card__sep { opacity: 0.5; }
.case-card__title { font-family: var(--font-display); font-size: 1.35rem; line-height: 1.2; margin-bottom: 0.6rem; letter-spacing: -0.015em; }
.case-card__desc { color: var(--ink-muted); font-size: 0.95rem; line-height: 1.55; margin-bottom: 1rem; }
.case-card__cta {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  display: inline-flex; align-items: center; gap: 0.4rem;
}

/* Case detail hero */
.case-hero {
  background: var(--surface);
  padding-block: clamp(4rem, 6vw, 7rem) clamp(2.5rem, 4vw, 4rem);
}
.case-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.case-hero__back {
  display: inline-block;
  color: var(--ink-muted);
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.case-hero__back:hover { color: var(--orange); }
.case-hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 1.6rem + 3vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.case-hero__sub {
  color: var(--ink-muted);
  font-size: 1.15rem;
  line-height: 1.55;
  max-width: 55ch;
  margin-bottom: 2rem;
}
.case-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--hairline);
  padding-top: 1.5rem;
}
.case-hero__meta > div { display: flex; flex-direction: column; gap: 0.25rem; }
.case-hero__meta span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
}
.case-hero__meta b {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
}
.case-hero__visual {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 40px 100px -40px rgba(30,30,30,0.35);
}
.case-hero__visual svg { width: 100%; height: 100%; display: block; }

/* Two-col */
.two-col {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: start;
}
.two-col__aside h2 { margin-top: 0.3rem; }
.two-col__body p { color: var(--ink-muted); line-height: 1.7; font-size: 1.05rem; margin-bottom: var(--s-4); }
.two-col__body .lead { color: var(--black); font-size: 1.2rem; line-height: 1.5; margin-bottom: 1.5rem; }

/* Quote block */
.quote-block {
  border-left: 4px solid var(--orange);
  padding: 1.5rem 2rem;
  max-width: 64ch;
  margin: 0 auto;
}
.quote-block p {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.3rem, 1rem + 1vw, 1.7rem);
  line-height: 1.35;
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
}
.quote-block footer { color: var(--ink-muted); font-size: 0.9rem; }
.quote-block footer b { color: var(--black); font-family: var(--font-display); }

/* Related grid */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: 2rem;
}
.related-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  overflow: hidden;
  color: inherit;
  transition: transform 0.2s;
}
.related-card:hover { transform: translateY(-3px); }
.related-card__visual { aspect-ratio: 16/10; overflow: hidden; }
.related-card__visual svg { width: 100%; height: 100%; display: block; }
.related-card__title {
  padding: 1rem 1.2rem 0.3rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
}
.related-card__meta {
  padding: 0 1.2rem 1.2rem;
  color: var(--ink-muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Mission / Vision */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.2rem, 2vw, 2rem);
}
.mission-card {
  padding: clamp(1.8rem, 3vw, 3rem);
  border-radius: 20px;
  background: var(--surface-muted);
  border: 1px solid var(--hairline);
}
.mission-card--alt { background: var(--black); color: var(--white); border-color: var(--hairline-dark); }
.mission-card--alt h2 { color: var(--white); }
.mission-card--alt p { color: var(--grey-400); }
.mission-card__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 1rem;
  padding: 0.5rem 1.15rem;
  border: 2.5px solid var(--orange);
  border-radius: 999px;
}
.mission-card h2 { margin-bottom: 1rem; font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2.2rem); }
.mission-card p { color: var(--ink-muted); line-height: 1.65; font-size: 1.02rem; }

/* Values accordion */
.values {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}
.values__pills {
  display: flex; flex-direction: column; gap: 0.4rem;
  border-left: 2px solid var(--hairline);
}
.value-pill {
  text-align: left;
  padding: 0.8rem 1.2rem;
  border: none; background: none;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink-muted);
  cursor: pointer;
  margin-left: -2px;
  border-left: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.value-pill:hover { color: var(--black); }
.value-pill.is-active {
  color: var(--white);
  background: var(--orange);
  border-left-color: var(--orange);
  font-weight: 700;
  border-radius: 0 6px 6px 0;
  padding-left: 1.1rem;
}
.values__panels { position: relative; min-height: 260px; }
.value-panel {
  display: none;
  padding: clamp(1.8rem, 3vw, 2.6rem);
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  animation: valueFade 0.4s ease;
}
.value-panel.is-active { display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; align-items: start; }
.value-panel__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 2rem + 2vw, 4rem);
  line-height: 1;
  color: var(--orange);
  letter-spacing: -0.02em;
}
.value-panel__body h3 { margin-bottom: 0.8rem; font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); }
.value-panel__body p { color: var(--ink-muted); font-size: 1.05rem; line-height: 1.65; }
@keyframes valueFade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: 2rem;
}
.team-card {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  display: flex; gap: 1.2rem; align-items: center;
}
.team-card__avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #c2300f);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.team-card__name { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; margin-bottom: 0.2rem; }
.team-card__role { color: var(--ink-muted); font-size: 0.88rem; }

/* Section--dark helpers for reused components */
.section--dark .video-card { background: #2a2a2a; border: 1px solid var(--hairline-dark); }
.section--dark .video-card__title { color: var(--white); }
.section--dark .video-card__tag { color: var(--orange); }

/* Responsive */
@media (max-width: 960px) {
  .industry-row__inner,
  .industry-row--flip .industry-row__inner,
  .case-hero__inner,
  .mission-grid,
  .values,
  .two-col { grid-template-columns: 1fr; }
  .industry-row--flip .industry-row__visual { order: 0; }
  .case-grid,
  .related-grid,
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-bar,
  .stat-bar--4 { grid-template-columns: repeat(2, 1fr); }
  .stat-bar__item { border-right: none; border-bottom: 1px solid var(--hairline-dark); }
  .stat-bar__item:nth-last-child(-n+2) { border-bottom: none; }
  .case-hero__meta { grid-template-columns: 1fr 1fr; }
  .values__pills { flex-direction: row; overflow-x: auto; border-left: none; border-bottom: 2px solid var(--hairline); padding-bottom: 0.3rem; }
  .value-pill { border-left: none; border-bottom: 2px solid transparent; margin-left: 0; margin-bottom: -2px; white-space: nowrap; }
  .value-pill.is-active { border-left: none; border-bottom-color: var(--orange); }
}
@media (max-width: 640px) {
  .case-grid,
  .related-grid,
  .team-grid { grid-template-columns: 1fr; }
  .stat-bar,
  .stat-bar--4 { grid-template-columns: 1fr; }
  .case-hero__meta { grid-template-columns: 1fr; }
}

/* ---------- Starter Guide page ---------- */
.starter-explainer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: var(--s-7);
  align-items: center;
  margin-top: var(--s-7);
}
.starter-explainer__visual {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface-muted);
  aspect-ratio: 3 / 2;
}
.starter-explainer__visual svg { width: 100%; height: 100%; display: block; }
.starter-explainer__body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  margin-bottom: 0.9rem;
  line-height: 1.2;
}
.starter-explainer__body p { color: var(--ink-muted); margin-bottom: 0.9rem; line-height: 1.65; }
.starter-explainer__body p:last-child { margin-bottom: 0; }
@media (max-width: 900px) {
  .starter-explainer { grid-template-columns: 1fr; }
}

/* Myth / Reality grid */
.myth-grid {
  display: grid;
  gap: var(--s-4);
  margin-top: var(--s-6);
}
.myth-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}
.myth-row__col {
  padding: 1.3rem 1.4rem;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--hairline);
}
.myth-row__col--bad {
  background: #fafafa;
  border-color: var(--hairline);
}
.myth-row__col--good {
  background: linear-gradient(135deg, rgba(231,61,20,0.08), rgba(231,61,20,0.02));
  border-color: var(--orange);
}
.myth-row__tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-subtle);
  margin-bottom: 0.55rem;
}
.myth-row__col--good .myth-row__tag { color: var(--orange); }
.myth-row__col p {
  margin: 0;
  line-height: 1.55;
  color: var(--ink);
  font-size: 0.98rem;
}
.myth-row__col--bad p {
  color: var(--ink-muted);
}
@media (max-width: 760px) {
  .myth-row { grid-template-columns: 1fr; }
}

/* Starter checklist */
.starter-checklist {
  list-style: none;
  padding: 0;
  margin: var(--s-6) 0 0;
  display: grid;
  gap: 0.85rem;
}
.starter-checklist li {
  position: relative;
  padding: 1rem 1.2rem 1rem 3rem;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--hairline);
  color: var(--ink);
  line-height: 1.55;
  font-size: 1rem;
}
.starter-checklist li::before {
  content: "✓";
  position: absolute;
  left: 1.05rem; top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 24px;
  display: grid; place-items: center;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 6px;
}
.starter-checklist__cta {
  margin-top: var(--s-6);
  display: flex;
  justify-content: center;
}

/* ---------- Services page: role-row stats (mini metrics inline with industry-row) ---------- */
.role-row__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2rem;
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--hairline);
}
.role-row__stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.role-row__stat-value {
  font-family: var(--font-display, 'Clash Display', sans-serif);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 600;
  color: var(--orange);
  line-height: 1.05;
}
.role-row__stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* Check-list nested strong styling for services.html role rows */
.industry-row .check-list li strong {
  color: var(--ink);
  font-weight: 600;
}

/* Inline "Learn more" link inside the tab-panel head (top of role panel) */
.tab-panel__head { display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
.tab-panel__head-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.85rem;
  padding: 0.4rem 0;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
  transition: border-color var(--d-med, .2s) var(--ease-out, ease);
}
.tab-panel__head-cta span { transition: transform var(--d-med, .2s) var(--ease-out, ease); }
.tab-panel__head-cta:hover { border-bottom-color: var(--orange); }
.tab-panel__head-cta:hover span { transform: translateX(4px); }

/* Per-pack starter guide deliverables grid — feature-item as link */
.features-grid--starter .feature-item--link {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  background: var(--surface);
  color: var(--ink);
  transition: border-color var(--d-med, .2s) var(--ease-out, ease), transform var(--d-med, .2s) var(--ease-out, ease);
}
.features-grid--starter .feature-item--link:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}
.features-grid--starter .feature-item--link .feature-item__label::after {
  content: " →";
  color: var(--orange);
  opacity: 0.8;
  margin-left: 0.25rem;
}

/* ---------- Pack page: Dusty partner badge in bento card ---------- */
.service-bento__partner-badge {
  margin-bottom: 0.6rem;
}
.service-bento__partner-badge a {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, rgba(231,61,20,0.12), rgba(231,61,20,0.04));
  border: 1px solid var(--orange);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background var(--d-med, .2s) var(--ease-out, ease);
}
.service-bento__partner-badge a:hover { background: var(--orange); color: var(--white); }
.service-bento__small {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-subtle);
  margin: 0.35rem 0 0.7rem;
  font-weight: 600;
}

/* ---------- Pack page: metric-tile link styling ---------- */
.metric-tile__link {
  color: var(--orange);
  border-bottom: 1px solid transparent;
  transition: border-color var(--d-med, .2s) var(--ease-out, ease);
}
.metric-tile__link:hover { border-bottom-color: var(--orange); }

/* ---------- Scopes/tech marquee section ---------- */
.scopes-marquee-section,
.tech-stack__head { padding-block: clamp(1rem, 2vw, 1.6rem) clamp(0.6rem, 1vw, 1rem); }
.scopes-marquee-section .container,
.tech-stack__head { display: grid; gap: 0.8rem; }
.tech-stack__desc {
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 90ch;
  margin: 0;
}
.marquee--scopes .marquee__item,
.marquee--tech .marquee__item {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  text-transform: none;
  letter-spacing: 0;
}
.marquee--scopes .marquee__item-dot,
.marquee--tech .marquee__item-dot {
  background: var(--orange);
}

/* ---------- Timber pack: small experience strip (replaces metrics) ---------- */
.timber-experience-strip {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 3vw, 2.4rem);
  flex-wrap: wrap;
  margin-top: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid var(--hairline);
}
.timber-experience-strip__item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.timber-experience-strip__value {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--orange);
  font-weight: 600;
}
.timber-experience-strip__label {
  font-size: 0.85rem;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}
.timber-experience-strip__divider {
  width: 1px; height: 28px;
  background: var(--hairline);
}
@media (max-width: 580px) {
  .timber-experience-strip__divider { display: none; }
}

/* ---------- Why Clients Choose New Vision — engaging dark grid ---------- */
.why-clients-section {
  background: linear-gradient(180deg, var(--black) 0%, #181818 100%);
  position: relative;
  overflow: hidden;
}
.why-clients-section::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(231,61,20,0.18), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(231,61,20,0.12), transparent 40%);
  pointer-events: none;
}
.why-clients-section .container { position: relative; z-index: 1; }
.why-clients-section .lead { color: var(--grey-300); }
.why-clients-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
  margin-top: var(--s-6);
}
.why-clients-card {
  position: relative;
  padding: clamp(1.6rem, 2.6vw, 2.2rem);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  backdrop-filter: blur(8px);
  overflow: hidden;
  transition: transform var(--d-med, .2s) var(--ease-out, ease), border-color var(--d-med, .2s) var(--ease-out, ease), background var(--d-med, .2s) var(--ease-out, ease);
}
.why-clients-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(231,61,20,0.0), rgba(231,61,20,0.0));
  transition: background var(--d-med, .2s) var(--ease-out, ease);
  pointer-events: none;
}
.why-clients-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  background: rgba(255,255,255,0.06);
}
.why-clients-card:hover::after {
  background: linear-gradient(135deg, rgba(231,61,20,0.10), rgba(231,61,20,0.02));
}
.why-clients-card__num {
  position: absolute;
  top: clamp(1.2rem, 2vw, 1.8rem);
  right: clamp(1.4rem, 2.4vw, 2.2rem);
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
  color: rgba(231,61,20,0.2);
  font-weight: 700;
  letter-spacing: -0.04em;
}
.why-clients-card__icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(231,61,20,0.18), rgba(231,61,20,0.04));
  border: 1px solid var(--orange);
  border-radius: 12px;
  color: var(--orange);
  margin-bottom: 1.4rem;
}
.why-clients-card__icon svg { width: 22px; height: 22px; }
.why-clients-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.7rem;
  line-height: 1.25;
  max-width: 26ch;
}
.why-clients-card__desc {
  color: var(--grey-300);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 760px) {
  .why-clients-grid { grid-template-columns: 1fr; }
}

/* ---------- Rich starter callout (pack pages) — dark, borderless ---------- */
.starter-callout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1.8rem, 3.5vw, 3rem);
  align-items: center;
  padding: clamp(2.2rem, 4vw, 3.4rem);
  background:
    radial-gradient(circle at 100% 0%, rgba(231,61,20,0.28), transparent 55%),
    radial-gradient(circle at 0% 100%, rgba(231,61,20,0.10), transparent 50%),
    linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  border: 0;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  box-shadow: 0 28px 80px -32px rgba(0,0,0,0.45);
}
.starter-callout::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  background-position: -1px -1px;
  mask-image: radial-gradient(circle at 70% 50%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 70% 50%, #000 30%, transparent 75%);
  pointer-events: none;
  opacity: 0.6;
}
.starter-callout > * { position: relative; z-index: 1; }
.starter-callout__icon {
  width: 72px; height: 72px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  color: var(--orange);
  flex-shrink: 0;
  backdrop-filter: blur(8px);
}
.starter-callout__icon svg { width: 34px; height: 34px; }
.starter-callout__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 0.7rem;
  display: inline-block;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(231,61,20,0.5);
  border-radius: var(--r-pill);
  background: rgba(231,61,20,0.10);
}
.starter-callout__title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  font-weight: 600;
  color: var(--white);
  margin: 0 0 0.8rem;
  line-height: 1.15;
  max-width: 32ch;
}
.starter-callout__desc {
  color: var(--grey-300);
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 0 0 1.3rem;
  max-width: 64ch;
}
.starter-callout__bullets {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 0.65rem;
}
.starter-callout__bullets li {
  position: relative;
  padding-left: 2rem;
  font-size: 0.95rem;
  color: var(--grey-300);
  line-height: 1.55;
}
.starter-callout__bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 18px; height: 11px;
  border-left: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(-45deg);
  transform-origin: 0 100%;
}
.starter-callout__cta {
  display: flex; flex-direction: column; gap: 0.9rem; align-items: stretch;
  min-width: 240px;
}
.starter-callout__cta .btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 12px 28px -10px rgba(231,61,20,0.55);
}
.starter-callout__cta .btn--primary:hover {
  background: #d83612;
  border-color: #d83612;
  transform: translateY(-1px);
}
.starter-callout__link {
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  font-size: 0.9rem;
  text-align: center;
  text-decoration: none;
  transition: color var(--d-med, .2s) var(--ease-out, ease);
}
.starter-callout__link:hover { color: var(--orange); }
@media (max-width: 900px) {
  .starter-callout { grid-template-columns: 1fr; text-align: left; }
  .starter-callout__icon { order: -1; }
  .starter-callout__cta { min-width: 0; }
}

/* ---------- Tech stack section (redesigned heading + cleaner block) ---------- */
.tech-stack-section { padding-block: clamp(2.6rem, 5vw, 4.4rem); }
.tech-stack__h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 500;
  margin-top: 0.3rem;
}
.tech-stack__lead {
  color: var(--ink-muted);
  font-size: 1rem;
  line-height: 1.6;
}
.tech-stack-section .marquee { margin-top: clamp(1.6rem, 3vw, 2.4rem); }

/* ---------- 6-card variant of Why Clients Choose / How it works (framing) ---------- */
.why-clients-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 1000px) {
  .why-clients-grid--six { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .why-clients-grid--six { grid-template-columns: 1fr; }
}

/* ---------- Single experience tile (replaces metrics-strip on framing pack) ---------- */
.experience-tile {
  margin-top: var(--s-6);
  padding-block: clamp(1.6rem, 3vw, 2.4rem);
  border-block: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: center;
}
.experience-tile__value {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  color: var(--orange);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}
.experience-tile__label {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.experience-tile__desc {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 60ch;
}
@media (max-width: 640px) {
  .experience-tile { grid-template-columns: 1fr; gap: 0.6rem; }
  .experience-tile__value { white-space: normal; }
}

/* Stacked .quote-cta__desc paragraphs — second paragraph spacing */
.quote-cta__desc + .quote-cta__desc { margin-top: 0.6rem; }

/* ---------- Dusty Robotics Certified Partner block (dark, borderless) ---------- */
.dusty-partner-section {
  padding-block: clamp(2.5rem, 5vw, 4.4rem);
  background: var(--white);
}
.dusty-partner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1.8rem, 3.5vw, 3rem);
  align-items: center;
  padding: clamp(2.2rem, 4vw, 3.4rem);
  background:
    radial-gradient(circle at 0% 100%, rgba(231,61,20,0.28), transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(231,61,20,0.12), transparent 50%),
    linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  border: 0;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  box-shadow: 0 28px 80px -32px rgba(0,0,0,0.45);
}
.dusty-partner::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  background-position: -1px -1px;
  mask-image: radial-gradient(circle at 30% 50%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 30% 50%, #000 30%, transparent 75%);
  pointer-events: none;
  opacity: 0.6;
}
.dusty-partner > * { position: relative; z-index: 1; }
.dusty-partner__badge {
  display: flex; flex-direction: column; align-items: center; gap: 0.9rem;
  padding: 1.5rem 1.6rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  min-width: 160px;
  backdrop-filter: blur(8px);
}
.dusty-partner__mark { width: 72px; height: 72px; display: grid; place-items: center; }
.dusty-partner__mark svg { width: 100%; height: 100%; }
.dusty-partner__cert {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--orange);
  text-align: center;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(231,61,20,0.5);
  border-radius: var(--r-pill);
  background: rgba(231,61,20,0.10);
}
.dusty-partner__eyebrow.eyebrow { color: var(--orange); }
.dusty-partner__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 600;
  margin: 0.4rem 0 0.85rem;
  line-height: 1.15;
  max-width: 30ch;
  color: var(--white);
}
.dusty-partner__desc {
  color: var(--grey-300);
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 0 0 1.4rem;
  max-width: 62ch;
}
.dusty-partner__bullets {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 0.65rem;
}
.dusty-partner__bullets li {
  padding-left: 2rem; position: relative;
  font-size: 0.96rem; line-height: 1.55;
  color: var(--grey-300);
}
.dusty-partner__bullets li strong { color: var(--white); font-weight: 600; }
.dusty-partner__bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 18px; height: 11px;
  border-left: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(-45deg);
  transform-origin: 0 100%;
}
.dusty-partner__cta {
  display: flex; flex-direction: column; gap: 0.9rem;
  align-items: stretch;
  min-width: 240px;
}
.dusty-partner__cta .btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 12px 28px -10px rgba(231,61,20,0.55);
}
.dusty-partner__cta .btn--primary:hover {
  background: #d83612;
  border-color: #d83612;
  transform: translateY(-1px);
}
.dusty-partner__link {
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  font-size: 0.9rem;
  text-align: center;
  text-decoration: none;
  transition: color var(--d-med, .2s) var(--ease-out, ease);
}
.dusty-partner__link:hover { color: var(--orange); }
@media (max-width: 900px) {
  .dusty-partner { grid-template-columns: 1fr; text-align: left; }
  .dusty-partner__badge { flex-direction: row; min-width: 0; justify-self: start; }
  .dusty-partner__cta { min-width: 0; }
}

/* ---------- Partner pill (bottom-of-card badge for Dusty / future partners) ---------- */
.service-bento__card .service-bento__list { margin-bottom: 1rem; }
.partner-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: auto;
  padding: 0.6rem 0.9rem 0.6rem 0.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #1e1e1e 0%, #0f0f0f 100%);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-body);
  width: fit-content;
  border: 1px solid rgba(231,61,20,0.4);
  box-shadow: 0 10px 24px -14px rgba(0,0,0,0.6);
  transition: transform var(--d-med, .2s) var(--ease-out, ease),
              box-shadow var(--d-med, .2s) var(--ease-out, ease),
              border-color var(--d-med, .2s) var(--ease-out, ease);
}
.partner-pill:hover {
  transform: translateY(-2px);
  border-color: var(--orange);
  box-shadow: 0 16px 30px -14px rgba(231,61,20,0.55);
}
.partner-pill__mark {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: var(--orange);
  border-radius: 50%;
  color: var(--white);
  flex-shrink: 0;
}
.partner-pill__mark svg { width: 18px; height: 18px; }
.partner-pill__text {
  display: flex; flex-direction: column; gap: 0.05rem; line-height: 1.1;
}
.partner-pill__label {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
}
.partner-pill__name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}
.partner-pill__arrow {
  margin-left: 0.4rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--d-med, .2s) var(--ease-out, ease), transform var(--d-med, .2s) var(--ease-out, ease);
}
.partner-pill:hover .partner-pill__arrow { color: var(--orange); transform: translate(2px, -2px); }

/* ---------- Starter section — full-bleed dark block (мирроrs Why Clients) ---------- */
.starter-section {
  background: linear-gradient(180deg, var(--black) 0%, #181818 100%);
  position: relative;
  overflow: hidden;
}
.starter-section::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(231,61,20,0.20), transparent 45%),
    radial-gradient(circle at 15% 90%, rgba(231,61,20,0.12), transparent 50%);
  pointer-events: none;
}
.starter-section::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at 50% 50%, #000 35%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 35%, transparent 80%);
  pointer-events: none;
  opacity: 0.5;
}
.starter-section .container { position: relative; z-index: 1; }
.starter-section .lead { color: var(--grey-300); }

.starter-section__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.4vw, 1.8rem);
  margin-top: var(--s-6);
}
.starter-feature {
  padding: clamp(1.6rem, 2.6vw, 2.2rem);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  backdrop-filter: blur(8px);
  transition: transform var(--d-med, .2s) var(--ease-out, ease), border-color var(--d-med, .2s) var(--ease-out, ease), background var(--d-med, .2s) var(--ease-out, ease);
}
.starter-feature:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  background: rgba(255,255,255,0.06);
}
.starter-feature__icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(231,61,20,0.18), rgba(231,61,20,0.04));
  border: 1px solid var(--orange);
  border-radius: 12px;
  color: var(--orange);
  margin-bottom: 1.4rem;
}
.starter-feature__icon svg { width: 22px; height: 22px; }
.starter-feature__title {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.6rem;
  line-height: 1.3;
  max-width: 26ch;
}
.starter-feature__desc {
  color: var(--grey-300);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
.starter-section__cta {
  margin-top: var(--s-7);
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}
.starter-section__cta .btn--primary {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 14px 32px -12px rgba(231,61,20,0.55);
}
.starter-section__cta .btn--primary:hover {
  background: #d83612;
  border-color: #d83612;
  transform: translateY(-1px);
}
.starter-section__link {
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color var(--d-med, .2s) var(--ease-out, ease);
}
.starter-section__link:hover { color: var(--orange); }
@media (max-width: 900px) {
  .starter-section__grid { grid-template-columns: 1fr; }
  .starter-section__cta { flex-direction: column; align-items: stretch; }
  .starter-section__link { text-align: center; }
}

/* ---------- Dusty Partner block — LIGHT variant (Framing pack only) ---------- */
.dusty-partner-section--light {
  position: relative;
  overflow: hidden;
  background: var(--white);
}
/* Same line grid + orange gradient — but applied to the SECTION, not the inner card */
.dusty-partner-section--light::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 10% 100%, rgba(231,61,20,0.18), transparent 55%),
    radial-gradient(circle at 90% 0%, rgba(231,61,20,0.10), transparent 50%);
  pointer-events: none;
}
.dusty-partner-section--light::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(30,30,30,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,30,30,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at 30% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 30% 50%, #000 30%, transparent 80%);
  pointer-events: none;
  opacity: 0.8;
}
.dusty-partner-section--light > .container { position: relative; z-index: 1; }
/* The inner .dusty-partner is no longer a dark card — it becomes layout-only */
.dusty-partner-section--light .dusty-partner {
  background: transparent;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: var(--ink);
}
.dusty-partner-section--light .dusty-partner::before { display: none; }
/* Badge column — light variant: dark badge as focal point against white section */
.dusty-partner-section--light .dusty-partner__badge {
  background: transparent;
  border: 1px solid var(--orange);
  backdrop-filter: none;
  box-shadow: 0 0 0 4px rgba(231,61,20,0.10), 0 24px 50px -24px rgba(231,61,20,0.35);
}
/* Eyebrow — already orange by default */
.dusty-partner-section--light .dusty-partner__title { color: var(--ink); }
.dusty-partner-section--light .dusty-partner__desc { color: var(--ink-muted); }
.dusty-partner-section--light .dusty-partner__bullets li { color: var(--ink-muted); }
.dusty-partner-section--light .dusty-partner__bullets li strong { color: var(--ink); }
.dusty-partner-section--light .dusty-partner__cert {
  background: rgba(231,61,20,0.08);
  color: var(--orange);
}
.dusty-partner-section--light .dusty-partner__link {
  color: rgba(30,30,30,0.6);
}
.dusty-partner-section--light .dusty-partner__link:hover { color: var(--orange); }

/* ---------- Dusty Partner block — DARK full-section variant (index, GC, robotics) ---------- */
.dusty-partner-section--dark {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0d0d0d 0%, #181818 100%);
  color: var(--white);
}
.dusty-partner-section--dark::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 10% 100%, rgba(231,61,20,0.32), transparent 50%),
    radial-gradient(circle at 90% 0%, rgba(231,61,20,0.18), transparent 50%);
  pointer-events: none;
}
.dusty-partner-section--dark::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at 50% 50%, #000 35%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 35%, transparent 80%);
  pointer-events: none;
  opacity: 0.55;
}
.dusty-partner-section--dark > .container { position: relative; z-index: 1; }
/* Inner .dusty-partner becomes layout-only */
.dusty-partner-section--dark .dusty-partner {
  background: transparent;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  padding: 0;
}
.dusty-partner-section--dark .dusty-partner::before { display: none; }
/* Badge sits on dark section — make it slightly translucent over the section gradient */
.dusty-partner-section--dark .dusty-partner__badge {
  background: transparent;
  border: 1px solid var(--orange);
  backdrop-filter: none;
  box-shadow: 0 0 0 4px rgba(231,61,20,0.18), 0 28px 60px -28px rgba(231,61,20,0.45);
}

/* ---------- Marquee logos (Trusted by industry leaders) ---------- */
.marquee__item--logo {
  font-size: 0;
  padding: 0.2rem 0;
}
.marquee__logo {
  height: clamp(28px, 3.4vw, 44px);
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
  opacity: 0.55;
  transition: opacity var(--d-med, .2s) var(--ease-out, ease);
}
.marquee__item--logo:hover .marquee__logo,
.marquee:hover .marquee__logo:hover {
  opacity: 1;
}
/* Slightly tighter gap when logos are present */
.marquee__track:has(.marquee__item--logo) {
  gap: clamp(2rem, 4vw, 3.6rem);
}
/* Logo on dark backgrounds — flip dark logos to light */
.section--dark .marquee__logo {
  filter: brightness(0) invert(1);
  opacity: 0.7;
}
.section--dark .marquee__item--logo:hover .marquee__logo {
  opacity: 1;
}

/* ---------- Dusty logo inside the Partner block badge ---------- */
.dusty-partner__logo {
  width: 100%;
  height: auto;
  max-height: 72px;
  object-fit: contain;
  display: block;
}
/* Within the dark badge variant (used on index, GC, robotics, and Framing — badge is always dark) */
.dusty-partner__mark { width: auto; min-width: 120px; padding: 0; }
.dusty-partner__badge .dusty-partner__logo { padding: 0 0.2rem; }

/* ---------- Timber project visuals gallery (timber pack page) ---------- */
.timber-gallery-section { padding-block: clamp(2.6rem, 5vw, 4.4rem); }
.timber-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(0.7rem, 1.4vw, 1.2rem);
  margin-top: var(--s-6);
}
.timber-gallery__tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--surface-muted);
  aspect-ratio: 4 / 3;
  grid-column: span 2;
  border: 1px solid var(--hairline);
  transition: transform var(--d-med, .2s) var(--ease-out, ease), box-shadow var(--d-med, .2s) var(--ease-out, ease);
}
.timber-gallery__tile--lg {
  grid-column: span 4;
  grid-row: span 2;
  aspect-ratio: 16 / 11;
}
.timber-gallery__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 480ms var(--ease-out, cubic-bezier(.2,.7,.2,1));
}
.timber-gallery__tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px -24px rgba(30,30,30,0.28);
}
.timber-gallery__tile:hover img {
  transform: scale(1.04);
}
@media (max-width: 900px) {
  .timber-gallery { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .timber-gallery__tile { grid-column: span 2; }
  .timber-gallery__tile--lg { grid-column: span 4; grid-row: auto; aspect-ratio: 16 / 10; }
}
@media (max-width: 560px) {
  .timber-gallery { grid-template-columns: 1fr; }
  .timber-gallery__tile, .timber-gallery__tile--lg { grid-column: span 1; aspect-ratio: 4 / 3; }
}

/* ---------- Service bento — visual upgrade (richer depth, accents, View-service link) ---------- */
/* Orange accent line on left of each card */
.service-bento__card {
  position: relative;
  isolation: isolate;
}
.service-bento__card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--orange);
  opacity: 0;
  transition: opacity var(--d-med, .2s) var(--ease-out, ease);
  z-index: 2;
}
.service-bento__card:hover::before { opacity: 1; }
/* Hero card already has orange border; keep its accent always visible */
.service-bento__card--hero::before { opacity: 1; }

/* Stronger hover: deeper lift + subtle shadow tint */
.service-bento__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -28px rgba(231,61,20,0.30);
}
/* Media area: stronger image hover zoom */
.service-bento__media svg,
.service-bento__media img { transition: transform 480ms var(--ease-out, ease); }
.service-bento__card:hover .service-bento__media svg,
.service-bento__card:hover .service-bento__media img {
  transform: scale(1.04);
}

/* Service number — pill-style for richer feel */
.service-bento__number {
  padding: 0.35rem 0.7rem 0.35rem 0;
  margin-bottom: 0.4rem;
}

/* View-service link at bottom of body — orange link with arrow */
.service-bento__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding: 0.7rem 0;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border-top: 1px solid var(--hairline);
  transition: gap var(--d-med, .2s) var(--ease-out, ease), color var(--d-med, .2s) var(--ease-out, ease);
}
.service-bento__link span { transition: transform var(--d-med, .2s) var(--ease-out, ease); }
.service-bento__card:hover .service-bento__link {
  gap: 0.7rem;
}
.service-bento__card:hover .service-bento__link span {
  transform: translateX(4px);
}
/* Hero card: link is bigger and visually distinct */
.service-bento__card--hero .service-bento__link {
  margin-top: 1.2rem;
  font-size: 1rem;
  border-top-color: rgba(231,61,20,0.25);
}

/* ========================================================================
   SERVICE BENTO — REDESIGN (alternating horizontal rows)
   Applies to all packs except Timber (which uses .phase-flow instead).
   Overrides the earlier grid layout to a single-column, alternating-row layout.
   ======================================================================== */
.service-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.4rem, 2.6vw, 2rem);
  margin-top: var(--s-6);
}

.service-bento__card,
.service-bento__card--hero,
.service-bento__card--full {
  grid-column: span 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  overflow: hidden;
  flex-direction: initial;
  transition: transform var(--d-med) var(--ease-out),
              border-color var(--d-med) var(--ease-out),
              box-shadow var(--d-med) var(--ease-out);
  position: relative;
  isolation: isolate;
}
.service-bento__card--hero {
  background: linear-gradient(120deg, var(--white), #fdfaf8);
  border-color: var(--orange);
}
/* Alternate sides for editorial rhythm */
.service-bento > .service-bento__card:nth-child(even) {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}
.service-bento > .service-bento__card:nth-child(even) .service-bento__media { order: 2; }
.service-bento > .service-bento__card:nth-child(even) .service-bento__body { order: 1; }

/* Media area — fills its column, no aspect-ratio constraint */
.service-bento__card .service-bento__media,
.service-bento__card--hero .service-bento__media {
  position: relative;
  aspect-ratio: auto;
  align-self: stretch;
  flex: initial;
  min-height: 280px;
  background: var(--surface-muted);
  overflow: hidden;
}
.service-bento__media svg,
.service-bento__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 480ms var(--ease-out, ease);
}
.service-bento__card:hover .service-bento__media svg,
.service-bento__card:hover .service-bento__media img {
  transform: scale(1.05);
}

/* Body */
.service-bento__card .service-bento__body,
.service-bento__card--hero .service-bento__body {
  padding: clamp(1.8rem, 3vw, 2.6rem);
  display: flex; flex-direction: column;
  justify-content: center;
  flex: initial;
  min-width: 0;
}

/* Service number — bigger and more prominent */
.service-bento__number {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 0.7rem;
}
.service-bento__number::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--orange);
  display: inline-block;
}

/* Title — bigger across the board */
.service-bento__title,
.service-bento__card--hero .service-bento__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 600;
  margin-top: 0.2rem;
  line-height: 1.2;
  color: var(--ink);
}
.service-bento__desc,
.service-bento__card--hero .service-bento__desc {
  color: var(--ink-muted);
  margin-top: 0.85rem;
  line-height: 1.6;
  font-size: 1rem;
  max-width: 60ch;
}

/* Bullets — tighter, more refined */
.service-bento__list,
.service-bento__card--hero .service-bento__list {
  margin-top: 1.1rem;
  display: grid; gap: 0.55rem;
  padding: 0; list-style: none;
}
.service-bento__list li,
.service-bento__card--hero .service-bento__list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--ink-muted);
  font-size: 0.94rem;
  line-height: 1.5;
}
.service-bento__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(-45deg);
  transform-origin: 0 100%;
}

/* View service link — bigger, more prominent at card bottom */
.service-bento__link {
  margin-top: 1.5rem;
  padding: 0.8rem 0 0;
  font-size: 1rem;
  border-top: 1px solid var(--hairline);
  align-self: flex-start;
}

/* Hover — deeper, more dramatic */
.service-bento__card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: 0 28px 60px -32px rgba(231,61,20,0.35);
}

/* Orange left-accent stripe (existing rule still applies) */
.service-bento__card::before {
  width: 4px;
}
.service-bento > .service-bento__card:nth-child(even)::before {
  left: auto; right: 0;
}

/* Mobile: collapse to single column with image on top */
@media (max-width: 900px) {
  .service-bento__card,
  .service-bento__card--hero,
  .service-bento__card--full,
  .service-bento > .service-bento__card:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .service-bento > .service-bento__card:nth-child(even) .service-bento__media { order: 0; }
  .service-bento > .service-bento__card:nth-child(even) .service-bento__body { order: 0; }
  .service-bento__card .service-bento__media,
  .service-bento__card--hero .service-bento__media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}

/* ---------- What's Included grid (3×4 light cards) — Electrical VDC page ---------- */
.incl-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.6vw, 1.3rem);
  margin-top: var(--s-6);
}
.incl-card {
  padding: clamp(1.6rem, 2.4vw, 2.2rem);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  background: var(--white);
  position: relative;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  transition: transform var(--d-med, .2s) var(--ease-out, ease), border-color var(--d-med, .2s) var(--ease-out, ease), box-shadow var(--d-med, .2s) var(--ease-out, ease);
}
.incl-card:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
  box-shadow: 0 18px 40px -22px rgba(231,61,20,0.25);
}
.incl-card__num {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 0.55rem;
  display: inline-block;
}
.incl-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  margin: 0;
}
@media (max-width: 900px) { .incl-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) { .incl-grid { grid-template-columns: 1fr; } }

/* ---------- Tool chips ---------- */
.tool-chips {
  display: flex; flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: var(--s-5);
}
.tool-chip {
  display: inline-block;
  padding: 0.5rem 0.95rem;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color var(--d-med, .2s) var(--ease-out, ease), color var(--d-med, .2s) var(--ease-out, ease);
}
.tool-chip:hover { border-color: var(--orange); color: var(--orange); }

/* ---------- Industries mini grid (Electrical VDC page) ---------- */
.industries-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.8vw, 1.4rem);
  margin-top: var(--s-6);
}
.industries-mini-grid .industry-card {
  padding: 1.5rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  min-height: 0;
  transition: transform var(--d-med, .2s) var(--ease-out, ease), border-color var(--d-med, .2s) var(--ease-out, ease);
}
.industries-mini-grid .industry-card:hover { transform: translateY(-3px); border-color: var(--orange); }
.industries-mini-grid .industry-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 0.45rem;
}
.industries-mini-grid .industry-card__desc {
  color: var(--ink-muted);
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 900px) { .industries-mini-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) { .industries-mini-grid { grid-template-columns: 1fr; } }

/* ---------- Best-VDC final line (above quote on Electrical VDC page) ---------- */
.best-vdc-line {
  margin-top: var(--s-7);
  text-align: center;
  padding: clamp(1.6rem, 2.6vw, 2.2rem);
  border-top: 1px solid var(--hairline);
}
.best-vdc-line p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 500;
  color: var(--ink);
  max-width: 36ch;
  margin: 0 auto;
  line-height: 1.3;
}

/* ---------- Small heading for service-bento (MEP pack inner labels) ---------- */
.service-bento__body .service-bento__small {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin: 1.1rem 0 0.4rem;
  font-family: var(--font-display);
}

/* ---------- Best-for list (5 items, no checkmark indent) ---------- */
.best-for-list { margin-top: var(--s-5); }

/* ---------- Timber phase-block: contextual visual (image) inside each phase card ---------- */
.phase-block {
  grid-template-columns: 140px 1fr 260px;
  gap: var(--s-5);
}
.phase-block__visual {
  order: 3;
  align-self: stretch;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface-muted);
  aspect-ratio: 4 / 3;
  height: 100%;
  max-height: 260px;
}
.phase-block__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms var(--ease-out, ease);
}
.phase-block:hover .phase-block__visual img { transform: scale(1.03); }
@media (max-width: 1000px) {
  .phase-block {
    grid-template-columns: 120px 1fr;
  }
  .phase-block__visual {
    grid-column: 1 / -1;
    order: 1;
    height: auto;
    max-height: 340px;
    aspect-ratio: 16 / 9;
  }
}
@media (max-width: 620px) {
  .phase-block { grid-template-columns: 1fr; }
}

/* ---------- Why Clients section — LIGHT variant (Electrical VDC page) ---------- */
.why-clients-section--light {
  background: linear-gradient(180deg, var(--white) 0%, #fdfaf8 100%);
}
.why-clients-section--light::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(231,61,20,0.10), transparent 42%),
    radial-gradient(circle at 85% 80%, rgba(231,61,20,0.07), transparent 45%);
  pointer-events: none;
}
.why-clients-section--light .lead { color: var(--ink-muted); }
.why-clients-section--light h2 { color: var(--ink); }
.why-clients-section--light .eyebrow { color: var(--orange); }
.why-clients-section--light .why-clients-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  backdrop-filter: none;
}
.why-clients-section--light .why-clients-card:hover {
  border-color: var(--orange);
  background: #fefefe;
  box-shadow: 0 24px 50px -28px rgba(231,61,20,0.20);
}
.why-clients-section--light .why-clients-card__num {
  color: rgba(231,61,20,0.16);
}
.why-clients-section--light .why-clients-card__title { color: var(--ink); }
.why-clients-section--light .why-clients-card__desc { color: var(--ink-muted); }

/* ---------- Best-VDC standalone pull-quote (Electrical VDC page) ---------- */
.best-vdc-section {
  padding-block: clamp(3rem, 6vw, 5rem);
  background: transparent;
}
.best-vdc-pull {
  position: relative;
  padding: clamp(2.4rem, 5vw, 4rem) clamp(2rem, 4vw, 3.5rem);
  text-align: center;
  border-block: 1px solid var(--hairline);
  overflow: hidden;
}
.best-vdc-pull::before,
.best-vdc-pull::after {
  content: "";
  position: absolute;
  width: 40%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  top: 50%;
  opacity: 0.6;
}
.best-vdc-pull::before { left: -10%; }
.best-vdc-pull::after { right: -10%; }
.best-vdc-pull__mark {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--orange);
  margin: 0 auto 1.4rem;
  background: rgba(231,61,20,0.10);
  border: 1px solid rgba(231,61,20,0.35);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
.best-vdc-pull__mark svg { width: 22px; height: 22px; }
.best-vdc-pull__text {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  max-width: 26ch;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.best-vdc-pull__accent {
  width: 60px; height: 3px;
  background: var(--orange);
  border-radius: 3px;
  margin: 1.6rem auto 0;
  position: relative; z-index: 1;
}

/* ---------- Timber pack: revert phase-block to 2-column (140px LOD + content) ---------- */
.phase-block {
  grid-template-columns: 140px 1fr;
}
.phase-block__visual { display: none; }



/* ---------- Tech Showcase (Framing & Timber packs) — 3-card grid Software/Platforms/Machines ---------- */
.tech-showcase-section { padding-block: clamp(2.6rem, 5vw, 4.4rem); }
.tech-showcase__h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 500;
  margin-top: 0.3rem;
}
.tech-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
  margin-top: var(--s-6);
}
.tech-showcase__card {
  padding: clamp(1.6rem, 2.6vw, 2.2rem);
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
  transition: transform var(--d-med, .2s) var(--ease-out, ease), border-color var(--d-med, .2s) var(--ease-out, ease), box-shadow var(--d-med, .2s) var(--ease-out, ease);
}
.tech-showcase__card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--orange);
  opacity: 0.9;
}
.tech-showcase__card:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
  box-shadow: 0 24px 50px -28px rgba(231,61,20,0.30);
}
.tech-showcase__label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--hairline);
}
.tech-showcase__list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 0.55rem;
}
.tech-showcase__list li {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.35;
  padding-left: 1.4rem;
  position: relative;
}
.tech-showcase__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55rem;
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 2px;
  transform: rotate(45deg);
  opacity: 0.65;
}
@media (max-width: 900px) { .tech-showcase { grid-template-columns: 1fr; } }

/* ---------- US Map section (main page) ---------- */
.us-map-section { padding-block: clamp(2.25rem, 4.5vw, 3.5rem); }
.us-map-wrap {
  margin-top: var(--s-5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
}
.us-map {
  width: 100%;
  max-width: 720px;
  aspect-ratio: 959 / 593;
  height: auto;
  display: block;
  margin: 0 auto;
  background: transparent;
  overflow: visible;
}
/* Visually-hidden state names — kept for SEO and screen readers */
.us-map__sr {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap; border: 0;
}
.us-map__pin { transition: transform var(--d-med, .2s) var(--ease-out, ease); }
.us-map__pin-ring {
  transform-origin: center;
  transform-box: fill-box;
  animation: us-map-pulse 2.4s ease-out infinite;
}
@keyframes us-map-pulse {
  0% { r: 8; opacity: 0.55; }
  100% { r: 20; opacity: 0; }
}
.us-map__label {
  font-family: var(--font-display, sans-serif);
  font-size: 14px;
  font-weight: 600;
  fill: #1e1e1e;
  letter-spacing: 0.02em;
}
.us-map__pin:hover circle { fill: #d83612; }
.us-map__pin:hover .us-map__label { fill: var(--orange); }

.us-map__legend {
  display: flex; align-items: center; gap: 0.6rem;
  margin-top: 0.7rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
}
.us-map__legend-pin {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  position: relative;
}
.us-map__legend-pin span {
  width: 10px; height: 10px;
  background: var(--orange);
  border-radius: 50%;
  display: block;
  box-shadow: 0 0 0 6px rgba(231,61,20,0.20);
}
.us-map__list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1.2rem;
  align-content: start;
}
.us-map__list li {
  font-size: 0.94rem;
  color: var(--ink-muted);
  padding: 0.35rem 0;
}
.us-map__code {
  display: inline-block;
  min-width: 32px;
  padding: 0.18rem 0.45rem;
  background: rgba(231,61,20,0.10);
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  border-radius: 6px;
  margin-right: 0.5rem;
  text-align: center;
}
@media (max-width: 900px) {
  .us-map-wrap { grid-template-columns: 1fr; }
  .us-map__list { grid-template-columns: 1fr; }
}

/* ========================================================================
   TIMBER PACK — Why us + Four phases with bg image
   ======================================================================== */

/* ---------- Why us: 2-column media/content layout, fills the container ---------- */
.timber-why-section { padding-block: clamp(3rem, 6vw, 5rem); }
.timber-why {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(1.8rem, 4vw, 3.5rem);
  align-items: center;
}
.timber-why__media {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4 / 3.2;
  background: var(--surface-muted);
  box-shadow: 0 22px 60px -30px rgba(30,30,30,0.25);
}
.timber-why__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms var(--ease-out, ease);
}
.timber-why:hover .timber-why__media img { transform: scale(1.03); }
.timber-why__content { display: flex; flex-direction: column; gap: 1.1rem; }
.timber-why__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.15;
  margin: 0.3rem 0 0.5rem;
}
.timber-why__content .lead { margin: 0; }
.timber-why__content .lead p { margin: 0 0 0.9rem; color: var(--ink-muted); }
.timber-why__content .lead p:last-child { margin-bottom: 0; }
.timber-why__content .timber-experience-strip {
  margin-top: 1rem;
  padding-top: 1.2rem;
}
@media (max-width: 900px) {
  .timber-why { grid-template-columns: 1fr; }
  .timber-why__media { aspect-ratio: 16 / 10; }
}

/* ---------- Four phases: full-width background image on section ---------- */
.phase-flow-section--bg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.phase-flow-section__bg {
  position: absolute; inset: 0;
  z-index: -2;
  pointer-events: none;
}
.phase-flow-section__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
/* Scrim to keep phase-flow content readable */
.phase-flow-section__scrim {
  position: absolute; inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(245,245,245,0.84) 0%, rgba(245,245,245,0.76) 30%, rgba(245,245,245,0.72) 60%, rgba(245,245,245,0.84) 100%),
    linear-gradient(90deg, rgba(245,245,245,0.50), rgba(245,245,245,0.20) 40%, rgba(245,245,245,0.20) 60%, rgba(245,245,245,0.50));
}
/* Enhance phase-block cards with a slight glass feel against the bg image */
.phase-flow-section--bg .phase-block {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  border-color: rgba(255,255,255,0.6);
  box-shadow: 0 12px 40px -22px rgba(30,30,30,0.20);
}
.phase-flow-section--bg .phase-block:hover { border-color: var(--orange); }

/* ---------- What's Included: icon + orange accent ---------- */
.incl-card__icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(231,61,20,0.15), rgba(231,61,20,0.03));
  border: 1px solid var(--orange);
  border-radius: 12px;
  color: var(--orange);
  transition: background var(--d-med, .2s) var(--ease-out, ease);
}
.incl-card__icon svg { width: 22px; height: 22px; }
.incl-card:hover .incl-card__icon {
  background: linear-gradient(135deg, rgba(231,61,20,0.25), rgba(231,61,20,0.08));
}
.incl-card__title {
  color: var(--ink);
}
.incl-card:hover .incl-card__title {
  color: var(--orange);
}

/* ---------- Best for: pill card grid (Electrical VDC page) ---------- */
.best-for-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.6vw, 1.2rem);
  margin-top: var(--s-6);
}
.best-for-card {
  padding: clamp(1.3rem, 2vw, 1.7rem);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  background: var(--white);
  display: flex; flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
  position: relative;
  transition: transform var(--d-med, .2s) var(--ease-out, ease), border-color var(--d-med, .2s) var(--ease-out, ease);
}
.best-for-card__title { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--ink); }
.best-for-card__desc { font-size: 0.88rem; color: var(--ink-muted); line-height: 1.5; }

/* ============================================================
   How we work — workflow steps (GC light+gradient, concrete/engineering dark)
   ============================================================ */
.workflow-section--gradient { background: linear-gradient(160deg, #ffffff 0%, #fff4ef 55%, #ffe7de 100%); }
.workflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: var(--s-6);
}
.workflow__step {
  position: relative;
  padding: clamp(1.4rem, 2.2vw, 1.9rem);
  background: var(--white);
  border: 1px solid var(--hairline);
  border-top: 3px solid var(--orange);
  border-radius: var(--r-md);
  transition: transform var(--d-med) var(--ease-out), box-shadow var(--d-med) var(--ease-out);
}
.workflow__step:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -24px rgba(30,30,30,0.35); }
.workflow__num {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.8rem, 4.4vw, 3.6rem); line-height: 1; letter-spacing: -0.04em;
  color: var(--orange);
}
.workflow__title {
  font-family: var(--font-display); font-weight: 300;
  font-size: 1.2rem; letter-spacing: -0.01em; line-height: 1.2;
  margin-top: 0.7rem; color: var(--ink);
}
.workflow__desc { margin-top: 0.55rem; font-size: 0.92rem; line-height: 1.55; color: var(--ink-muted); }
.workflow--dark .workflow__step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-top: 3px solid var(--orange);
  backdrop-filter: blur(8px);
}
.workflow--dark .workflow__step:hover { background: rgba(255,255,255,0.06); }
.workflow--dark .workflow__title { color: #f5f5f5; }
.workflow--dark .workflow__desc { color: rgba(245,245,245,0.72); }
@media (max-width: 860px) { .workflow { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .workflow { grid-template-columns: 1fr; } }

/* ============================================================
   Video embed (See our work) — responsive 16:9
   ============================================================ */
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--hairline);
  background: #000;
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.section-cta-center { display: flex; justify-content: center; margin-top: 1.4rem; }

/* Video duo — up to 2 embeds side by side */
.video-duo { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: clamp(1rem, 2vw, 1.6rem); margin-top: var(--s-6); }
.video-duo .video-embed { margin: 0; max-width: none; }
@media (max-width: 760px) { .video-duo { grid-template-columns: 1fr; } }

/* ============================================================
   What's included — dark gradient section (bento kept)
   ============================================================ */
.service-bento-section--dark {
  background: linear-gradient(165deg, #1e1e1e 0%, #251a15 55%, #2c1712 100%);
  padding-block: clamp(3rem, 5vw, 5rem);
}
.service-bento-section--dark .eyebrow { color: #ff8a5c; }
.service-bento-section--dark .section-head h2,
.service-bento-section--dark h2 { color: #f5f5f5; }
.service-bento-section--dark .section-head .lead,
.service-bento-section--dark .lead { color: rgba(245,245,245,0.68); }
.service-bento-section--dark .service-bento__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  backdrop-filter: blur(8px);
}
.service-bento-section--dark .service-bento__card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(231,61,20,0.5);
}
.service-bento-section--dark .service-bento__title { color: #f5f5f5; }
.service-bento-section--dark .service-bento__desc { color: rgba(245,245,245,0.72); }
.service-bento-section--dark .service-bento__list li { color: rgba(245,245,245,0.82); }
.service-bento-section--dark .service-bento__number { color: var(--orange); }
/* timber phase-flow on dark */
.service-bento-section--dark .phase-block,
.service-bento-section--dark .phase-block__title,
.service-bento-section--dark .phase-block__desc,
.service-bento-section--dark .phase-flow__title { color: #f5f5f5; }
.service-bento-section--dark .phase-block__desc { color: rgba(245,245,245,0.72); }

/* ============================================================
   Our stack — monogram tiles (interim until software SVG logos added)
   ============================================================ */
.tech-showcase__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.55rem;
  margin-top: 0.95rem;
  padding: 0;
}
.tech-showcase__list li {
  list-style: none;
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  background: var(--surface);
  font-size: 0.82rem;
  line-height: 1.15;
  color: var(--ink);
  transition: border-color var(--d-med) var(--ease-out), box-shadow var(--d-med) var(--ease-out), transform var(--d-med) var(--ease-out);
}
.tech-showcase__list li::before { content: none; }
.tech-showcase__list li:hover {
  border-color: rgba(231,61,20,0.5);
  box-shadow: 0 8px 20px -14px rgba(30,30,30,0.45);
  transform: translateY(-2px);
}
.tech-mono {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 9px;
  background: var(--ink);
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
}

/* ============================================================
   Starter guide — sticky scroll section (What this means for you)
   ============================================================ */
.sticky-scroll {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(1.6rem, 4vw, 3.5rem);
  align-items: start;
  margin-top: var(--s-6);
}
.sticky-scroll__left { position: sticky; top: 96px; align-self: start; }
.sticky-scroll__left .eyebrow { margin-bottom: var(--s-3); }
.sticky-scroll__lead { color: var(--ink-muted); margin-top: var(--s-4); line-height: 1.6; max-width: 42ch; }
.sticky-scroll__right { display: flex; flex-direction: column; gap: clamp(1rem, 2vw, 1.6rem); }
.sticky-panel {
  position: relative;
  padding: clamp(1.4rem, 2.4vw, 2rem);
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  box-shadow: 0 14px 40px -30px rgba(30,30,30,0.22);
}
.sticky-panel__k {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2rem, 3.4vw, 2.8rem); line-height: 1; letter-spacing: -0.04em;
  color: var(--orange); margin-bottom: 0.6rem;
}
.sticky-panel h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--ink); }
.sticky-panel p { color: var(--ink-muted); line-height: 1.6; font-size: 0.98rem; }
.sticky-panel p strong { color: var(--ink); }
@media (max-width: 860px) {
  .sticky-scroll { grid-template-columns: 1fr; }
  .sticky-scroll__left { position: static; }
}

/* ============================================================
   Starter guide — dark gradient section (What you get, Common myths)
   ============================================================ */
.starter-dark { background: linear-gradient(165deg, #1e1e1e 0%, #251a15 55%, #2c1712 100%); }
.starter-dark .eyebrow { color: #ff8a5c; }
.starter-dark h2, .starter-dark h3 { color: #f5f5f5; }
.starter-dark .lead, .starter-dark .lead p { color: rgba(245,245,245,0.7); }
.starter-dark .feature-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  transition: transform var(--d-med) var(--ease-out), border-color var(--d-med) var(--ease-out), background var(--d-med) var(--ease-out);
}
.starter-dark .feature-item:hover { transform: translateY(-3px); border-color: rgba(231,61,20,0.5); background: rgba(255,255,255,0.06); }
.starter-dark .feature-item__label { color: #f5f5f5; }
.starter-dark .feature-item__desc { color: rgba(245,245,245,0.72); }
.starter-dark .feature-item__icon { color: var(--orange); background: rgba(231,61,20,0.16); border-color: rgba(231,61,20,0.3); }
.starter-dark .features-grid--starter .feature-item--link:hover { border-color: rgba(231,61,20,0.6); }
/* myths on dark */
.starter-dark .myth-row {
  border-radius: var(--r-md); overflow: hidden;
  transition: transform var(--d-med) var(--ease-out), box-shadow var(--d-med) var(--ease-out);
}
.starter-dark .myth-row:hover { transform: translateY(-3px); box-shadow: 0 18px 44px -26px rgba(0,0,0,0.6); }
.starter-dark .myth-row__col { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.09); }
.starter-dark .myth-row__col--bad { background: rgba(255,255,255,0.02); }
.starter-dark .myth-row__col--good { background: rgba(231,61,20,0.10); }
.starter-dark .myth-row__col p { color: rgba(245,245,245,0.86); }
.starter-dark .myth-row__col--bad p { color: rgba(245,245,245,0.5); }
.starter-dark .myth-row__tag { color: rgba(245,245,245,0.6); }
.starter-dark .myth-row__col--good .myth-row__tag { color: var(--orange); }

/* ============================================================
   Sticky scroll — metric & infographic panels
   ============================================================ */
.sticky-panel--metric { display: flex; flex-direction: column; gap: 0.35rem; }
.sticky-panel__num {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.6rem, 5vw, 3.6rem); line-height: 1; letter-spacing: -0.04em;
  color: var(--orange);
}
.sticky-panel__label { color: var(--ink-muted); font-size: 0.98rem; line-height: 1.4; }
.sticky-panel--chart { display: flex; flex-direction: column; gap: 0.7rem; }
.sticky-panel--chart .sticky-panel__k { margin-bottom: 0; }
.sticky-panel__chart-wrap { display: flex; align-items: center; gap: 1.1rem; }
.sticky-panel__chart-wrap svg { flex-shrink: 0; }
.sticky-panel__cap { color: var(--ink-muted); font-size: 0.92rem; line-height: 1.5; }
.sticky-panel__cap strong { color: var(--ink); }

/* ============================================================
   Sticky scroll — dark panels, compact metrics grid, compare table
   ============================================================ */
.sticky-panel--dark {
  background: linear-gradient(155deg, #1e1e1e 0%, #241813 100%);
  border-color: rgba(255,255,255,0.09);
}
.sticky-panel--dark h3 { color: #f5f5f5; }
.sticky-panel--dark p { color: rgba(245,245,245,0.74); }
.sticky-panel--dark p strong { color: #fff; }

/* compact metrics grid (2 x 2) */
.sticky-metrics { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0.7rem; }
.sticky-metric {
  padding: 1.05rem 1.15rem;
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  background: var(--white);
  transition: transform var(--d-med) var(--ease-out), border-color var(--d-med) var(--ease-out);
}
.sticky-metric:hover { transform: translateY(-2px); border-color: rgba(231,61,20,0.45); }
.sticky-metric__num {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem); line-height: 1; letter-spacing: -0.03em;
  color: var(--orange);
}
.sticky-metric__label { color: var(--ink-muted); font-size: 0.84rem; margin-top: 0.4rem; line-height: 1.35; }

/* comparison table — without BIM vs with BIM */
.sticky-compare {
  padding: clamp(1.3rem, 2.4vw, 1.9rem);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-md);
  background: linear-gradient(155deg, #1e1e1e 0%, #241813 100%);
}
.sticky-compare .eyebrow { margin-bottom: 0.9rem; }
.sticky-compare__head, .sticky-compare__row {
  display: grid; grid-template-columns: 1.5fr 0.85fr 0.85fr; gap: 0.6rem; align-items: center;
}
.sticky-compare__head { padding-bottom: 0.55rem; border-bottom: 1px solid rgba(255,255,255,0.14); }
.sticky-compare__head span { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(245,245,245,0.5); }
.sticky-compare__head span:last-child { color: var(--orange); }
.sticky-compare__row { padding: 0.65rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.sticky-compare__row:last-child { border-bottom: 0; }
.sticky-compare__k { color: rgba(245,245,245,0.82); font-size: 0.9rem; line-height: 1.3; }
.sticky-compare__bad { color: rgba(245,245,245,0.42); font-size: 0.98rem; font-family: var(--font-display); }
.sticky-compare__good { color: var(--orange); font-size: 1.1rem; font-weight: 600; font-family: var(--font-display); letter-spacing: -0.01em; }

/* ============================================================
   Starter hero — cap title to ~3 lines
   ============================================================ */
.hero--guide .hero__title { max-width: 26ch; }

/* ============================================================
   Sticky scroll v2 — bg split, lively hover, animated diagrams, 2-col compare
   ============================================================ */
.sticky-scroll-section {
  background: linear-gradient(180deg, #f6f6f4 0%, #ffffff 38%, #fbf2ec 100%);
}
.sticky-panel { transition: transform .32s var(--ease-out), box-shadow .32s var(--ease-out), border-color .32s var(--ease-out); }
.sticky-panel:hover { transform: translateY(-5px); box-shadow: 0 26px 60px -30px rgba(30,30,30,0.34); border-color: rgba(231,61,20,0.4); }
.sticky-panel--dark { background: linear-gradient(150deg, #1e1e1e 0%, #2a1712 100%); }
.sticky-panel--dark:hover { border-color: rgba(231,61,20,0.55); box-shadow: 0 26px 60px -26px rgba(0,0,0,0.65); }
.sticky-metric { transition: transform .3s var(--ease-out), border-color .3s var(--ease-out), box-shadow .3s var(--ease-out); }
.sticky-metric:hover { transform: translateY(-4px); border-color: rgba(231,61,20,0.5); box-shadow: 0 16px 34px -22px rgba(231,61,20,0.4); }

/* 2-column compare (no metric column) */
.sticky-compare__nums { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-items: baseline; }
.sticky-compare__hdr { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(245,245,245,0.5); }
.sticky-compare__hdr--good { color: var(--orange); }
.sticky-compare__row { padding: 0.85rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.sticky-compare__row:last-child { border-bottom: 0; }
.sticky-compare__big { font-family: var(--font-display); font-weight: 600; line-height: 1; letter-spacing: -0.03em; }
.sticky-compare__big--bad { font-size: clamp(1.7rem, 3.2vw, 2.4rem); color: rgba(245,245,245,0.4); }
.sticky-compare__big--good { font-size: clamp(2.2rem, 4.4vw, 3.1rem); color: var(--orange); }
.sticky-compare__sub { font-size: 0.8rem; color: rgba(245,245,245,0.58); margin-top: 0.35rem; }

/* animated diagram primitives (scroll-driven where supported) */
@keyframes ss-ring-fill { from { stroke-dashoffset: 301.6; } to { stroke-dashoffset: 15.08; } }
@keyframes ss-bar-grow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes ss-line-draw { from { stroke-dashoffset: 560; } to { stroke-dashoffset: 0; } }
@keyframes ss-hbar-grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.ss-ring { animation: ss-ring-fill 2.8s var(--ease-out) both; }
.ss-bar { transform-box: fill-box; transform-origin: bottom; animation: ss-bar-grow 1.5s var(--ease-out) both; }
.ss-bar--b { animation-delay: 0.45s; }
.ss-line { stroke-dasharray: 560; animation: ss-line-draw 2.4s var(--ease-out) both; }
.ss-hbar { transform-box: fill-box; transform-origin: left; animation: ss-hbar-grow 1.5s var(--ease-out) both; }
.ss-hbar--2 { animation-delay: 0.5s; }
.ss-hbar--3 { animation-delay: 1s; }
@supports (animation-timeline: view()) {
  .ss-ring { animation-timeline: view(); animation-range: entry 2% cover 82%; animation-delay: 0s; }
  .ss-bar--a { animation-timeline: view(); animation-range: entry 10% cover 60%; animation-delay: 0s; }
  .ss-bar--b { animation-timeline: view(); animation-range: entry 22% cover 74%; animation-delay: 0s; }
  .ss-line { animation-timeline: view(); animation-range: entry 6% cover 64%; animation-delay: 0s; }
  .ss-hbar--1 { animation-timeline: view(); animation-range: entry 26% cover 64%; animation-delay: 0s; }
  .ss-hbar--2 { animation-timeline: view(); animation-range: entry 34% cover 74%; animation-delay: 0s; }
  .ss-hbar--3 { animation-timeline: view(); animation-range: entry 42% cover 84%; animation-delay: 0s; }
}
@media (prefers-reduced-motion: reduce) {
  .ss-ring, .ss-bar, .ss-line, .ss-hbar { animation: none; transform: none; }
  .ss-ring { stroke-dashoffset: 15.08; }
  .ss-line { stroke-dashoffset: 0; }
}
.sticky-chart-title { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--ink); margin-bottom: 0.2rem; }
.sticky-panel--dark .sticky-chart-title { color: #f5f5f5; }

/* ============================================================
   Adaptive fixes (mobile): accordion tabs, drawer, CTAs, footer logo
   ============================================================ */
/* Footer logo smaller everywhere */
.site-logo--footer .site-logo__img { height: 30px; }

/* Dusty + starter CTAs: button hugs content (no stretched empty space) */
.dusty-partner__cta { align-items: center; }
.dusty-partner__cta .btn { justify-content: center; }
.starter-section__cta .btn { justify-content: center; }
@media (max-width: 640px) {
  .dusty-partner__cta { align-items: stretch; }
  .dusty-partner__cta .btn { width: 100%; }
}

/* Mobile drawer: keep link styling off the button + the logo */
.mobile-drawer a.btn { border-bottom: 0; padding: 0.95rem 1.45rem; margin-top: var(--s-3); justify-content: center; }
.mobile-drawer__head a { border-bottom: 0; padding: 0; }
.mobile-drawer__head .site-logo__img { height: 30px; }

/* What we do / Services by role — mobile accordion (panel opens under its pill) */
@media (max-width: 900px) {
  .tabs { display: flex; flex-direction: column; gap: 8px; }
  .tabs__pills, .tabs__panels { display: contents; }
  .tabs__pills .tab-pill:nth-of-type(1) { order: 1; }  .tabs__panels > .tab-panel:nth-of-type(1) { order: 2; }
  .tabs__pills .tab-pill:nth-of-type(2) { order: 3; }  .tabs__panels > .tab-panel:nth-of-type(2) { order: 4; }
  .tabs__pills .tab-pill:nth-of-type(3) { order: 5; }  .tabs__panels > .tab-panel:nth-of-type(3) { order: 6; }
  .tabs__pills .tab-pill:nth-of-type(4) { order: 7; }  .tabs__panels > .tab-panel:nth-of-type(4) { order: 8; }
  .tabs__pills .tab-pill:nth-of-type(5) { order: 9; }  .tabs__panels > .tab-panel:nth-of-type(5) { order: 10; }
  .tabs__pills .tab-pill:nth-of-type(6) { order: 11; } .tabs__panels > .tab-panel:nth-of-type(6) { order: 12; }
  .tabs__pills .tab-pill:nth-of-type(7) { order: 13; } .tabs__panels > .tab-panel:nth-of-type(7) { order: 14; }
  .tabs__panels > .tab-panel.is-active { margin: 2px 0 16px; }
}

/* Mobile drawer: allow scrolling when content is taller than the screen */
.mobile-drawer {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  gap: var(--s-3);
  padding-block: var(--s-5);
}
.mobile-drawer a { padding: 0.65rem 0; }
.mobile-drawer__head { position: sticky; top: 0; background: var(--surface); padding-bottom: 0.4rem; z-index: 1; }

/* Our stack — real software logos (fallback: monogram tile) */
.tech-logo {
  width: 42px; height: 28px;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

/* Bento media that must not stretch the card (per-card opt-in) */
.service-bento__card .service-bento__media--fixed,
.service-bento__card--hero .service-bento__media--fixed {
  align-self: stretch;
  aspect-ratio: auto;
  min-height: 280px;
  max-height: 460px;
}

/* Team card avatar with photo */
.team-card__avatar { overflow: hidden; }
.team-card__avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
