/* ==========================================================
   EXECUTIVE ELECTRONICS — homepage
   Composition reference: Wonderful desktop/mobile screenshots
   Webflow-friendly: flat class names, transitions on class
   toggles only (maps to IX2 scroll-into-view interactions).
   ========================================================== */

/* Space Grotesk's stylized ampersand reads as broken at display sizes;
   this face covers only U+0026 so headings render Inter's conventional "&". */
@font-face {
  font-family: "EE Ampersand";
  src: url("assets/fonts/inter-ampersand.woff2") format("woff2"), local("Helvetica Neue"), local("Arial"), local("Roboto");
  unicode-range: U+0026;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  /* Executive Electronics approved palette */
  --brand-navy: #0D1654;
  --brand-blue: #276CBC;
  --brand-sand: #D4C791;
  --brand-taupe: #866C5F;
  --brand-ivory: #FCFBFA;
  /* surfaces */
  --page: var(--brand-ivory);
  --surface: var(--brand-ivory);
  --ink-section: var(--brand-navy);
  /* text */
  --text: var(--brand-navy);
  --text-body: rgba(13,22,84,0.82);
  --text-secondary: var(--brand-taupe);
  --text-muted: rgba(134,108,95,0.72);
  --on-dark: var(--brand-ivory);
  --on-dark-body: rgba(252,251,250,0.78);
  --on-dark-muted: rgba(252,251,250,0.52);
  /* lines */
  --line: rgba(13,22,84,0.14);
  --line-on-dark: rgba(252,251,250,0.16);
  /* type */
  --font: "Inter", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font-display: "EE Ampersand", "Space Grotesk", "Inter", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --track-display: -0.035em;
  /* layout */
  --gutter: clamp(20px, 3.9vw, 56px);
  --radius-card: 8px;
  --radius-pill: 100px;
  /* motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--page);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; letter-spacing: var(--track-display); line-height: 1.06; }

.container { padding-left: var(--gutter); padding-right: var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.skip-link { position: fixed; top: -48px; left: 16px; z-index: 200; background: var(--brand-ivory); padding: 10px 18px; border-radius: 6px; transition: top .2s; }
.skip-link:focus { top: 12px; }
.u-desktop-only { display: inline; }

/* ==========================================================
   REVEALS — quiet fade/translate only
   ========================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].is-inview { opacity: 1; transform: none; }
[data-reveal][data-reveal-delay="1"] { transition-delay: .12s; }
[data-reveal][data-reveal-delay="2"] { transition-delay: .24s; }
[data-reveal][data-reveal-delay="3"] { transition-delay: .36s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition: none !important; }
}

/* ==========================================================
   BUTTONS — pill geometry reserved for controls
   ========================================================== */
.btn {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.btn:active { transform: scale(0.98); }
.btn--light { background: var(--brand-ivory); color: var(--brand-navy); }
.btn--light:hover { background: var(--brand-sand); }
.btn--ghostlight { background: transparent; color: var(--brand-ivory); border: 1px solid rgba(252,251,250,0.62); }
.btn--ghostlight:hover { border-color: var(--brand-ivory); background: rgba(252,251,250,0.10); }
.btn--dark { background: var(--brand-navy); color: var(--brand-ivory); }
.btn--dark:hover { background: var(--brand-blue); }
.btn--nav { background: var(--brand-navy); color: var(--brand-ivory); font-size: 14px; padding: 11px 20px; }
.btn--nav:hover { background: var(--brand-blue); }

/* ==========================================================
   NAV — ivory header, navy brand
   ========================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--brand-ivory);
  box-shadow: 0 1px 0 var(--line);
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease);
}
.nav_inner {
  display: flex;
  align-items: center;
  padding: 14px var(--gutter);
}
.nav_logo { display: block; flex: 0 0 auto; }
.nav_logo img {
  display: block;
  height: 64px;
  width: auto;
  max-width: min(190px, 32vw);
  object-fit: contain;
}
.nav_menu { display: flex; gap: clamp(14px, 1.8vw, 28px); margin-left: clamp(18px, 3.8vw, 68px); }
.nav_link {
  font-size: 14px;
  color: var(--text-body);
  transition: color .25s var(--ease), opacity .25s;
}
.nav_link:hover { color: var(--brand-blue); }
.nav_right { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.nav_utility { font-size: 14px; color: var(--text-body); transition: color .25s var(--ease); }
.nav_utility:hover { color: var(--brand-blue); }

.nav.is-scrolled { background: rgba(252,251,250,0.94); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--line); }
.nav.is-scrolled .nav_logo { color: var(--text); }
.nav.is-scrolled .nav_link { color: var(--text-body); }
.nav.is-scrolled .nav_link:hover { color: var(--brand-blue); }

.nav_burger {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; align-items: center; gap: 7px;
}
.nav_burger span { display: block; width: 24px; height: 1.5px; background: var(--text); transition: transform .3s var(--ease), background-color .3s; }
.nav.is-scrolled .nav_burger span, .nav.is-open .nav_burger span { background: var(--text); }
.nav.is-open .nav_burger span:nth-child(1) { transform: translateY(4.25px) rotate(45deg); }
.nav.is-open .nav_burger span:nth-child(2) { transform: translateY(-4.25px) rotate(-45deg); }

.nav_mobile {
  display: none;
  flex-direction: column;
  background: var(--brand-ivory);
  border-bottom: 1px solid var(--line);
  padding: 12px var(--gutter) 28px;
}
.nav.is-open .nav_mobile { display: flex; }
.nav.is-open { background: var(--brand-ivory); }
.nav.is-open .nav_logo { color: var(--text); }
.nav_mobilelink { font-family: var(--font-display); font-size: 22px; font-weight: 400; letter-spacing: -0.02em; padding: 12px 0; border-bottom: 1px solid var(--line); }

/* ==========================================================
   HERO — full-bleed media, split copy
   ========================================================== */
.hero {
  position: relative;
  /* Intentionally short of full viewport so the brand strip below bleeds
     into view and signals there is more page to scroll. */
  min-height: 88svh;
  display: flex;
  align-items: flex-end;
}
.hero_media { position: absolute; inset: 0; overflow: hidden; }
.hero_media img, .hero_media video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero_media img {
  transform: scale(1.06);
  transition: transform 7s var(--ease);
}
body.is-loaded .hero_media img { transform: scale(1); }
.hero_scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.28) 38%, rgba(0,0,0,0.08) 65%, rgba(0,0,0,0.32) 100%);
}
.hero_inner {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  padding: 0 var(--gutter) clamp(40px, 6vh, 72px);
}
.hero_title {
  color: var(--brand-ivory);
  font-size: clamp(44px, 4.7vw, 82px);
  letter-spacing: -0.05em;
  text-shadow: 0 2px 40px rgba(13,22,84,0.58), 0 1px 10px rgba(13,22,84,0.38);
}
.hero_aside { max-width: 380px; padding-bottom: 8px; }
.hero_note {
  color: var(--brand-ivory);
  font-size: 17px; line-height: 1.45; margin-bottom: 22px;
  text-shadow: 0 1px 26px rgba(13,22,84,0.62), 0 1px 8px rgba(13,22,84,0.42);
}
.hero_actions { display: flex; gap: 12px; }
.hero_actions .btn { min-width: 160px; text-align: center; line-height: 1.05; }

/* ==========================================================
   BRAND STRIP — quiet grayscale wordmarks, crossfade cycle
   ========================================================== */
.logos { background: var(--surface); border-bottom: 1px solid var(--line); }
.logos_inner {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  justify-items: center;
  padding: 44px var(--gutter);
}
.logos_item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s var(--ease);
}
.logos_item.is-fading { opacity: 0; }
.logos_logo {
  height: var(--lh, 18px);
  width: auto;
  filter: brightness(0);
  opacity: .85;
}
.logos_link { display: block; width: fit-content; margin: -12px auto 28px; padding-bottom: 3px; border-bottom: 1px solid var(--line-strong); color: var(--text-secondary); font-size: 12px; font-weight: 500; letter-spacing: .055em; text-transform: uppercase; transition: color .25s var(--ease), border-color .25s var(--ease); }
.logos_link:hover { color: var(--brand-blue); border-color: var(--brand-blue); }
.logos_link:focus-visible { outline: 2px solid var(--brand-blue); outline-offset: 5px; }

/* ==========================================================
   SECTION HEADS
   ========================================================== */
.section { background: var(--page); }
.section--solutions { padding: clamp(72px, 9vw, 130px) 0 clamp(64px, 8vw, 110px); }
.section-head { margin-bottom: clamp(36px, 4.5vw, 64px); }
.section-head_title { font-size: clamp(34px, 3.4vw, 56px); color: var(--text); }
.section-head_sub { font-size: 15px; color: var(--text-secondary); margin-top: 18px; }
.eyebrow { font-size: 14px; color: var(--text-secondary); }

/* ==========================================================
   RAILS — horizontal overflow, hidden scrollbar
   ========================================================== */
.rail {
  overflow-x: auto;
  overflow-y: hidden;               /* NEVER vertically scrollable inside — kills card bobbing */
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  cursor: grab;
  overscroll-behavior-x: contain;   /* don't chain into browser back-swipe */
}
.rail::-webkit-scrollbar { display: none; }
.rail.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.rail img, .rail a { -webkit-user-drag: none; user-select: none; }
.rail_track > * { scroll-snap-align: start; scroll-margin-left: var(--gutter); }

.rail-nav { display: flex; gap: 10px; }
.rail-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), opacity .25s;
}
.rail-btn svg { width: 18px; height: 18px; }
.rail-btn:hover { background: var(--brand-navy); color: var(--brand-ivory); border-color: var(--brand-navy); }
.rail-btn[disabled] { opacity: .3; pointer-events: none; }
.section-head--split { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
@media (hover: none), (pointer: coarse) {
  .rail-nav { display: none; }
}
.rail_track {
  display: flex;
  gap: 20px;
  padding: 0 var(--gutter);
  width: max-content;
}

/* solution cards — near-square, copy overlaid */
.solution-card {
  position: relative;
  width: clamp(280px, 27vw, 500px);
  aspect-ratio: 10 / 11;
  border-radius: var(--radius-card);
  overflow: hidden;
  flex-shrink: 0;
}
.solution-card_media { position: absolute; inset: 0; }
.solution-card_media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease);
}
.solution-card:hover .solution-card_media img { transform: scale(1.04); }
.solution-card_scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,22,84,0.76) 0%, rgba(13,22,84,0.34) 45%, rgba(13,22,84,0.08) 70%);
}
.solution-card_arrow {
  position: absolute;
  top: 24px; right: 24px;
  z-index: 2;
  width: 24px; height: 24px;
  color: var(--brand-ivory);
  transition: transform .35s var(--ease);
}
.solution-card_arrow svg { width: 100%; height: 100%; }
.solution-card:hover .solution-card_arrow { transform: translate(4px, -4px); }
.solution-card_copy { position: absolute; top: 0; left: 0; right: 0; padding: 26px 64px 0 26px; color: var(--brand-ivory); }
.solution-card_title { font-size: 24px; letter-spacing: -0.02em; font-weight: 400; margin-bottom: 12px; }
.solution-card_desc { font-size: 15px; line-height: 1.45; color: rgba(252,251,250,0.90); max-width: 40ch; }

/* ==========================================================
   PROCESS — compact hybrid: visual system + hover accordion
   ========================================================== */
.process {
  background: linear-gradient(180deg, rgba(212,199,145,0.24) 0%, var(--page) 34%, var(--page) 100%);
  padding: clamp(64px, 8vw, 110px) 0 clamp(64px, 8vw, 108px);
}
.process .arch_head { margin-bottom: clamp(34px, 4vw, 54px); }
.process_split {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
  gap: clamp(24px, 3vw, 46px);
  align-items: start;
}
.process_visual-card {
  position: sticky;
  top: 110px;
  height: 608px;
  min-height: 608px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 2.5vw, 34px);
  border-radius: 18px;
  background: var(--brand-navy);
  color: var(--brand-ivory);
  box-shadow: 0 22px 60px rgba(13,22,84,0.18);
}
.process_visual-card::before {
  content: "";
  position: absolute;
  width: 300px; height: 300px;
  right: -110px; top: -145px;
  border-radius: 50%;
  background: rgba(212,199,145,0.12);
}
.process_visual-head {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  font-size: 12px; line-height: 1;
  letter-spacing: .11em; text-transform: uppercase;
}
.process_visual-kicker { color: var(--brand-sand); }
.process_visual-count { color: rgba(252,251,250,.62); font-variant-numeric: tabular-nums; }
.process_visual-note {
  position: relative; z-index: 2;
  max-width: 42ch;
  margin-top: auto;
  color: rgba(252,251,250,.72);
  font-size: 13px; line-height: 1.5;
}
.process_visual-card .arch_stage--inline { height: 430px; margin: -8px 0 -12px; }
.process_visual-card .arch_iso { width: min(24vw, 310px); top: 51%; --z-lift: 14px; }
.process_visual-card .arch_stage--inline.is-exploded .arch_iso { --z-lift: 36px; }
.process_visual-card .layer--plane {
  background: rgba(252,251,250, calc(.088 - var(--n) * .007));
  border-color: rgba(252,251,250, calc(.26 - var(--n) * .02));
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,.30);
  transform: translateZ(calc((3 - var(--n)) * var(--z-lift)));
  transform-style: preserve-3d;
  transition: transform 1.1s var(--ease), background-color .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease), opacity .4s var(--ease);
}
.process_visual-card .layer_id {
  position: absolute;
  right: -34px; bottom: -12px;
  transform: rotateZ(45deg) rotateX(-57deg);
  font-family: var(--font-display);
  font-size: 13px; font-weight: 500; letter-spacing: .10em;
  color: rgba(252,251,250,.60);
  font-variant-numeric: tabular-nums;
  transition: color .4s var(--ease);
}
.process_visual-card .layer_glyph {
  position: absolute;
  left: 50%; top: 50%;
  width: 56px; height: 56px;
  transform: translate(-50%, -50%);
  color: rgba(13,22,84,.78);
  opacity: 0;
  transition: opacity .45s var(--ease);
}
.process_visual-card [data-active-layer="p1"] .layer--p1 .layer_glyph,
.process_visual-card [data-active-layer="p2"] .layer--p2 .layer_glyph,
.process_visual-card [data-active-layer="p3"] .layer--p3 .layer_glyph,
.process_visual-card [data-active-layer="p4"] .layer--p4 .layer_glyph,
.process_visual-card [data-active-layer="p5"] .layer--p5 .layer_glyph,
.process_visual-card [data-active-layer="p6"] .layer--p6 .layer_glyph,
.process_visual-card [data-active-layer="p7"] .layer--p7 .layer_glyph {
  opacity: 1;
}
.process_visual-card [data-active-layer="p1"] .layer--p1,
.process_visual-card [data-active-layer="p2"] .layer--p2,
.process_visual-card [data-active-layer="p3"] .layer--p3,
.process_visual-card [data-active-layer="p4"] .layer--p4,
.process_visual-card [data-active-layer="p5"] .layer--p5,
.process_visual-card [data-active-layer="p6"] .layer--p6,
.process_visual-card [data-active-layer="p7"] .layer--p7 {
  background: var(--brand-sand);
  border-color: rgba(212,199,145,.9);
  transform: translateZ(calc((3 - var(--n)) * var(--z-lift) + 12px));
  box-shadow: 0 2px 0 rgba(13,22,84,.14), 0 30px 64px rgba(13,22,84,.36), 0 0 0 3px rgba(212,199,145,.34);
}
.process_visual-card [data-active-layer="p1"] .layer--p1 .layer_id,
.process_visual-card [data-active-layer="p2"] .layer--p2 .layer_id,
.process_visual-card [data-active-layer="p3"] .layer--p3 .layer_id,
.process_visual-card [data-active-layer="p4"] .layer--p4 .layer_id,
.process_visual-card [data-active-layer="p5"] .layer--p5 .layer_id,
.process_visual-card [data-active-layer="p6"] .layer--p6 .layer_id,
.process_visual-card [data-active-layer="p7"] .layer--p7 .layer_id {
  color: var(--brand-sand);
}
.process_steps {
  height: 608px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.process_steps-head {
  flex: 0 0 19px;
  display: flex; justify-content: space-between;
  padding: 0 4px 7px;
  color: var(--text-muted);
  font-size: 11px; letter-spacing: .11em; text-transform: uppercase;
}
.pstep {
  flex: 0 0 60px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(252,251,250,.88);
  box-shadow: 0 6px 18px rgba(13,22,84,0);
  transition: flex-grow .42s var(--ease), background-color .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.pstep:hover { border-color: rgba(39,108,188,.46); }
.pstep.is-active {
  flex: 1 1 168px;
  background: linear-gradient(135deg, rgba(212,199,145,.36), rgba(252,251,250,.98) 74%);
  border-color: rgba(39,108,188,.62);
  box-shadow: 0 14px 32px rgba(13,22,84,.10);
}
.pstep_row {
  width: 100%;
  min-height: 58px;
  display: grid;
  grid-template-columns: 36px minmax(0,1fr) 24px 18px;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border: 0; background: none; color: inherit;
  font: inherit; text-align: left; cursor: pointer;
}
.pstep_row:focus-visible { outline: 2px solid var(--brand-blue); outline-offset: -4px; border-radius: 10px; }
.pstep_num {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(212,199,145,.46);
  color: var(--brand-navy);
  font-family: var(--font-display);
  font-size: 11px; font-weight: 500; letter-spacing: .04em;
  transition: background-color .3s var(--ease), color .3s var(--ease);
}
.pstep_title {
  color: var(--text-body);
  font-family: var(--font-display);
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 400; letter-spacing: -.015em;
  transition: color .3s var(--ease);
}
.pstep_icon { width: 21px; height: 21px; color: var(--brand-blue); opacity: .62; transition: opacity .3s var(--ease); }
.pstep_toggle { position: relative; width: 16px; height: 16px; }
.pstep_toggle::before,
.pstep_toggle::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 12px; height: 1px; background: var(--brand-blue);
  transform: translate(-50%,-50%);
  transition: transform .3s var(--ease);
}
.pstep_toggle::after { transform: translate(-50%,-50%) rotate(90deg); }
.pstep.is-active .pstep_toggle::after { transform: translate(-50%,-50%) rotate(0deg); }
.pstep.is-active .pstep_num { background: var(--brand-blue); color: var(--brand-ivory); }
.pstep.is-active .pstep_title { color: var(--brand-navy); }
.pstep.is-active .pstep_icon { opacity: 1; }
.pstep_body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .42s var(--ease); }
.pstep_bodyinner { overflow: hidden; }
.pstep_desc {
  max-width: 58ch;
  padding: 0 54px 20px 66px;
  color: var(--text-secondary);
  font-size: 14px; line-height: 1.58;
}
.pstep.is-active .pstep_body { grid-template-rows: 1fr; }

/* ==========================================================
   ARCH / PROCESS — exploded isometric stack (retired on home,
   kept for potential reuse)
   ========================================================== */
.arch {
  background: linear-gradient(to bottom, rgba(39,108,188,0.08) 0%, var(--page) 30%, var(--page) 100%);
  padding: clamp(72px, 9vw, 130px) 0 clamp(40px, 5vw, 80px);
}
.arch_head { text-align: center; margin-bottom: clamp(24px, 3vw, 48px); }
.arch_title { font-size: clamp(32px, 3.2vw, 52px); margin-top: 14px; }
.arch_sub { font-size: 16px; color: var(--text-secondary); margin-top: 16px; }

.arch_stage {
  position: relative;
  height: clamp(480px, 52vw, 760px);
}
.arch_iso {
  position: absolute;
  left: 50%; top: 54%;
  width: clamp(300px, 34vw, 520px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%) rotateX(57deg) rotateZ(-45deg);
  transform-style: preserve-3d;
}
.layer {
  position: absolute; inset: 0;
  border-radius: 12px;
  background: var(--brand-ivory);
  border: 1px solid var(--line);
  box-shadow: 0 2px 0 rgba(134,108,95,0.22), 0 30px 60px rgba(13,22,84,0.12);
  transition: transform 1.1s var(--ease);
}
.layer--top {
  transform: translateZ(40px); z-index: 4;
  padding: 8%;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 9%;
  align-items: stretch;
}
.layer--tiles  { transform: translateZ(0px);  z-index: 3; padding: 6%; }
.layer--slab   { transform: translateZ(-36px); z-index: 2; }
.layer--slab2  { transform: translateZ(-64px); z-index: 1; }
.arch_stage.is-exploded .layer--top   { transform: translateZ(120px); }
.arch_stage.is-exploded .layer--tiles { transform: translateZ(10px); }
.arch_stage.is-exploded .layer--slab  { transform: translateZ(-60px); }
.arch_stage.is-exploded .layer--slab2 { transform: translateZ(-100px); }

.layer_chart { border-left: 1px solid var(--line); padding-left: 8%; }
.layer_chart svg { width: 100%; height: 100%; }
.layer_rows { display: flex; flex-direction: column; justify-content: space-between; padding: 2% 0; }
.layer_rows span { display: block; height: 9%; min-height: 5px; background: rgba(134,108,95,0.18); border-radius: 4px; }
.layer_rows span:nth-child(2) { width: 82%; }
.layer_rows span:nth-child(3) { width: 90%; }
.layer_rows span:nth-child(4) { width: 68%; }
.layer_rows span:nth-child(5) { width: 78%; }

.layer_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6%;
  height: 100%;
}
.tile {
  display: flex; align-items: center; justify-content: center;
  background: var(--brand-ivory);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--brand-taupe);
  box-shadow: 0 1px 0 rgba(134,108,95,0.18);
}
.tile svg { width: 34%; height: 34%; }

.arch-label { position: absolute; max-width: 240px; }
.arch-label_rule { display: block; width: 40px; height: 3px; background: var(--brand-sand); margin-bottom: 14px; }
.arch-label_title { font-size: 19px; font-weight: 400; letter-spacing: -0.01em; margin-bottom: 10px; }
.arch-label_desc { font-size: 14px; line-height: 1.5; color: var(--text-secondary); }
.arch-label--tl { left: var(--gutter); top: 8%; }
.arch-label--tr { right: var(--gutter); top: 30%; color: var(--text-secondary); }
.arch-label--bl { left: var(--gutter); bottom: 22%; }
.arch-label--br { right: var(--gutter); bottom: 4%; }
.arch-label--tr .arch-label_title, .arch-label--bl .arch-label_title, .arch-label--br .arch-label_title { color: var(--text-secondary); }

/* ==========================================================
   TEAM BANNER — full-bleed on near-black
   ========================================================== */
.team {
  position: relative;
  background: var(--ink-section);
}
.team_media { height: clamp(420px, 78vh, 760px); }
.team_media img { width: 100%; height: 100%; object-fit: cover; }
.team_scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.18) 48%, rgba(0,0,0,0.72) 100%);
}
.team_inner { position: absolute; inset: 0; padding: clamp(56px, 8vw, 110px) var(--gutter); }
.team_title {
  color: var(--brand-ivory);
  font-size: clamp(32px, 3.3vw, 54px);
  text-shadow: 0 1px 30px rgba(13,22,84,0.58), 0 1px 8px rgba(13,22,84,0.38);
}
.team_note {
  position: absolute;
  right: var(--gutter); bottom: clamp(48px, 7vw, 96px);
  max-width: 420px;
  color: var(--brand-ivory);
  font-size: 16px; line-height: 1.5;
  text-shadow: 0 1px 26px rgba(13,22,84,0.62), 0 1px 8px rgba(13,22,84,0.42);
}

/* ==========================================================
   PROOF — three wide cards
   ========================================================== */
.section--proof { padding: clamp(72px, 9vw, 130px) 0; }
.rail_track--proof { gap: 14px; }
.proof-card { width: clamp(300px, 44vw, 760px); flex-shrink: 0; }
.proof-card_media {
  aspect-ratio: 8 / 5;
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 20px;
}
.proof-card_media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.proof-card:hover .proof-card_media img { transform: scale(1.04); }
.proof-card_title { font-size: 24px; font-weight: 400; letter-spacing: -0.02em; margin-bottom: 6px; }
.proof-card_sub { font-size: 14px; color: var(--text-secondary); }

/* ==========================================================
   DARK — support cards + credentials
   ========================================================== */
.dark {
  background: var(--brand-navy);
  color: var(--on-dark);
  padding: clamp(88px, 11vw, 160px) 0 clamp(72px, 9vw, 120px);
}
.dark_head { text-align: center; margin-bottom: clamp(48px, 6vw, 88px); }
.dark_title { font-size: clamp(30px, 3.1vw, 50px); }
.dark_sub { font-size: 16px; color: var(--on-dark-body); margin-top: 18px; }
.dark_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.dark-card {
  background: rgba(252,251,250,0.05);
  border: 1px solid rgba(212,199,145,0.20);
  border-radius: var(--radius-card);
  padding: 28px 24px 32px;
  min-height: 260px;
  display: flex; flex-direction: column;
}
.dark-card_icon { width: 26px; height: 26px; color: var(--brand-sand); margin-bottom: 84px; }
.dark-card_title { font-size: 19px; font-weight: 400; letter-spacing: -0.01em; margin: 0 0 14px; }
.dark-card_desc { font-size: 14px; line-height: 1.55; color: var(--on-dark-body); }

.standards { margin-top: clamp(64px, 8vw, 110px); text-align: center; }
.standards_label { font-size: 13px; color: var(--on-dark-muted); margin-bottom: 40px; letter-spacing: .04em; }
.standards_row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(16px, 2.4vw, 40px);
}
.badge {
  display: flex; align-items: center; justify-content: center;
  width: 92px; height: 92px;
  border: 1.2px solid rgba(212,199,145,0.58);
  border-radius: 50%;
  font-size: 9.5px;
  line-height: 1.35;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(252,251,250,0.88);
  text-align: center;
}

/* ==========================================================
   CTA
   ========================================================== */
.cta {
  position: relative;
  background: var(--brand-ivory);
  padding: clamp(96px, 12vw, 170px) var(--gutter);
  text-align: center;
  overflow: hidden;
}
.cta::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(70% 60% at 50% 50%, rgba(212,199,145,0.30) 0%, rgba(252,251,250,0.18) 72%);
}
.cta_inner { position: relative; z-index: 1; }
.cta_title {
  font-size: clamp(28px, 2.9vw, 46px);
  max-width: 22em;
  margin: 0 auto 34px;
}
.cta_meta { margin-top: 26px; font-size: 14px; color: var(--text-secondary); }
.cta_meta a:hover { color: var(--text); }

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  position: relative;
  background: var(--brand-navy);
  padding: clamp(56px, 7vw, 96px) 0 0;
  overflow: hidden;
}
.footer_grid { display: flex; justify-content: space-between; gap: 40px; position: relative; z-index: 1; }
.footer_logo { display: block; width: min(360px,100%); }
.footer_logo img { display: block; width: 100%; height: auto; object-fit: contain; object-position: left center; }
.footer_bottom { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: baseline; gap: 18px; margin-top: clamp(36px, 4vw, 58px); padding-top: 22px; border-top: 1px solid var(--line-on-dark); }
.footer_copyright { font-size: 13px; color: rgba(212,199,145,0.70); }
.footer_license { font-size: 13px; color: rgba(212,199,145,0.70); }
.footer_socials { margin-top: 32px; }
.footer_socials-label { color: var(--brand-sand); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.footer_socials-row { display: flex; gap: 10px; margin-top: 13px; }
.footer_social { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(252,251,250,.3); border-radius: 8px; color: var(--brand-ivory); transition: color .25s var(--ease), background-color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease); }
.footer_social:hover { color: var(--brand-navy); background: var(--brand-sand); border-color: var(--brand-sand); transform: translateY(-2px); }
.footer_social:focus-visible { outline: 2px solid var(--brand-sand); outline-offset: 3px; }
.footer_social svg { width: 23px; height: 23px; fill: currentColor; }
.footer_social svg rect, .footer_social svg circle { fill: none; stroke: currentColor; stroke-width: 2; }
.footer_social svg .footer_social-dot { fill: currentColor; stroke: none; }
.footer_alarmcom { display: block; width: min(220px,70vw); margin-top: 34px; opacity: .88; transition: opacity .25s var(--ease), transform .25s var(--ease); }
.footer_alarmcom:hover { opacity: 1; transform: translateY(-2px); }
.footer_alarmcom:focus-visible { outline: 2px solid var(--brand-sand); outline-offset: 5px; border-radius: 3px; }
.footer_alarmcom img { display: block; width: 100%; height: auto; }
.footer_cols { display: flex; gap: clamp(28px, 4vw, 72px); flex-wrap: wrap; }
.footer_col { display: flex; flex-direction: column; gap: 12px; min-width: 120px; }
.footer_colhead { font-size: 13px; color: var(--brand-sand); margin-bottom: 6px; }
.footer_col a { font-size: 14.5px; color: rgba(252,251,250,0.80); }
.footer_col a:hover { color: var(--brand-sand); }
.footer_locations { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: clamp(30px,5vw,80px); margin-top: clamp(48px,6vw,88px); padding-top: clamp(28px,3vw,42px); border-top: 1px solid var(--line-on-dark); }
.footer_location-name { color: var(--brand-sand); font-family: var(--font-display); font-size: 15px; font-weight: 600; letter-spacing: .025em; text-transform: uppercase; }
.footer_location-name:hover { color: var(--brand-ivory); }
.footer_location address { margin-top: 18px; color: rgba(252,251,250,.84); font-style: normal; font-size: 14.5px; line-height: 1.65; }
.footer_location-hours { margin-top: 10px; color: rgba(252,251,250,.68); font-size: 13.5px; line-height: 1.55; }
.footer_location-meta { margin-top: 5px; color: rgba(212,199,145,.76); font-size: 13px; }
.footer_watermark {
  font-family: var(--font-display);
  font-size: clamp(120px, 22vw, 330px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.62;
  color: rgba(212,199,145,0.08);
  text-align: center;
  white-space: nowrap;
  margin-top: clamp(48px, 6vw, 100px);
  margin-bottom: -0.16em;
  transform: translateY(0.08em);
  user-select: none;
  pointer-events: none;
}

/* ==========================================================
   RESPONSIVE — verified breakpoints 390 / 768 / 1024
   ========================================================== */
@media (max-width: 1023px) {
  .nav_menu { display: none; }
  .nav_utility { display: none; }
  .nav_burger { display: flex; }
  .dark_grid { grid-template-columns: repeat(2, 1fr); }
  .process_split { grid-template-columns: 1fr; }
  .process_visual-card { position: relative; top: auto; height: auto; min-height: 500px; }
  .process_steps { height: auto; }
  .process_steps .pstep,
  .process_steps .pstep.is-active { flex: 0 0 auto; }
  .arch-label { position: static; max-width: none; }
  .arch_stage { height: auto; display: flex; flex-direction: column; gap: 8px; }
  .arch_iso { position: relative; left: auto; top: auto; transform: rotateX(57deg) rotateZ(-45deg) scale(.9); margin: -40px auto 0; order: -1; width: min(60vw, 420px); }
  .process_visual-card .arch_stage--inline { display: block; height: 365px; margin: -2px 0 -6px; }
  .process_visual-card .arch_iso { position: absolute; left: 50%; top: 52%; width: min(40vw, 310px); margin: 0; transform: translate(-50%, -50%) rotateX(57deg) rotateZ(-45deg); }
  .arch_labels-wrap { display: contents; }
  .arch-label { display: grid; grid-template-columns: 40px 1fr; grid-column-gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
  .arch-label_rule { grid-row: 1 / span 2; margin-top: 8px; }
  .arch-label--tr, .arch-label--bl, .arch-label--br { grid-template-columns: 1fr; }
  .arch-label--tr .arch-label_title { color: var(--text); }
  .arch-label--bl .arch-label_title { color: var(--text); }
  .arch-label--br .arch-label_title { color: var(--text); }
}

@media (max-width: 700px) {
  .u-desktop-only { display: none; }

  .nav_inner { padding: 10px var(--gutter); }
  .nav .btn--nav { display: none; }
  .nav_logo img { height: 50px; max-width: min(156px, 45vw); }
  .footer_logo { width: min(250px, 72vw); }
  .footer_locations { grid-template-columns: 1fr; gap: 34px; }
  .footer_bottom { flex-direction: column; align-items: flex-start; gap: 6px; }

  .hero { min-height: 86svh; align-items: flex-end; }
  .hero_inner { flex-direction: column; align-items: center; text-align: center; padding-bottom: 56px; gap: 28px; }
  .hero_title { font-size: clamp(34px, 10.5vw, 44px); letter-spacing: -0.04em; }
  .hero_aside { max-width: 340px; padding-bottom: 0; }
  .hero_actions { justify-content: center; }
  .btn { padding: 15px 24px; }

  .logos_inner { grid-template-columns: repeat(3, 1fr); gap: 28px 12px; padding: 32px var(--gutter); }
  .logos_logo { height: calc(var(--lh, 18px) * 0.78); }
  .logos_item:nth-child(n+4) { display: none; }

  .process { padding-top: 60px; }
  .process .arch_head { text-align: left; }
  .process_visual-card { min-height: 390px; padding: 22px; }
  .process_visual-head { z-index: 10; }
  .process_visual-kicker,
  .process_visual-count { padding: 6px 8px; border-radius: 100px; background: rgba(13,22,84,.84); }
  .process_visual-card .arch_stage--inline { height: 300px; margin: 4px 0 -8px; }
  .process_visual-card .arch_iso { width: min(56vw, 240px); top: 54%; }
  .process_visual-card .arch_stage--inline.is-exploded .arch_iso { --z-lift: 24px; }
  .process_visual-card .layer_id { right: -28px; bottom: -10px; font-size: 11px; }
  .process_visual-card .layer_glyph { width: 44px; height: 44px; }
  .process_visual-note { display: none; }
  .process_steps-head { padding-top: 6px; }
  .pstep.is-active { transform: none; }
  .pstep_row { min-height: 56px; grid-template-columns: 34px minmax(0,1fr) 22px 16px; gap: 10px; padding: 0 14px; }
  .pstep_title { font-size: 16px; }
  .pstep_desc { padding: 0 20px 18px 58px; font-size: 13.5px; }

  .solution-card { width: 82vw; }
  .proof-card { width: 82vw; }

  .team_inner { padding: 40px var(--gutter); }
  .team_note { position: static; margin-top: 0; padding: 24px 0 0; max-width: none; }
  .team_title { font-size: 30px; }
  .team_media { height: 68vh; }

  .dark_grid { grid-template-columns: 1fr; }
  .dark-card { min-height: 0; }
  .dark-card_title { margin-top: 36px; }
  .badge { width: 84px; height: 84px; }

  .footer_grid { flex-direction: column; }
  .footer_cols { flex-direction: column; gap: 28px; }
}

/* ==========================================================
   INNER PAGES — subhero, features, gallery, faq, etc.
   Same token system and component logic as the homepage.
   ========================================================== */

/* SUBHERO — shorter full-bleed page hero */
.subhero { position: relative; height: clamp(440px, 40vw, 640px); display: flex; align-items: flex-end; background: var(--ink-section); }
.subhero_media { position: absolute; inset: 0; overflow: hidden; }
.subhero_media img { width: 100%; height: 100%; object-fit: cover; }
.subhero_media--reviews img { object-position: center 55%; }
.subhero_scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.28) 45%, rgba(0,0,0,0.34) 100%); }
.subhero_inner { position: relative; width: 100%; display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; padding: 0 var(--gutter) clamp(36px, 4.5vw, 64px); }
.subhero_eyebrow { color: var(--brand-sand); font-size: 14px; margin-bottom: 16px; }
.subhero_title { color: var(--brand-ivory); font-size: clamp(36px, 4vw, 68px); letter-spacing: -0.045em; }
.subhero_intro { max-width: 400px; color: rgba(252,251,250,0.92); font-size: 16px; line-height: 1.5; padding-bottom: 6px; }

/* ANCHOR CHIP ROW — in-page navigation */
.anchor-row { background: var(--surface); border-bottom: 1px solid var(--line); overflow-x: auto; overflow-y: hidden; scrollbar-width: none; }
.anchor-row::-webkit-scrollbar { display: none; }
.anchor-row_track { display: flex; gap: 8px; padding: 16px var(--gutter); width: max-content; }
.anchor-chip { font-size: 13.5px; color: var(--text-body); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 8px 16px; white-space: nowrap; transition: border-color .25s var(--ease), color .25s var(--ease); }
.anchor-chip:hover { border-color: var(--text); color: var(--text); }

/* PAGE SECTIONS */
.page-section { padding: clamp(56px, 7vw, 110px) 0; }
.page-lead { max-width: 62ch; font-size: 17px; line-height: 1.6; color: var(--text-body); }
.page-lead + .page-lead { margin-top: 18px; }
[id] { scroll-margin-top: 96px; }

/* FEATURE ROWS — anchored service sections */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 88px); align-items: center; padding: clamp(48px, 6vw, 96px) 0; border-top: 1px solid var(--line); }
.feature:first-of-type { border-top: 0; }
.feature_media { border-radius: var(--radius-card); overflow: hidden; aspect-ratio: 4 / 3; }
.feature_media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.feature:hover .feature_media img { transform: scale(1.03); }
.feature--flip .feature_media { order: 2; }
.feature_kicker { font-size: 13px; color: var(--brand-blue); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px; }
.feature_title { font-size: clamp(26px, 2.4vw, 40px); margin-bottom: 18px; }
.feature_desc { font-size: 15.5px; line-height: 1.6; color: var(--text-body); max-width: 56ch; }
.feature_desc + .feature_desc { margin-top: 14px; }
.feature_points { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 28px; margin-top: 30px; }
.point_title { font-size: 15px; font-weight: 500; margin-bottom: 5px; }
.point_desc { font-size: 13.5px; line-height: 1.5; color: var(--text-secondary); }

/* GALLERY GRID */
.gallery_grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery_item { border-radius: var(--radius-card); overflow: hidden; aspect-ratio: 4 / 3; }
.gallery_item img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.gallery_item:hover img { transform: scale(1.04); }

/* PROCESS STEPS */
.steps { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(28px, 4vw, 72px); }
.step { border-top: 1px solid var(--line); padding: 26px 0 30px; }
.step_num { font-size: 13px; color: var(--brand-blue); letter-spacing: .08em; margin-bottom: 10px; }
.step_title { font-size: 20px; font-weight: 400; letter-spacing: -0.01em; margin-bottom: 10px; }
.step_desc { font-size: 14.5px; line-height: 1.55; color: var(--text-secondary); max-width: 52ch; }

/* STATS BAND */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(36px, 4.5vw, 64px) 0; }
.stat_num { font-size: clamp(34px, 3.4vw, 56px); font-weight: 300; letter-spacing: -0.04em; line-height: 1; margin-bottom: 12px; }
.stat_label { font-size: 13.5px; color: var(--text-secondary); }

/* QUOTE / PHILOSOPHY */
.pull { font-size: clamp(22px, 2.2vw, 34px); font-weight: 300; letter-spacing: -0.03em; line-height: 1.3; max-width: 30em; color: var(--text); }

/* FAQ */
.faq_cat { font-size: 13px; color: var(--brand-blue); letter-spacing: .08em; text-transform: uppercase; margin: clamp(40px, 5vw, 64px) 0 8px; }
.faq_item { border-bottom: 1px solid var(--line); }
.faq_item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 20px 0; font-size: 17px; font-weight: 400; letter-spacing: -0.01em; }
.faq_item summary::-webkit-details-marker { display: none; }
.faq_item summary::after { content: "+"; font-size: 22px; font-weight: 300; color: var(--text-secondary); flex-shrink: 0; transition: transform .3s var(--ease); }
.faq_item[open] summary::after { transform: rotate(45deg); }
.faq_a { padding: 0 0 22px; font-size: 15px; line-height: 1.6; color: var(--text-body); max-width: 70ch; }

/* LOCATION CARDS */
.loc_grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.loc-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-card); padding: 28px 26px 30px; }
.loc-card_city { font-size: 20px; font-weight: 400; letter-spacing: -0.01em; margin-bottom: 14px; }
.loc-card_line { font-size: 14.5px; color: var(--text-body); line-height: 1.6; }
.loc-card_meta { font-size: 13px; color: var(--text-muted); margin-top: 12px; }
.contact-location-link { display: inline-block; margin-top: 14px; padding-bottom: 2px; color: var(--brand-blue); border-bottom: 1px solid rgba(39,108,188,.35); font-size: 14px; font-weight: 600; line-height: 1.4; text-decoration: none; }
.contact-location-link:hover { color: var(--brand-navy); border-bottom-color: var(--brand-navy); }

/* LOCATION LANDING PAGES */
.location-overview { border-top: 0; padding-top: 0; align-items: start; }
.location-overview_copy { padding-top: 10px; }
.location-overview_copy .btn { margin-top: 28px; }
.location-address-card { background: var(--brand-navy); border-color: var(--brand-navy); color: var(--brand-ivory); padding: clamp(30px, 4vw, 50px); }
.location-address-label { color: var(--brand-sand); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; }
.location-address-card .loc-card_city { color: var(--brand-ivory); font-size: clamp(28px, 2.6vw, 42px); }
.location-address-card .loc-card_line { color: rgba(252,251,250,.86); font-size: 16px; }
.location-address-card .loc-card_meta { color: rgba(252,251,250,.66); font-size: 13.5px; line-height: 1.55; }
.location-address-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.location-address-actions .btn { margin-top: 0; }
.location-service-links { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; margin-top: 28px; }
.location-service-link { border-top: 1px solid var(--line); padding: 14px 0 4px; color: var(--brand-blue); font-size: 14px; font-weight: 500; }
.location-service-link:hover { color: var(--brand-navy); }
.location-other-card { display: block; transition: border-color .25s var(--ease), transform .25s var(--ease); }
.location-other-card:hover { border-color: rgba(39,108,188,.5); transform: translateY(-3px); }
.location-other-card.is-current { background: rgba(212,199,145,.18); border-color: rgba(212,199,145,.72); }
.location-other-card .loc-card_meta { color: var(--brand-blue); }

/* CALLOUT BAND (e.g. text-our-service-dept) */
.callout { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-card); padding: 26px 30px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.callout_text { font-size: 17px; letter-spacing: -0.01em; }
.callout_text strong { font-weight: 500; }

/* AWARD BAND */
.award { display: flex; align-items: center; gap: clamp(24px, 3vw, 48px); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-card); padding: clamp(24px, 3vw, 44px); }
.award img { width: clamp(110px, 12vw, 170px); height: auto; flex-shrink: 0; }
.award_title { font-size: clamp(20px, 1.9vw, 28px); margin-bottom: 10px; }
.award_desc { font-size: 14.5px; color: var(--text-secondary); max-width: 56ch; }

/* CHECK LISTS (monitoring can / can't) */
.twolist { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3vw, 56px); }
.twolist_col h3 { font-size: 19px; font-weight: 400; margin-bottom: 18px; }
.twolist_col li { list-style: none; font-size: 14.5px; line-height: 1.55; color: var(--text-body); padding: 12px 0 12px 26px; border-top: 1px solid var(--line); position: relative; }
.twolist_col li::before { content: ""; position: absolute; left: 2px; top: 18px; width: 7px; height: 7px; border-radius: 50%; background: var(--brand-sand); }
.twolist_col--no li::before { background: rgba(134,108,95,0.38); }

/* FORM */
.form { max-width: 620px; }
.form_row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 16px; }
.field label, .field legend { display: block; font-size: 13px; color: var(--text-secondary); margin-bottom: 7px; }
fieldset.field { border: 0; min-width: 0; }
.field input, .field textarea, .field select { width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); font: inherit; font-size: 15px; color: var(--text); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--brand-blue); }
.field textarea { min-height: 130px; resize: vertical; }
.form_note { font-size: 12.5px; color: var(--text-muted); margin-top: 14px; }
.form_note a { color: var(--brand-blue); text-decoration: underline; text-underline-offset: 2px; }
.radio-row { display: flex; gap: 10px; }
.radio-chip { position: relative; }
.radio-chip input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.radio-chip span { display: inline-block; font-size: 13.5px; border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 9px 18px; color: var(--text-body); transition: all .25s var(--ease); }
.radio-chip.is-unselected span { background-color: var(--surface); color: var(--text-body); border-color: var(--line); }
.radio-chip input:checked + span { background-color: var(--ink-section); color: var(--brand-ivory); border-color: var(--ink-section); }

/* POST CARDS (blog) */
.post_grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 48px) clamp(20px, 2.5vw, 40px); }
.post-card { border-top: 1px solid var(--line); padding-top: 20px; }
.post-card_title { font-size: 20px; font-weight: 400; letter-spacing: -0.015em; margin-bottom: 10px; }
.post-card_excerpt { font-size: 14.5px; line-height: 1.55; color: var(--text-secondary); }

/* CONTENT SYSTEMS — portable to Webflow collection/static pages */
.breadcrumbs { border-bottom: 1px solid var(--line); background: var(--surface); }
.breadcrumbs_inner { display: flex; align-items: center; gap: 9px; padding-top: 14px; padding-bottom: 14px; font-size: 12.5px; color: var(--text-secondary); }
.breadcrumbs a:hover { color: var(--brand-blue); }
.breadcrumbs_sep { color: var(--text-muted); }

/* SERVICE DETAIL PAGES — focused, Webflow-native landing page system */
.service-detail-hero { min-height: 520px; }
.service-detail-hero .subhero_media img { object-position: center; }
.service-intro-section { padding: clamp(70px, 9vw, 132px) 0; background: #fff; }
.service-intro-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr); gap: clamp(42px, 7vw, 110px); align-items: start; }
.service-intro-copy { max-width: 720px; }
.service-intro-title { max-width: 19ch; font-size: clamp(34px, 4.1vw, 62px); line-height: 1.02; letter-spacing: -.045em; }
.service-intro-body { max-width: 64ch; margin-top: 22px; color: var(--text-body); font-size: 16px; line-height: 1.72; }
.service-text-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 30px; padding-bottom: 5px; border-bottom: 1px solid rgba(39,108,188,.35); color: var(--brand-blue); font-size: 14px; font-weight: 500; }
.service-text-link:hover { border-color: var(--brand-blue); color: var(--brand-navy); }
.service-brief { overflow: hidden; border-radius: var(--radius-card); background: var(--brand-navy); color: var(--brand-ivory); box-shadow: 0 22px 70px rgba(13,22,84,.12); }
.service-brief-heading { padding: 22px 26px; border-bottom: 1px solid var(--line-on-dark); color: var(--brand-sand); font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }
.service-brief-item { display: grid; grid-template-columns: 112px 1fr; gap: 24px; padding: 24px 26px; border-bottom: 1px solid var(--line-on-dark); }
.service-brief-item:last-child { border-bottom: 0; }
.service-brief-title { font-family: var(--font-display); font-size: 17px; letter-spacing: -.02em; }
.service-brief-copy { color: var(--on-dark-body); font-size: 13.5px; line-height: 1.55; }
.service-feature-section { padding-top: clamp(36px, 5vw, 72px); }
.service-spec-section { padding: clamp(76px, 9vw, 132px) 0; background: var(--brand-navy); color: var(--brand-ivory); }
.service-spec-heading { display: grid; grid-template-columns: minmax(0, .85fr) minmax(300px, 1.15fr); gap: 24px 70px; align-items: end; }
.service-spec-heading .feature_kicker { grid-column: 1 / -1; color: var(--brand-sand); }
.service-spec-title { max-width: 20ch; font-size: clamp(32px, 4vw, 58px); line-height: 1.02; letter-spacing: -.045em; }
.service-spec-intro { max-width: 42ch; color: var(--on-dark-body); font-size: 16px; line-height: 1.65; }
.service-spec-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: clamp(48px, 6vw, 84px); border-top: 1px solid var(--line-on-dark); }
.service-spec-item { min-height: 260px; padding: 28px 28px 30px 0; border-right: 1px solid var(--line-on-dark); }
.service-spec-item + .service-spec-item { padding-left: 28px; }
.service-spec-item:last-child { border-right: 0; }
.service-spec-number { color: var(--brand-sand); font-size: 12px; letter-spacing: .1em; }
.service-spec-item-title { margin-top: 70px; font-size: 25px; }
.service-spec-copy { margin-top: 14px; color: var(--on-dark-body); font-size: 14px; line-height: 1.62; }
.service-faq-section { background: #fff; }
.service-faq-grid { display: grid; grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr); gap: clamp(46px, 8vw, 128px); align-items: start; }
.service-faq-heading { position: sticky; top: 130px; }
.service-faq-title { max-width: 12ch; font-size: clamp(32px, 3.6vw, 52px); }
.service-faq-intro { max-width: 44ch; margin-top: 22px; color: var(--text-body); font-size: 15px; line-height: 1.65; }
.service-faq-list { border-top: 1px solid var(--line); }
.service-related-section { padding: clamp(66px, 8vw, 112px) 0; background: rgba(212,199,145,.22); }
.service-related-inner { display: grid; grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr); gap: clamp(42px, 8vw, 120px); align-items: start; }
.service-related-title { max-width: 15ch; font-size: clamp(30px, 3.2vw, 46px); }
.service-related-links { border-top: 1px solid rgba(13,22,84,.2); }
.service-related-link { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 2px; border-bottom: 1px solid rgba(13,22,84,.2); color: var(--brand-navy); font-size: 16px; }
.service-related-link:hover { padding-left: 8px; color: var(--brand-blue); }
.service-related-link:focus-visible, .service-text-link:focus-visible { outline: 2px solid var(--brand-blue); outline-offset: 5px; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-card { border-top: 1px solid var(--line); padding: 24px 0 8px; }
.value-card_kicker { font-size: 12px; color: var(--brand-blue); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px; }
.value-card_title { font-size: 21px; font-weight: 400; letter-spacing: -.015em; margin-bottom: 10px; }
.value-card_desc { font-size: 14.5px; line-height: 1.6; color: var(--text-secondary); }
.inline-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.review-source-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.review-source-card { display: flex; flex-direction: column; min-height: 260px; padding: clamp(24px, 3vw, 38px); border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--surface); }
.review-source_label { color: var(--brand-blue); font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.review-source_title { margin: 22px 0 12px; font-size: clamp(24px, 2.4vw, 38px); }
.review-source_desc { color: var(--text-body); line-height: 1.65; max-width: 54ch; }
.review-source_link { margin-top: auto; padding-top: 30px; color: var(--brand-blue); font-size: 14px; font-weight: 500; }
.reviews-widget_shell { min-height: 360px; margin-top: clamp(36px,5vw,72px); }
.fact-note { margin-top: 26px; padding: 18px 20px; border-left: 3px solid var(--brand-sand); background: rgba(212,199,145,.14); color: var(--text-body); font-size: 13.5px; line-height: 1.55; }
.legal-copy .container { max-width: 920px; }
.legal-copy h2 { margin-top: 42px; font-size: clamp(26px, 3vw, 38px); color: var(--brand-navy); }
.legal-copy h3 { margin-top: 28px; font-size: clamp(19px, 2vw, 24px); color: var(--brand-navy); font-weight: 500; }
.legal-copy p:not(.fact-note) { max-width: 76ch; margin-top: 14px; color: var(--text-secondary); line-height: 1.75; }
.legal-copy ul { max-width: 76ch; margin-top: 14px; padding-left: 1.35rem; color: var(--text-secondary); line-height: 1.7; }
.legal-copy li + li { margin-top: 7px; }
.legal-copy strong { color: var(--text-body); font-weight: 600; }
.legal-copy .legal-copy_updated { margin: 0 0 34px; color: var(--brand-blue); font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.legal-copy a { color: var(--brand-blue); text-decoration: underline; text-underline-offset: 3px; }

/* PRICING HUB — an index of preliminary project estimators */
.pricing-hero {
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  padding-top: 110px;
  color: var(--brand-ivory);
  background:
    radial-gradient(circle at 78% 18%, rgba(39,108,188,.58), transparent 34%),
    linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy) 62%, #276CBC 145%);
  overflow: hidden;
  position: relative;
}
.pricing-hero::after {
  content: "";
  position: absolute;
  right: -10vw;
  bottom: -38vw;
  width: 70vw;
  height: 70vw;
  border: 1px solid rgba(212,199,145,.28);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(212,199,145,.045), 0 0 0 160px rgba(212,199,145,.025);
}
.pricing-hero_inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0,1.55fr) minmax(300px,.65fr);
  align-items: end;
  gap: clamp(44px,8vw,130px);
  padding: 0 var(--gutter) clamp(52px,7vw,96px);
}
.pricing-hero_eyebrow { color: var(--brand-sand); font-size: 14px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 20px; }
.pricing-hero_title { max-width: 13ch; font-size: clamp(46px,5.8vw,92px); letter-spacing: -.055em; }
.pricing-hero_note { border-top: 1px solid rgba(252,251,250,.34); padding-top: 20px; color: rgba(252,251,250,.82); font-size: 15px; line-height: 1.65; }
.pricing-hero_note-label { color: var(--brand-sand); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px; }

.planner { padding: clamp(72px,9vw,132px) 0; }
.planner-head { max-width: 760px; margin-bottom: clamp(64px,8vw,112px); }
.planner-title { font-size: clamp(36px,4.3vw,66px); margin: 14px 0 22px; }
.planner-intro { max-width: 62ch; color: var(--text-body); font-size: 17px; line-height: 1.65; }
.planner-group + .planner-group { margin-top: clamp(64px,7vw,104px); }
.planner-group_label { display: flex; justify-content: space-between; gap: 24px; padding-bottom: 14px; border-bottom: 1px solid var(--brand-navy); color: var(--brand-blue); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.planner-group_label span:last-child { color: var(--text-muted); }
.planner-list { display: flex; flex-direction: column; }
.planner-card {
  display: grid;
  grid-template-columns: 180px minmax(0,1fr) auto;
  align-items: center;
  gap: clamp(24px,3.4vw,56px);
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.planner-card_media { height: 104px; overflow: hidden; border-radius: var(--radius-card); background: rgba(13,22,84,.06); }
.planner-card_media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.planner-card_copy { display: flex; flex-direction: column; gap: 9px; min-width: 0; }
.planner-card_copy strong { font-family: var(--font-display); font-size: clamp(22px,2vw,31px); font-weight: 400; letter-spacing: -.025em; }
.planner-card_copy small { max-width: 62ch; color: var(--text-secondary); font-size: 14px; line-height: 1.5; }
.planner-card_action { color: var(--brand-blue); font-size: 14px; font-weight: 500; white-space: nowrap; transition: transform .25s var(--ease); }
.planner-card:hover .planner-card_media img { transform: scale(1.05); }
.planner-card:hover .planner-card_action { transform: translateX(5px); }
.planner-card:focus-visible { outline: 2px solid var(--brand-blue); outline-offset: 6px; }

.planner-disclosure {
  display: grid;
  grid-template-columns: minmax(0,.85fr) minmax(320px,1fr);
  gap: clamp(36px,8vw,120px);
  margin-top: clamp(80px,10vw,148px);
  padding: clamp(36px,5vw,72px);
  border-radius: var(--radius-card);
  color: var(--brand-ivory);
  background: var(--brand-navy);
}
.planner-disclosure_label { color: var(--brand-sand); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; }
.planner-disclosure h2 { max-width: 12ch; font-size: clamp(32px,3.6vw,54px); }
.planner-disclosure > div:last-child { color: rgba(252,251,250,.82); font-size: 15px; line-height: 1.7; }
.planner-disclosure .btn { margin-top: 28px; }

/* NAV current page */
.nav_link[aria-current="page"] { font-weight: 500; }

/* Responsive for inner components */
@media (max-width: 1023px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .loc_grid { grid-template-columns: 1fr; }
  .gallery_grid { grid-template-columns: repeat(2, 1fr); }
  .post_grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: 1fr; }
  .pricing-hero_inner { grid-template-columns: 1fr; gap: 38px; }
  .pricing-hero_note { max-width: 620px; }
  .service-intro-grid { grid-template-columns: 1fr; }
  .service-brief { max-width: 760px; }
  .service-spec-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-spec-item:nth-child(2) { border-right: 0; }
  .service-spec-item:nth-child(n+3) { border-top: 1px solid var(--line-on-dark); }
}
@media (max-width: 700px) {
  .subhero_inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .subhero_intro { padding-bottom: 0; }
  .feature { grid-template-columns: 1fr; gap: 24px; }
  .feature--flip .feature_media { order: 0; }
  .feature_points { grid-template-columns: 1fr; }
  .twolist { grid-template-columns: 1fr; }
  .form_row { grid-template-columns: 1fr; }
  .gallery_grid { grid-template-columns: 1fr; }
  .post_grid { grid-template-columns: 1fr; }
  .award { flex-direction: column; align-items: flex-start; }
  .pricing-hero { min-height: 650px; }
  .pricing-hero_title { font-size: clamp(40px,12vw,60px); }
  .planner-card { grid-template-columns: 92px minmax(0,1fr); gap: 18px; padding: 18px 0; }
  .planner-card_media { height: 86px; }
  .planner-card_action { grid-column: 2; margin-top: -8px; }
  .planner-disclosure { grid-template-columns: 1fr; }
  .value-grid, .review-source-grid { grid-template-columns: 1fr; }
  .location-service-links { grid-template-columns: 1fr; }
  .service-detail-hero { min-height: 570px; }
  .service-intro-section { padding-top: 58px; padding-bottom: 72px; }
  .service-intro-title { font-size: clamp(34px, 10vw, 48px); }
  .service-brief-item { grid-template-columns: 1fr; gap: 8px; }
  .service-spec-heading { grid-template-columns: 1fr; }
  .service-spec-grid { grid-template-columns: 1fr; }
  .service-spec-item, .service-spec-item + .service-spec-item { min-height: 0; padding: 28px 0 32px; border-top: 1px solid var(--line-on-dark); border-right: 0; }
  .service-spec-item:first-child { border-top: 0; }
  .service-spec-item-title { margin-top: 34px; }
  .service-faq-grid { grid-template-columns: 1fr; }
  .service-faq-heading { position: static; }
  .service-faq-title { max-width: 16ch; }
  .service-related-inner { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .planner-group_label span:last-child { display: none; }
  .planner-card { grid-template-columns: 1fr; }
  .planner-card_media { height: 150px; }
  .planner-card_action { grid-column: 1; margin-top: 0; }
}

/* EXECUTIVE EXPERIENCE CENTER — editorial showroom page */
.eec-hero { position: relative; min-height: 760px; height: 94svh; display: flex; align-items: flex-end; color: var(--brand-ivory); background: var(--brand-navy); }
.eec-hero_media { position: absolute; inset: 0; overflow: hidden; }
.eec-hero_media img { width: 100%; height: 100%; object-fit: cover; object-position: center 52%; transform: scale(1.015); }
.eec-hero_scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.70) 0%, rgba(0,0,0,.20) 55%, rgba(0,0,0,.48) 100%); }
.eec-hero_inner { position: relative; width: 100%; display: grid; grid-template-columns: minmax(0,1.5fr) minmax(320px,.55fr); gap: clamp(48px,8vw,140px); align-items: end; padding: 0 var(--gutter) clamp(44px,6vw,84px); }
.eec-eyebrow { color: var(--brand-sand); font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.eec-hero_title { max-width: 13ch; font-size: clamp(48px,6vw,96px); letter-spacing: -.058em; }
.eec-hero_intro { max-width: 54ch; margin-top: 24px; color: rgba(252,251,250,.86); font-size: clamp(15px,1.2vw,18px); line-height: 1.65; }
.eec-hero_card { border-top: 1px solid rgba(252,251,250,.62); padding-top: 22px; }
.eec-card_label { color: var(--brand-sand); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.eec-hero_card address { margin-top: 20px; font-style: normal; font-family: var(--font-display); font-size: clamp(20px,2vw,29px); line-height: 1.3; letter-spacing: -.025em; }
.eec-hero_actions { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; margin-top: 28px; }
.eec-text-link { padding-bottom: 4px; border-bottom: 1px solid rgba(252,251,250,.5); font-size: 14px; }
.eec-text-link:hover { border-color: var(--brand-ivory); }
.eec-intro_grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(320px,.8fr); gap: clamp(48px,9vw,150px); align-items: start; }
.eec-section_title { max-width: 16ch; font-size: clamp(36px,4.5vw,70px); letter-spacing: -.05em; }
.eec-intro_copy { padding-top: 30px; border-top: 1px solid var(--line); color: var(--text-body); font-size: 16px; line-height: 1.75; }
.eec-intro_copy p + p { margin-top: 20px; }
.eec-experiences { padding: clamp(68px,8vw,120px) 0; color: var(--brand-ivory); background: var(--brand-navy); }
.eec-experience_grid { display: grid; grid-template-columns: repeat(3,1fr); }
.eec-experience { min-height: 300px; padding: 8px clamp(24px,3vw,48px) 0; border-left: 1px solid rgba(252,251,250,.2); }
.eec-experience:first-child { padding-left: 0; border-left: 0; }
.eec-experience_num { display: block; color: var(--brand-sand); font-size: 12px; letter-spacing: .1em; }
.eec-experience h3 { margin-top: 80px; font-size: clamp(28px,3vw,46px); }
.eec-experience p { max-width: 35ch; margin-top: 18px; color: rgba(252,251,250,.7); font-size: 14.5px; line-height: 1.65; }
.eec-tour_grid { display: grid; grid-template-columns: minmax(280px,.6fr) minmax(0,1.35fr); gap: clamp(44px,8vw,130px); align-items: center; }
.eec-tour_copy p:not(.feature_kicker) { max-width: 42ch; margin-top: 22px; color: var(--text-body); line-height: 1.65; }
.eec-tour_copy .btn { margin-top: 32px; }
.eec-tour_preview { position: relative; min-height: 580px; overflow: hidden; border-radius: var(--radius-card); color: var(--brand-ivory); }
.eec-tour_preview img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; transition: transform .9s var(--ease); }
.eec-tour_preview-scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.56), rgba(0,0,0,.06) 62%); }
.eec-tour_play { position: absolute; left: 50%; top: 50%; width: 82px; height: 82px; display: grid; place-items: center; transform: translate(-50%,-50%); border: 1px solid rgba(252,251,250,.72); border-radius: 50%; background: rgba(13,22,84,.74); backdrop-filter: blur(8px); transition: transform .35s var(--ease), background-color .35s var(--ease); }
.eec-tour_play svg { width: 28px; fill: currentColor; }
.eec-tour_hint { position: absolute; left: 28px; bottom: 24px; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; }
.eec-tour_preview:hover img { transform: scale(1.035); }
.eec-tour_preview:hover .eec-tour_play { transform: translate(-50%,-50%) scale(1.08); background: var(--brand-blue); }
.eec-visit { padding: clamp(72px,9vw,140px) 0; color: var(--brand-ivory); background: var(--brand-navy); }
.eec-visit_inner { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(320px,.7fr); gap: clamp(48px,10vw,180px); align-items: end; }
.eec-visit h2 { font-size: clamp(38px,5vw,76px); letter-spacing: -.052em; }
.eec-visit_details { padding-top: 26px; border-top: 1px solid rgba(252,251,250,.4); color: rgba(252,251,250,.78); line-height: 1.65; }
.eec-visit_details p + p { margin-top: 12px; color: rgba(252,251,250,.56); font-size: 14px; }

@media (max-width: 900px) {
  .eec-hero { min-height: 800px; height: auto; }
  .eec-hero_inner { grid-template-columns: 1fr; gap: 44px; padding-top: 190px; }
  .eec-hero_card { max-width: 480px; }
  .eec-intro_grid, .eec-tour_grid, .eec-visit_inner { grid-template-columns: 1fr; }
  .eec-experience_grid { grid-template-columns: 1fr; }
  .eec-experience, .eec-experience:first-child { min-height: 0; padding: 30px 0 34px; border-left: 0; border-top: 1px solid rgba(252,251,250,.2); }
  .eec-experience:first-child { border-top: 0; }
  .eec-experience h3 { margin-top: 34px; }
  .eec-tour_preview { min-height: 500px; }
}

@media (max-width: 600px) {
  .eec-hero { min-height: 760px; }
  .eec-hero_scrim { background: linear-gradient(to top, rgba(0,0,0,.80) 0%, rgba(0,0,0,.28) 75%, rgba(0,0,0,.35) 100%); }
  .eec-hero_inner { padding-top: 160px; padding-bottom: 36px; gap: 34px; }
  .eec-hero_title { font-size: clamp(42px,13vw,62px); }
  .eec-hero_intro { margin-top: 18px; }
  .eec-tour_preview { min-height: 390px; }
  .eec-tour_play { width: 68px; height: 68px; }
}

/* CAREERS — a field-to-finish recruiting story */
.careers-intro { padding: clamp(84px,10vw,150px) 0; }
.careers-intro_grid { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(320px,.72fr); gap: clamp(50px,10vw,170px); align-items: start; }
.careers-intro h2 { max-width: 12ch; font-size: clamp(42px,5.2vw,76px); line-height: 1; letter-spacing: -.055em; }
.careers-intro_copy { padding-top: 28px; border-top: 1px solid var(--line); color: var(--text-body); font-size: 16px; line-height: 1.76; }
.careers-intro_copy p + p { margin-top: 22px; }
.careers-disciplines { padding: clamp(78px,9vw,132px) 0; color: var(--brand-ivory); background: var(--brand-navy); }
.careers-disciplines .feature_kicker { color: var(--brand-sand); }
.careers-disciplines_grid { display: grid; grid-template-columns: minmax(280px,.65fr) minmax(0,1.35fr); gap: clamp(52px,9vw,150px); align-items: start; }
.careers-disciplines_intro { position: sticky; top: 130px; }
.careers-disciplines_intro h2 { max-width: 13ch; font-size: clamp(40px,4.8vw,68px); line-height: 1; letter-spacing: -.052em; }
.careers-disciplines_intro > p:last-child { max-width: 42ch; margin-top: 24px; color: rgba(252,251,250,.65); font-size: 14px; line-height: 1.7; }
.careers-roster { border-top: 1px solid rgba(252,251,250,.25); }
.careers-roster article { display: grid; grid-template-columns: minmax(150px,.48fr) minmax(0,1fr); gap: clamp(24px,4vw,64px); padding: clamp(26px,3vw,40px) 0; border-bottom: 1px solid rgba(252,251,250,.25); }
.careers-roster h3 { color: var(--brand-sand); font-size: clamp(27px,3vw,42px); line-height: 1; letter-spacing: -.04em; }
.careers-roster p { max-width: 52ch; color: rgba(252,251,250,.72); font-size: 14px; line-height: 1.65; }
.careers-culture { padding: clamp(84px,10vw,150px) 0; background: #fff; }
.careers-culture_head { display: grid; grid-template-columns: minmax(0,.5fr) minmax(0,1.5fr); gap: 40px; align-items: end; margin-bottom: clamp(46px,6vw,78px); }
.careers-culture_head h2 { max-width: 12ch; font-size: clamp(42px,5vw,72px); line-height: 1; letter-spacing: -.055em; }
.careers-culture_grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.careers-culture_grid article { min-height: 300px; padding: clamp(30px,4vw,52px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.careers-culture_grid h3 { font-size: clamp(25px,2.6vw,36px); line-height: 1.1; letter-spacing: -.04em; }
.careers-culture_grid p { margin-top: 55px; color: var(--text-body); font-size: 14px; line-height: 1.7; }
.careers-apply { padding: clamp(84px,10vw,150px) 0; background: rgba(212,199,145,.16); }
.careers-apply_grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(320px,.75fr); gap: clamp(54px,10vw,170px); align-items: start; }
.careers-apply h2 { max-width: 11ch; font-size: clamp(42px,5vw,72px); line-height: 1; letter-spacing: -.055em; }
.careers-apply h2 + p { max-width: 53ch; margin-top: 24px; color: var(--text-body); font-size: 15px; line-height: 1.7; }
.careers-apply_actions { display: flex; flex-direction: column; align-items: flex-start; padding-top: 28px; border-top: 1px solid var(--line); }
.careers-email_link { margin-top: 28px; padding-bottom: 4px; border-bottom: 1px solid var(--line-strong); color: var(--brand-blue); font-size: 14px; font-weight: 500; }
.careers-email_link:hover { border-color: var(--brand-blue); }
.careers-email_link:focus-visible { outline: 2px solid var(--brand-blue); outline-offset: 4px; }
.careers-apply_actions > p { margin-top: 28px; color: var(--text-body); font-size: 13px; line-height: 1.65; }
.careers-apply_actions .careers-equal { margin-top: 18px; color: var(--text-secondary); font-size: 11.5px; }

@media (max-width: 900px) {
  .careers-intro_grid, .careers-disciplines_grid, .careers-apply_grid { grid-template-columns: 1fr; }
  .careers-disciplines_intro { position: static; }
  .careers-culture_head { grid-template-columns: 1fr; gap: 18px; }
  .careers-culture_grid { grid-template-columns: 1fr; }
  .careers-culture_grid article { min-height: 0; }
  .careers-culture_grid p { margin-top: 26px; }
}

@media (max-width: 600px) {
  .careers-roster article { grid-template-columns: 1fr; gap: 14px; }
  .careers-apply_actions .btn { width: 100%; text-align: center; }
}

/* BLOG — image-led archive and focused long-form reading */
.blog-feature { padding: clamp(56px,7vw,96px) 0 clamp(72px,8vw,112px); }
.blog-title { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: clamp(42px,5vw,68px); }
.blog-title h1 { max-width: 17ch; font-size: clamp(42px,5vw,72px); line-height: .98; letter-spacing: -.055em; }
.blog-title .feature_kicker { flex: 0 0 auto; margin-bottom: 7px; }
.blog-feature_story { display: grid; grid-template-columns: minmax(0,3fr) minmax(250px,1fr); min-height: clamp(470px,52vw,650px); border-bottom: 1px solid var(--line); padding-bottom: clamp(48px,5vw,72px); }
.blog-feature_media { overflow: hidden; border-radius: 10px; background: rgba(13,22,84,.06); }
.blog-feature_media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.blog-feature_copy { display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(30px,4vw,58px) 0 4px clamp(28px,4vw,64px); }
.blog-feature_copy h2 { margin-top: 16px; font-size: clamp(30px,3.2vw,48px); line-height: 1.04; letter-spacing: -.045em; }
.blog-feature_copy > p:not(.blog-card_time) { margin-top: 16px; color: var(--text-secondary); font-size: 15px; line-height: 1.6; }
.blog-feature_link { margin-top: 28px; color: var(--brand-blue); font-size: 14px; font-weight: 500; }
.blog-feature_story:hover .blog-feature_media img { transform: scale(1.025); }
.blog-feature_story:hover .blog-feature_link span { display: inline-block; transform: translateX(4px); }
.blog-index { padding: clamp(66px,8vw,112px) 0 clamp(90px,10vw,150px); }
.blog-index_head { margin-bottom: 28px; }
.blog-index_head h2 { font-size: clamp(32px,3.4vw,48px); letter-spacing: -.045em; }
.blog-index_head p { margin-top: 8px; color: var(--text-secondary); font-size: 15px; }
.blog-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: clamp(36px,4vw,54px); }
.blog-filter { border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 10px 16px; color: var(--text-secondary); background: transparent; font: 500 13px/1 var(--font-body); cursor: pointer; transition: color .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease); }
.blog-filter:hover, .blog-filter.is-active { border-color: var(--brand-navy); color: var(--brand-ivory); background: var(--brand-navy); }
.blog-filter:focus-visible { outline: 2px solid var(--brand-blue); outline-offset: 3px; }
.blog-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: clamp(52px,6vw,80px) clamp(24px,3vw,40px); }
.blog-card { display: flex; flex-direction: column; min-width: 0; }
.blog-card[hidden] { display: none; }
.blog-card_media { aspect-ratio: 16 / 10; overflow: hidden; border-radius: 10px; background: rgba(13,22,84,.06); }
.blog-card_media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.blog-card_copy { display: flex; flex: 1; flex-direction: column; padding: 18px 8px 0; }
.blog-card_category { color: var(--brand-blue); font-size: 11px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.blog-card h3 { max-width: 27ch; margin-top: 10px; font-size: clamp(24px,2.5vw,34px); line-height: 1.08; letter-spacing: -.035em; transition: color .3s var(--ease); }
.blog-card_meta { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-top: 20px; }
.blog-card_time { color: var(--text-secondary); font-size: 11px; font-weight: 500; letter-spacing: .07em; text-transform: uppercase; }
.blog-card_cta { color: var(--brand-blue); font-size: 13px; font-weight: 500; white-space: nowrap; }
.blog-card_arrow { display: inline-block; transition: transform .3s var(--ease); }
.blog-card:hover .blog-card_media img { transform: scale(1.025); }
.blog-card:hover h3 { color: var(--brand-blue); }
.blog-card:hover .blog-card_arrow { transform: translateX(4px); }
.blog-card:focus-visible, .blog-feature_story:focus-visible { outline: 2px solid var(--brand-blue); outline-offset: 5px; border-radius: 4px; }

.article-page > .breadcrumbs { margin-top: 96px; }
.article-masthead { padding: clamp(58px,7vw,96px) 0 clamp(46px,5vw,70px); }
.article-masthead_inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.article-category { margin-bottom: 18px; color: var(--brand-blue); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.article-masthead h1 { max-width: 19ch; font-size: clamp(46px,5.4vw,76px); line-height: 1; letter-spacing: -.055em; }
.article-byline { display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 12px; margin-top: 26px; color: var(--text-secondary); font-size: 12px; line-height: 1.4; }
.article-byline span + span::before { content: "|"; margin-right: 12px; color: var(--line-strong); }
.article-byline span:last-child { color: var(--text-secondary); font-size: 12px; font-weight: 400; letter-spacing: 0; text-transform: none; }
.article-hero { height: clamp(440px,54vw,690px); overflow: hidden; }
.article-hero img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.article-layout { width: 100%; max-width: 1120px; margin-inline: auto; padding-top: clamp(62px,8vw,100px); padding-bottom: clamp(86px,10vw,140px); }
.article-rail { display: none; }
.article-body { min-width: 0; }
.article-body > p { margin-top: 25px; color: var(--text-body); font-size: 17px; line-height: 1.76; }
.article-body .article-lede { margin-top: 0; padding-bottom: 34px; border-bottom: 1px solid var(--line); color: var(--brand-navy); font-size: 19px; line-height: 1.7; letter-spacing: -.01em; }
.article-body .article-lede strong { font-weight: 600; }
.article-body h2 { margin-top: clamp(58px,7vw,82px); font-size: clamp(30px,3.5vw,42px); line-height: 1.08; letter-spacing: -.04em; scroll-margin-top: 128px; }
.article-body a:not(.btn) { color: var(--brand-blue); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.article-body blockquote { margin: clamp(40px,5vw,58px) 0; padding: clamp(30px,4.5vw,54px); border-radius: 10px; color: var(--brand-navy); background: #ded8c1; }
.article-body blockquote p { font-family: var(--font-display); font-size: clamp(22px,2.7vw,33px); line-height: 1.3; letter-spacing: -.03em; }
.article-body blockquote cite { display: block; margin-top: 22px; color: rgba(13,22,84,.72); font-size: 11px; font-style: normal; font-weight: 500; letter-spacing: .04em; }
.article-body h2[id="frequently-asked-questions"] ~ p strong { display: block; margin-bottom: 7px; color: var(--brand-navy); font-family: var(--font-display); font-size: 19px; font-weight: 500; line-height: 1.35; }
.article-endcap { margin-top: clamp(54px,7vw,82px); padding-top: 30px; border-top: 1px solid var(--line); }
.article-endcap .btn { line-height: 1.35; }
.article-more { padding: clamp(56px,6vw,78px) 0 clamp(70px,7vw,96px); border-top: 1px solid var(--line); background: #fff; }
.article-more > .container { width: 100%; max-width: 1240px; margin-inline: auto; }
.article-more_head { display: flex; align-items: baseline; justify-content: space-between; gap: 28px; margin-bottom: clamp(28px,3vw,38px); }
.article-more_head h2 { font-size: clamp(31px,3vw,42px); letter-spacing: -.045em; }
.article-more_head a { color: var(--brand-blue); font-size: 14px; font-weight: 500; }
.article-more_head a:hover { text-decoration: underline; text-underline-offset: 4px; }
.article-more_grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: clamp(20px,2.25vw,30px); }
.article-more_card { display: block; min-width: 0; }
.article-more_card img { width: 100%; height: clamp(180px,16vw,225px); object-fit: cover; border-radius: 8px; background: rgba(13,22,84,.06); }
.article-more_card p { margin-top: 15px; color: var(--brand-blue); font-size: 10px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.article-more_card h3 { max-width: 26ch; margin-top: 7px; font-size: clamp(20px,1.8vw,25px); line-height: 1.12; letter-spacing: -.035em; transition: color .25s var(--ease); }
.article-more_card:hover h3 { color: var(--brand-blue); }
.article-more_card:focus-visible { outline: 2px solid var(--brand-blue); outline-offset: 5px; border-radius: 4px; }

@media (max-width: 900px) {
  .blog-title { display: block; }
  .blog-title .feature_kicker { margin-bottom: 18px; }
  .blog-feature_story { grid-template-columns: 1fr; min-height: 0; }
  .blog-feature_media { aspect-ratio: 16 / 10; }
  .blog-feature_copy { padding: 28px 6px 0; }
  .article-more_grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .article-more_card:last-child { display: none; }
}

@media (max-width: 700px) {
  .blog-feature { padding-top: 42px; }
  .blog-title h1 { font-size: clamp(40px,11vw,56px); }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card_copy { padding-left: 2px; padding-right: 2px; }
  .blog-card h3 { font-size: clamp(26px,7.4vw,34px); }
  .article-page > .breadcrumbs { margin-top: 74px; }
  .article-masthead h1 { font-size: clamp(40px,11vw,58px); }
  .article-byline { flex-direction: column; gap: 5px; }
  .article-byline span + span::before { content: none; }
  .article-hero { height: 360px; }
  .article-body > p { font-size: 16px; }
  .article-more_head { align-items: flex-start; flex-direction: column; gap: 10px; }
  .article-more_grid { grid-template-columns: 1fr; }
  .article-more_card:last-child { display: block; }
}

/* OUR BRANDS — platform relationships presented as a connected specification */
.brands-page { background: var(--page); }
.brands-hero { min-height: 650px; padding: 176px 0 88px; color: var(--brand-ivory); background: var(--brand-navy); }
.brands-hero_inner { display: flex; align-items: flex-end; min-height: 385px; }
.brands-hero_copy { width: 100%; }
.brands-eyebrow { margin-bottom: 22px; color: var(--brand-sand); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.brands-hero_copy h1 { max-width: 13ch; font-size: clamp(52px,6.4vw,96px); line-height: .96; letter-spacing: -.06em; }
.brands-hero_copy > p:last-child { max-width: 54ch; margin-top: 28px; color: rgba(252,251,250,.74); font-size: clamp(16px,1.3vw,19px); line-height: 1.65; }
.brands-intro { padding: clamp(82px,10vw,150px) 0; }
.brands-intro_grid { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(320px,.72fr); gap: clamp(48px,10vw,170px); align-items: start; }
.brands-intro h2 { max-width: 13ch; font-size: clamp(40px,5.2vw,76px); line-height: 1; letter-spacing: -.055em; }
.brands-intro_copy { padding-top: 28px; border-top: 1px solid var(--line); color: var(--text-body); font-size: 16px; line-height: 1.75; }
.brands-intro_copy p + p { margin-top: 22px; }
.brands-relationship { padding: clamp(76px,9vw,126px) 0; color: var(--brand-ivory); background: var(--brand-navy); }
.brands-relationship_grid { display: grid; grid-template-columns: minmax(260px,.62fr) minmax(0,1.38fr); gap: clamp(50px,10vw,170px); align-items: start; }
.brands-relationship h2 { max-width: 11ch; font-size: clamp(40px,4.8vw,68px); line-height: 1; letter-spacing: -.052em; }
.brands-relationship_points { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border-top: 1px solid rgba(252,251,250,.24); border-left: 1px solid rgba(252,251,250,.24); }
.brands-relationship_points article { min-height: 190px; padding: clamp(24px,3vw,38px); border-right: 1px solid rgba(252,251,250,.24); border-bottom: 1px solid rgba(252,251,250,.24); }
.brands-relationship_points h3 { color: var(--brand-sand); font-size: clamp(19px,2vw,26px); line-height: 1.15; letter-spacing: -.025em; }
.brands-relationship_points p { margin-top: 15px; color: rgba(252,251,250,.7); font-size: 13.5px; line-height: 1.65; }
.brands-relationship_note { margin-top: 30px; color: rgba(252,251,250,.5); font-size: 11.5px; line-height: 1.5; text-align: right; }
.brands-featured { padding: clamp(78px,9vw,132px) 0 clamp(90px,10vw,150px); background: #fff; }
.brands-section_head { display: grid; grid-template-columns: minmax(0,.55fr) minmax(0,1.45fr); gap: 40px; align-items: end; margin-bottom: clamp(44px,6vw,78px); }
.brands-section_head h2 { max-width: 16ch; font-size: clamp(42px,5.2vw,74px); line-height: 1; letter-spacing: -.055em; }
.brands-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.brand-card { display: grid; grid-template-columns: minmax(150px,.72fr) minmax(0,1.28fr); min-height: 330px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); scroll-margin-top: 120px; transition: background-color .3s var(--ease); }
.brand-card:hover { background: rgba(212,199,145,.16); }
.brand-card_logo { display: grid; place-items: center; padding: 34px; border-right: 1px solid var(--line); }
.brand-card_logo img { display: block; width: auto; height: auto; max-width: 150px; max-height: 34px; filter: brightness(0); opacity: .88; }
.brand-card_copy { display: flex; flex-direction: column; padding: clamp(30px,3vw,46px); }
.brand-card_copy > p:first-child { color: var(--brand-blue); font-size: 10.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.brand-card_copy h3 { margin-top: 28px; font-size: clamp(30px,3vw,44px); line-height: 1; letter-spacing: -.045em; }
.brand-card_copy h3 + p { margin-top: 17px; color: var(--text-body); font-size: 14px; line-height: 1.65; }
.brand-card_copy a { width: fit-content; margin-top: auto; padding-top: 25px; color: var(--brand-blue); font-size: 13px; font-weight: 500; }
.brand-card_copy a span { display: inline-block; margin-left: 5px; transition: transform .25s var(--ease); }
.brand-card_copy a:hover span { transform: translate(3px,-3px); }
.brand-card_copy a:focus-visible { outline: 2px solid var(--brand-blue); outline-offset: 5px; }
.brands-additional { padding: clamp(80px,10vw,150px) 0; color: var(--brand-ivory); background: var(--brand-navy); }
.brands-additional_grid { display: grid; grid-template-columns: minmax(280px,.62fr) minmax(0,1.38fr); gap: clamp(54px,10vw,170px); align-items: start; }
.brands-additional h2 { max-width: 10ch; font-size: clamp(40px,4.6vw,66px); line-height: 1; letter-spacing: -.05em; }
.brands-additional h2 + p { max-width: 43ch; margin-top: 24px; color: rgba(252,251,250,.68); font-size: 14.5px; line-height: 1.7; }
.brands-name_grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border-top: 1px solid rgba(252,251,250,.22); }
.brands-name_grid li { list-style: none; padding: 19px 6px; border-bottom: 1px solid rgba(252,251,250,.22); color: rgba(252,251,250,.86); font-family: var(--font-display); font-size: clamp(18px,2vw,25px); letter-spacing: -.02em; }
.brands-name_grid li:nth-child(odd) { border-right: 1px solid rgba(252,251,250,.22); }
.brands-name_grid li:nth-child(even) { padding-left: clamp(20px,3vw,44px); }

@media (max-width: 1023px) {
  .brands-hero { min-height: 0; padding-top: 150px; }
  .brands-hero_inner { min-height: 0; }
  .brands-intro_grid, .brands-relationship_grid, .brands-additional_grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .brands-hero { padding: 126px 0 60px; }
  .brands-hero_copy h1 { font-size: clamp(44px,13vw,62px); }
  .brands-section_head { grid-template-columns: 1fr; gap: 18px; }
  .brand-card { grid-template-columns: 1fr; min-height: 0; }
  .brand-card_logo { min-height: 132px; border-right: 0; border-bottom: 1px solid var(--line); }
  .brand-card_copy { min-height: 280px; }
  .brands-relationship_points { grid-template-columns: 1fr; }
  .brands-relationship_points article { min-height: 0; }
  .brands-relationship_note { text-align: left; }
  .brands-name_grid { grid-template-columns: 1fr; }
  .brands-name_grid li:nth-child(odd) { border-right: 0; }
  .brands-name_grid li:nth-child(even) { padding-left: 6px; }
  .logos_link { margin-top: -8px; }
}
