/* ============================================================
   Florico Inc. — Shared stylesheet
   Brand: Barlow Condensed / Barlow | #1E2C9A / #F07A1E / #FAFAF7
   ============================================================ */

:root {
  /* Brand */
  --blue: #2E3FB8;            /* slightly lifted for legibility on dark */
  --blue-bright: #4759D6;     /* link / hover on dark */
  --blue-deep: #151F75;
  --blue-darker: #0E1552;
  --blue-ink: #0A1040;
  --orange: #F07A1E;
  --orange-hover: #ff8d36;
  --orange-glow: #ffb37a;

  /* Dominant dark surfaces */
  --bg: #0B1230;              /* deep navy — primary page background */
  --bg-deep: #070B22;          /* deeper navy for contrast bands */
  --surface: #131B45;          /* card/elevated panel on dark */
  --surface-2: #1A2358;        /* hover / inset */
  --section-alt: #070B22;      /* "alt" sections push DARKER, not lighter */

  /* Light counterparts (used sparingly for breathing room) */
  --light-bg: #F4F3EE;
  --light-bg-warm: #EEEBE0;
  --light-surface: #FFFFFF;
  --light-divider: #D9D6CB;
  --light-text: #17171C;
  --light-text-muted: #555560;

  /* Type on dark (default) */
  --text: #ECECF2;
  --text-strong: #FFFFFF;
  --text-muted: rgba(236,236,242,0.66);
  --divider: rgba(255,255,255,0.10);
  --divider-strong: rgba(255,255,255,0.18);

  --max: 1240px;
  --gutter: clamp(20px, 4vw, 48px);

  --shadow-sm: 0 1px 2px rgba(10,16,64,0.08), 0 2px 6px rgba(10,16,64,0.06);
  --shadow-md: 0 6px 18px rgba(10,16,64,0.10), 0 18px 40px rgba(10,16,64,0.08);
  --shadow-lg: 0 10px 30px rgba(10,16,64,0.14), 0 30px 60px rgba(10,16,64,0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Barlow', system-ui, -apple-system, Segoe UI, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
}
/* Subtle paper-grain noise overlay applied to whole body */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}
body > * { position: relative; z-index: 2; }
img { max-width: 100%; display: block; }
a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-glow); }

h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-weight: 700;
  color: var(--text-strong);
  letter-spacing: 0.005em;
  line-height: 1.05;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: clamp(42px, 6vw, 78px); letter-spacing: -0.01em; }
h2 { font-size: clamp(32px, 4.2vw, 52px); }
h3 { font-size: clamp(22px, 2.2vw, 28px); }
h4 { font-size: 18px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-strong); }
p  { margin: 0 0 1em; text-wrap: pretty; max-width: 68ch; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.narrow    { max-width: 880px; }

/* --------- Eyebrow / section label --------- */
.eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 14px;
  color: var(--orange-glow);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 36px; height: 2px;
  background: var(--orange);
}

/* --------- Header --------- */
.site-header {
  background: rgba(7, 11, 34, 0.85);
  border-bottom: 1px solid var(--divider);
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
}
.site-header .inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header .logo img { width: 180px; height: auto; }
.site-header nav { display: flex; gap: 6px; align-items: center; }
.site-header nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  padding: 12px 14px;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
  white-space: nowrap;
}
.site-header nav a:hover { color: #fff; }
.site-header nav a.active {
  color: #fff;
  border-bottom-color: var(--orange);
}
.site-header .nav-cta {
  margin-left: 8px;
  padding: 10px 18px !important;
  background: var(--orange);
  color: #fff !important;
  border-radius: 2px;
  border-bottom: none !important;
}
.site-header .nav-cta:hover { background: var(--orange-hover); color: #fff !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--divider-strong);
  width: 44px; height: 44px; border-radius: 2px;
  cursor: pointer; padding: 0;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px;
  background: #fff; margin: 4px auto;
}

/* --------- Buttons --------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 16px 28px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background .15s, transform .1s, color .15s;
  text-decoration: none;
  line-height: 1;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-hover); color: #fff; }
.btn-primary:active { transform: translateY(1px); }

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
  padding: 14px 26px;
}
.btn-secondary:hover { background: #fff; color: var(--blue-ink); border-color: #fff; }

.btn .arrow {
  width: 18px; height: 10px;
  display: inline-block;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 10'><path d='M0 5h16M12 1l4 4-4 4' stroke='black' stroke-width='1.5' fill='none'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 10'><path d='M0 5h16M12 1l4 4-4 4' stroke='black' stroke-width='1.5' fill='none'/></svg>") center/contain no-repeat;
}

/* --------- Sections --------- */
section { padding: clamp(64px, 9vw, 120px) 0; }
/* Default section is the dark page background — no override needed */
/* `.alt` is now an EVEN DARKER band for rhythm */
section.alt { background: var(--section-alt); }
/* `.light` is the new opt-in light section (formerly the default) */
section.light {
  background: var(--light-bg);
  color: var(--light-text);
}
section.light h1, section.light h2, section.light h3 { color: var(--blue-ink); }
section.light h4 { color: var(--light-text); }
section.light p  { color: var(--light-text-muted); }
section.light .eyebrow { color: var(--blue); }
section.light .eyebrow::before { background: var(--orange); }
section.light a { color: var(--blue); }
section.light a:hover { color: var(--orange); }

section.dark {
  background: var(--bg-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
section.dark h1, section.dark h2, section.dark h3 { color: #fff; }
section.dark .eyebrow { color: var(--orange-glow); }
section.dark .eyebrow::before { background: var(--orange); }
section.dark p { color: rgba(255,255,255,0.82); }
section.dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
section.dark::after {
  content: '';
  position: absolute;
  left: -80px; bottom: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(240,122,30,0.22) 0%, transparent 62%);
  pointer-events: none;
}
section.dark > .container { position: relative; z-index: 1; }

/* Default sections also get the blueprint grid — the visual signature */
section { position: relative; }
section:not(.light)::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}
section > .container { position: relative; z-index: 1; }

section.tan { background: var(--light-bg-warm); color: var(--light-text); }
section.tan h1, section.tan h2, section.tan h3 { color: var(--blue-ink); }
section.tan p { color: var(--light-text-muted); }
section.tan .eyebrow { color: var(--blue); }
section.tight { padding: clamp(48px, 7vw, 90px) 0; }

.section-head { margin-bottom: 56px; max-width: 820px; }
.section-head p.lede { font-size: 19px; color: var(--text-muted); }

hr.rule {
  border: 0;
  height: 1px;
  background: var(--divider);
  margin: 0;
}

/* --------- Hero --------- */
.hero {
  position: relative;
  padding: clamp(72px, 10vw, 140px) 0 clamp(72px, 10vw, 140px);
  background:
    radial-gradient(1200px 600px at 85% 0%, rgba(46,63,184,0.32) 0%, transparent 60%),
    radial-gradient(900px 500px at 0% 100%, rgba(240,122,30,0.18) 0%, transparent 55%),
    var(--bg-deep);
  overflow: hidden;
}
/* Blueprint-grid wash behind hero */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse at top right, black 0%, transparent 70%);
          mask-image: radial-gradient(ellipse at top right, black 0%, transparent 70%);
  pointer-events: none;
}
/* Diagonal orange accent stripes in the hero corner */
.hero::after {
  content: '';
  position: absolute;
  left: -80px; bottom: -80px;
  width: 260px; height: 260px;
  background:
    repeating-linear-gradient(45deg,
      var(--orange) 0 3px,
      transparent 3px 14px);
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }
.hero .inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.hero h1 {
  margin-bottom: 24px;
  font-size: clamp(46px, 7vw, 88px);
}
.hero h1 .em { color: var(--orange); }
.hero .subhead {
  font-size: clamp(18px, 1.6vw, 22px);
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin-bottom: 36px;
}
.hero .actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-media {
  position: relative;
  aspect-ratio: 4/5;
  background: #0E1552;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,44,154,0.0) 55%, rgba(30,44,154,0.35) 100%);
}
.hero-media .caption {
  position: absolute;
  left: 24px; bottom: 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 13px;
  color: #fff;
  background: rgba(30,44,154,0.9);
  padding: 8px 14px;
  z-index: 2;
}

/* Hero corner tick */
.hero-media .tick {
  position: absolute; top: 0; right: 0;
  width: 80px; height: 80px; pointer-events: none; z-index: 2;
}
.hero-media .tick::before, .hero-media .tick::after {
  content: ''; position: absolute; background: var(--orange);
}
.hero-media .tick::before { top: 0; right: 0; width: 80px; height: 4px; }
.hero-media .tick::after  { top: 0; right: 0; width: 4px; height: 80px; }

/* --------- Stat bar --------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--divider-strong);
  border-bottom: 1px solid var(--divider-strong);
}
.stats .stat {
  padding: 36px 24px;
  border-right: 1px solid var(--divider);
}
.stats .stat:last-child { border-right: 0; }
.stats .stat .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 4vw, 52px);
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}
.stats .stat .lbl {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
/* In light sections, stats invert */
section.light .stats { border-top-color: var(--light-divider); border-bottom-color: var(--light-divider); }
section.light .stats .stat { border-right-color: var(--light-divider); }
section.light .stats .stat .num { color: var(--blue); }
section.light .stats .stat .lbl { color: var(--light-text-muted); }

/* --------- Client names strip --------- */
.client-names {
  padding: 44px 0;
  background: var(--blue-ink);
  color: #fff;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--orange);
}
.client-names::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.6;
  pointer-events: none;
}
.client-names::after {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(240,122,30,0.45) 0%, transparent 65%);
  pointer-events: none;
}
.client-names > .container { position: relative; z-index: 1; }
.client-names .label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 13px;
  color: var(--orange-glow);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.client-names .label::before {
  content: '';
  width: 36px; height: 2px;
  background: var(--orange);
}
.client-names .names {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 1.9vw, 24px);
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.client-names .names .sep {
  color: var(--orange);
  margin: 0 14px;
  font-weight: 700;
}
.client-names .names span:not(.sep) {
  display: inline-block;
  transition: color .2s;
}
.client-names .names span:not(.sep):hover {
  color: var(--orange-glow);
}

/* Real client logos */
.client-names .logo-row {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 18px 24px;
  align-items: center;
  padding-top: 8px;
}
.client-names .lg {
  background: #fff;
  border-radius: 4px;
  padding: 14px 12px;
  height: 72px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  transition: transform .2s, box-shadow .2s;
}
.client-names .lg:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(240,122,30,0.25);
}
.client-names .lg img {
  max-width: 100%;
  max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
}
@media (max-width: 1100px) {
  .client-names .logo-row { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 680px) {
  .client-names .logo-row { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .client-names .lg { height: 60px; padding: 10px 8px; }
}

/* --------- Cards (capabilities) --------- */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cap-card {
  background: var(--surface);
  border: 1px solid var(--divider-strong);
  padding: 36px 32px 40px;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 12px 28px rgba(0,0,0,0.25);
  position: relative;
}
/* subtle blueprint corner on cards */
.cap-card::after {
  content: '';
  position: absolute;
  right: 0; bottom: 0;
  width: 72px; height: 72px;
  background:
    linear-gradient(to right, rgba(255,255,255,0.08) 1px, transparent 1px) 0 0/12px 12px,
    linear-gradient(to bottom, rgba(255,255,255,0.08) 1px, transparent 1px) 0 0/12px 12px;
  -webkit-mask-image: linear-gradient(135deg, transparent 40%, black 100%);
          mask-image: linear-gradient(135deg, transparent 40%, black 100%);
  pointer-events: none;
}
.cap-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 20px 40px rgba(0,0,0,0.35);
  border-color: var(--orange);
}
.cap-card .accent {
  width: 44px; height: 3px;
  background: var(--orange);
  margin-bottom: 24px;
}
.cap-card .icon {
  width: 40px; height: 40px;
  color: var(--orange);
  margin-bottom: 18px;
}
.cap-card h3 { margin-bottom: 10px; font-size: 24px; color: var(--text-strong); }
.cap-card .meta {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 6px;
}
.cap-card p { color: rgba(255,255,255,0.72); margin: 0; }

/* Light-section variant of cap-card */
section.light .cap-card {
  background: var(--light-surface);
  border-color: var(--light-divider);
  box-shadow: 0 1px 2px rgba(10,16,64,0.06), 0 12px 28px rgba(10,16,64,0.06);
}
section.light .cap-card::after {
  background:
    linear-gradient(to right, rgba(30,44,154,0.08) 1px, transparent 1px) 0 0/12px 12px,
    linear-gradient(to bottom, rgba(30,44,154,0.08) 1px, transparent 1px) 0 0/12px 12px;
}
section.light .cap-card h3 { color: var(--blue-ink); }
section.light .cap-card .icon { color: var(--blue); }
section.light .cap-card p { color: var(--light-text-muted); }

/* --------- Two-column split --------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}
.split.ratio-45-55 { grid-template-columns: 4.5fr 5.5fr; }
.split .media {
  aspect-ratio: 4/3;
  background: var(--surface);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--divider-strong);
}
.split .media img { width: 100%; height: 100%; object-fit: cover; }

/* --------- Leadership --------- */
.leaders {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.leader {
  background: var(--surface);
  border: 1px solid var(--divider-strong);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}
.leader .mono {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 96px;
  letter-spacing: 0.04em;
}
.leader .portrait {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-deep);
  border-bottom: 3px solid var(--orange);
}
.leader > div:not(.mono):not(.portrait) {
  padding: 28px 32px 32px;
}
.leader .portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95);
  transition: filter .25s ease, transform .4s ease;
}
.leader:hover .portrait img {
  filter: saturate(1.05);
  transform: scale(1.04);
}
.leader h3 { font-size: 22px; margin-bottom: 2px; color: var(--text-strong); }
.leader .title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 12px;
}
.leader p { color: rgba(255,255,255,0.72); margin: 0; font-size: 16px; }

/* --------- JOC project list --------- */
.proj-list { border-top: 1px solid var(--divider-strong); }
.proj-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--divider);
  transition: padding .15s, background .15s;
}
.proj-row:hover { padding-left: 8px; background: rgba(255,255,255,0.02); }
.proj-row .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--orange);
  letter-spacing: 0.1em;
}
.proj-row .name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--text-strong);
}
.proj-row .scope {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

/* --------- Relationships grid --------- */
.rel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--divider-strong);
  border: 1px solid var(--divider-strong);
}
.rel-grid .cell {
  background: var(--surface);
  padding: 28px 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text-strong);
  letter-spacing: 0.02em;
}
.rel-grid .cell .tag {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 6px;
}

/* --------- Form --------- */
.form-wrap {
  background: var(--surface);
  border: 1px solid var(--divider-strong);
  padding: clamp(32px, 4vw, 48px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}
.form-grid .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.82);
}
.field label .req { color: var(--orange); }
.field input, .field select, .field textarea {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  color: var(--text-strong);
  background: var(--bg-deep);
  border: 1px solid var(--divider-strong);
  border-radius: 0;
  padding: 14px 16px;
  transition: border-color .15s, background .15s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.35); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--bg);
}
.field textarea { min-height: 140px; resize: vertical; }
.form-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 24px; gap: 16px; flex-wrap: wrap;
}
.form-foot .note { font-size: 13px; color: rgba(255,255,255,0.55); margin: 0; }

.contact-info {
  border-left: 3px solid var(--orange);
  padding: 4px 0 4px 20px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
}
.contact-info strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text-strong);
  margin-bottom: 4px;
}

/* --------- Callout / CTA band --------- */
.cta-band {
  background:
    linear-gradient(135deg, var(--blue-darker) 0%, var(--bg-deep) 100%);
  color: #fff;
  padding: clamp(56px, 8vw, 96px) 0;
  border-top: 1px solid var(--divider-strong);
  border-bottom: 4px solid var(--orange);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.82); }
.cta-band .inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: center;
}
.cta-band .actions { justify-self: end; }
.cta-band .btn-secondary { color: #fff; border-color: rgba(255,255,255,0.5); }
.cta-band .btn-secondary:hover { background: #fff; color: var(--blue-ink); border-color: #fff; }

/* --------- Footer --------- */
.site-footer {
  background: var(--bg-deep);
  color: #fff;
  padding: 72px 0 0;
  border-top: 1px solid var(--divider-strong);
}
.site-footer .cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.site-footer h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin: 0 0 16px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a {
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  transition: color .15s;
}
.site-footer a:hover { color: var(--orange); }
.site-footer .logo-col img { width: 180px; margin-bottom: 20px; }
.site-footer .logo-col p {
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  max-width: 320px;
}
.site-footer .bottom {
  padding: 22px 0 26px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.62);
  letter-spacing: 0.03em;
}

/* --------- Page hero (for interior pages) --------- */
.page-hero {
  padding: clamp(60px, 8vw, 100px) 0 clamp(48px, 6vw, 72px);
  background:
    radial-gradient(900px 500px at 100% 0%, rgba(46,63,184,0.32) 0%, transparent 60%),
    var(--bg-deep);
  border-bottom: 1px solid var(--divider-strong);
}
.page-hero .crumb {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.page-hero .crumb .sep { color: rgba(255,255,255,0.25); margin: 0 10px; }
.page-hero .crumb a { color: rgba(255,255,255,0.7); }
.page-hero .crumb a:hover { color: var(--orange); }
.page-hero h1 { margin-bottom: 20px; max-width: 18ch; color: var(--text-strong); }
.page-hero h1 .em { color: var(--orange); }
.page-hero .lede {
  font-size: clamp(18px, 1.6vw, 21px);
  color: rgba(255,255,255,0.78);
  max-width: 68ch;
  margin: 0;
}

/* --------- Icons (inline SVG) --------- */
.i-hardhat, .i-finish, .i-cable {
  width: 40px; height: 40px; color: var(--orange);
}

/* --------- Mobile --------- */
/* Tablet/narrow-laptop compression: tighten before mobile nav kicks in */
@media (max-width: 1180px) {
  .site-header .logo img { width: 148px; }
  .site-header nav a { padding: 12px 10px; font-size: 15px; letter-spacing: 0.08em; }
  .site-header .nav-cta { padding: 9px 14px !important; font-size: 14px; }
}
@media (max-width: 1040px) {
  .site-header .nav-cta { display: none; }
}

@media (max-width: 1024px) {
  .hero .inner { grid-template-columns: 1fr; }
  .hero-media { aspect-ratio: 4/3; max-height: 420px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats .stat:nth-child(2n) { border-right: 0; }
  .stats .stat:nth-child(-n+2) { border-bottom: 1px solid var(--divider); }
  .cap-grid { grid-template-columns: 1fr; }
  .split, .split.ratio-45-55 { grid-template-columns: 1fr; }
  .leaders { grid-template-columns: 1fr; }
  .rel-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .cta-band .inner { grid-template-columns: 1fr; }
  .cta-band .actions { justify-self: start; }
  .site-footer .cols { grid-template-columns: 1fr 1fr; }
  .site-header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg-deep);
    border-bottom: 1px solid var(--divider-strong);
    padding: 12px var(--gutter) 20px;
  }
  .site-header nav.open { display: flex; }
  .site-header nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--divider);
    border-radius: 0;
  }
  .site-header nav a:last-child { border-bottom: 0; }
  .site-header .nav-cta { margin-top: 8px; text-align: center; }
  .nav-toggle { display: block; }
  .proj-row { grid-template-columns: 40px 1fr; }
  .proj-row .scope { grid-column: 1 / -1; padding-left: 64px; }
}

@media (max-width: 560px) {
  .rel-grid { grid-template-columns: 1fr; }
  .leader > div:not(.mono):not(.portrait) { padding: 22px 24px 26px; }
  .site-footer .cols { grid-template-columns: 1fr; }
  .site-footer .bottom { flex-direction: column; align-items: flex-start; }
}

/* --------- Utilities --------- */
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 32px; }
.text-muted { color: var(--text-muted); }
.center { text-align: center; }

/* ============================================================
   Textures + animations (added pass 2)
   ============================================================ */

/* Section alt now gets a subtle blueprint texture */
section.alt {
  position: relative;
}
section.alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  opacity: 0.9;
}
section.alt > .container { position: relative; }
/* In light sections, switch grid back to dark-on-light */
section.light::before { display: none; }

/* CTA band gets a diagonal hatch pattern */
.cta-band { position: relative; overflow: hidden; }
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg,
      rgba(255,255,255,0.04) 0 2px,
      transparent 2px 22px);
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  right: -120px; top: -120px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(240,122,30,0.22) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band > .container { position: relative; z-index: 1; }

/* Page hero gets a soft blueprint wash too */
.page-hero { position: relative; overflow: hidden; }
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse at bottom right, black 0%, transparent 75%);
          mask-image: radial-gradient(ellipse at bottom right, black 0%, transparent 75%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: 0; bottom: 0;
  width: 160px; height: 4px;
  background: var(--orange);
}
.page-hero > .container { position: relative; z-index: 1; }

/* Stat numbers gain an underline accent when visible */
.stats .stat {
  position: relative;
}
.stats .stat::after {
  content: '';
  position: absolute;
  left: 24px; bottom: 28px;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 1s cubic-bezier(.2,.7,.2,1);
  transition-delay: 0.3s;
}
.stats.in-view .stat::after { width: 40px; }

/* Cap-card improvements */
.cap-card {
  position: relative;
  overflow: hidden;
}
.cap-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.cap-card:hover::before { transform: scaleX(1); }
.cap-card .icon, .cap-card .i-hardhat, .cap-card .i-finish, .cap-card .i-cable {
  transition: transform .3s ease, color .3s ease;
}
.cap-card:hover .i-hardhat,
.cap-card:hover .i-finish,
.cap-card:hover .i-cable { color: var(--orange); transform: translateY(-2px); }

/* Media frames get an orange tick frame accent on hover */
.split .media, .hero-media {
  position: relative;
}
.split .media::before {
  content: '';
  position: absolute;
  top: -10px; left: -10px;
  width: 60px; height: 60px;
  border-top: 3px solid var(--orange);
  border-left: 3px solid var(--orange);
  opacity: 0;
  transform: translate(6px, 6px);
  transition: opacity .4s ease, transform .4s ease;
}
.split .media.in-view::before { opacity: 1; transform: translate(0, 0); }
.split .media img {
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
}
.split .media:hover img { transform: scale(1.04); }

/* Hero image zoom-in on mount */
.hero-media img {
  animation: heroIn 1.6s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes heroIn {
  from { transform: scale(1.08); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

/* ---------- Client logo strip ---------- */
.client-logos {
  padding: 56px 0;
  background: var(--bg-deep);
  border-top: 1px solid var(--divider-strong);
  border-bottom: 1px solid var(--divider-strong);
  position: relative;
  overflow: hidden;
}
.client-logos .label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.client-logos .label::before,
.client-logos .label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--divider);
}
.client-logos .row {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 24px 32px;
  align-items: center;
  justify-items: center;
}
.client-logos .row svg {
  width: 100%;
  max-width: 150px;
  height: 44px;
  color: #fff;
  opacity: 0.55;
  transition: opacity .2s ease, color .2s ease, transform .2s ease;
}
.client-logos .row a { display: block; width: 100%; text-align: center; }
.client-logos .row a:hover svg {
  opacity: 1;
  color: var(--orange-glow);
  transform: translateY(-2px);
}
@media (max-width: 1100px) {
  .client-logos .row { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 680px) {
  .client-logos .row { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .client-logos .row svg { height: 38px; }
}

/* Tier banner with dividing rule */
.client-logos::after {
  content: '';
  position: absolute;
  left: 50%; top: 28px;
  transform: translateX(-50%);
  width: 80px; height: 2px;
  background: var(--orange);
  opacity: 0;
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }
.reveal.delay-4 { transition-delay: .32s; }

/* Slide from the side */
.reveal-x {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal-x.in-view { opacity: 1; transform: translateX(0); }

/* Scale-in for media */
.reveal-scale {
  opacity: 0;
  transform: scale(.96);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveal-scale.in-view { opacity: 1; transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-x, .reveal-scale { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-media img { animation: none !important; }
}

/* Project row — animated underline on hover */
.proj-row {
  position: relative;
  cursor: default;
}
.proj-row::before {
  content: '';
  position: absolute;
  left: 0; bottom: -1px;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width .4s cubic-bezier(.2,.7,.2,1);
}
.proj-row:hover::before { width: 100%; }
.proj-row:hover .name { color: var(--orange); transition: color .2s; }

/* Relationships grid cell hover */
.rel-grid .cell {
  transition: background .2s, color .2s;
  position: relative;
}
.rel-grid .cell:hover { background: var(--surface-2); }
.rel-grid .cell:hover .tag { color: var(--orange-glow); }

.rel-grid .cell .logo-box {
  background: #fff;
  border-radius: 4px;
  padding: 14px;
  margin-top: 12px;
  height: 80px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 1px 4px rgba(10,16,64,0.08);
}
.rel-grid .cell .logo-box img {
  max-width: 100%;
  max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
}

/* Leader monogram shimmer on hover */
.leader { transition: border-color .2s, transform .2s, box-shadow .2s; }
.leader:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.4);
}
.leader:hover .mono { background: var(--orange); }
.leader .mono { transition: background .2s; }

/* Button arrow nudges on hover */
.btn:hover .arrow { transform: translateX(3px); }
.btn .arrow { transition: transform .2s ease; }

/* Marquee (scrolling logo row) */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 24px 0 8px;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 45s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee .lg {
  flex: 0 0 auto;
  width: 200px;
  height: 120px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18), 0 8px 24px rgba(0,0,0,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.marquee .lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.22), 0 14px 32px rgba(0,0,0,0.18);
}
.marquee .lg img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 10px)); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; }
}

/* Trade thumbnail grid (Division 9 self-perform list with photos) */
.div9-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 64px;
  align-items: end;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--divider);
}
.div9-head h2 { margin: 8px 0 0; }
@media (max-width: 820px) {
  .div9-head { grid-template-columns: 1fr; gap: 16px; }
}

.trade-grid {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.trade-grid-4 {
  margin-top: 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 980px) {
  .trade-grid-4 { grid-template-columns: 1fr 1fr; gap: 18px; }
}
.trade-grid li {
  background: var(--surface);
  border: 1px solid var(--divider-strong);
  border-bottom: 3px solid var(--orange);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.trade-grid li:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.35);
}
.trade-grid .img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-deep);
}
.trade-grid .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.trade-grid li:hover .img img {
  transform: scale(1.05);
}
.trade-grid .lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-strong);
  padding: 14px 16px;
}
@media (max-width: 720px) {
  .trade-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .trade-grid .lbl { font-size: 15px; padding: 10px 12px; }
}

/* Project cards (JOC past performance with imagery) */
.proj-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 820px) {
  .proj-cards { grid-template-columns: 1fr; }
}
.proj-card {
  background: var(--surface);
  border: 1px solid var(--divider-strong);
  border-bottom: 3px solid var(--orange);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transition: transform .25s ease, box-shadow .25s ease;
}
.proj-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.4);
}
.proj-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--section-alt);
}
.proj-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.proj-card:hover .proj-card-media img { transform: scale(1.05); }
.proj-card-num {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: #fff;
  background: rgba(7,11,34,0.92);
  padding: 6px 10px;
  border-left: 3px solid var(--orange);
  backdrop-filter: blur(6px);
}
.proj-card-body { padding: 18px 20px 20px; }
.proj-card-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--text-strong);
  text-transform: uppercase;
  line-height: 1.15;
}
.proj-card-scope {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
  letter-spacing: 0.04em;
}

/* Footer top accent band */
.site-footer { position: relative; }
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange) 33%, transparent 33%);
}

/* ============================================================
   Depth pass 3 — photographic band, pull quote, richer tokens
   ============================================================ */

/* Full-bleed photographic band with dark overlay */
.photo-band {
  position: relative;
  padding: clamp(100px, 14vw, 180px) 0;
  background: #0a0a12;
  color: #fff;
  overflow: hidden;
  border-top: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
}
.photo-band .bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  filter: saturate(0.7) contrast(1.05);
}
.photo-band::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(14,21,82,0.85) 0%, rgba(10,10,18,0.65) 55%, rgba(14,21,82,0.55) 100%);
  pointer-events: none;
}
.photo-band::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  opacity: 0.6;
}
.photo-band > .container { position: relative; z-index: 1; }
.photo-band .eyebrow { color: var(--orange-glow); }
.photo-band .eyebrow::before { background: var(--orange); }
.photo-band h2 {
  color: #fff;
  font-size: clamp(36px, 5.4vw, 68px);
  max-width: 18ch;
}
.photo-band p.lede { color: rgba(255,255,255,0.82); font-size: clamp(18px,1.7vw,22px); max-width: 60ch; }

/* Pull quote */
.pullquote {
  padding: clamp(64px, 9vw, 120px) 0;
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--divider-strong);
  border-bottom: 1px solid var(--divider-strong);
}
.pullquote::before {
  content: '\201C';
  position: absolute;
  top: -60px; left: 4vw;
  font-family: 'Barlow Condensed', serif;
  font-weight: 700;
  font-size: 420px;
  line-height: 1;
  color: var(--orange);
  opacity: 0.18;
  pointer-events: none;
}
.pullquote blockquote {
  margin: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  color: var(--text-strong);
  max-width: 22ch;
  position: relative;
}
.pullquote blockquote::before {
  content: '';
  display: block;
  width: 56px; height: 3px;
  background: var(--orange);
  margin-bottom: 24px;
}
.pullquote cite {
  display: block;
  margin-top: 28px;
  font-style: normal;
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.6);
}

/* Hero right card — labeled metadata plate overlayed on image */
.hero-media .plate {
  position: absolute;
  right: 18px; top: 18px;
  background: rgba(10,16,64,0.82);
  color: #fff;
  padding: 14px 16px;
  z-index: 2;
  font-family: 'Barlow Condensed', sans-serif;
  border-left: 3px solid var(--orange);
  backdrop-filter: blur(6px);
}
.hero-media .plate .k { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange-glow); font-weight: 700; }
.hero-media .plate .v { font-size: 18px; font-weight: 700; letter-spacing: 0.04em; }

/* Darker body + shadows for any surface */
.cap-card { box-shadow: 0 8px 24px rgba(0,0,0,0.28); }
.cap-card:hover { box-shadow: 0 18px 40px rgba(0,0,0,0.42); }

/* stronger blueprint underlay on hero */
.hero::before { opacity: 1; }

/* alternate: deeply tinted dark section for contrast pieces */
.section-deep {
  background: var(--blue-ink);
  color: #fff;
  padding: clamp(72px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.section-deep h2 { color: #fff; }
.section-deep p { color: rgba(255,255,255,0.78); }
.section-deep::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.035) 0 2px, transparent 2px 22px),
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: auto, 60px 60px, 60px 60px;
  pointer-events: none;
}
.section-deep::after {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(240,122,30,0.25) 0%, transparent 62%);
  pointer-events: none;
}
.section-deep > .container { position: relative; z-index: 1; }
.section-deep .cap-card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12); color: #fff; }
.section-deep .cap-card h3 { color: #fff; }
.section-deep .cap-card p { color: rgba(255,255,255,0.72); }
.section-deep .cap-card .meta { color: var(--orange-glow); }

/* Stats panel: a slightly raised dark plate */
.stats {
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  border: 1px solid var(--divider-strong);
  border-top: 3px solid var(--orange);
}
section.light .stats {
  background: var(--light-surface);
  border: 1px solid var(--light-divider);
  border-top: 3px solid var(--blue);
  box-shadow: var(--shadow-sm);
}

/* Proj row numbering */
.proj-row .num {
  font-size: 22px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.12em;
  font-family: 'Barlow Condensed', sans-serif;
}

/* JOC project rows — heavier visuals */
.proj-list { border-top: 2px solid var(--orange); }
.proj-row { padding: 28px 0; }
.proj-row .name { font-size: clamp(24px, 2.6vw, 32px); }

/* Page hero retains its dark wash — no override */

/* Surface cards in alt-dark band use the lighter elevated navy */
section.alt .form-wrap,
section.alt .aside-card,
section.alt .cap-card,
section.alt .leader { background: var(--surface); }

/* Deck of thumbnails in logo strip replaced by text — no-op stub */

/* Reduce orange noise where it crept in */
.cap-card .meta { color: var(--orange); }

/* ---------- Contact aside card ---------- */
.aside-card {
  background: var(--surface);
  border: 1px solid var(--divider-strong);
  padding: clamp(28px, 3.5vw, 40px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}
.aside-card .eyebrow { color: var(--orange-glow); margin-bottom: 14px; }
.aside-card .addr {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 22px;
}
.aside-card .addr strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--text-strong);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.aside-card h4 { color: var(--text-strong); margin: 0 0 8px; }
.aside-card p  { color: rgba(255,255,255,0.7); margin: 0; }

.response-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--orange);
  background: rgba(240,122,30,0.10);
  border: 1px solid rgba(240,122,30,0.4);
  padding: 8px 14px;
}
.response-badge::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(240,122,30,0.25);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(240,122,30,0.25); }
  50%      { box-shadow: 0 0 0 8px rgba(240,122,30,0); }
}
