@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&family=Fraunces:opsz,wght@9..144,500;9..144,600&family=Inter:wght@400;500;600;700;800&family=Lato:wght@300;400;700;900&display=swap");

/* ======================================================================
   Case-study stage — overlapping HTML frames, fade in on scroll
   ====================================================================== */
.cs-stage {
  --cs-stage-h: 78vh;
  --cs-pad-y: 0px;
  position: relative;
  height: var(--cs-stage-h);
  min-height: 34rem;
  overflow: hidden;
  isolation: isolate;
  clip-path: inset(0);
  margin: clamp(1.5rem, 4vw, 3rem) 0;
  padding-block: var(--cs-pad-y);
  box-sizing: border-box;
}
.cs-stage__in {
  position: relative;
  height: 100%;
  width: min(100%, 90rem);
  margin-inline: auto;
  overflow: visible;
}
.cs-stage--hero {
  --cs-stage-h: min(86vh, 56rem);
  margin: clamp(2rem, 5vw, 4rem) 0 0;
}
.cs-stage--hero.cs-stage--field {
  --cs-stage-h: min(78vh, 44rem);
  margin: 0;
}
.cs-stage--field {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  border-radius: 0;
  overflow: hidden;
  isolation: isolate;
  clip-path: inset(0);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(1.25rem, 3vw, 2.75rem);
  padding: 0;
  box-sizing: border-box;
}
.cs-field-col {
  flex: 0 1 min(16rem, 28vw);
  width: min(16rem, 28vw);
  min-width: 0;
  margin-top: -18%;
  overflow: hidden;
  isolation: isolate;
  clip-path: inset(0);
  box-sizing: border-box;
}
.cs-field-col__track {
  display: flex;
  flex-direction: column;
}
.cs-field-col__set {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: clamp(1.5rem, 4vw, 3rem);
}
.cs-stage--field .cs-frame {
  position: relative;
  left: auto;
  top: auto;
  width: 100%;
  opacity: 1;
  transform: none;
  will-change: auto;
  box-sizing: border-box;
}
.cs-stage--field .cs-frame--phone {
  animation: none;
  box-sizing: border-box;
  width: 100%;
}
.cs-stage--navy { background: #0b2444; }
.cs-stage--deep { background: #0d4762; }
.cs-stage--ivory { background: #f7f4ee; }
.cs-stage--mist { background: #f2f6fb; }
.cs-stage--transparent { background: transparent; }
.cs-stage--fade {
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.cs-frame {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--w);
  z-index: var(--z);
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  pointer-events: none;
}
.cs-frame--browser {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(11, 36, 68, 0.14), 0 2px 8px rgba(11, 36, 68, 0.06);
}
.cs-frame--sized {
  height: var(--h);
  display: flex;
  flex-direction: column;
}
.cs-frame--sized .cs-frame__body {
  flex: 1 1 auto;
  min-height: 0;
}
.cs-frame--sized .cs-shot-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.cs-frame--phone {
  border-radius: 36px;
  overflow: hidden;
  box-sizing: border-box;
  background: #0a0a0a;
  border: 8px solid #0a0a0a;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.14),
    0 12px 24px rgba(11, 36, 68, 0.14);
}
.cs-stage--field .cs-frame--phone,
.cs-stage--navy .cs-frame--phone,
.cs-stage--deep .cs-frame--phone {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.cs-frame--phone .cs-frame__body {
  background: #0b2444;
  overflow: hidden;
  border-radius: 28px;
}
.cs-frame--phone::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  width: 28%;
  max-width: 92px;
  height: 18px;
  background: #000;
  border-radius: 12px;
  transform: translateX(-50%);
  z-index: 6;
  pointer-events: none;
}
.cs-frame--phone::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 32%;
  height: 5px;
  background: rgba(255, 255, 255, 0.42);
  border-radius: 4px;
  transform: translateX(-50%);
  z-index: 6;
  pointer-events: none;
}
.cs-chrome {
  height: 36px;
  background: #eceae4;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 7px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.cs-chrome span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #febc2e;
}
.cs-chrome span:nth-child(1) { background: #ff5f57; }
.cs-chrome span:nth-child(3) { background: #28c840; }
.cs-frame__body {
  overflow: hidden;
  background: #fff;
}
.cs-frame--phone .cs-chrome { display: none; }
.cs-frame--bare {
  box-shadow: none;
  background: transparent;
  border-radius: 0;
}
.cs-frame--bare .cs-frame__body {
  background: #111;
  overflow: hidden;
}
.cs-stage--fill {
  height: auto;
  min-height: 0;
  overflow: hidden;
  margin: 0;
}
.cs-stage--hero.cs-stage--fill {
  margin: clamp(2rem, 5vw, 4rem) 0 0;
}
.cs-stage--fill .cs-frame {
  position: relative;
  left: auto;
  top: auto;
  width: 100%;
  opacity: 1;
  transform: none;
  will-change: auto;
}
.cs-frame--piece {
  background: transparent;
  box-shadow: none;
  overflow: visible;
  border-radius: 0;
}
.cs-frame--piece .cs-frame__body,
.cs-frame--shot .cs-frame__body {
  background: transparent;
  overflow: visible;
}
.cs-frame--shot {
  background: transparent;
  box-shadow: none;
  overflow: visible;
}
.cs-shot-img {
  width: 100%;
  height: auto;
  display: block;
}
.cs-frame--phone .cs-shot-img {
  width: 100%;
  height: auto;
  display: block;
}
.cs-frame--phone:has(.cs-shot-img) .cs-frame__body {
  aspect-ratio: 390 / 844;
  height: auto;
  overflow: hidden;
}
.cs-shot-img--pan {
  animation: cs-screen-pan 22s linear infinite alternate;
  will-change: transform;
}
@keyframes cs-screen-pan {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(0, -32%, 0); }
}
.cs-stage--video {
  height: var(--cs-stage-h, 78vh);
  min-height: 22rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin: clamp(1.5rem, 4vw, 3rem) 0;
}
.cs-field-video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.project-section-wrapper .cs-stage .cs-shot-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 0;
}
.project-section-wrapper .cs-stage .cs-frame--sized .cs-shot-img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}

@media (max-width: 820px) {
  .cs-stage {
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.25rem;
    padding-block: max(1.25rem, var(--cs-pad-y, 0px));
  }
  .cs-stage:not(.cs-stage--field) .cs-stage__in {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  .cs-stage:not(.cs-stage--field) .cs-frame {
    position: relative;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    opacity: 1;
  }
  .cs-stage:not(.cs-stage--field) .cs-frame--phone {
    width: min(72vw, 320px) !important;
    align-self: center;
  }
  .cs-stage:not(.cs-stage--field) .cs-frame--sized {
    height: auto;
  }
  .cs-stage:not(.cs-stage--field) .cs-frame--sized .cs-shot-img {
    height: auto;
  }
  .cs-stage--field {
    --cs-stage-h: min(70vh, 34rem);
    height: var(--cs-stage-h);
    min-height: 24rem;
    max-height: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 0.55rem;
    padding: 0 0.6rem;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .cs-stage--hero.cs-stage--field {
    margin: 0;
  }
  .cs-field-col {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    margin-top: -10%;
  }
  .cs-field-col__set {
    gap: 1.1rem;
    padding-bottom: 1.1rem;
  }
  .cs-stage--field .cs-frame {
    position: relative;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    opacity: 1;
  }
  .cs-stage--field .cs-frame--phone {
    width: 100% !important;
    align-self: auto;
    border-radius: 16px;
    border-width: 5px;
  }
  .cs-stage--field .cs-frame--phone .cs-frame__body {
    border-radius: 12px;
  }
  .cs-stage--field .cs-frame--phone::before {
    top: 5px;
    height: 9px;
    max-width: 42px;
    border-radius: 6px;
  }
  .cs-stage--video {
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    min-height: 22rem;
    height: min(72vh, 32rem);
    max-height: none;
  }
  .cs-stage--fill {
    padding: 0;
  }
  .cs-stage--fill .cs-frame {
    width: 100% !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cs-frame { opacity: 1; transform: none; will-change: auto; }
  .cs-field-col { transform: none; will-change: auto; }
  .cs-shot-img--pan,
  .cs-stage--field .cs-frame--phone { animation: none; }
}

/* ---------- Novak page clone (scoped; does not leak into Loopdash) ---------- */
.nvk {
  --navy: #12345c;
  --navy-d: #0b2444;
  --ivory: #f7f4ee;
  --mist: #f2f6fb;
  --ink: #16222f;
  --muted: #4d5f70;
  --champ: #b3925a;
  --champ-l: #c9a86e;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Lato", system-ui, sans-serif;
  box-sizing: border-box;
  transform-origin: top left;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
.nvk *,
.nvk *::before,
.nvk *::after { box-sizing: border-box; margin: 0; }
.nvk img { display: block; max-width: 100%; }

.nvk-hdr {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 3;
  background: transparent;
}
.nvk-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px;
  max-width: 1340px;
  margin: 0 auto;
}
.nvk-brand img { height: 52px; width: auto; }
.nvk-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}
.nvk-menu .is-on { font-weight: 900; color: #fff; }
.nvk-quote {
  background: var(--navy);
  color: #fff !important;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 3px;
}
.nvk-hdr--p1 { background: #fff; position: relative; }
.nvk-hdr--p1 .nvk-menu { color: var(--muted); }
.nvk-hdr--p1 .nvk-menu .is-on { color: var(--navy); }
.nvk-hdr--p1 .nvk-quote { color: #fff !important; }
.nvk-burger { display: flex; flex-direction: column; gap: 5px; width: 22px; }
.nvk-burger i { display: block; height: 2px; background: #fff; border-radius: 2px; }

.nvk-hero {
  position: relative;
  min-height: 520px;
  padding: 110px 48px 64px;
  color: #fff;
  background: var(--navy-d) center / cover no-repeat;
}
.nvk-hero--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 36, 68, 0.82) 0%, rgba(11, 36, 68, 0.5) 50%, rgba(11, 36, 68, 0.2) 100%);
}
.nvk-hero--navy { background: var(--navy-d); }
.nvk-hero__inner { position: relative; z-index: 1; max-width: 640px; }
.nvk-eye {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #8a6a34;
}
.nvk-eye--light { color: var(--champ-l); }
.nvk h1 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.06;
  font-size: 52px;
  color: #fff;
  margin: 14px 0 0;
}
.nvk h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 36px;
  color: var(--navy);
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.nvk h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--navy);
}
.nvk-hero p {
  color: rgba(255, 255, 255, 0.86);
  margin: 18px 0 0;
  max-width: 52ch;
  font-size: 16px;
}
.nvk-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.nvk-btn {
  display: inline-flex;
  align-items: center;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 3px;
  border: 1px solid var(--navy);
}
.nvk-btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
}
.nvk-btn--ghost-ink {
  background: transparent;
  color: var(--navy);
  border-color: rgba(18, 52, 92, 0.2);
}
.nvk-btn--champ {
  background: var(--champ-l);
  border-color: var(--champ-l);
  color: var(--navy-d);
}

.nvk-p1lock {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 560px;
  margin: 0 0 28px;
  padding: 14px 18px;
  border-radius: 5px;
  background: rgba(11, 36, 68, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 3px solid var(--champ-l);
}
.nvk-p1lock img { height: 28px; width: auto; }

.nvk-band { background: #fff; padding: 36px 48px 48px; }
.nvk-band h2 { margin-top: 8px; }
.nvk-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(18, 52, 92, 0.14);
  border: 1px solid rgba(18, 52, 92, 0.14);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 22px;
}
.nvk-cards > div { background: #fff; padding: 22px 20px; min-height: 110px; }
.nvk-cards span {
  display: inline-block;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}
.nvk-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.nvk-stats b {
  display: block;
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
}
.nvk-stats span { color: var(--muted); font-size: 15px; }
.nvk-avatars { display: flex; gap: 28px; }
.nvk-avatars i {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.nvk-avatars b { display: block; font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--navy); }
.nvk-avatars span { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--champ); }
.nvk-logos { display: flex; align-items: center; gap: 36px; margin-top: 18px; }
.nvk-logos img { height: 36px; width: auto; -o-object-fit: contain; object-fit: contain; filter: grayscale(1); opacity: 0.65; }

.nvk-p1hero {
  background: linear-gradient(180deg, #fff, var(--ivory));
  text-align: center;
  padding: 72px 48px 80px;
}
.nvk-p1hero .nvk-p1mark { height: 42px; width: auto; margin: 0 auto 18px; }
.nvk-p1hero h1 { color: var(--navy); font-size: 56px; }
.nvk-p1hero p { color: var(--muted); max-width: 52ch; margin: 16px auto 0; font-size: 16px; }
.nvk-p1hero .nvk-cta { justify-content: center; }

.nvk-offices { padding: 28px 8px; }
.nvk-offices--navy { background: var(--navy-d); color: #fff; padding: 36px 28px 40px; }
.nvk-offices--navy h2 { color: #fff; font-size: 42px; margin-top: 8px; }
.nvk-office-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.nvk-offices--navy .nvk-office-row { grid-template-columns: 1fr 1fr; margin-top: 24px; }
.nvk-office-row article {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(18, 52, 92, 0.12);
}
.nvk-ot-photo { aspect-ratio: 4 / 3; background: var(--navy) center / cover no-repeat; }
.nvk-ot-cap { padding: 14px 16px 16px; }
.nvk-ot-cap h3 { font-size: 22px; margin: 4px 0; }
.nvk-ot-cap p { font-size: 13px; color: var(--muted); }

.nvk--phone .nvk-nav {
  padding: 38px 16px 10px;
  max-width: none;
}
.nvk--phone .nvk-brand {
  display: block;
  width: 28px;
  height: 28px;
  overflow: hidden;
  flex-shrink: 0;
}
.cs-stage .nvk--phone .nvk-brand img {
  width: 68px;
  height: auto;
  max-width: none;
  margin-left: -20px;
}
.nvk--phone .nvk-hdr,
.nvk--phone .nvk-hdr--p1 {
  position: absolute;
  background: transparent;
}
.nvk--phone .nvk-hdr--p1 .nvk-burger i { background: var(--navy); }
.nvk--phone .nvk-hero { min-height: 520px; padding: 88px 22px 48px; }
.nvk--phone.nvk--home .nvk-hero { min-height: 844px; }
.nvk--phone h1 { font-size: 32px; }
.nvk--phone .nvk-p1lock {
  flex-direction: column;
  align-items: flex-start;
  width: auto;
  max-width: 100%;
  margin: 0 0 20px;
  padding: 0;
  background: transparent;
  border: 0;
}
.nvk--phone .nvk-p1lock .nvk-btn {
  width: auto;
  max-width: 100%;
  white-space: normal;
  text-align: left;
  padding: 12px 16px;
  font-size: 11px;
  border-radius: 3px;
}
.nvk--phone .nvk-p1hero {
  padding: 88px 22px 64px;
  min-height: 844px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.nvk--phone .nvk-p1hero h1 { font-size: 32px; }
.nvk--phone .nvk-cards { grid-template-columns: 1fr; }
.nvk--phone .nvk-band { padding: 28px 18px 56px; }
.nvk--phone .nvk-stats { grid-template-columns: 1fr; gap: 20px; }
.nvk--phone .nvk-avatars { flex-direction: column; gap: 16px; }

/* Native-size UI chips — padded, rounded cards around the phones */
.nvk-piece {
  width: 100%;
  background: transparent;
  height: auto;
}
.nvk-piece .nvk-nav,
.nvk-piece .nvk-p1lock,
.nvk-piece .nvk-chip,
.nvk-piece .nvk-card-stack,
.nvk-piece .nvk-stat-card,
.nvk-piece .nvk-office-card,
.nvk-piece .nvk-shot,
.nvk-piece .nvk-btn--lg {
  border-radius: 20px;
}
.nvk-piece .nvk-nav--bar {
  background: #fff;
  box-shadow: 0 18px 40px rgba(11, 36, 68, 0.16);
  padding: 16px 20px;
  gap: 16px;
  max-width: none;
}
.nvk-piece .nvk-nav--bar .nvk-menu {
  flex: 1;
  justify-content: flex-end;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 10px;
  gap: 14px;
}
.nvk-piece .nvk-nav--navy { background: var(--navy-d); }
.nvk-piece .nvk-nav--bar .nvk-brand img { height: 40px; }
.nvk-piece .nvk-nav--bar .nvk-menu .is-on { color: var(--navy); }
.nvk-piece .nvk-nav--navy .nvk-menu { color: rgba(255, 255, 255, 0.82); }
.nvk-piece .nvk-nav--navy .nvk-menu .is-on { color: #fff; }
.nvk-piece .nvk-quote {
  padding: 12px 16px;
  font-size: 10px;
  border-radius: 12px;
}
.nvk-piece .nvk-p1lock--card {
  margin: 0;
  max-width: none;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  padding: 22px 22px 20px;
  gap: 16px;
  border-radius: 20px;
  box-shadow: 0 18px 44px rgba(11, 36, 68, 0.22);
}
.nvk-piece .nvk-p1lock--card img { height: 32px; }
.nvk-piece .nvk-p1lock--card .nvk-btn {
  justify-content: center;
  width: 100%;
  border-radius: 12px;
  padding: 14px 18px;
}
.nvk-chip {
  display: block;
  background: rgba(11, 36, 68, 0.78);
  color: var(--champ-l);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 18px 22px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 40px rgba(11, 36, 68, 0.22);
  line-height: 1.45;
}
.nvk-chip--action {
  background: #fff;
  color: inherit;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  padding: 16px;
  border: 0;
}
.nvk-chip--action .nvk-btn--lg {
  width: 100%;
  justify-content: center;
  padding: 16px 22px;
  border-radius: 12px;
  font-size: 13px;
  box-shadow: none;
}
.cs-stage--navy .nvk-chip--action .nvk-btn--lg {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.nvk-shot {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 20px;
  overflow: hidden;
  background: var(--navy-d) center / cover no-repeat;
  color: #fff;
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 22px 50px rgba(11, 36, 68, 0.28);
}
.nvk-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 36, 68, 0.15) 0%, rgba(11, 36, 68, 0.78) 100%);
}
.nvk-shot > * { position: relative; z-index: 1; }
.nvk-shot h1 {
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
  max-width: 18ch;
  margin-top: 8px;
}
.nvk-shot--ivory {
  aspect-ratio: auto;
  background: linear-gradient(180deg, #fff, var(--ivory));
  color: var(--navy);
  justify-content: flex-start;
  padding: 28px 28px 32px;
}
.nvk-shot--ivory::before { display: none; }
.nvk-shot--ivory h1 { color: var(--navy); font-size: clamp(1.5rem, 2.6vw, 2.3rem); }
.nvk-shot--ivory .nvk-p1mark { height: 28px; width: auto; margin-bottom: 16px; }
.nvk-card-stack {
  background: #fff;
  border-radius: 20px;
  padding: 26px 26px 28px;
  box-shadow: 0 18px 44px rgba(11, 36, 68, 0.14);
}
.nvk-card-stack h2 { font-size: clamp(1.3rem, 2vw, 1.7rem); margin: 6px 0 16px; }
.nvk-cards--piece {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: transparent;
  border: 0;
  overflow: visible;
  border-radius: 0;
}
.nvk-cards--piece > div {
  background: var(--mist);
  border-radius: 14px;
  padding: 16px 18px;
  min-height: 0;
}
.nvk-cards--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.nvk-num {
  font-family: var(--serif);
  color: var(--champ);
  font-size: 15px;
  margin-bottom: 8px;
}
.nvk-cards--piece p { color: var(--muted); font-size: 13px; margin-top: 6px; }
.nvk-stat-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px 26px 26px;
  box-shadow: 0 18px 44px rgba(11, 36, 68, 0.14);
}
.nvk-stat-card b {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
}
.nvk-stat-card span { display: block; margin-top: 8px; color: var(--muted); font-size: 14px; line-height: 1.35; }
.nvk-office-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(11, 36, 68, 0.14);
}
.nvk-piece .nvk-ot-cap { padding: 16px 18px 18px; }
.nvk-piece .nvk-logos { margin-top: 14px; gap: 22px; flex-wrap: wrap; }
.nvk-piece .nvk-logos img { height: 28px; }
.nvk-piece .nvk-avatars { gap: 14px 18px; flex-wrap: wrap; margin-top: 4px; }
.nvk-piece .nvk-avatars i { width: 56px; height: 56px; font-size: 13px; }
.nvk-piece .nvk-avatars b { font-size: 16px; }

/* Kit field colors — sampled from that brand, not Loopdash ivory. */
.cs-stage--novak.cs-stage--navy { background: #12345c; }
.cs-stage--novak.cs-stage--deep { background: #0b2444; }

/* ---------- National Subrogation chips ---------- */
.cs-stage--nss.cs-stage--navy { background: #112337; }
.cs-stage--nss.cs-stage--deep { background: #0d4762; }
.cs-stage--nss.cs-stage--ivory { background: #fffaf2; }

.nss {
  --navy: #112337;
  --navy-d: #0d4762;
  --cream: #fffaf2;
  --sand: #dbcfcb;
  --rust: #972b00;
  --ink: #080706;
  --muted: #5c534c;
  --serif: "Fraunces", "Source Serif 4", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
  box-sizing: border-box;
  font-family: var(--sans);
  color: var(--ink);
}
.nss * { box-sizing: border-box; }
.nss-piece { width: 100%; height: auto; background: transparent; }
.nss-eye {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
}

/* Homepage stats band — dark teal, glowing numbers */
.nss-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  background: linear-gradient(180deg, #163a48 0%, #0e2c38 100%);
  border-radius: 28px;
  padding: 28px 22px 26px;
  box-shadow: 0 18px 44px rgba(14, 44, 56, 0.28);
  text-align: center;
}
.nss-stats b {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 500;
  color: #fff;
  line-height: 1;
  text-shadow: 0 0 28px rgba(232, 140, 74, 0.55);
}
.nss-stats span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 250, 242, 0.78);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

/* Rounded photo tile, same radius as the live site */
.nss-shot {
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  background: var(--navy) center / cover no-repeat;
  box-shadow: 0 18px 44px rgba(17, 35, 55, 0.18);
}

/* Award lockup from Services — rust star, year */
.nss-award {
  background: var(--cream);
  border-radius: 28px;
  padding: 28px 26px 26px;
  box-shadow: 0 18px 44px rgba(17, 35, 55, 0.14);
  text-align: center;
}
.nss-award__mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--rust);
  color: #fff;
  font-size: 20px;
  line-height: 1;
}
.nss-award p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
}
.nss-award b {
  display: block;
  margin-top: 10px;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
}

/* Subroforce capabilities — cream panel on navy, rust rules */
.nss-cap {
  background: var(--cream);
  border-radius: 28px;
  padding: 28px 28px 24px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}
.nss-cap h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 8px 0 20px;
}
.nss-cap ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nss-cap li {
  padding: 14px 0;
  border-top: 1px solid rgba(17, 35, 55, 0.1);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--navy);
}
.nss-cap li:last-child { padding-bottom: 4px; }
