/* ============================================
   VUELAB — Variant B (plain HTML/CSS/JS)
   Shared tokens + primitives + variant B overrides
   ============================================ */

@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Instrument+Serif:ital@0;1&display=swap");

:root {
  --ink:          #0B0B0C;
  --ink-soft:     #1D1D1F;
  --ink-mid:      #2A2A2D;
  --ink-500:      #4A4A4F;
  --ink-400:      #6E6E73;
  --ink-300:      #9A9A9F;
  --ink-200:      #C7C6C1;
  --ink-100:      #E4E2DB;

  --paper:        #F7F3E9;
  --paper-soft:   #FDFBF5;
  --paper-warm:   #EFE9D8;
  --paper-deep:   #E6DEC7;

  --cyan:         #0EB4CE;
  --cyan-hover:   #0892A8;
  --cyan-soft:    #D4F2F7;

  --accent:       var(--cyan);
  --accent-hover: var(--cyan-hover);
  --accent-soft:  var(--cyan-soft);
  --muted:        var(--ink-400);
  --muted-dark:   var(--ink-500);
  --rule:         color-mix(in oklab, var(--ink) 18%, transparent);
  --rule-soft:    color-mix(in oklab, var(--ink) 10%, transparent);

  --serif:   "Instrument Serif", "GT Sectra", "Tiempos Headline", Georgia, serif;
  --display: "Outfit", "Inter", system-ui, sans-serif;
  --sans:    "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { margin: 0; padding: 0; background: #0e0e0c; }
html { scroll-behavior: smooth; }
body { font-family: "Source Sans 3", sans-serif; }

.vl-root {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}
.vl-root a { color: inherit; }
.vl-root em { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -0.005em; }
.vl-root img { max-width: 100%; display: block; }

/* ── NAV ─────────────────────────────────── */
.vl-nav {
  padding: 22px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--rule-soft);
  background: color-mix(in oklab, var(--paper) 92%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky; top: 0; z-index: 50;
}
.vl-logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.vl-logo svg { height: 22px; width: auto; display: block; }
.vl-logo-img { height: 38.5px; width: auto; display: block; }
.vl-footer .vl-logo-img { height: 32px; }
.vl-nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 14px;
  font-family: var(--sans);
}
.vl-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.18);
  background: transparent;
  color: inherit;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.vl-nav-toggle span {
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.vl-nav-mobile-cta {
  display: none;
}
.vl-nav.nav-open .vl-nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.vl-nav.nav-open .vl-nav-toggle span:nth-child(2) { opacity: 0; }
.vl-nav.nav-open .vl-nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.vl-nav-item { position: relative; }
.vl-nav-dropdown {
  padding: 14px 0;
  margin: -14px 0;
}
.vl-nav-dropdown::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  height: 22px;
}
.vl-nav-links a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.18s;
}
.vl-nav-links a:hover { color: var(--accent); }
.vl-nav-links > a,
.vl-nav-dropdown-trigger {
  position: relative;
}
.vl-nav-links > a:not(.vl-nav-cta)::after,
.vl-nav-dropdown-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}
.vl-nav-links > a.is-current:not(.vl-nav-cta),
.vl-nav-dropdown-trigger.is-current {
  color: var(--accent);
}
.vl-nav-links > a.is-current:not(.vl-nav-cta)::after,
.vl-nav-dropdown-trigger.is-current::after {
  transform: scaleX(1);
}
.vl-nav-new-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.vl-nav-new-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 7px 2px;
  border: 1px solid rgba(16, 195, 220, 0.45);
  border-radius: 999px;
  background: rgba(16, 195, 220, 0.12);
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateY(-7px);
}
.vl-nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.vl-nav-dropdown-caret {
  font-size: 12px;
  line-height: 1;
  opacity: 0.6;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.vl-nav-dropdown:hover .vl-nav-dropdown-caret,
.vl-nav-dropdown:focus-within .vl-nav-dropdown-caret {
  transform: rotate(45deg);
  opacity: 1;
}
.vl-nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: -18px;
  width: min(420px, calc(100vw - 48px));
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(12, 13, 14, 0.12);
  box-shadow: 0 24px 70px rgba(0,0,0,0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 80;
}
.vl-nav-dropdown:hover .vl-nav-dropdown-panel,
.vl-nav-dropdown:focus-within .vl-nav-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.vl-nav-overview {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 0 14px;
}
.vl-nav-overview-title,
.vl-nav-service-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}
.vl-nav-overview-copy,
.vl-nav-service-desc {
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted-dark);
}
.vl-nav-dropdown-divider {
  height: 1px;
  background: var(--rule-soft);
  margin-bottom: 8px;
}
.vl-nav-service-link {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 10px 0;
}
.vl-nav-service-thumb {
  width: 56px;
  height: 56px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--paper-warm);
}
.vl-nav-service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vl-nav-service-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.vl-nav-service-link:hover .vl-nav-service-title,
.vl-nav-service-link:hover .vl-nav-service-desc,
.vl-nav-overview:hover .vl-nav-overview-title,
.vl-nav-overview:hover .vl-nav-overview-copy {
  color: var(--accent);
}
.vl-nav-service-link.is-current .vl-nav-service-title,
.vl-nav-service-link.is-current .vl-nav-service-desc,
.vl-nav-overview.is-current .vl-nav-overview-title,
.vl-nav-overview.is-current .vl-nav-overview-copy {
  color: var(--accent);
}
.vl-nav-service-link.is-current .vl-nav-service-thumb {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.vl-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--accent);
  color: #fff !important;
  font-weight: 500;
  font-size: 14px;
  transition: background 0.2s, color 0.2s;
}
.vl-nav-cta:hover { background: var(--accent-hover); color: #fff !important; }
.vl-nav-cta.is-current {
  box-shadow: inset 0 -3px 0 rgba(255,255,255,0.45);
}
.vl-nav-cta-arrow { transition: transform 0.25s; }
.vl-nav-cta:hover .vl-nav-cta-arrow { transform: translateX(3px); }

/* ── TYPE ────────────────────────────────── */
.vl-display-xl {
  font-family: var(--display);
  font-size: clamp(48px, 7.6vw, 112px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.vl-display-lg {
  font-family: var(--display);
  font-size: clamp(40px, 5.6vw, 84px);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.022em;
  text-wrap: balance;
}
.vl-display-md {
  font-family: var(--display);
  font-size: clamp(34px, 4.6vw, 68px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.018em;
  text-wrap: balance;
}
.vl-display-sm {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.012em;
}
.vl-eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 22px;
  display: inline-flex; align-items: center; gap: 12px;
}

/* ── BUTTONS / LINKS ─────────────────────── */
.vl-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.12s;
  cursor: pointer;
}
.vl-btn:hover { background: var(--ink-mid); border-color: var(--ink-mid); }
.vl-btn:active { transform: translateY(1px); }
.vl-btn-ghost { background: transparent; color: var(--ink); }
.vl-btn-ghost:hover { background: var(--ink); color: var(--paper); }
.vl-btn-lg { padding: 18px 30px; font-size: 15px; }
.vl-btn-arrow { font-size: 15px; transition: transform 0.25s; display: inline-block; }
.vl-btn:hover .vl-btn-arrow { transform: translateX(4px); }

.vl-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--accent);
  transition: gap 0.25s, color 0.18s;
}
.vl-link:hover { gap: 14px; color: var(--accent-hover); border-color: var(--accent-hover); }

/* ── CONTAINERS ──────────────────────────── */
.vl-container { max-width: 1240px; margin: 0 auto; }
.vl-container-narrow { max-width: 860px; margin: 0 auto; }

/* ── SCROLL REVEAL ───────────────────────── */
.vl-reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.vl-reveal.in {
  opacity: 1;
  transform: none;
}

/* ── FOOTER ──────────────────────────────── */
.vl-footer {
  padding: 72px 40px 32px;
  border-top: 1px solid var(--rule-soft);
  background: var(--paper);
}
.vl-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
.vl-footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  color: var(--muted-dark);
  max-width: 24ch;
  margin-top: 16px;
}
.vl-footer-col-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 18px;
}
.vl-footer-nav { display: flex; flex-direction: column; gap: 10px; }
.vl-footer-nav a {
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.18s;
}
.vl-footer-nav a:hover { color: var(--accent); }
.vl-footer-meta {
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}
.vl-footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid var(--rule-soft);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 13px;
  color: var(--muted);
}
.vl-footer-bottom a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s ease;
}
.vl-footer-bottom a:hover { color: var(--accent); }

/* ── LOGO MARQUEE ────────────────────────── */
.vl-marquee {
  overflow: hidden;
  padding: 32px 0;
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
  background: var(--paper);
}
.vl-marquee-track {
  display: flex;
  gap: 72px;
  animation: marquee 60s linear infinite;
  width: max-content;
  align-items: center;
}
.vl-marquee img {
  height: 28px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  opacity: 0.55;
  filter: grayscale(1);
  transition: opacity 0.25s, filter 0.25s;
  flex-shrink: 0;
}
.vl-marquee img:hover { opacity: 1; filter: none; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   VARIANT B — dark-first manifesto
   ============================================ */
.vb-root { background: var(--ink); color: var(--paper); }
.vb-root .vl-nav { background: var(--ink); border-bottom-color: rgba(255,255,255,0.08); }
.vb-root .vl-logo, .vb-root .vl-nav-links a { color: var(--paper); }
.vb-root .vl-nav-links a:hover { color: var(--accent); }
.vb-root .vl-nav-dropdown-panel a { color: var(--ink); }
.vb-root .vl-nav-dropdown-panel a:hover { color: var(--accent); }
.vb-root .vl-nav-new-badge { color: var(--accent); }
.vb-root .vl-nav-cta { background: var(--accent); color: #fff !important; }
.vb-root .vl-nav-cta:hover { background: var(--accent-hover); color: #fff !important; }

/* HERO */
.vb-hero { padding: 60px 40px 0; position: relative; }
.vb-hero-main {
  display: grid; grid-template-columns: 1fr 420px;
  gap: 80px; align-items: end;
  padding-bottom: 40px;
}
.vb-hero-main h1 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(72px, 11vw, 180px); line-height: 0.88; letter-spacing: -0.035em;
  color: var(--paper);
}
.vb-hero-main h1 em { color: var(--accent); }
.vb-hero-right {
  display: flex; flex-direction: column;
  gap: 32px; padding-bottom: 20px;
}
.vb-hero-sub {
  font-family: var(--sans); font-style: normal; font-weight: 400;
  font-size: 32px; line-height: 1.32; color: rgba(255,255,255,0.88);
}
.vb-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.vb-hero .vl-btn { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.vb-hero .vl-btn:hover { background: var(--accent); color: var(--paper); border-color: var(--accent); }
.vb-hero .vl-btn-ghost { background: transparent; color: var(--paper); border-color: rgba(255,255,255,0.3); }
.vb-hero .vl-btn-ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.vb-hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.vb-hero-stat { padding: 0 32px; border-right: 1px solid rgba(255,255,255,0.08); }
.vb-hero-stat:first-child { padding-left: 0; }
.vb-hero-stat:last-child  { border-right: none; padding-right: 0; }
.vb-hero-stat-num {
  font-family: var(--serif); font-weight: 300;
  font-size: 64px; line-height: 1; letter-spacing: -0.03em;
  color: var(--paper); margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.vb-hero-stat-num em { color: var(--accent); font-style: normal; }
.vb-hero-stat-num .vb-yrs {
  font-size: 20px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); font-family: var(--sans);
}
.vb-hero-stat-label {
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); line-height: 1.4;
}

/* REEL — full bleed */
.vb-reel {
  position: relative;
  height: 80vh; min-height: 640px; max-height: 820px;
  overflow: hidden;
  cursor: default;
}
.vb-reel img,
.vb-reel-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.vb-reel:hover .vb-reel-video { transform: scale(1.03); }
.vb-reel::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.4) 100%);
}

/* MANIFESTO — light section */
.vb-manifesto { background: var(--paper); color: var(--ink); padding: 140px 40px; }
.vb-manifesto-inner { max-width: 1100px; margin: 0 auto; }
.vb-manifesto-eyebrow {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 48px; font-weight: 500;
  display: flex; align-items: center; gap: 12px;
}
.vb-manifesto-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--accent); }
.vb-manifesto-text {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(40px, 5.2vw, 76px); line-height: 1.08; letter-spacing: -0.025em;
  color: var(--ink);
}
.vb-manifesto-text em { color: var(--accent); }
.vb-manifesto-text span { color: var(--muted); }

.vb-man-trio {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 64px; margin-top: 96px;
  padding-top: 48px; border-top: 1px solid var(--rule-soft);
}
.vb-man-trio h4 { font-family: var(--serif); font-weight: 400; font-style: italic; font-size: 26px; letter-spacing: -0.01em; margin-bottom: 16px; color: var(--ink); }
.vb-man-trio p { font-size: 17px; line-height: 1.65; color: var(--muted-dark); }

/* DEPTH STRIP */
.vb-depth-strip {
  background: var(--paper); color: var(--ink);
  padding: 0 40px 120px;
  overflow: hidden;
}
.vb-depth-scene {
  position: relative;
  max-width: 1240px;
  height: 78vh;
  min-height: 620px;
  max-height: 980px;
  margin: 0 auto;
  border-top: 1px solid var(--rule-soft);
  perspective: 1200px;
}
.vb-depth-plane {
  position: absolute;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--paper-warm);
  box-shadow: 0 28px 80px rgba(14, 32, 54, 0.2);
  transform: translate3d(0, var(--parallax-shift, 0px), var(--depth-z, 0px)) rotate(var(--plane-rotate, 0deg));
  transition: transform 0.6s cubic-bezier(0.22,0.61,0.36,1);
  will-change: transform;
}
.vb-depth-plane img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.vb-depth-plane-1 { width: 34%; left: 4%; top: 10%; --depth-z: 80px; --plane-rotate: -2deg; z-index: 4; }
.vb-depth-plane-2 { width: 24%; left: 33%; top: 22%; --depth-z: 170px; --plane-rotate: 2deg; z-index: 7; }
.vb-depth-plane-3 { width: 30%; right: 7%; top: 12%; --depth-z: 20px; --plane-rotate: 1deg; z-index: 3; }
.vb-depth-plane-4 { width: 28%; left: 13%; bottom: 12%; --depth-z: 130px; --plane-rotate: 1.5deg; z-index: 6; }
.vb-depth-plane-5 { width: 22%; left: 55%; bottom: 8%; --depth-z: 220px; --plane-rotate: -2.5deg; z-index: 8; }
.vb-depth-plane-6 { width: 20%; right: 3%; bottom: 25%; --depth-z: 90px; --plane-rotate: 3deg; z-index: 5; }
.vb-depth-plane-7 { width: 18%; left: 57%; top: 2%; --depth-z: -40px; --plane-rotate: -1deg; z-index: 2; opacity: 0.8; }

/* SOLUTION */
.vb-solution { background: var(--paper); color: var(--ink); padding: 0 40px 140px; text-align: center; }
.vb-solution .vl-container-narrow { border-top: 1px solid var(--rule-soft); padding-top: 120px; }
.vb-solution .vl-eyebrow { justify-content: center; margin-bottom: 24px; }
.vb-solution h2 { margin: 0 auto 28px; max-width: 20ch; }
.vb-solution h2 em { color: var(--accent); }
.vb-solution p { font-size: 20px; color: var(--muted-dark); line-height: 1.55; max-width: 54ch; margin: 0 auto; }

/* SERVICES */
.vb-services { background: var(--ink); color: var(--paper); padding: 140px 40px; }
.vb-services .vl-eyebrow { color: var(--accent); }
.vb-services-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 80px; margin-bottom: 100px; }
.vb-services-head h2 { max-width: 16ch; color: var(--paper); }
.vb-services-head h2 em { color: var(--accent); }
.vb-services-head p { font-size: 20px; line-height: 1.58; color: rgba(255,255,255,0.74); max-width: 36ch; }

.vb-svc-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; padding: 56px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  align-items: center;
}
.vb-svc-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.12); }
.vb-svc-row.reverse .vb-svc-img { order: 2; }
.vb-svc-img { aspect-ratio: 16/9; overflow: hidden; }
.vb-svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.vb-svc-row:hover .vb-svc-img img { transform: scale(1.03); }
.vb-svc-body { max-width: 48ch; }
.vb-svc-num { font-family: var(--serif); font-weight: 300; font-style: italic; font-size: 18px; color: var(--accent); margin-bottom: 20px; }
.vb-svc-body h3 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(36px, 4.2vw, 56px); line-height: 1.02; letter-spacing: -0.02em;
  color: var(--paper); margin-bottom: 24px;
}
.vb-svc-body p { font-size: 17px; line-height: 1.6; color: rgba(255,255,255,0.72); margin-bottom: 28px; }
.vb-svc-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.vb-svc-tag {
  padding: 6px 14px; border: 1px solid rgba(255,255,255,0.2);
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.72); border-radius: 999px;
}
.vb-svc-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: var(--paper);
  border-bottom: 1px solid var(--paper); padding-bottom: 3px;
  text-decoration: none; transition: gap 0.25s, color 0.2s, border-color 0.2s;
}
.vb-svc-cta:hover { gap: 14px; color: var(--accent); border-bottom-color: var(--accent); }

/* CASE */
.vb-case { padding: 140px 40px; background: var(--paper); color: var(--ink); }
.vb-case-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 80px; gap: 40px; }
.vb-case-head h2 em { color: var(--accent); }
.vb-case-viewport { overflow: hidden; position: relative; }
.vb-case-track { display: flex; transition: transform 0.65s cubic-bezier(0.22,0.61,0.36,1); }
.vb-case-slide { flex: 0 0 100%; display: grid; grid-template-columns: 1.15fr 0.95fr; gap: 72px; align-items: center; }
.vb-case-visual { aspect-ratio: 16/9; overflow: hidden; background: var(--paper-warm); position: relative; }
.vb-case-visual img { width: 100%; height: 100%; object-fit: cover; }
.vb-case-tag {
  position: absolute; top: 24px; left: 24px;
  background: var(--ink); color: var(--paper);
  padding: 8px 14px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 500;
}
.vb-case-client {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: 18px; color: var(--accent); margin-bottom: 20px;
}
.vb-case-slide h3 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(40px, 4.6vw, 64px); line-height: 1.02; letter-spacing: -0.025em;
  color: var(--ink); margin-bottom: 28px; max-width: 16ch;
}
.vb-case-body { font-size: 17px; line-height: 1.6; color: var(--muted-dark); margin-bottom: 40px; max-width: 46ch; }
.vb-case-stats { display: flex; gap: 48px; padding-top: 32px; border-top: 1px solid var(--rule); margin-bottom: 36px; }
.vb-case-stat-num {
  font-family: var(--serif); font-weight: 300;
  font-size: 48px; letter-spacing: -0.02em; line-height: 1;
  color: var(--accent); margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.vb-case-stat-label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.vb-case-ctas { display: flex; justify-content: space-between; align-items: center; margin-top: 72px; }
.vb-case-count { font-family: var(--serif); font-weight: 300; font-size: 48px; letter-spacing: -0.02em; color: var(--ink); font-variant-numeric: tabular-nums; }
.vb-case-count span { color: var(--muted); }
.vb-case-nav { display: flex; gap: 10px; }
.vb-case-arrow {
  width: 52px; height: 52px; border: 1px solid var(--rule);
  background: transparent; color: var(--ink); font-size: 18px;
  cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center;
}
.vb-case-arrow:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* TESTIMONIALS */
.vb-test { background: var(--ink); color: var(--paper); padding: 140px 40px; }
.vb-test .vl-eyebrow { color: var(--accent); }
.vb-test-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
}
.vb-test h2 { color: var(--paper); margin-top: 18px; margin-bottom: 0; }
.vb-test h2 em { color: var(--accent); }
.vb-test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.vb-test-card {
  position: relative;
  min-height: 100%;
  padding: 44px 30px 30px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.02);
  overflow: visible;
}
.vb-test-card-mark {
  position: absolute;
  top: -24px;
  left: 24px;
  z-index: 2;
  font-family: var(--serif);
  font-size: 180px;
  line-height: 1;
  color: var(--accent);
}
.vb-test-card-quote {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 26px;
  line-height: 1.28;
  letter-spacing: -0.015em;
  color: var(--paper);
  margin-bottom: 34px;
}
.vb-test-card-footer {
  position: relative;
  z-index: 1;
  display: block;
  text-align: left;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.vb-test-photo {
  display: block;
  width: clamp(50px, 4.9vw, 78px);
  height: clamp(50px, 4.9vw, 78px);
  max-width: 88px;
  max-height: 88px;
  margin: 18px 0 0;
  border-radius: 50%;
  object-fit: cover;
}
.vb-test-quote {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(32px, 3.8vw, 52px); line-height: 1.18; letter-spacing: -0.02em;
  color: var(--paper); max-width: 22ch; margin: 48px 0 72px;
}
.vb-test-quote em { color: var(--accent); font-style: normal; }
.vb-test-row { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 48px; align-items: center; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.12); }
.vb-test-person { font-family: var(--serif); font-weight: 400; font-style: italic; font-size: 18px; color: var(--paper); margin-bottom: 4px; }
.vb-test-title-sm { font-size: 13px; color: rgba(255,255,255,0.55); }
.vb-test-switch { display: flex; gap: 8px; justify-content: flex-end; }
.vb-test-switch-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: transparent; border: 1px solid rgba(255,255,255,0.2);
  color: var(--paper); cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.vb-test-switch-btn:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* Testimonials archive masonry */
.vb-testimonials-page {
  padding-top: 80px;
}
.vb-testimonials-masonry {
  display: block;
  column-count: 3;
  column-gap: 28px;
  margin-top: 56px;
}
.vb-testimonials-masonry .vb-test-card {
  display: inline-block;
  width: 100%;
  min-height: 0;
  margin: 0 0 28px;
  break-inside: avoid;
}

/* LOGO MARQUEE — dark variant */
.vb-root .vl-marquee { background: var(--ink); border-color: rgba(255,255,255,0.12); }
.vb-root .vl-marquee img { filter: grayscale(1) invert(1); opacity: 0.45; }
.vb-root .vl-marquee img:hover { filter: invert(1); opacity: 1; }

/* INSIGHTS */
.vb-ins { background: var(--paper); color: var(--ink); padding: 140px 40px; }
.vb-ins-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 72px; }
.vb-ins-head h2 em { color: var(--accent); }
.vb-ins-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.vb-ins-card { text-decoration: none; color: inherit; }
.vb-ins-img { aspect-ratio: 3/4; overflow: hidden; background: var(--paper-warm); margin-bottom: 20px; }
.vb-ins-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.vb-ins-card:hover .vb-ins-img img { transform: scale(1.04); }
.vb-ins-meta { font-size: 11px; color: var(--accent); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 12px; font-weight: 500; }
.vb-ins-card h3 { font-family: var(--serif); font-weight: 400; font-size: 24px; line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 12px; }
.vb-ins-read { font-size: 13px; color: var(--muted); }
#vb-ins-grid .vb-ins-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px;
  border: 1px solid var(--rule-soft);
  background: linear-gradient(180deg, rgba(255,255,255,0.44) 0%, rgba(255,255,255,0.12) 100%);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}
#vb-ins-grid .vb-ins-card:hover {
  transform: translateY(-4px);
  border-color: rgba(8, 16, 13, 0.18);
  background: linear-gradient(180deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.2) 100%);
}
#vb-ins-grid .vb-ins-topline {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 18px;
}
#vb-ins-grid .vb-ins-meta {
  margin-bottom: 0;
}
#vb-ins-grid .vb-ins-read {
  white-space: nowrap;
}
#vb-ins-grid .vb-ins-card h3 {
  font-size: clamp(28px, 2.4vw, 32px);
  line-height: 1.08;
  margin-bottom: 16px;
}
#vb-ins-grid .vb-ins-excerpt {
  font-size: 16px;
  line-height: 1.68;
  color: var(--ink-soft);
  margin: 0 0 24px;
  max-width: 33ch;
}
#vb-ins-grid .vb-ins-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: auto;
  padding: 12px 16px;
  border: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
#vb-ins-grid .vb-ins-card:hover .vb-ins-cta {
  background: var(--ink);
  color: var(--paper);
}
#vb-ins-grid .vb-ins-card:hover .vb-ins-cta span {
  transform: translateX(3px);
}
#vb-ins-grid .vb-ins-cta span {
  transition: transform 0.18s ease;
}
.vb-empty-state {
  grid-column: 1 / -1;
  padding: 44px 36px;
  border: 1px solid var(--rule-soft);
  background: var(--paper-soft);
}
.vb-empty-state h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 14px;
}
.vb-empty-state p {
  max-width: 44ch;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted-dark);
}

/* CTA */
.vb-cta {
  background:
    radial-gradient(circle at 68% 18%, rgba(14,180,206,0.22) 0%, rgba(14,180,206,0.08) 28%, transparent 54%),
    linear-gradient(135deg, #10283d 0%, #10283d 48%, #123c49 100%);
  color: #d9e6f1;
  padding: 128px 40px 40px;
  position: relative;
  overflow: hidden;
}
.vb-cta::before {
  content: ''; position: absolute; top: -20%; right: -10%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(14,180,206,0.22) 0%, transparent 66%);
  filter: blur(40px);
  pointer-events: none;
}
.vb-cta-inner { position: relative; max-width: 1100px; margin: 0 auto; text-align: center; }
.vb-cta h2 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(56px, 8vw, 132px); line-height: 0.95; letter-spacing: -0.03em;
  color: #d8e5f0; margin-bottom: 40px;
  text-shadow: 0 28px 80px rgba(0,0,0,0.22);
}
.vb-cta h2 em { color: var(--accent); }
.vb-cta p { font-size: 20px; color: rgba(216,229,240,0.78); max-width: 68ch; margin: 0 auto 24px; line-height: 1.55; }
.vb-cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.vb-cta-calendar {
  max-width: 980px;
  margin: 0 auto;
}
.vb-cta .svc-calendar-embed {
  min-height: 0;
  background: transparent;
  margin-bottom: 0;
  padding-bottom: 0;
}
.vb-cta .svc-calendar-embed,
.vb-cta .svc-calendar-embed > *,
.vb-cta .svc-calendar-embed [class*="cal-inline"],
.vb-cta .svc-calendar-embed [id*="skeleton"] {
  background: transparent !important;
}
.vb-cta .svc-calendar-embed iframe {
  filter: saturate(0.96) brightness(1.02);
}
.vb-cta .svc-calendar-embed #skeleton-container {
  display: none !important;
  padding: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}
.vb-cta .vl-btn { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.vb-cta .vl-btn:hover { background: var(--accent); color: var(--paper); border-color: var(--accent); }
.vb-cta .vl-btn-ghost { background: transparent; color: var(--paper); border-color: rgba(255,255,255,0.3); }
.vb-cta .vl-btn-ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.services-blue-cta {
  background:
    radial-gradient(circle at 68% 18%, rgba(14,180,206,0.22) 0%, rgba(14,180,206,0.08) 28%, transparent 54%),
    linear-gradient(135deg, #10283d 0%, #10283d 48%, #123c49 100%);
  color: #d9e6f1;
  padding-top: 128px;
  padding-bottom: 40px;
}
.services-blue-cta::before {
  top: -18%;
  right: -8%;
  width: 58vw;
  height: 58vw;
  background: radial-gradient(circle, rgba(14,180,206,0.22) 0%, transparent 66%);
}
.services-blue-cta h2 {
  color: #d8e5f0;
  text-shadow: 0 28px 80px rgba(0,0,0,0.22);
}
.services-blue-cta h2 em {
  color: var(--accent);
}
.services-blue-cta p {
  color: rgba(216,229,240,0.78);
  margin-bottom: 24px;
}
.services-blue-cta .svc-calendar-embed iframe {
  filter: saturate(0.96) brightness(1.02);
}
.services-blue-cta .svc-calendar-embed {
  min-height: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.services-blue-cta .svc-calendar-embed #skeleton-container {
  display: none !important;
  padding: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* Footer — dark */
.vb-root .vl-footer { background: var(--ink); border-top-color: rgba(255,255,255,0.1); }
.vb-root .vl-footer .vl-logo { color: var(--paper); }
.vb-root .vl-footer-tagline { color: rgba(255,255,255,0.6); }
.vb-root .vl-footer-col-label { color: rgba(255,255,255,0.5); }
.vb-root .vl-footer-nav a { color: var(--paper); }
.vb-root .vl-footer-nav a:hover { color: var(--accent); }
.vb-root .vl-footer-bottom { border-top-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); }

/* ============================================
   SUBPAGE PRIMITIVES (shared across templates)
   ============================================ */

/* Page hero — dark, eyebrow + big headline + subcopy */
.vb-page-hero {
  padding: 80px 40px 120px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.vb-page-hero-inner { max-width: 1240px; margin: 0 auto; }
.vb-page-hero-eyebrow {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); font-weight: 500;
  margin-bottom: 32px;
  display: inline-flex; align-items: center; gap: 12px;
}
.vb-page-hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--accent); }
.vb-page-hero-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(56px, 9vw, 140px); line-height: 0.92; letter-spacing: -0.035em;
  color: var(--paper);
  max-width: 18ch;
}
.vb-page-hero-title em { color: var(--accent); }
.vb-page-hero-sub {
  font-family: var(--sans); font-style: normal; font-weight: 400;
  font-size: 22px; line-height: 1.4; color: rgba(255,255,255,0.75);
  margin-top: 40px; max-width: 52ch;
}
.contact-hero {
  background:
    radial-gradient(circle at 68% 22%, rgba(14,180,206,0.22) 0%, rgba(14,180,206,0.08) 28%, transparent 54%),
    linear-gradient(135deg, #10283d 0%, #10283d 48%, #123c49 100%);
  border-bottom: 0;
  padding-bottom: 72px;
}
.contact-cta {
  position: relative;
  overflow: hidden;
  padding-bottom: 40px;
}
.contact-cta::before {
  content: '';
  position: absolute;
  top: -18%;
  right: -8%;
  width: 58vw;
  height: 58vw;
  background: radial-gradient(circle, rgba(14,180,206,0.22) 0%, transparent 66%);
  filter: blur(40px);
  pointer-events: none;
}
.contact-cta .vb-page-hero-inner,
.contact-calendar-inner {
  position: relative;
  z-index: 1;
}
.contact-hero .vb-page-hero-title {
  max-width: none;
}
.contact-hero .vb-page-hero-sub {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 400;
}
@media (min-width: 901px) {
  .contact-hero .vb-page-hero-sub {
    max-width: 64ch;
  }
}
.contact-calendar-inner {
  max-width: 1100px;
  margin: clamp(88px, 8vw, 120px) auto 0;
  text-align: center;
}
.contact-email-section {
  background: var(--paper-warm);
  padding: clamp(76px, 8vw, 118px) 40px;
}
.contact-email-panel {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(34px, 5vw, 58px);
  align-items: start;
  text-align: left;
}
.contact-email-copy {
  max-width: 720px;
}
.contact-email-copy h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 6.4vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-top: 22px;
}
.contact-email-copy p {
  max-width: 46ch;
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.62;
  color: var(--muted-dark);
}
.contact-email-form {
  width: 100%;
  background: var(--paper-soft);
  border: 1px solid var(--rule-soft);
  box-shadow: none;
}
.contact-email-form .vl-btn {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.contact-email-form .vl-btn:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
}

/* Thank you page */
.thank-you-hero {
  background:
    radial-gradient(circle at 72% 18%, rgba(14,180,206,0.22) 0%, rgba(14,180,206,0.08) 30%, transparent 58%),
    linear-gradient(135deg, #0b0b0c 0%, #10283d 54%, #123c49 100%);
  overflow: hidden;
  position: relative;
}
.thank-you-hero::after {
  content: '';
  position: absolute;
  inset: auto 40px 0;
  height: 1px;
  background: rgba(255,255,255,0.12);
}
.thank-you-hero .vb-page-hero-inner {
  position: relative;
  z-index: 1;
}
.thank-you-hero .vb-page-hero-title {
  max-width: 10ch;
}
.thank-you-hero .vb-page-hero-sub {
  max-width: 64ch;
}
.thank-you-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.thank-you-hero .vl-btn {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
}
.thank-you-hero .vl-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.thank-you-hero .vl-btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.34);
  color: var(--paper);
}
.thank-you-hero .vl-btn-ghost:hover {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
}
.thank-you-prep {
  padding-top: 132px;
}
.thank-you-prep-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.58fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}
.thank-you-prep-head h2 {
  max-width: 13ch;
}
.thank-you-prep-head h2 em {
  color: var(--accent);
}
.thank-you-prep-head > p {
  font-size: 20px;
  line-height: 1.58;
  color: var(--muted-dark);
  max-width: 37ch;
}
.thank-you-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}
.thank-you-step {
  min-height: 460px;
  padding: 40px 30px 34px;
  border-right: 1px solid var(--rule-soft);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.thank-you-step:last-child {
  border-right: 0;
}
.thank-you-step-num {
  font-family: var(--serif);
  font-size: clamp(38px, 4.6vw, 64px);
  font-style: italic;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 60px;
  font-variant-numeric: tabular-nums;
}
.thank-you-step h3 {
  font-family: var(--serif);
  font-size: clamp(34px, 3.4vw, 48px);
  font-weight: 300;
  letter-spacing: -0.018em;
  line-height: 1.02;
  margin-bottom: 22px;
  color: var(--ink);
}
.thank-you-step p {
  font-size: 17px;
  line-height: 1.62;
  color: var(--muted-dark);
  margin-bottom: 30px;
}
.thank-you-step .vl-link {
  margin-top: auto;
}
.thank-you-cases {
  border-top: 1px solid var(--rule-soft);
}
/* Vueflow hero — floating content planes */
.vf-hero {
  overflow: hidden;
}
.vf-hero .vb-page-hero-eyebrow {
  color: var(--paper);
}
.vf-hero .vb-page-hero-eyebrow::before {
  background: var(--paper);
}
.vf-hero .vb-page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: 56px;
  align-items: center;
}
.vf-hero-copy {
  position: relative;
  z-index: 2;
}
.vf-hero-planes {
  position: relative;
  min-height: 520px;
  perspective: 1200px;
  transform-style: preserve-3d;
}
.vf-hero-plane {
  position: absolute;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(236,231,218,0.34);
  background: #050507;
  box-shadow: 0 28px 80px rgba(0,0,0,0.44);
  transform: translate3d(0, var(--parallax-shift, 0px), 0) rotate(var(--plane-rotate, 0deg));
  will-change: transform;
  animation: vfPlaneFloat 9s ease-in-out infinite;
}
.vf-hero-plane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vf-hero-plane-a { top: 2%; left: 4%; width: 36%; --plane-rotate: -7deg; z-index: 4; }
.vf-hero-plane-b { top: 0; right: 10%; width: 31%; --plane-rotate: 5deg; z-index: 2; animation-delay: -1.4s; }
.vf-hero-plane-c { top: 37%; left: 0; width: 30%; --plane-rotate: 4deg; z-index: 1; animation-delay: -2.8s; }
.vf-hero-plane-d { top: 30%; left: 34%; width: 39%; --plane-rotate: -3deg; z-index: 6; animation-delay: -3.5s; }
.vf-hero-plane-e { bottom: 0; right: 0; width: 34%; --plane-rotate: 8deg; z-index: 5; animation-delay: -4.2s; }
.vf-hero-plane-f { top: 44%; right: 6%; width: 24%; --plane-rotate: -8deg; z-index: 3; animation-delay: -5s; }
.vf-hero-plane-g { bottom: 5%; left: 10%; width: 31%; --plane-rotate: -5deg; z-index: 5; animation-delay: -6.2s; }
.vf-hero-plane-h { bottom: 0; left: 48%; width: 25%; --plane-rotate: 7deg; z-index: 4; animation-delay: -7s; }
.vf-hero-plane-i { bottom: 9%; right: 0; width: 32%; --plane-rotate: 3deg; z-index: 2; animation-delay: -8.2s; }
@keyframes vfPlaneFloat {
  0%, 100% { transform: translate3d(0, var(--parallax-shift, 0px), 0) rotate(var(--plane-rotate, 0deg)); }
  50% { transform: translate3d(0, calc(var(--parallax-shift, 0px) - 16px), 0) rotate(var(--plane-rotate, 0deg)); }
}

/* Services overview hero */
.services-overview-hero {
  overflow: hidden;
}
.services-overview-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(320px, 2fr);
  gap: clamp(8px, 1.5vw, 28px);
  align-items: center;
}
.services-overview-hero-copy {
  position: relative;
  z-index: 4;
}
.services-overview-hero .vb-page-hero-title {
  font-size: clamp(48px, 6vw, 90px);
  max-width: 15.8ch;
}
.services-hero-title-line {
  display: block;
}
.services-overview-hero .vb-page-hero-sub {
  max-width: 48ch;
}
.services-hero-planes,
.services-float-scene {
  position: relative;
  perspective: 1200px;
  transform-style: preserve-3d;
}
.services-hero-planes {
  min-height: 520px;
  margin-left: clamp(-220px, -12vw, -96px);
  z-index: 1;
}
.svc-media-plane {
  position: absolute;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(236,231,218,0.34);
  background: rgba(11,11,12,0.72);
  box-shadow: 0 28px 80px rgba(0,0,0,0.36);
  line-height: 0;
  overflow: visible;
  transform: translate3d(0, var(--parallax-shift, 0px), 0) rotate(var(--plane-rotate, 0deg));
  will-change: transform;
  animation: vfPlaneFloat 10s ease-in-out infinite;
}
.svc-media-plane img {
  display: block;
  width: 100%;
  height: auto;
}
.services-hero-plane-a { top: 4%; left: 4%; width: 44%; --plane-rotate: -6deg; z-index: 4; }
.services-hero-plane-b { top: 7%; right: 0; width: 39%; --plane-rotate: 5deg; z-index: 2; animation-delay: -1.6s; }
.services-hero-plane-c { top: 34%; left: 0; width: 38%; --plane-rotate: 3.5deg; z-index: 1; animation-delay: -3.2s; }
.services-hero-plane-d { top: 36%; left: 32%; width: 46%; --plane-rotate: -3deg; z-index: 6; animation-delay: -4.6s; }
.services-hero-plane-e { bottom: 12%; right: 26%; width: 43%; --plane-rotate: 7deg; z-index: 5; animation-delay: -6s; }

.services-float-strip {
  background: var(--paper);
  color: var(--ink);
  padding: 112px 40px 0;
  overflow: hidden;
}
.services-float-copy {
  max-width: 900px;
  margin: 0 auto 72px;
  text-align: center;
}
.services-float-copy h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(42px, 5.8vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.services-float-copy h2 em {
  color: var(--accent);
}
.services-float-copy p {
  max-width: 68ch;
  margin: 28px auto 0;
  font-size: 18px;
  line-height: 1.62;
  color: var(--muted-dark);
}
.services-float-scene {
  max-width: 1240px;
  height: 72vh;
  min-height: 560px;
  max-height: 760px;
  margin: 0 auto;
}
.services-float-strip .svc-media-plane {
  border-color: rgba(11,11,12,0.18);
  background:
    linear-gradient(135deg, rgba(16,195,220,0.16), rgba(11,11,12,0.06) 48%, rgba(247,243,233,0.78)),
    rgba(11,11,12,0.03);
  box-shadow: 0 28px 80px rgba(14,32,54,0.16);
}
.services-float-plane-a { top: 6%; left: 1%; width: 24%; --plane-rotate: -2.5deg; z-index: 3; }
.services-float-plane-b { top: 11%; left: 30%; width: 20%; --plane-rotate: 2deg; z-index: 5; animation-delay: -1.8s; }
.services-float-plane-c { top: 4%; right: 7%; width: 28%; --plane-rotate: -1.5deg; z-index: 2; animation-delay: -3.6s; }
.services-float-plane-d { top: 38%; left: 9%; width: 30%; --plane-rotate: 3deg; z-index: 6; animation-delay: -5s; }
.services-float-plane-e { top: 44%; left: 44%; width: 24%; --plane-rotate: -3.5deg; z-index: 4; animation-delay: -6.4s; }
.services-float-plane-f { top: 35%; right: 0; width: 26%; --plane-rotate: 2.5deg; z-index: 7; animation-delay: -7.8s; }
.services-float-plane-g { bottom: 8%; left: 25%; width: 34%; --plane-rotate: -1deg; z-index: 1; animation-delay: -9s; }

/* Light content section */
.vb-section-light { background: var(--paper); color: var(--ink); padding: 140px 40px; }
.vb-insights-list-section { padding-top: 98px; }
.vb-section-dark { background: var(--ink); color: var(--paper); padding: 140px 40px; }
@media (min-width: 901px) {
  .portfolio-index-section { padding-top: 70px; }
}
.services-list-section {
  padding-top: 96px;
  padding-bottom: 56px;
}
.services-core-heading {
  margin-bottom: 24px;
}
.services-core-heading h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(42px, 5.4vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--paper);
}
.services-core-heading h2 em {
  color: var(--accent);
}
#vb-services-page-grid > .vl-reveal:last-child > .vb-svc-row,
.services-list-section #vb-services-page-grid > .vl-reveal:last-child > .vb-svc-row {
  border-bottom: 0 !important;
}
.services-client-marquee {
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.services-client-marquee + .vb-test {
  padding-top: 72px;
}

.vb-section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 80px; margin-bottom: 100px; }
.vb-section-head-v { flex-direction: column; align-items: flex-start; gap: 24px; margin-bottom: 80px; }
.vb-section-head h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(40px, 5.2vw, 76px); line-height: 1.02; letter-spacing: -0.025em; max-width: 18ch; }
.vb-section-head h2 em { color: var(--accent); }
.vb-section-head p { font-size: 17px; line-height: 1.55; color: var(--muted-dark); max-width: 42ch; }
.vb-section-dark .vb-section-head h2 { color: var(--paper); }
.vb-section-dark .vb-section-head p { color: rgba(255,255,255,0.7); }
.text-nowrap { white-space: nowrap; }
.about-values .vb-section-head h2 { max-width: 22ch; }
.vb-services-overview-head {
  justify-content: flex-start;
  align-items: flex-start;
  gap: clamp(56px, 8vw, 120px);
  margin-bottom: 64px;
}
.vb-services-overview-head p {
  margin-top: 14px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero .vb-page-hero-sub { max-width: 60ch; }
.about-mission-grid,
.about-careers-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 96px;
  align-items: start;
}
.about-mission-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted-dark);
}
.about-mission-grid h2 em { color: var(--accent); }
.about-mission-lead {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.about-values-grid,
.about-markets-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.about-value,
.about-market {
  border: 1px solid rgba(255,255,255,0.12);
  padding: 40px;
  background: rgba(255,255,255,0.02);
}
.about-value-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
  font-size: 20px;
  margin-bottom: 32px;
}
.about-value h3,
.about-market h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin-bottom: 20px;
}
.about-value h3 { color: var(--paper); }
.about-value p {
  color: rgba(255,255,255,0.68);
  font-size: 16px;
  line-height: 1.65;
}
.about-markets-header {
  max-width: 760px;
  margin-bottom: 72px;
}
.about-markets-header h2 {
  margin-top: 18px;
  margin-bottom: 20px;
}
.about-markets-header h2 em { color: var(--accent); }
.about-markets-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted-dark);
  max-width: 56ch;
}
.about-market {
  border-color: var(--rule-soft);
  background: transparent;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 32px;
}
.about-market-code {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rule);
  background: var(--paper-warm);
  font-family: var(--serif);
  font-style: italic;
  font-size: 34px;
  color: var(--ink);
}
.about-market-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 14px;
}
.about-market p {
  color: var(--muted-dark);
  font-size: 16px;
  line-height: 1.65;
}
.about-careers-copy p {
  color: rgba(255,255,255,0.72);
  font-size: 17px;
  line-height: 1.65;
  max-width: 48ch;
  margin-top: 24px;
}
.about-careers-copy h2 em {
  color: var(--accent);
}
.about-careers-form {
  background: var(--paper);
  color: var(--ink);
  padding: 44px;
}
.careers-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.careers-form-field { margin-bottom: 24px; }
.careers-form-field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 8px;
}
.careers-form-field label span {
  color: var(--accent);
}
.careers-form-field input,
.careers-form-field textarea {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--rule);
  background: transparent;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
}
.careers-form-field textarea {
  min-height: 120px;
  resize: vertical;
}
.careers-form-field input:focus,
.careers-form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
}
.about-careers-form .vl-btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* ============================================
   SERVICE DETAIL — capabilities grid
   ============================================ */
.vb-capabilities { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.vb-capability {
  padding: 48px 40px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.02);
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.vb-capability:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.04); transform: translateY(-2px); }
.vb-capability-num { font-family: var(--serif); font-style: italic; color: var(--accent); font-size: 18px; margin-bottom: 20px; }
.vb-capability h4 { font-family: var(--serif); font-weight: 300; font-size: clamp(28px, 3vw, 40px); line-height: 1.05; letter-spacing: -0.018em; color: var(--paper); margin-bottom: 16px; }
.vb-capability p { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.7); }

/* Light variant */
.vb-section-light .vb-capability { border-color: var(--rule-soft); background: transparent; }
.vb-section-light .vb-capability:hover { border-color: var(--ink); background: var(--paper-soft); }
.vb-section-light .vb-capability h4 { color: var(--ink); }
.vb-section-light .vb-capability p { color: var(--muted-dark); }

/* ============================================
   PRICING TIERS
   ============================================ */
.vb-pricing { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.vb-pricing-tier {
  padding: 56px 48px;
  border: 1px solid var(--rule);
  background: var(--paper-soft);
  position: relative;
}
.vb-pricing-tier.featured { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.vb-pricing-tier.featured h3, .vb-pricing-tier.featured .vb-pricing-price { color: var(--paper); }
.vb-pricing-tier.featured .vb-pricing-list li { color: rgba(255,255,255,0.9); border-bottom-color: rgba(255,255,255,0.16); }
.vb-pricing-tier.featured .vb-pricing-list li::before { color: var(--accent); }
.vb-pricing-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 16px; }
.vb-pricing-tier h3 { font-family: var(--serif); font-weight: 300; font-size: clamp(32px, 3.4vw, 44px); letter-spacing: -0.02em; margin-bottom: 20px; }
.vb-pricing-price { font-family: var(--serif); font-weight: 300; font-size: clamp(48px, 5vw, 72px); letter-spacing: -0.03em; line-height: 1; margin-bottom: 8px; font-variant-numeric: tabular-nums; }
.vb-pricing-price-note { font-size: 13px; color: var(--muted); margin-bottom: 40px; }
.vb-pricing-tier.featured .vb-pricing-price-note { color: rgba(255,255,255,0.72); }
.vb-pricing-list { list-style: none; padding: 0; margin: 0 0 40px; }
.vb-pricing-list li {
  font-size: 15px; line-height: 1.5; color: var(--muted-dark);
  padding: 14px 0 14px 28px; position: relative;
  border-bottom: 1px solid var(--rule-soft);
}
.vb-pricing-list li:last-child { border-bottom: none; }
.vb-pricing-list li::before { content: '→'; position: absolute; left: 0; color: var(--accent); }
.vb-pricing-tier .vl-btn { width: 100%; justify-content: center; }

/* ============================================
   CROSS-SELL / RELATED SERVICES
   ============================================ */
.vb-cross-sell { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.vb-cross-card {
  text-decoration: none; color: inherit;
  padding: 32px 28px;
  border: 1px solid var(--rule);
  background: var(--paper-soft);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  display: flex; flex-direction: column; gap: 16px;
}
.vb-cross-card:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: translateY(-2px); }
.vb-cross-card:hover .vb-cross-arrow { transform: translateX(4px); color: var(--accent); }
.vb-cross-num { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--accent); }
.vb-cross-card h4 { font-family: var(--serif); font-weight: 300; font-size: 26px; letter-spacing: -0.01em; line-height: 1.1; }
.vb-cross-card p { font-size: 16px; line-height: 1.55; color: var(--muted-dark); }
.vb-cross-card:hover p { color: rgba(255,255,255,0.7); }
.vb-cross-arrow { font-size: 18px; margin-top: auto; transition: transform 0.25s, color 0.25s; }

/* ============================================
   PORTFOLIO — filter + grid
   ============================================ */
.vb-portfolio-filter {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 28px 0; margin-bottom: 48px;
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}
.vb-filter-btn {
  padding: 10px 18px;
  border: 1px solid var(--rule);
  background: transparent; color: var(--ink);
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  border-radius: 999px;
  transition: all 0.2s;
}
.vb-filter-btn:hover { border-color: var(--ink); }
.vb-filter-btn.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.vb-portfolio-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.vb-port-card { text-decoration: none; color: inherit; display: block; }
.vb-port-img {
  aspect-ratio: 16/9; overflow: hidden;
  background: var(--paper-warm); margin-bottom: 20px;
}
.vb-port-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.vb-port-card:hover .vb-port-img img { transform: scale(1.04); }
.vb-port-card h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: 22px; line-height: 1.2; letter-spacing: -0.01em;
  margin-bottom: 8px; color: var(--ink);
}
.vb-port-tag {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent); font-weight: 500;
}

/* ============================================
   PROJECT DETAIL (case study)
   ============================================ */
.vb-project-hero {
  width: 100%; height: 72vh; min-height: 520px; max-height: 780px;
  overflow: hidden; position: relative;
}
.vb-project-hero img { width: 100%; height: 100%; object-fit: cover; }
.vb-project-overview {
  padding: 140px 40px;
  background: var(--paper); color: var(--ink);
}
.vb-project-overview-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}
.vb-project-meta-col > div + div { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--rule-soft); }
.vb-project-meta-label {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); font-weight: 500; margin-bottom: 10px;
}
.vb-project-meta-value { font-size: 16px; color: var(--ink); }
.vb-project-meta-value ul { list-style: none; padding: 0; margin: 0; }
.vb-project-meta-value li { padding: 4px 0; }
.vb-project-body p {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(28px, 3.4vw, 44px); line-height: 1.2; letter-spacing: -0.018em;
  color: var(--ink);
}
.vb-project-body p + p { margin-top: 32px; font-family: var(--sans); font-size: 17px; line-height: 1.7; color: var(--muted-dark); letter-spacing: 0; }

.vb-project-gallery { background: var(--paper-warm); padding: 140px 40px; }
.vb-project-gallery-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px;
}
.vb-gallery-item { overflow: hidden; background: var(--paper); }
.vb-gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vb-gallery-item.wide { grid-column: span 4; aspect-ratio: 16/9; }
.vb-gallery-item.narrow { grid-column: span 2; aspect-ratio: 3/4; }
.vb-gallery-item.full { grid-column: span 6; aspect-ratio: 21/9; }
.vb-gallery-item.half { grid-column: span 3; aspect-ratio: 4/3; }

.vb-related { padding: 140px 40px; background: var(--ink); color: var(--paper); }
.vb-related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.vb-related .vb-port-card h3 { color: var(--paper); }
.vb-related .vb-port-img { background: rgba(255,255,255,0.05); }

/* ============================================
   INSIGHTS / ARTICLE
   ============================================ */
.vb-insights-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}
.vb-insight-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px;
  border: 1px solid var(--rule-soft);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.vb-insight-card:hover {
  border-color: rgba(11,11,12,0.32);
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}
.vb-insight-img {
  aspect-ratio: 3/4; overflow: hidden;
  background: var(--paper-warm); margin-bottom: 20px;
}
.vb-insight-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.vb-insight-card:hover .vb-insight-img img { transform: scale(1.04); }
.vb-insight-cat { font-size: 11px; color: var(--accent); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 12px; font-weight: 500; }
.vb-insight-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 3.7vw, 45px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: var(--ink);
}
.vb-insight-read { font-size: 13px; color: var(--muted); }
.vb-insight-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: auto;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid currentColor;
}
.vb-insight-link::after {
  content: '→';
  color: var(--accent);
  transition: transform 0.25s ease;
}
.vb-insight-card:hover .vb-insight-link::after {
  transform: translateX(4px);
}

.vb-insights-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 48px; padding-bottom: 32px; border-bottom: 1px solid var(--rule-soft); }

/* Article detail */
.vb-article-hero { padding: 80px 40px 60px; background: var(--ink); color: var(--paper); }
.vb-article-hero-inner { max-width: 880px; margin: 0 auto; }
.vb-article-breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 24px; color: rgba(255,255,255,0.68);
  font-size: 13px; line-height: 1; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none !important;
  text-decoration-line: none !important;
  transition: color 0.24s ease;
}
.vb-article-breadcrumb-arrow {
  display: inline-block;
  border-bottom: 0;
  text-decoration: none !important;
  text-decoration-line: none !important;
  transition: transform 0.24s ease;
}
.vb-article-breadcrumb-label {
  display: inline-block;
  text-decoration: none !important;
  text-decoration-line: none !important;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.vb-article-breadcrumb:hover,
.vb-article-breadcrumb:focus-visible {
  color: var(--accent);
  text-decoration: none !important;
  text-decoration-line: none !important;
}
.vb-article-breadcrumb:hover .vb-article-breadcrumb-arrow { transform: translateX(-4px); }
.vb-article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.vb-article-category { color: var(--accent); }
.vb-article-read-time,
.vb-article-meta-sep { color: rgba(255,255,255,0.64); }
.vb-article-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(40px, 5.4vw, 80px); line-height: 1.02; letter-spacing: -0.025em;
  color: var(--paper); margin-bottom: 40px;
}
.vb-article-title em { color: var(--accent); }
.vb-article-lead {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 22px; line-height: 1.5; color: rgba(255,255,255,0.8);
}
.vb-article-body {
  background: var(--paper); color: var(--ink);
  padding: 100px 40px 140px;
}
.vb-article-body-inner { max-width: 720px; margin: 0 auto; }
.vb-article-body p { font-size: 18px; line-height: 1.75; color: var(--ink-soft); margin-bottom: 28px; }
.vb-article-body h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(28px, 3vw, 40px); letter-spacing: -0.015em; line-height: 1.15; margin: 56px 0 20px; color: var(--ink); }
.vb-article-body h3 { font-family: var(--serif); font-weight: 400; font-size: 24px; letter-spacing: -0.01em; margin: 40px 0 16px; color: var(--ink); }
.vb-article-body blockquote {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(26px, 3vw, 38px); line-height: 1.25; letter-spacing: -0.015em;
  color: var(--ink); border-left: 3px solid var(--accent);
  padding: 12px 0 12px 28px; margin: 48px 0;
}
.vb-article-body ul, .vb-article-body ol { margin: 0 0 28px 24px; font-size: 18px; line-height: 1.75; color: var(--ink-soft); }
.vb-article-body li { margin-bottom: 10px; }
.vb-article-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 4px; }
.vb-article-body img { width: 100%; margin: 40px 0; }
.vb-article-faq-panel {
  width: 100vw;
  margin: 88px calc(50% - 50vw) -140px;
  padding: 96px 40px 118px;
  background: #fff;
  color: var(--ink);
}
.vb-article-faq-inner {
  max-width: 720px;
  margin: 0 auto;
}
.vb-article-faq-panel h2 {
  margin-top: 0;
}
.vb-article-faq-panel h3 {
  margin-top: 52px;
}
.vb-article-faq-panel p,
.vb-article-faq-panel li {
  color: var(--ink-soft);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.vb-faq-list { max-width: 900px; margin: 0 auto; border-top: 1px solid var(--rule-soft); }
.vb-faq-item { border-bottom: 1px solid var(--rule-soft); }
.vb-faq-q {
  width: 100%; text-align: left;
  padding: 32px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 32px;
  background: transparent; border: none; cursor: pointer;
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(22px, 2.6vw, 32px); line-height: 1.25; letter-spacing: -0.015em;
  color: var(--ink);
  transition: color 0.2s;
}
.vb-faq-q:hover { color: var(--accent); }
.vb-faq-toggle {
  flex-shrink: 0;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--ink);
  transition: transform 0.35s cubic-bezier(0.22,0.61,0.36,1), background 0.2s, border-color 0.2s, color 0.2s;
}
.vb-faq-item.open .vb-faq-toggle { transform: rotate(45deg); background: var(--ink); color: var(--paper); border-color: var(--ink); }
.vb-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.22,0.61,0.36,1);
}
.vb-faq-a-inner {
  padding: 0 0 32px;
  font-size: 17px; line-height: 1.65; color: var(--muted-dark);
  max-width: 68ch;
}
.vb-faq-item.open .vb-faq-a { max-height: 800px; }

/* ============================================
   CONTACT FORM
   ============================================ */
.vb-contact-layout {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 96px;
  max-width: 1240px; margin: 0 auto;
  align-items: start;
}
.vb-contact-intro h2 { color: var(--paper); margin-bottom: 32px; }
.vb-contact-intro p { color: rgba(255,255,255,0.75); font-size: 17px; line-height: 1.6; margin-bottom: 24px; max-width: 42ch; }
.vb-contact-locations { margin-top: 56px; display: flex; flex-direction: column; gap: 24px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); }
.vb-contact-location-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 6px; font-weight: 500; }
.vb-contact-location-value { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--paper); }

.vb-contact-form {
  background: var(--paper); color: var(--ink);
  padding: 48px 48px 56px;
}
.vb-form-field { margin-bottom: 24px; }
.vb-form-field label {
  display: block;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); font-weight: 500; margin-bottom: 8px;
}
.vb-form-field input,
.vb-form-field textarea,
.vb-form-field select {
  width: 100%;
  padding: 14px 0;
  border: none; border-bottom: 1px solid var(--rule);
  background: transparent;
  font-family: var(--sans); font-size: 16px; color: var(--ink);
  transition: border-color 0.2s;
}
.vb-form-field textarea { min-height: 120px; resize: vertical; }
.vb-form-field input:focus,
.vb-form-field textarea:focus,
.vb-form-field select:focus { outline: none; border-bottom-color: var(--accent); }
.vb-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.vb-form-submit { margin-top: 16px; }
.vb-form-submit button { width: 100%; padding: 18px; }
.vb-contact-case { padding-top: 100px; }

/* ============================================
   LEGAL / PROSE
   ============================================ */
.vb-legal { padding: 120px 40px; background: var(--paper); color: var(--ink); }
.vb-legal-inner { max-width: 720px; margin: 0 auto; }
.vb-legal h2 { font-family: var(--serif); font-weight: 400; font-size: 28px; margin: 48px 0 16px; letter-spacing: -0.01em; }
.vb-legal h3 { font-family: var(--serif); font-weight: 400; font-size: 22px; margin: 40px 0 14px; letter-spacing: -0.01em; }
.vb-legal h4 { font-family: var(--sans); font-weight: 600; font-size: 15px; margin: 28px 0 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); }
.vb-legal h2:first-of-type { margin-top: 0; }
.vb-legal p, .vb-legal li { font-size: 16px; line-height: 1.75; color: var(--muted-dark); margin-bottom: 16px; }
.vb-legal ul { padding-left: 24px; }
.vb-legal-updated { font-size: 13px; color: var(--muted); margin-bottom: 48px; letter-spacing: 0.12em; text-transform: uppercase; }

/* ============================================
   VUEFLOW — retained engagement page
   ============================================ */

/* Thesis — large editorial statement on light */
.vf-thesis { padding: 140px 40px; background: var(--paper); color: var(--ink); text-align: center; }
.vf-thesis-inner { max-width: 1000px; margin: 0 auto; }
.vf-thesis .vl-eyebrow { justify-content: center; }
.vf-thesis h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(56px, 8vw, 128px); line-height: 0.95; letter-spacing: -0.035em; margin-bottom: 40px; }
.vf-thesis h2 em { color: var(--accent); }
.vf-thesis p { font-size: 20px; line-height: 1.55; color: var(--muted-dark); max-width: 64ch; margin: 0 auto 20px; }
.vf-thesis p em { color: var(--accent); font-family: var(--serif); font-style: italic; }

/* AI ecosystem */
.vf-ai { background: var(--ink); color: var(--paper); padding: 140px 40px; }
.vf-ai-head { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 80px; align-items: end; }
.vf-ai-head h2 { color: var(--paper); font-family: var(--serif); font-weight: 300; font-size: clamp(40px, 5.2vw, 76px); line-height: 1.02; letter-spacing: -0.025em; }
.vf-ai-head h2 em { color: var(--accent); }
.vf-ai-lead { font-family: var(--serif); font-style: italic; font-size: 22px; color: rgba(255,255,255,0.8); margin-top: 16px; }
.vf-ai-body p { font-size: 17px; line-height: 1.65; color: rgba(255,255,255,0.72); margin-bottom: 20px; }

.vf-ai-diagram-wrap { max-width: 1240px; margin: 60px auto 80px; padding: 0 40px; }
.vf-ai-diagram { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.08); padding: 40px 20px; }
.vf-ai-diagram svg { width: 100%; height: auto; max-height: 680px; color: rgba(255,255,255,0.9); }
.vf-ai-diagram-mobile { display: none; }
.eco-lines {
  stroke: rgba(255,255,255,0.22);
  opacity: 0;
  transform: scale(0.08);
  transform-box: view-box;
  transform-origin: 600px 360px;
  transition:
    opacity 0.45s ease 0.18s,
    transform 1.25s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}
.vf-ai-diagram-wrap.in .eco-lines {
  opacity: 1;
  transform: scale(1);
}
.eco-lines line {
  stroke-dasharray: 6 8;
  animation: ecoDash 18s linear infinite;
}
.eco-node {
  opacity: 0;
  transform: translate(var(--eco-from-x, 0), var(--eco-from-y, 0)) scale(0.34);
  transform-box: view-box;
  transform-origin: center;
  transition:
    opacity 0.45s ease calc(0.12s + (var(--eco-order, 0) * 55ms)),
    transform 1.05s cubic-bezier(0.16, 1, 0.3, 1) calc(0.12s + (var(--eco-order, 0) * 55ms));
}
.vf-ai-diagram-wrap.in .eco-node {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}
.eco-node circle { fill: rgba(255,255,255,0.04); stroke: rgba(255,255,255,0.3); stroke-width: 1; transition: fill 0.3s, stroke 0.3s; }
.eco-node:hover circle { fill: rgba(14,180,206,0.12); stroke: var(--accent); }
.eco-node text { fill: var(--paper); font-family: var(--sans); font-size: 11px; font-weight: 500; }
.eco-node-label { fill: rgba(255,255,255,0.5) !important; font-size: 9px !important; letter-spacing: 0.1em; text-transform: uppercase; }
.eco-node-icon {
  width: 40px;
  height: 40px;
  opacity: 0.95;
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}
.eco-node-glyph {
  fill: var(--accent) !important;
  font-family: var(--sans) !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eco-hub {
  transform-box: view-box;
  transform-origin: 600px 360px;
}
.eco-hub circle { fill: var(--accent); stroke: none; }
.eco-hub-mark {
  width: 74px;
  height: 74px;
}
.eco-hub-title { fill: var(--ink) !important; font-family: var(--serif) !important; font-size: 20px !important; font-weight: 400 !important; }
.eco-hub-sub { fill: var(--ink) !important; font-size: 10px !important; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.7; }
@keyframes ecoDash {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -140; }
}

@media (prefers-reduced-motion: reduce) {
  .eco-lines,
  .eco-node {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.vf-ai-legend { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.vf-ai-legend-item { display: flex; align-items: center; gap: 10px; }
.vf-ai-legend-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }

.vf-guardrails { max-width: 1240px; margin: 100px auto 0; }
.vf-guardrails-eyebrow { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); font-weight: 500; margin-bottom: 32px; }
.vf-guardrails-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.vf-guardrail { padding: 32px; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.02); }
.vf-guardrail h4 { font-family: var(--serif); font-weight: 400; font-size: 22px; line-height: 1.15; letter-spacing: -0.01em; color: var(--paper); margin-bottom: 14px; }
.vf-guardrail p { font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.65); }

/* Outputs */
.vf-outputs { background: var(--paper); color: var(--ink); padding: 140px 40px; }
.vf-outputs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 64px; }
.vf-output { padding: 32px; border: 1px solid var(--rule-soft); background: var(--paper-soft); transition: border-color 0.25s, background 0.25s, transform 0.25s; }
.vf-output:hover { border-color: var(--ink); background: var(--paper); transform: translateY(-2px); }
.vf-output-num { font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--accent); margin-bottom: 20px; }
.vf-output h3 { font-family: var(--serif); font-weight: 400; font-size: 22px; line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 12px; color: var(--ink); }
.vf-output p { font-size: 16px; line-height: 1.6; color: var(--muted-dark); }

/* Landscape — floating images collage */
.vf-landscape { background: var(--ink); color: var(--paper); padding: 140px 40px 0; overflow: hidden; }
.vf-landscape-head { max-width: 1240px; margin: 0 auto 80px; text-align: center; }
.vf-landscape-head .vl-eyebrow { justify-content: center; color: rgba(255,255,255,0.55); }
.vf-landscape-head h2 { color: var(--paper); font-family: var(--serif); font-weight: 300; font-size: clamp(40px, 5.2vw, 76px); line-height: 1.02; letter-spacing: -0.025em; }
.vf-landscape-head h2 em { color: var(--accent); }
.vf-landscape-scene {
  position: relative; width: 100%; height: 120vh; min-height: 960px; max-height: 1360px;
}
.vf-float {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(236,231,218,0.34);
  transition: transform 0.8s cubic-bezier(0.22,0.61,0.36,1);
  will-change: transform;
}
.vf-float img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s ease; }
.vf-float:hover img { transform: scale(1.06); }
.vf-float.anim-float { animation: floatY 8s ease-in-out infinite; }
.vf-float.anim-float-2 { animation: floatY 10s ease-in-out infinite; animation-delay: -2s; }
.vf-float.anim-float-3 { animation: floatY 12s ease-in-out infinite; animation-delay: -4s; }
@keyframes floatY {
  0%, 100% { transform: translate3d(0, calc(var(--parallax-shift, 0px) + 0px), 0) rotate(var(--plane-rotate, 0deg)); }
  50%      { transform: translate3d(0, calc(var(--parallax-shift, 0px) - 18px), 0) rotate(var(--plane-rotate, 0deg)); }
}

/* Process */
.vf-process { background: var(--paper); color: var(--ink); padding: 140px 40px; }
.vf-process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-top: 64px; }
.vf-process-step { padding-top: 32px; border-top: 1px solid var(--rule); }
.vf-process-step-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 24px; }
.vf-process-step h3 { font-family: var(--serif); font-weight: 300; font-size: clamp(28px, 3vw, 40px); line-height: 1.05; letter-spacing: -0.018em; margin-bottom: 16px; color: var(--ink); }
.vf-process-step p { font-size: 15px; line-height: 1.65; color: var(--muted-dark); }

/* Pricing 3 tiers */
.vf-pricing { background: var(--ink); color: var(--paper); padding: 140px 40px; }
.vf-pricing .vl-eyebrow { color: var(--accent); }
.vf-pricing h2 { color: var(--paper); font-family: var(--serif); font-weight: 300; font-size: clamp(40px, 5.2vw, 76px); line-height: 1.02; letter-spacing: -0.025em; }
.vf-pricing h2 em { color: var(--accent); }
.vf-pricing-sub { font-size: 17px; line-height: 1.6; color: rgba(255,255,255,0.7); max-width: 58ch; margin: 24px 0 72px; }
.vf-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vf-pricing-tier {
  padding: 48px 40px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.02);
  display: flex; flex-direction: column; gap: 16px;
}
.vf-pricing-tier.featured { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.vf-pricing-tier.featured .vf-pricing-tier-label { color: var(--accent); }
.vf-pricing-tier.featured .vf-pricing-tier-name,
.vf-pricing-tier.featured .vf-pricing-tier-price,
.vf-pricing-tier.featured .vf-pricing-tier-hours { color: var(--ink); }
.vf-pricing-tier.featured .vf-pricing-tier-desc { color: var(--muted-dark); }
.vf-pricing-tier-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); font-weight: 500; }
.vf-pricing-tier-name { font-family: var(--serif); font-weight: 300; font-size: clamp(32px, 3.6vw, 48px); letter-spacing: -0.02em; color: var(--paper); }
.vf-pricing-tier-price { font-family: var(--serif); font-weight: 300; font-size: clamp(40px, 4.4vw, 60px); letter-spacing: -0.025em; color: var(--paper); font-variant-numeric: tabular-nums; line-height: 1; }
.vf-pricing-tier-price span { font-size: 0.45em; color: rgba(255,255,255,0.5); letter-spacing: 0.05em; }
.vf-pricing-tier.featured .vf-pricing-tier-price span { color: var(--muted); }
.vf-pricing-tier-hours { font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 8px; }
.vf-pricing-tier-desc { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.7); }
.vf-pricing-tier .vl-btn {
  justify-content: center;
  width: 100%;
}
.vf-pricing-tier.featured .vl-btn,
.vf-pricing-tier.featured .vl-btn:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.vf-pricing-tier.featured .vl-btn .vl-btn-arrow {
  color: var(--paper);
}
.vf-pricing-note { text-align: center; font-size: 14px; color: rgba(255,255,255,0.55); margin-top: 56px; font-style: italic; font-family: var(--serif); }

/* Hours tables */
.vf-hours { background: var(--paper); color: var(--ink); padding: 140px 40px; }
.vf-hours-head { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 72px; }
.vf-hours-head h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(40px, 5.2vw, 76px); line-height: 1.02; letter-spacing: -0.025em; }
.vf-hours-head h2 em { color: var(--accent); }
.vf-hours-head-sub { font-size: 16px; line-height: 1.65; color: var(--muted-dark); }
.vf-hours-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.vf-hours-cat-title { font-family: var(--serif); font-weight: 400; font-style: italic; font-size: 22px; color: var(--accent); margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--rule); }
.vf-hours-tbl { width: 100%; border-collapse: collapse; }
.vf-hours-tbl td { padding: 14px 0; font-size: 15px; color: var(--ink-soft); border-bottom: 1px solid var(--rule-soft); vertical-align: baseline; }
.vf-hours-tbl td.hrs { text-align: right; font-variant-numeric: tabular-nums; color: var(--accent); font-weight: 500; font-size: 13px; letter-spacing: 0.08em; white-space: nowrap; padding-left: 16px; }
.vf-hours-footnote { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--rule-soft); font-family: var(--sans); font-size: 13px; font-style: normal; font-weight: 400; line-height: 1.6; color: var(--muted); max-width: 84ch; }

/* Fit / who it's for */
.vf-fit { background: var(--ink); color: var(--paper); padding: 140px 40px; }
.vf-fit-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; max-width: 1240px; margin: 0 auto; align-items: start; }
.vf-fit-grid h2 { color: var(--paper); font-family: var(--serif); font-weight: 300; font-size: clamp(40px, 5.2vw, 76px); line-height: 1.02; letter-spacing: -0.025em; }
.vf-fit-grid h2 em { color: var(--accent); }
.vf-fit-list { list-style: none; padding: 0; margin: 0; }
.vf-fit-list li { padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.72); }
.vf-fit-list li:last-child { border-bottom: none; }
.vf-fit-list li strong { display: block; font-family: var(--serif); font-weight: 400; font-size: 22px; color: var(--paper); margin-bottom: 10px; letter-spacing: -0.01em; }

/* ============================================
   SERVICE DETAIL v2 — richer single-service template
   ============================================ */

/* Breadcrumb */
.vb-breadcrumb {
  max-width: 1240px; margin: 0 auto; padding: 20px 40px;
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.vb-breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.vb-breadcrumb a:hover { color: var(--accent); }
.vb-breadcrumb .sep { color: rgba(255,255,255,0.25); }
.vb-breadcrumb .current { color: var(--paper); }
.vb-section-light .vb-breadcrumb,
.vb-breadcrumb.light { color: var(--muted); }
.vb-section-light .vb-breadcrumb a,
.vb-breadcrumb.light a { color: var(--muted); }
.vb-breadcrumb.light .current { color: var(--ink); }

/* Service hero (split grid) */
.svc-hero { padding: 60px 40px 120px; }
.svc-hero-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end;
}
.svc-hero-copy { padding-bottom: 20px; }
.svc-hero-eyebrow {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); font-weight: 500; margin-bottom: 32px;
  display: inline-flex; align-items: center; gap: 12px;
}
.svc-hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--accent); }
.svc-hero h1 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(56px, 8vw, 120px); line-height: 0.95; letter-spacing: -0.035em;
  color: var(--paper);
  max-width: 14ch;
}
.svc-hero h1 em { color: var(--accent); }
.svc-hero-sub {
  font-family: var(--sans); font-style: normal; font-weight: 400;
  font-size: 22px; line-height: 1.45; color: rgba(255,255,255,0.8);
  margin-top: 32px; max-width: 50ch;
}
.svc-hero-visual { aspect-ratio: 16/9; overflow: hidden; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); }
.svc-hero-visual img, .svc-hero-visual video { width: 100%; height: 100%; object-fit: cover; }
.svc-hero-visual.svc-hero-planes {
  position: relative;
  min-height: 520px;
  aspect-ratio: auto;
  overflow: visible;
  border: 0;
  background: transparent;
  perspective: 1200px;
  transform-style: preserve-3d;
}
.svc-detail-plane {
  position: absolute;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(236,231,218,0.34);
  background:
    linear-gradient(135deg, rgba(216,229,240,0.16), rgba(16,195,220,0.06)),
    rgba(11,11,12,0.74);
  box-shadow: 0 28px 80px rgba(0,0,0,0.36);
  transform: translate3d(0, var(--parallax-shift, 0px), 0) rotate(var(--plane-rotate, 0deg));
  will-change: transform;
  animation: vfPlaneFloat 10s ease-in-out infinite;
}
.svc-detail-plane::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 47%, rgba(16,195,220,0.22) 47% 47.5%, transparent 47.5%),
    linear-gradient(0deg, transparent 0 54%, rgba(216,229,240,0.12) 54% 54.5%, transparent 54.5%);
  opacity: 0.45;
}
.svc-detail-plane::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(216,229,240,0.14);
}
.svc-detail-plane img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.svc-detail-plane:has(img)::before,
.svc-detail-plane:has(img)::after {
  content: none;
}
.svc-detail-plane-a { top: 3%; left: 5%; width: 54%; --plane-rotate: -5deg; z-index: 4; }
.svc-detail-plane-b { top: 14%; right: 0; width: 43%; --plane-rotate: 4deg; z-index: 3; animation-delay: -1.8s; }
.svc-detail-plane-c { bottom: 10%; left: 0; width: 43%; --plane-rotate: 3deg; z-index: 2; animation-delay: -3.4s; }
.svc-detail-plane-d { bottom: 3%; right: 6%; width: 53%; --plane-rotate: -4deg; z-index: 5; animation-delay: -5.1s; }
.svc-hero-planes-web .svc-detail-plane {
  aspect-ratio: auto;
  overflow: visible;
}
.svc-hero-planes-web .svc-detail-plane img {
  height: auto;
  object-fit: contain;
}
.svc-hero-planes-web .svc-detail-plane-a { top: 5%; left: 1%; width: 43%; --plane-rotate: -4deg; z-index: 3; }
.svc-hero-planes-web .svc-detail-plane-b { top: 3%; right: -2%; width: 59%; --plane-rotate: 3deg; z-index: 6; }
.svc-hero-planes-web .svc-detail-plane-c { top: 44%; bottom: auto; left: 5%; width: 38%; --plane-rotate: 3deg; z-index: 4; }
.svc-hero-planes-web .svc-detail-plane-d { bottom: -2%; right: 0; width: 59%; --plane-rotate: -3deg; z-index: 5; }
.svc-hero-planes-brand .svc-detail-plane-a { top: 0; left: 1%; width: 62%; --plane-rotate: -4deg; }
.svc-hero-planes-brand .svc-detail-plane-b { top: 15%; right: -2%; width: 36%; --plane-rotate: 5deg; }
.svc-hero-planes-brand .svc-detail-plane-c { bottom: 13%; left: 0; width: 45%; --plane-rotate: 4deg; }
.svc-hero-planes-brand .svc-detail-plane-d { bottom: 0; right: 4%; width: 61%; --plane-rotate: -4deg; }

/* Logo strip (static grid, not marquee) */
.svc-logos { background: var(--ink); color: var(--paper); padding: 0 40px 80px; }
.svc-logos-label {
  max-width: 1240px; margin: 0 auto 32px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); font-weight: 500;
}
.svc-logos-marquee {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: none;
  background: transparent;
}
.svc-logos-marquee .vl-marquee-track { animation-duration: 56s; }
.svc-logos-marquee img {
  filter: grayscale(1) invert(1);
  opacity: 0.45;
}
.svc-logos-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 32px 48px; align-items: center;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1);
}
.svc-logos-grid img {
  height: 28px; width: auto; max-width: 140px; object-fit: contain;
  filter: grayscale(1) invert(1); opacity: 0.45;
  transition: opacity 0.25s, filter 0.25s;
  justify-self: center;
}
.svc-logos-grid img:hover { filter: invert(1); opacity: 1; }

/* The problem (dark) */
.svc-problem { background: var(--ink); color: var(--paper); padding: 140px 40px; }
.svc-problem-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: start;
}
.svc-problem-grid h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(40px, 5.2vw, 76px); line-height: 1.02; letter-spacing: -0.025em; color: var(--paper); max-width: 12ch; }
.svc-problem-grid h2 em { color: var(--accent); }
.svc-scenarios { display: flex; flex-direction: column; gap: 0; border-top: 1px solid rgba(255,255,255,0.1); }
.svc-problem-body {
  gap: 20px;
  border-top: none;
}
.svc-problem-body p {
  max-width: 62ch;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
}
.svc-scenario {
  padding: 24px 0;
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: clamp(22px, 2.6vw, 32px); line-height: 1.25; letter-spacing: -0.015em;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.svc-scenario strong { font-family: var(--sans); font-weight: 500; font-style: normal; color: var(--accent); font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; margin-right: 16px; }
.svc-problem-coda {
  margin-top: 40px;
  font-size: 17px; line-height: 1.65; color: rgba(255,255,255,0.7);
  max-width: 52ch;
}

/* The solution (light) */
.svc-solution { background: var(--paper); color: var(--ink); padding: 140px 40px; }
.svc-solution-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: start;
}
.svc-solution-grid h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(40px, 5.2vw, 76px); line-height: 1.02; letter-spacing: -0.025em; max-width: 14ch; }
.svc-solution-grid h2 em { color: var(--accent); }
.svc-solution-lead {
  font-family: var(--sans);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
  color: var(--muted-dark);
  margin-bottom: 28px;
}
.svc-solution-body p.svc-solution-lead {
  font-family: var(--sans) !important;
  font-size: 17px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
  color: var(--muted-dark) !important;
}
.svc-solution-body p { font-size: 17px; line-height: 1.7; color: var(--muted-dark); }
.svc-solution-body p:not(.svc-solution-lead) + p { margin-top: 22px; }

/* Parallax tiles (floating images) */
.svc-tiles { background: var(--paper-warm); position: relative; overflow: hidden; }
.svc-tiles-scene { position: relative; width: 100%; height: 82vh; min-height: 620px; max-height: 900px; }
.svc-tiles-scene .vf-float { position: absolute; overflow: hidden; box-shadow: 0 28px 80px rgba(11,11,12,0.16); }
.svc-tiles-scene .vf-float img { width: 100%; height: 100%; object-fit: cover; }
.svc-tiles-scene-web {
  max-width: 1440px;
  height: 112vh;
  min-height: 820px;
  max-height: 1120px;
  margin: 0 auto;
}
.svc-tiles-scene-web .vf-float {
  aspect-ratio: auto;
  overflow: visible;
  background: #fff;
  border-color: rgba(11,11,12,0.12);
}
.svc-tiles-scene-web .vf-float img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.svc-web-tile-a { top: 5%; left: 4%; width: 45%; --plane-rotate: -3deg; z-index: 5; }
.svc-web-tile-b { top: 9%; right: 6%; width: 37%; --plane-rotate: 2deg; z-index: 3; }
.svc-web-tile-c { top: 34%; left: 16%; width: 39%; --plane-rotate: 3deg; z-index: 6; }
.svc-web-tile-d { top: 41%; right: 3%; width: 41%; --plane-rotate: -2deg; z-index: 4; }
.svc-web-tile-e { bottom: 5%; left: 7%; width: 33%; --plane-rotate: -3deg; z-index: 7; }
.svc-tiles-scene-brand {
  max-width: 1440px;
  height: 108vh;
  min-height: 780px;
  max-height: 1080px;
  margin: 0 auto;
}
.svc-tiles-scene-brand .vf-float {
  background: #fff;
  border-color: rgba(11,11,12,0.12);
}
.svc-brand-tile-a { top: 4%; left: 4%; width: 42%; aspect-ratio: 16/9; --plane-rotate: -3deg; z-index: 5; }
.svc-brand-tile-b { top: 7%; right: 6%; width: 35%; aspect-ratio: 16/9; --plane-rotate: 2deg; z-index: 3; }
.svc-brand-tile-c { top: 32%; left: 20%; width: 34%; aspect-ratio: 16/9; --plane-rotate: 3deg; z-index: 6; }
.svc-brand-tile-d { top: 33%; right: 5%; width: 38%; aspect-ratio: 16/9; --plane-rotate: -2deg; z-index: 4; }
.svc-brand-tile-e { bottom: 14%; left: 6%; width: 36%; aspect-ratio: 16/9; --plane-rotate: 2deg; z-index: 3; }
.svc-brand-tile-f { bottom: 7%; left: 36%; width: 35%; aspect-ratio: 16/9; --plane-rotate: -3deg; z-index: 7; }
.svc-brand-tile-g { bottom: 13%; right: 4%; width: 34%; aspect-ratio: 16/9; --plane-rotate: 3deg; z-index: 2; }
.svc-tiles-scene-animations {
  max-width: 1440px;
  height: 116vh;
  min-height: 840px;
  max-height: 1160px;
  margin: 0 auto;
}
.svc-tiles-scene-animations .vf-float {
  aspect-ratio: 16 / 9;
  background: #090a0c;
  border: 0;
}
.svc-anim-tile-a { top: 3%; left: 4%; width: 40%; --plane-rotate: -3deg; z-index: 5; }
.svc-anim-tile-b { top: 9%; right: 6%; width: 35%; --plane-rotate: 3deg; z-index: 3; }
.svc-anim-tile-c { top: 27%; left: 18%; width: 42%; --plane-rotate: 2deg; z-index: 7; }
.svc-anim-tile-d { top: 37%; right: 4%; width: 34%; --plane-rotate: -3deg; z-index: 4; }
.svc-anim-tile-e { bottom: 17%; left: 5%; width: 34%; --plane-rotate: 3deg; z-index: 3; }
.svc-anim-tile-f { bottom: 6%; left: 32%; width: 35%; --plane-rotate: -2deg; z-index: 6; }
.svc-anim-tile-g { bottom: 3%; right: 5%; width: 38%; --plane-rotate: 2deg; z-index: 5; }

/* What we make — deliverables grid (3-col, 2 rows) */
.svc-deliverables { background: var(--paper); color: var(--ink); padding: 140px 40px; }
.svc-deliverables-head { max-width: 1240px; margin: 0 auto 64px; }
.svc-deliverables-head h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(40px, 5.2vw, 76px); line-height: 1.02; letter-spacing: -0.025em; }
.svc-deliverables-head h2 em { color: var(--accent); }
.svc-deliverables-sub { font-size: 17px; line-height: 1.6; color: var(--muted-dark); max-width: 58ch; margin-top: 24px; }
.svc-deliverables-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--rule-soft);
}
.svc-deliverable {
  padding: 40px 32px 48px;
  border-bottom: 1px solid var(--rule-soft);
  border-right: 1px solid var(--rule-soft);
}
.svc-deliverable:nth-child(3n) { border-right: none; }
.svc-deliverable-num { font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--accent); margin-bottom: 24px; }
.svc-deliverable h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(22px, 2.4vw, 28px); line-height: 1.15; letter-spacing: -0.01em; margin-bottom: 14px; color: var(--ink); }
.svc-deliverable p { font-size: 15px; line-height: 1.65; color: var(--muted-dark); }

/* Our approach (dark 4-step) */
.svc-approach { background: var(--ink); color: var(--paper); padding: 140px 40px; }
.svc-approach-head { max-width: 1240px; margin: 0 auto 64px; }
.svc-approach-head h2 { color: var(--paper); font-family: var(--serif); font-weight: 300; font-size: clamp(40px, 5.2vw, 76px); line-height: 1.02; letter-spacing: -0.025em; }
.svc-approach-head h2 em { color: var(--accent); }
.svc-approach-sub { font-size: 17px; line-height: 1.6; color: rgba(255,255,255,0.7); max-width: 58ch; margin-top: 24px; }
.svc-approach-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  padding-top: 48px; border-top: 1px solid rgba(255,255,255,0.12);
}
.svc-approach-step { }
.svc-approach-num { font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--accent); margin-bottom: 24px; }
.svc-approach-step h4 { font-family: var(--serif); font-weight: 400; font-size: 26px; line-height: 1.15; letter-spacing: -0.01em; color: var(--paper); margin-bottom: 14px; }
.svc-approach-step p { font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.7); }

.vb-svc-num,
.about-value-num,
.vb-capability-num,
.vb-cross-num,
.vf-output-num,
.svc-deliverable-num,
.svc-approach-num {
  font-size: clamp(28px, 2.5vw, 38px);
  line-height: 1;
}

/* Selected work (3×2 grid) */
.svc-work { background: var(--paper); color: var(--ink); padding: 140px 40px; }
.svc-work-head { max-width: 1240px; margin: 0 auto 56px; }
.svc-work-head h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(40px, 5.2vw, 76px); line-height: 1.02; letter-spacing: -0.025em; }
.svc-work-head h2 em { color: var(--accent); }
.svc-work-sub { font-size: 17px; line-height: 1.6; color: var(--muted-dark); margin-top: 24px; max-width: 58ch; }
.svc-work-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.svc-work-item { text-decoration: none; color: inherit; display: block; }
.svc-work-image { aspect-ratio: 16/9; overflow: hidden; background: var(--paper-warm); margin-bottom: 16px; }
.svc-work-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.svc-work-item:hover .svc-work-image img { transform: scale(1.04); }
.svc-work-name { font-family: var(--serif); font-weight: 400; font-size: 20px; color: var(--ink); letter-spacing: -0.01em; }
.svc-work-cta { text-align: center; margin-top: 56px; }

/* Packages (2 tiers) */
.svc-packages { background: var(--paper-warm); color: var(--ink); padding: 140px 40px; }
.svc-packages-head { max-width: 1240px; margin: 0 auto 72px; }
.svc-packages-head h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(40px, 5.2vw, 76px); line-height: 1.02; letter-spacing: -0.025em; }
.svc-packages-head h2 em { color: var(--accent); }
.svc-packages-sub { font-size: 17px; line-height: 1.6; color: var(--muted-dark); max-width: 62ch; margin-top: 24px; }
.svc-packages-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.svc-package {
  background: var(--paper); padding: 48px 40px 56px;
  border: 1px solid var(--rule-soft);
  min-width: 0;
  display: flex; flex-direction: column; gap: 20px;
}
.svc-package-featured { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.svc-package-featured .svc-package-label,
.svc-package-featured .svc-package-list li::before { color: var(--accent); }
.svc-package.svc-package-featured h3 { color: var(--paper); }
.svc-package-featured .svc-package-price { color: var(--paper); }
.svc-package-featured .svc-package-price span { color: rgba(255,255,255,0.72); }
.svc-package.svc-package-featured p { color: rgba(255,255,255,0.88); }
.svc-package-featured .svc-package-list li { color: rgba(255,255,255,0.9); border-bottom-color: rgba(255,255,255,0.16); }
.svc-package-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); font-weight: 500; }
.svc-package-price {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(44px, 5vw, 68px); letter-spacing: -0.025em; line-height: 1;
  color: var(--ink); font-variant-numeric: tabular-nums;
}
.svc-package-price span { font-size: 0.55em; color: var(--muted); letter-spacing: 0.05em; }
.svc-package h3 { font-family: var(--serif); font-weight: 400; font-size: 24px; letter-spacing: -0.01em; color: var(--ink); }
.svc-package p { font-size: 15px; line-height: 1.6; color: var(--muted-dark); }
.svc-package-list { list-style: none; padding: 0; margin: 16px 0 0; }
.svc-package-list li {
  padding: 12px 0 12px 28px; position: relative;
  font-size: 16px; line-height: 1.55; color: var(--ink-soft);
  border-bottom: 1px solid var(--rule-soft);
}
.svc-package-list li:last-child { border-bottom: none; }
.svc-package-list li::before { content: '→'; position: absolute; left: 0; color: var(--accent); }

/* 3-column testimonials */
.svc-testimonials { background: var(--ink); color: var(--paper); padding: 140px 40px; }
.svc-testimonials-head { max-width: 1240px; margin: 0 auto 64px; display: flex; justify-content: space-between; align-items: end; gap: 40px; }
.svc-testimonials-head h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(40px, 5.2vw, 76px); line-height: 1.02; letter-spacing: -0.025em; }
.svc-testimonials-head h2 em { color: var(--accent); }
.svc-testimonials-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}

/* Calendar embed placeholder */
.svc-calendar {
  background:
    radial-gradient(circle at 68% 18%, rgba(14,180,206,0.22) 0%, rgba(14,180,206,0.08) 28%, transparent 54%),
    linear-gradient(135deg, #10283d 0%, #10283d 48%, #123c49 100%);
  color: #d9e6f1;
  padding: 128px 40px 40px;
  position: relative;
  overflow: hidden;
}
.svc-calendar::before {
  content: '';
  position: absolute;
  top: -18%;
  right: -8%;
  width: 58vw;
  height: 58vw;
  background: radial-gradient(circle, rgba(14,180,206,0.22) 0%, transparent 66%);
  filter: blur(40px);
  pointer-events: none;
}
.svc-calendar-inner { position: relative; max-width: 1100px; margin: 0 auto; text-align: center; }
@media (min-width: 901px) {
  .contact-hero .contact-calendar-inner {
    margin: clamp(88px, 8vw, 120px) auto 0;
  }
}
.svc-calendar h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(56px, 8vw, 132px); line-height: 0.95; letter-spacing: -0.03em; color: #d8e5f0; margin-bottom: 40px; text-shadow: 0 28px 80px rgba(0,0,0,0.22); }
.svc-calendar h2 em { color: var(--accent); }
.svc-calendar p { font-size: 20px; line-height: 1.55; color: rgba(216,229,240,0.78); max-width: 68ch; margin: 0 auto 24px; }
.svc-calendar-embed {
  background: transparent;
  border: 0;
  min-height: 0;
  width: 100%;
  overflow: hidden;
  position: relative;
  text-align: left;
  margin-bottom: 0;
  padding-bottom: 0;
}
@media (min-width: 901px) {
  .svc-calendar-embed,
  .vb-cta .svc-calendar-embed,
  .services-blue-cta .svc-calendar-embed {
    height: auto;
    min-height: 570px;
    max-height: none;
    overflow: visible;
  }
  .svc-calendar-embed > cal-inline,
  .svc-calendar-embed iframe,
  .vb-cta .svc-calendar-embed > cal-inline,
  .vb-cta .svc-calendar-embed iframe,
  .services-blue-cta .svc-calendar-embed > cal-inline,
  .services-blue-cta .svc-calendar-embed iframe {
    min-height: 570px;
  }
}
.svc-calendar-embed::after {
  content: none;
}
.svc-calendar-embed #skeleton-container {
  display: none !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}
.svc-calendar-embed .cal-inline-container {
  background: transparent !important;
}
.svc-calendar-embed,
.svc-calendar-embed > *,
.svc-calendar-embed [class*="cal-inline"],
.svc-calendar-embed [id*="skeleton"] {
  background: transparent !important;
}
.svc-calendar-embed iframe {
  border: 0 !important;
  background: transparent !important;
}
.svc-calendar-embed[data-state="loading"] {
  display: flex; flex-direction: column; gap: 10px; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
}
.svc-calendar-embed-label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); font-weight: 500; }
.svc-calendar-embed-hint { font-size: 14px; font-family: var(--serif); font-style: italic; }

/* Service FAQs (2-col grid with native details/summary) */
.svc-faqs { background: var(--paper); color: var(--ink); padding: 140px 40px; }
.svc-faqs-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px;
  align-items: start;
}
.svc-faqs-grid h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(40px, 5.2vw, 76px); line-height: 1.02; letter-spacing: -0.025em; }
.svc-faqs-grid h2 em { color: var(--accent); }
.svc-faqs-list details {
  padding: 24px 0;
  border-bottom: 1px solid var(--rule-soft);
}
.svc-faqs-list details:first-child { border-top: 1px solid var(--rule-soft); }
.svc-faqs-list summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; gap: 24px; align-items: center;
  font-family: var(--serif); font-weight: 400; font-size: 22px; letter-spacing: -0.01em; line-height: 1.3;
  color: var(--ink);
}
.svc-faqs-list summary::-webkit-details-marker { display: none; }
.svc-faqs-list summary::after {
  content: '+'; color: var(--accent); font-size: 22px; flex-shrink: 0;
  transition: transform 0.3s;
}
.svc-faqs-list details[open] summary::after { transform: rotate(45deg); }
.svc-faqs-list details p {
  margin-top: 16px; font-size: 16px; line-height: 1.65; color: var(--muted-dark);
  max-width: 64ch;
}

/* Related services (2 cards) */
.svc-related { background: var(--paper-warm); color: var(--ink); padding: 140px 40px; }
.svc-related-head { max-width: 1240px; margin: 0 auto 56px; }
.svc-related-head h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(40px, 5.2vw, 76px); line-height: 1.02; letter-spacing: -0.025em; }
.svc-related-head h2 em { color: var(--accent); }
.svc-related-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.svc-related-card {
  text-decoration: none; color: inherit; display: block;
  background: var(--paper); padding: 32px; border: 1px solid var(--rule-soft);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.svc-related-card:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: translateY(-2px); }
.svc-related-card:hover h3, .svc-related-card:hover p { color: var(--paper); }
.svc-related-image { aspect-ratio: 5/3; overflow: hidden; background: var(--paper-warm); margin-bottom: 24px; }
.svc-related-image img { width: 100%; height: 100%; object-fit: cover; }
.svc-related-card h3 { font-family: var(--serif); font-weight: 400; font-size: 28px; letter-spacing: -0.01em; margin-bottom: 10px; color: var(--ink); }
.svc-related-card p { font-size: 15px; line-height: 1.6; color: var(--muted-dark); }

/* ============================================
   PROJECT DETAIL v2 — richer case study
   ============================================ */

.proj-hero { background: var(--ink); padding: 0 40px 80px; }
html.proj-detail-loading .vb-breadcrumb,
html.proj-detail-loading .proj-hero,
html.proj-detail-loading .proj-intro,
html.proj-detail-loading .proj-meta,
html.proj-detail-loading .proj-story,
html.proj-detail-loading .proj-gallery,
html.proj-detail-loading .proj-quote,
html.proj-detail-loading .proj-related {
  visibility: hidden;
}
.proj-hero-image {
  width: min(80%, 1400px);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  overflow: hidden;
}
.proj-hero-image img { width: 100%; height: 100%; object-fit: cover; }

.proj-intro { background: var(--paper); color: var(--ink); padding: 120px 40px; }
.proj-intro-inner { max-width: 1100px; margin: 0 auto; }
.proj-detail-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: start;
}
.proj-detail-overview-left,
.proj-detail-overview-right {
  padding-top: 40px;
  border-top: 1px solid var(--rule);
}
.proj-tags { display: flex; gap: 8px; margin-bottom: 32px; }
.proj-tag {
  padding: 8px 16px; border: 1px solid var(--rule);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); font-weight: 500; border-radius: 999px;
}
.proj-intro h1 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(48px, 6.4vw, 96px); line-height: 0.95; letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 36px;
}
.proj-client-summary {
  max-width: 34rem;
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted-dark);
  margin-bottom: 48px;
}
.proj-detail-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 18px;
}
.proj-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.proj-services-list li {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.1;
  color: var(--ink);
}
.proj-headline {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(22px, 2.6vw, 32px); line-height: 1.35; letter-spacing: -0.015em;
  color: var(--muted-dark);
  max-width: 46ch;
}
.proj-headline em { color: var(--accent); }

/* Meta strip */
.proj-meta { background: var(--paper); color: var(--ink); padding: 60px 40px 120px; }
.proj-meta-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px;
  padding-top: 40px; border-top: 1px solid var(--rule);
}
.proj-meta-item { }
.proj-meta-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); font-weight: 500; margin-bottom: 12px; }
.proj-meta-value { font-size: 16px; line-height: 1.5; color: var(--ink); font-family: var(--serif); font-weight: 400; }

/* Story blocks (brief, objective, approach, deliverables — 2x2) */
.proj-story { background: var(--paper-warm); color: var(--ink); padding: 120px 40px; }
.proj-story-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px 64px;
}
.proj-story-block { padding-top: 32px; border-top: 1px solid var(--rule); }
.proj-overview-block { grid-column: 1 / -1; }
.proj-story-h2 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(32px, 3.6vw, 48px); line-height: 1.05; letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}
.proj-story-h2 em { color: var(--accent); }
.proj-story-block p { font-size: 16px; line-height: 1.7; color: var(--muted-dark); }
.proj-overview-copy {
  max-width: 46rem;
}
.proj-overview-copy p {
  break-inside: avoid; margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted-dark);
}
.proj-story-list { list-style: none; padding: 0; margin: 0; }
.proj-story-list li {
  padding: 14px 0 14px 24px; position: relative;
  font-size: 16px; line-height: 1.55; color: var(--ink-soft);
  border-bottom: 1px solid var(--rule-soft);
}
.proj-story-list li:last-child { border-bottom: none; }
.proj-story-list li::before { content: '·'; position: absolute; left: 0; color: var(--accent); font-size: 20px; top: 12px; }

/* Stacked gallery */
.proj-gallery { background: var(--ink); padding: 80px 40px; }
.proj-gallery-stack { width: min(80%, 1120px); margin: 0 auto; display: flex; flex-direction: column; gap: 30px; }
.proj-gallery-item { width: 100%; overflow: hidden; background: var(--ink); }
.proj-gallery-item img { width: 100%; height: auto; display: block; }
.proj-video-item { padding: 0; }
.proj-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #050505;
}
.proj-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.proj-video-caption,
.proj-video-link {
  display: block;
  padding: 18px 24px 22px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.2;
  background: var(--ink);
}
.proj-video-link {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  text-decoration: none;
}

/* Quote pullquote */
.proj-quote { background: var(--paper); color: var(--ink); padding: 140px 40px; }
.proj-quote-inner { max-width: 900px; margin: 0 auto; text-align: center; position: relative; }
.proj-quote-mark {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 180px;
  line-height: 1;
  color: var(--accent);
  position: absolute;
  top: -84px;
  left: 50%;
  transform: translateX(-50%);
}
.proj-quote-text {
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: clamp(26px, 3vw, 40px); line-height: 1.25; letter-spacing: -0.015em;
  color: var(--ink);
  position: relative; z-index: 1;
  margin: 0 0 40px;
}
.proj-quote-attr { position: relative; z-index: 1; }
.proj-quote-name { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--ink); }
.proj-quote-title { font-size: 13px; color: var(--muted); letter-spacing: 0.08em; margin-top: 6px; }
.proj-quote-photo {
  display: block;
  width: clamp(50px, 4.9vw, 78px);
  height: clamp(50px, 4.9vw, 78px);
  max-width: 88px;
  max-height: 88px;
  margin: 18px auto 0;
  border-radius: 50%;
  object-fit: cover;
}

/* Related projects */
.proj-related { background: var(--paper-warm); color: var(--ink); padding: 140px 40px; }
.proj-related-head { max-width: 1240px; margin: 0 auto 56px; }
.proj-related-head h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(40px, 5.2vw, 76px); line-height: 1.02; letter-spacing: -0.025em; }
.proj-related-head h2 em { color: var(--accent); }
.proj-related-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.proj-related-item { text-decoration: none; color: inherit; display: block; }
.proj-related-image { aspect-ratio: 16/9; overflow: hidden; background: var(--paper); margin-bottom: 16px; }
.proj-related-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.proj-related-item:hover .proj-related-image img { transform: scale(1.04); }
.proj-related-name { font-family: var(--serif); font-weight: 400; font-size: 20px; color: var(--ink); margin-bottom: 4px; }
.proj-related-tag { display: none; }
.proj-breadcrumb {
  padding: 36px 40px;
}
.proj-breadcrumb-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.24s ease;
}
.proj-breadcrumb-link span {
  display: inline-block;
  transition: transform 0.24s ease;
}
.proj-breadcrumb-link:hover {
  color: var(--accent);
}
.proj-breadcrumb-link:hover span {
  transform: translateX(-4px);
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .vl-nav {
    padding: 18px 24px;
    align-items: center;
    flex-wrap: nowrap;
    gap: 16px;
    --mobile-nav-panel-top: 75px;
  }
  .vl-nav-toggle {
    display: inline-flex;
    margin-left: 0;
  }
  .vl-nav-mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 42px;
    margin-left: auto;
    padding: 10px 14px;
    background: var(--accent);
    color: #fff !important;
    text-decoration: none;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    transition: background 0.2s, color 0.2s;
  }
  .vl-nav-mobile-cta:hover {
    background: var(--accent-hover);
    color: #fff !important;
  }
  .vl-logo { min-height: 26px; }
  .vl-nav-links {
    position: fixed;
    top: var(--mobile-nav-panel-top);
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    width: 100%;
    min-height: calc(100dvh - var(--mobile-nav-panel-top));
    padding: 28px 24px 36px;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    background: #fff;
    border-bottom: 0;
    box-shadow: none;
    color: var(--ink);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .vl-nav.nav-open .vl-nav-links { display: flex; }
  .vl-nav-links > a,
  .vl-nav-dropdown-trigger {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid var(--rule-soft);
    color: var(--ink) !important;
    font-size: 20px;
  }
  .vl-nav-links > .vl-nav-cta {
    display: none;
  }
  .vl-nav-links > a:not(.vl-nav-cta)::after,
  .vl-nav-dropdown-trigger::after {
    content: none;
  }
  .vl-nav-link-label {
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 3px solid transparent;
    line-height: 1;
  }
  .vl-nav-links > a.is-current:not(.vl-nav-cta) .vl-nav-link-label,
  .vl-nav-dropdown-trigger.is-current .vl-nav-link-label {
    border-bottom-color: var(--accent);
  }
  .vl-nav-new-link {
    gap: 12px;
  }
  .vl-nav-dropdown {
    padding: 0;
    margin: 0;
  }
  .vl-nav-dropdown::after { content: none; }
  .vl-nav-dropdown-panel {
    position: static;
    display: none;
    width: 100%;
    padding: 16px 0 6px;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .vl-nav-dropdown.is-open .vl-nav-dropdown-panel,
  .vl-nav-dropdown:has(.vl-nav-dropdown-trigger[aria-expanded="true"]) .vl-nav-dropdown-panel {
    display: block;
  }
  .vl-nav-dropdown.is-open .vl-nav-dropdown-caret,
  .vl-nav-dropdown:has(.vl-nav-dropdown-trigger[aria-expanded="true"]) .vl-nav-dropdown-caret {
    transform: rotate(45deg);
  }
  .vl-nav-overview {
    padding-bottom: 12px;
  }
  .vl-nav-overview-title,
  .vl-nav-service-title {
    color: var(--ink);
    font-size: 14px;
  }
  .vl-nav-overview-copy,
  .vl-nav-service-desc {
    color: var(--muted-dark);
    font-size: 15px;
    line-height: 1.5;
  }
  .vl-nav-dropdown-divider {
    background: var(--rule-soft);
  }
  .vl-nav-service-link {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    padding: 10px 0;
  }
  .vl-nav-service-thumb {
    width: 52px;
    height: 52px;
    border-radius: 7px;
    background: var(--paper-warm);
  }
  .vl-nav-cta {
    background: var(--accent);
    color: #fff !important;
    justify-content: center;
    margin-top: 14px;
  }
  .vb-root .vl-nav .vl-nav-links .vl-nav-cta {
    background: var(--accent);
    color: #fff !important;
  }
  .vl-nav-cta:hover {
    background: var(--accent-hover);
    color: #fff !important;
  }
  .vb-root .vl-nav .vl-nav-links .vl-nav-cta:hover {
    background: var(--accent-hover);
    color: #fff !important;
  }
  .vl-footer { padding: 48px 24px 24px; }
  .vl-footer-bottom {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .vb-hero-main { grid-template-columns: 1fr; gap: 40px; }
  .vb-hero-stats { grid-template-columns: repeat(2, 1fr); }
  .vb-hero-stat { padding: 20px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .vb-breadcrumb {
    flex-wrap: wrap;
    gap: 8px;
    line-height: 1.5;
  }
  .vb-man-trio { grid-template-columns: 1fr; gap: 40px; }
  .vb-svc-row, .vb-svc-row.reverse { grid-template-columns: 1fr; gap: 40px; }
  .vb-svc-row.reverse .vb-svc-img { order: 0; }
  .vb-case-slide { grid-template-columns: 1fr; gap: 40px; }
  .thank-you-hero {
    padding-bottom: 72px;
  }
  .thank-you-hero-actions {
    margin-top: 30px;
  }
  .thank-you-prep {
    padding-top: 76px;
  }
  .thank-you-prep-head {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 46px;
  }
  .thank-you-prep-head h2,
  .thank-you-prep-head > p {
    max-width: none;
  }
  .thank-you-steps {
    grid-template-columns: 1fr;
  }
  .thank-you-step {
    min-height: 0;
    padding: 34px 0 32px;
    border-right: 0;
    border-bottom: 1px solid var(--rule-soft);
  }
  .thank-you-step:last-child {
    border-bottom: 0;
  }
  .thank-you-step-num {
    margin-bottom: 34px;
  }
  .vb-manifesto,
  .vb-services,
  .vb-case,
  .vb-test,
  .vb-ins,
  .vb-cta {
    padding-top: 98px;
    padding-bottom: 98px;
  }
  .vb-services-head, .vb-case-head, .vb-ins-head,
  .vb-section-head { flex-direction: column; align-items: flex-start; gap: 24px; margin-bottom: 42px; }
  .vb-ins-grid { grid-template-columns: 1fr; }
  .vb-test-grid { grid-template-columns: 1fr; }
  .vb-testimonials-masonry { column-count: 2; column-gap: 20px; }
  #vb-ins-grid .vb-ins-card { padding: 24px; }
  #vb-ins-grid .vb-ins-topline {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .vb-test-row { grid-template-columns: 1fr; gap: 24px; }
  .vb-test-switch { justify-content: flex-start; }
  .vl-footer-grid { grid-template-columns: 1fr 1fr; }

  .vb-capabilities, .vb-pricing { grid-template-columns: 1fr; gap: 20px; }
  .vb-cross-sell { grid-template-columns: 1fr 1fr; }
  .vb-portfolio-grid { grid-template-columns: 1fr; }
  .vb-insights-grid { grid-template-columns: 1fr; }
  .vb-project-overview-inner { grid-template-columns: 1fr; gap: 40px; }
  .vb-project-gallery-grid { grid-template-columns: 1fr; }
  .vb-gallery-item.wide, .vb-gallery-item.narrow, .vb-gallery-item.half, .vb-gallery-item.full { grid-column: span 1; aspect-ratio: 4/3; }
  .vb-related-grid { grid-template-columns: 1fr 1fr; }
  .vb-contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .vb-contact-form { padding: 32px; }
  .vb-contact-case { padding-top: 60px; }
  .contact-hero.contact-cta {
    padding: 45px 24px 24px;
  }
  .contact-calendar-inner {
    margin-top: 72px;
  }
  .contact-email-section {
    padding: 68px 24px;
  }
  .contact-email-panel {
    gap: 34px;
  }
  .contact-email-copy h2 {
    max-width: none;
  }
  .contact-email-copy p {
    max-width: none;
  }
  .vb-form-row { grid-template-columns: 1fr; gap: 0; }
  .vb-section-light, .vb-section-dark { padding: 60px 24px; }
  .vb-insights-list-section { padding-top: 42px; }
  .vb-page-hero { padding: 45px 24px 60px; }
  .vf-hero .vb-page-hero-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .services-overview-hero-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .services-overview-hero .vb-page-hero-title {
    max-width: 13ch;
  }
  .vf-hero-planes {
    min-height: 420px;
  }
  .services-hero-planes {
    min-height: 420px;
  }
  .vf-hero-plane-a { top: 0; left: 3%; width: 37%; }
  .vf-hero-plane-b { top: 2%; left: 56%; right: auto; width: 32%; }
  .vf-hero-plane-c { top: 38%; left: 0; width: 31%; }
  .vf-hero-plane-d { top: 29%; left: 35%; width: 40%; }
  .vf-hero-plane-e { bottom: 0; right: 2%; width: 35%; }
  .services-hero-plane-a { top: 0; left: 3%; width: 41%; }
  .services-hero-plane-b { top: 2%; left: 56%; right: auto; width: 37%; }
  .services-hero-plane-c { top: 38%; left: 0; width: 38%; }
  .services-hero-plane-d { top: 30%; left: 35%; width: 46%; }
  .services-hero-plane-e { bottom: 8%; right: 25%; width: 47%; }
  .services-float-strip { padding: 60px 24px 0; }
  .services-float-scene { height: 62vh; min-height: 500px; }
  .services-float-plane-a { width: 32%; left: 0; }
  .services-float-plane-b { width: 28%; left: 36%; }
  .services-float-plane-c { width: 36%; right: -5%; }
  .services-float-plane-d { width: 38%; left: 6%; }
  .services-float-plane-e { width: 32%; left: 44%; }
  .services-float-plane-f { width: 34%; right: 2%; }
  .services-float-plane-g { width: 42%; left: 24%; }
  .about-mission-grid,
  .about-careers-grid,
  .about-values-grid,
  .about-markets-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-market {
    grid-template-columns: 1fr;
  }

  /* Vueflow responsive */
  .vf-ai-head { grid-template-columns: 1fr; gap: 32px; }
  .vf-guardrails-grid { grid-template-columns: 1fr; }
  .vf-outputs-grid { grid-template-columns: 1fr; }
  .vf-process-grid { grid-template-columns: 1fr; gap: 32px; }
  .vf-pricing-grid { grid-template-columns: 1fr; }
  .vf-hours-head { grid-template-columns: 1fr; gap: 24px; }
  .vf-hours-cats { grid-template-columns: 1fr; gap: 40px; }
  .vf-fit-grid { grid-template-columns: 1fr; gap: 40px; }
  .vf-thesis, .vf-ai, .vf-outputs, .vf-process, .vf-pricing, .vf-hours, .vf-fit { padding: 60px 24px; }
  .vf-landscape { padding: 60px 24px 0; }
  .vf-landscape-scene { height: 100vh; min-height: 760px; }
  .vf-ai-diagram-wrap {
    margin: 40px auto 60px;
    padding: 0;
  }
  .vf-ai-diagram {
    padding: 16px;
  }
  .vf-ai-diagram > svg:not(.vf-ai-diagram-mobile) {
    display: none;
  }
  .vf-ai-diagram .vf-ai-diagram-mobile {
    display: block;
    width: 100%;
    aspect-ratio: 9 / 16;
    height: auto;
    max-height: none;
  }
  .vf-ai-diagram .vf-ai-diagram-mobile .eco-node circle {
    stroke-width: 1.4;
  }
  .vf-ai-diagram .vf-ai-diagram-mobile .eco-node-icon {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
  }
  .vf-ai-diagram .vf-ai-diagram-mobile .eco-node-glyph {
    font-size: 20px !important;
  }
  .vf-ai-diagram .vf-ai-diagram-mobile .eco-lines {
    transform-origin: 195px 347px;
  }
  .vf-ai-diagram .vf-ai-diagram-mobile .eco-hub {
    transform-origin: 195px 347px;
  }
  .vf-ai-legend {
    justify-content: flex-start;
    gap: 14px;
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  /* Service detail v2 responsive */
  .svc-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .svc-hero { padding: 30px 24px 45px; }
  .svc-hero-visual.svc-hero-planes {
    min-height: 420px;
  }
  .svc-detail-plane-a { top: 0; left: 2%; width: 56%; }
  .svc-detail-plane-b { top: 14%; right: 0; width: 44%; }
  .svc-detail-plane-c { bottom: 12%; left: 0; width: 45%; }
  .svc-detail-plane-d { bottom: 2%; right: 4%; width: 55%; }
  .svc-hero-visual.svc-hero-planes-animations {
    min-height: 470px;
  }
  .svc-hero-planes-animations .svc-detail-plane-a { top: 0; left: 2%; width: 54%; }
  .svc-hero-planes-animations .svc-detail-plane-b { top: 20%; right: 2%; width: 42%; }
  .svc-hero-planes-animations .svc-detail-plane-c { bottom: 18%; left: 2%; width: 43%; }
  .svc-hero-planes-animations .svc-detail-plane-d { bottom: 0; right: 4%; width: 53%; }
  .svc-hero-visual.svc-hero-planes-web {
    min-height: 560px;
  }
  .svc-hero-planes-web .svc-detail-plane-a { top: 3%; left: 0; width: 44%; }
  .svc-hero-planes-web .svc-detail-plane-b { top: 2%; right: -3%; width: 60%; }
  .svc-hero-planes-web .svc-detail-plane-c { top: 45%; bottom: auto; left: 3%; width: 39%; }
  .svc-hero-planes-web .svc-detail-plane-d { bottom: 0; right: 3%; width: 47%; }
  .svc-hero-planes-brand .svc-detail-plane-a { top: 0; left: 0; width: 64%; }
  .svc-hero-planes-brand .svc-detail-plane-b { top: 16%; right: -1%; width: 38%; }
  .svc-hero-planes-brand .svc-detail-plane-c { bottom: 14%; left: 0; width: 46%; }
  .svc-hero-planes-brand .svc-detail-plane-d { bottom: 0; right: 2%; width: 63%; }
  .svc-logos-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .svc-problem-grid, .svc-solution-grid, .svc-faqs-grid { grid-template-columns: 1fr; gap: 32px; }
  .svc-deliverables-grid { grid-template-columns: 1fr; }
  .svc-deliverable { border-right: none !important; }
  .svc-approach-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .svc-work-grid, .svc-testimonials-grid { grid-template-columns: 1fr; }
  .svc-packages-grid, .svc-related-grid { grid-template-columns: 1fr; gap: 20px; }
  .svc-testimonials-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .svc-problem, .svc-solution, .svc-deliverables, .svc-approach, .svc-work, .svc-packages, .svc-testimonials, .svc-calendar, .svc-faqs, .svc-related { padding: 60px 24px; }
  .svc-logos { padding: 0 24px 45px; }
  .svc-tiles-scene { height: 58vh; min-height: 460px; }
  .svc-tiles-scene-web { height: 100vh; min-height: 760px; max-height: 980px; }
  .svc-web-tile-a { top: 2%; left: 0; width: 46%; }
  .svc-web-tile-b { top: 8%; right: 1%; width: 40%; }
  .svc-web-tile-c { top: 34%; left: 7%; width: 44%; }
  .svc-web-tile-d { top: 45%; right: 1%; width: 43%; }
  .svc-web-tile-e { bottom: 2%; left: 28%; width: 37%; }
  .svc-tiles-scene-brand { height: 94vh; min-height: 700px; max-height: 860px; }
  .svc-brand-tile-a { top: 2%; left: 0; width: 48%; }
  .svc-brand-tile-b { top: 6%; right: 0; width: 42%; }
  .svc-brand-tile-c { top: 29%; left: 6%; width: 43%; }
  .svc-brand-tile-d { top: 31%; right: 2%; width: 46%; }
  .svc-brand-tile-e { bottom: 18%; left: 0; width: 44%; }
  .svc-brand-tile-f { bottom: 4%; left: 28%; width: 46%; }
  .svc-brand-tile-g { bottom: 15%; right: 0; width: 42%; }
  .svc-tiles-scene-animations { height: 104vh; min-height: 850px; max-height: 1000px; }
  .svc-anim-tile-a { top: 2%; left: 0; width: 44%; }
  .svc-anim-tile-b { top: 7%; right: 0; width: 40%; }
  .svc-anim-tile-c { top: 26%; left: 12%; width: 44%; }
  .svc-anim-tile-d { top: 35%; right: 2%; width: 40%; }
  .svc-anim-tile-e { bottom: 19%; left: 0; width: 40%; }
  .svc-anim-tile-f { bottom: 6%; left: 29%; width: 40%; }
  .svc-anim-tile-g { bottom: 10%; right: 0; width: 40%; }

  /* Project detail v2 responsive */
  .proj-intro { padding: 45px 24px 30px; }
  .proj-detail-overview { grid-template-columns: 1fr; gap: 48px; }
  .proj-detail-overview-left,
  .proj-detail-overview-right { padding-top: 28px; }
  .proj-meta { padding: 30px 24px 60px; }
  .proj-meta-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .proj-story { padding: 60px 24px; }
  .proj-story-grid { grid-template-columns: 1fr; gap: 48px; }
  .proj-overview-copy { column-count: 1; }
  .proj-hero { padding: 0 24px 42px; }
  .proj-hero-image {
    width: 100%;
    aspect-ratio: auto;
    overflow: visible;
  }
  .proj-hero-image img {
    height: auto;
    object-fit: contain;
    display: block;
  }
  .proj-gallery { padding: 42px 24px; }
  .proj-gallery-stack { width: 100%; }
  .proj-quote, .proj-related { padding: 60px 24px; }
  .proj-related-grid { grid-template-columns: 1fr; }
  .proj-hero-image { min-height: 0; }
}

@media (max-width: 640px) {
  .vl-nav {
    padding: 16px 20px;
    gap: 14px;
    --mobile-nav-panel-top: 71px;
  }
  .vl-nav-links {
    padding: 26px 20px 32px;
    font-size: 18px;
  }
  .vl-nav-links a { min-width: 0; }
  .vl-nav-mobile-cta {
    min-height: 39px;
    padding: 9px 12px;
    font-size: 12px;
  }
  .vl-nav-cta {
    justify-content: center;
    width: 100%;
    padding: 12px 16px;
    margin-top: 14px;
  }
  .vb-test-head {
    display: block;
  }
  .vb-test-head .vl-link {
    margin-top: 24px;
  }
  .vl-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }
  .vl-footer-tagline {
    max-width: none;
    font-size: 18px;
  }

  .vb-hero,
  .vb-manifesto,
  .vb-depth-strip,
  .vb-services,
  .vb-case,
  .vb-test,
  .vb-ins,
  .vb-cta,
  .vb-project-overview,
  .vb-project-gallery,
  .vb-related,
  .vb-article-hero,
  .vb-article-body,
  .vb-legal,
  .vf-thesis,
  .vf-ai,
  .vf-outputs,
  .vf-landscape,
  .vf-process,
  .vf-pricing,
  .vf-hours,
  .vf-fit,
  .svc-hero,
  .svc-problem,
  .svc-solution,
  .svc-deliverables,
  .svc-approach,
  .svc-work,
  .svc-packages,
  .svc-testimonials,
  .svc-calendar,
  .svc-faqs,
  .svc-related,
  .proj-intro,
  .proj-meta,
  .proj-story,
  .proj-quote,
  .proj-related {
    padding-left: 20px;
    padding-right: 20px;
  }
  .vf-landscape-scene .vf-float:nth-child(1) { width: 28% !important; }
  .vf-landscape-scene .vf-float:nth-child(2) { width: 24% !important; }
  .vf-landscape-scene .vf-float:nth-child(3) { width: 32% !important; }
  .vf-landscape-scene .vf-float:nth-child(4) { width: 32% !important; }
  .vf-landscape-scene .vf-float:nth-child(5) { width: 25% !important; }
  .vf-landscape-scene .vf-float:nth-child(6) { width: 40% !important; }
  .vf-landscape-scene .vf-float:nth-child(7) { width: 34% !important; }
  .vf-landscape-scene .vf-float:nth-child(8) { width: 20% !important; }
  .vb-page-hero { padding: 36px 20px 48px; }
  .contact-hero.contact-cta {
    padding: 36px 20px 24px;
  }
  .contact-calendar-inner {
    margin-top: 64px;
  }
  .contact-email-section {
    padding: 58px 20px;
  }
  .contact-email-form {
    padding: 30px 22px;
  }
  .vb-depth-strip { padding: 0 20px 60px; }
  .vb-depth-scene {
    height: 86vh;
    min-height: 620px;
  }
  .vb-depth-plane-1 { width: 76%; left: -6%; top: 5%; }
  .vb-depth-plane-2 { width: 50%; left: 8%; top: 34%; }
  .vb-depth-plane-3 { width: 68%; right: -16%; top: 18%; }
  .vb-depth-plane-4 { width: 72%; left: -8%; bottom: 7%; }
  .vb-depth-plane-5 { width: 56%; left: auto; right: -5%; bottom: 0; }
  .vb-depth-plane-6 { width: 48%; right: 3%; bottom: 34%; }
  .vb-depth-plane-7 { width: 46%; left: 42%; top: 55%; }
  .vf-hero-planes {
    min-height: 360px;
    margin-inline: -8px;
  }
  .services-hero-planes {
    min-height: 360px;
    margin-inline: -8px;
  }
  .svc-hero-visual.svc-hero-planes {
    min-height: 320px;
    margin-inline: -8px;
  }
  .vf-hero-plane {
    box-shadow: 0 18px 44px rgba(0,0,0,0.26);
  }
  .svc-media-plane {
    box-shadow: 0 18px 44px rgba(0,0,0,0.26);
  }
  .svc-detail-plane {
    box-shadow: 0 18px 44px rgba(0,0,0,0.26);
  }
  .svc-hero-grid,
  .svc-problem-grid,
  .svc-solution-grid {
    width: 100%;
    max-width: calc(100vw - 40px);
  }
  .svc-hero-copy,
  .svc-problem-grid > *,
  .svc-solution-grid > *,
  .svc-hero-sub,
  .svc-problem-body p,
  .svc-solution-body p {
    min-width: 0;
    max-width: 100%;
  }
  .svc-hero h1 {
    max-width: 100%;
    font-size: clamp(42px, 11vw, 48px);
    line-height: 1.02;
    letter-spacing: 0;
  }
  .svc-problem-grid h2,
  .svc-solution-grid h2,
  .svc-deliverables-head h2,
  .svc-approach-head h2,
  .svc-work-head h2,
  .svc-packages-head h2,
  .svc-testimonials-head h2,
  .svc-faqs-grid h2,
  .svc-related-head h2 {
    max-width: 100%;
    font-size: clamp(38px, 10.5vw, 44px);
    line-height: 1.06;
    letter-spacing: 0;
  }
  .vf-hero-plane-a { top: 0; left: 2%; width: 43%; }
  .vf-hero-plane-b { top: 3%; left: 53%; right: auto; width: 37%; }
  .vf-hero-plane-c { top: 37%; left: 0; width: 35%; }
  .vf-hero-plane-d { top: 35%; left: 32%; width: 45%; }
  .vf-hero-plane-e { bottom: 0; right: 1%; width: 38%; }
  .vf-hero-plane-f { top: 52%; right: 4%; width: 31%; }
  .vf-hero-plane-g { bottom: 4%; left: 6%; width: 39%; }
  .vf-hero-plane-h { bottom: 0; left: 50%; width: 34%; }
  .vf-hero-plane-i { display: none; }
  .services-hero-plane-a { top: 0; left: 2%; width: 46%; }
  .services-hero-plane-b { top: 4%; left: 52%; right: auto; width: 43%; }
  .services-hero-plane-c { top: 42%; left: 0; width: 43%; }
  .services-hero-plane-d { top: 36%; left: 34%; width: 50%; }
  .services-hero-plane-e { bottom: 7%; right: 23%; width: 52%; }
  .svc-detail-plane-a { top: 0; left: 0; width: 62%; }
  .svc-detail-plane-b { top: 12%; right: 0; width: 50%; }
  .svc-detail-plane-c { bottom: 12%; left: 0; width: 50%; }
  .svc-detail-plane-d { bottom: 0; right: 2%; width: 62%; }
  .svc-hero-visual.svc-hero-planes-animations {
    min-height: 390px;
    margin-inline: -4px;
  }
  .svc-hero-planes-animations .svc-detail-plane-a { top: 0; left: 1%; width: 58%; }
  .svc-hero-planes-animations .svc-detail-plane-b { top: 22%; right: 1%; width: 47%; }
  .svc-hero-planes-animations .svc-detail-plane-c { bottom: 20%; left: 2%; width: 48%; }
  .svc-hero-planes-animations .svc-detail-plane-d { bottom: 0; right: 3%; width: 58%; }
  .svc-hero-visual.svc-hero-planes-web {
    min-height: 390px;
    margin-inline: -4px;
  }
  .svc-hero-visual.svc-hero-planes-brand {
    min-height: 390px;
    margin-inline: -4px;
  }
  .svc-hero-planes-web .svc-detail-plane-a,
  .svc-hero-planes-brand .svc-detail-plane-a { top: 0; left: 1%; width: 58%; }
  .svc-hero-planes-web .svc-detail-plane-b,
  .svc-hero-planes-brand .svc-detail-plane-b { top: 22%; right: 1%; width: 47%; }
  .svc-hero-planes-web .svc-detail-plane-c,
  .svc-hero-planes-brand .svc-detail-plane-c { bottom: 20%; left: 2%; width: 48%; }
  .svc-hero-planes-web .svc-detail-plane-d,
  .svc-hero-planes-brand .svc-detail-plane-d { bottom: 0; right: 3%; width: 58%; }
  .svc-tiles-scene-brand {
    min-height: 1120px;
    max-height: none;
    margin-inline: 0;
  }
  .svc-tiles-scene-web {
    min-height: 760px;
    max-height: none;
    margin-inline: 0;
  }
  .svc-web-tile-a { top: 0; left: 6%; width: 66%; }
  .svc-web-tile-b { top: 13%; right: 6%; width: 58%; }
  .svc-web-tile-c { top: 25%; left: 8%; width: 68%; }
  .svc-web-tile-d { top: 39%; right: 7%; width: 58%; }
  .svc-web-tile-e { top: 53%; left: 7%; width: 60%; bottom: auto; }
  .svc-brand-tile-a { top: 0; left: 6%; width: 66%; }
  .svc-brand-tile-b { top: 13%; right: 6%; width: 58%; }
  .svc-brand-tile-c { top: 25%; left: 8%; width: 68%; }
  .svc-brand-tile-d { top: 39%; right: 7%; width: 58%; }
  .svc-brand-tile-e { top: 53%; left: 7%; width: 60%; bottom: auto; }
  .svc-brand-tile-f { top: 67%; right: 7%; width: 66%; left: auto; bottom: auto; }
  .svc-brand-tile-g { top: 81%; left: 9%; right: auto; width: 60%; bottom: auto; }
  .svc-tiles-scene-animations {
    min-height: 1120px;
    max-height: none;
    margin-inline: 0;
  }
  .svc-anim-tile-a { top: 0; left: 6%; width: 66%; }
  .svc-anim-tile-b { top: 13%; right: 6%; width: 58%; }
  .svc-anim-tile-c { top: 25%; left: 8%; width: 68%; }
  .svc-anim-tile-d { top: 39%; right: 7%; width: 58%; }
  .svc-anim-tile-e { top: 53%; left: 7%; width: 60%; bottom: auto; }
  .svc-anim-tile-f { top: 67%; right: 7%; width: 66%; left: auto; bottom: auto; }
  .svc-anim-tile-g { top: 81%; left: 9%; right: auto; width: 60%; bottom: auto; }
  .services-float-scene {
    height: 56vh;
    min-height: 430px;
  }
  .services-float-plane-a { top: 4%; left: -4%; width: 42%; }
  .services-float-plane-b { top: 8%; left: 45%; width: 44%; }
  .services-float-plane-c { top: 31%; right: -10%; width: 48%; }
  .services-float-plane-d { top: 39%; left: 4%; width: 48%; }
  .services-float-plane-e { top: 58%; left: 38%; width: 42%; }
  .services-float-plane-f { display: none; }
  .services-float-plane-g { bottom: 4%; left: 2%; width: 54%; }
  .vb-hero-main { padding-bottom: 42px; }
  .vb-hero-stats,
  .vb-cross-sell,
  .vb-related-grid,
  .careers-form-row,
  .svc-approach-grid,
  .proj-meta-grid {
    grid-template-columns: 1fr;
  }
  .vb-hero-stat {
    padding-left: 0;
    padding-right: 0;
  }
  .vb-hero-stat-num { font-size: 52px; }
  .vb-page-hero-sub,
  .vb-article-lead,
  .vb-hero-sub,
  .vf-thesis p,
  .proj-intro-lead {
    font-size: 22px;
  }
  .vf-ai-legend {
    font-size: 11px;
    letter-spacing: 0.14em;
  }
  .vb-portfolio-filter,
  .vb-insights-filter {
    margin-bottom: 32px;
  }
  .vb-faq-q {
    gap: 16px;
    padding: 24px 0;
  }
  .vb-faq-toggle {
    width: 40px;
    height: 40px;
  }
  .vb-testimonials-masonry { column-count: 1; }
  .vb-contact-form,
  .about-careers-form,
  .vb-capability,
  .vb-pricing-tier,
  .svc-package,
  .vb-test-card {
    padding-left: 24px;
    padding-right: 24px;
  }
  .svc-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .proj-hero-image,
  .vb-project-hero {
    min-height: 320px;
  }
  .proj-hero-image { min-height: 0; }
  .vb-project-hero { height: 48vh; }
}
