/* ============================================================
   Shubhangi Tripathy — Novapersona variant
   Site-specific overrides and layout (built on novapersona.css)
   ============================================================ */

/* ── Palette: Loadex surfaces + Royal-blue accent ─────────
   Surfaces follow the Loadex template (loadex-wcopilot.webflow.io):
   off-white / white / black / light-gray / gray. The accent slot
   is deep royal blue — saturated dark blue that reads professional
   and infra-centric (Arup / AECOM / consulting-engineering register)
   against the monochrome surfaces. */
:root {
  --np-bg:        #f6f6f6;   /* Loadex --light (off-white sections) */
  --np-surface:   #ffffff;   /* Loadex --white (cards) */
  --np-surface-2: #ededed;   /* sunken alt */
  --np-ink:       #1b1b1b;   /* Loadex --black */
  --np-ink-2:     #4a4a4a;   /* secondary text */
  --np-mute:      #6B7280;   /* darkened from #9e9e9e to clear WCAG AA (~5.2:1 on bg) */
  --np-rule:      #e4e4e4;   /* Loadex --light-gray (hairlines) */
  --np-rule-soft: #ededed;
  --np-accent:    #1E40AF;   /* royal blue — saturated and visible */
  --np-accent-2:  #2E5DD7;   /* brighter royal for em / + / inline highlights */
  --np-accent-ink:#ffffff;   /* text on dark accent surfaces */
}

body { overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--np-accent); color: var(--np-accent-ink); }

/* ── Top nav (fixed) ────────────────────────────────────── */
.site-nav {
  position: fixed; top: 16px; left: 0; right: 0;
  z-index: 60;
}
.site-nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 12px 18px 12px 20px;
  background: color-mix(in oklab, var(--np-bg) 86%, transparent);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--np-rule);
  border-radius: var(--np-r-pill);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  box-shadow: var(--np-shadow-sm);
}
.site-mark {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--np-display); font-weight: 700;
  font-size: clamp(13px, 1.8vw, 17px);
  letter-spacing: -0.02em;
  min-width: 0;
}
.site-mark .avatar {
  width: 30px; height: 30px;
  border-radius: 999px;
  background: var(--np-surface-2) url('/assets/portrait.jpg') center 18% / cover no-repeat;
  border: 1.5px solid var(--np-rule);
  flex-shrink: 0;
}
.site-nav nav {
  display: flex; gap: 2px;
  font-size: 13px; color: var(--np-ink-2);
  white-space: nowrap;
}
.site-nav nav a {
  padding: 12px 14px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  transition: background .15s ease, color .15s ease;
}
.site-nav nav a:hover { background: var(--np-surface); color: var(--np-ink); }
.site-nav nav a.active { background: var(--np-ink); color: var(--np-bg); }

.nav-burger { display: none; width: 44px; height: 44px; border-radius: 999px; background: var(--np-ink); color: var(--np-bg); border: none; cursor: pointer; align-items: center; justify-content: center; padding: 0; }
.nav-burger span { width: 16px; height: 1.5px; background: currentColor; display: block; box-shadow: 0 -5px 0 currentColor, 0 5px 0 currentColor; }

@media (max-width: 1080px) {
  .site-nav nav { display: none; }
  .site-nav .np-btn { display: none; }
  .nav-burger { display: inline-flex; }
}

/* ── Shell ─────────────────────────────────────────────── */
.shell { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .shell { padding: 0 20px; } }

.section { padding: clamp(64px, 10vw, 110px) 0; position: relative; }
.section--tight { padding: clamp(40px, 6vw, 64px) 0; }

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  padding: clamp(96px, 14vw, 130px) 0 clamp(48px, 8vw, 80px);
  border-bottom: 1px solid var(--np-rule);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: end;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--np-mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--np-mute);
  margin-bottom: 24px;
}
.hero .eyebrow::before {
  content: ""; width: 24px; height: 1px; background: var(--np-mute);
}
.hero h1 {
  font-family: var(--np-display); font-weight: 700;
  font-size: clamp(58px, 9vw, 132px);
  line-height: 0.92; letter-spacing: -0.04em;
  margin: 0;
}
.hero h1 em {
  font-style: normal;
  font-family: inherit;
  color: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}
.hero h1 .ampersand { color: var(--np-accent-2); font-family: var(--np-italic); font-style: italic; }

.hero-tagline {
  font-size: 18px; line-height: 1.45;
  color: var(--np-ink-2); margin: 28px 0 0;
  max-width: 50ch;
}
.hero-tagline em { font-family: var(--np-italic); font-style: italic; color: var(--np-ink); font-size: 1.05em; }

.hero-cta-row {
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
  margin-top: 36px;
}

.hero-portrait {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--np-r-xl);
  background: linear-gradient(160deg, #d8d2c1, #b2ac9a);
  overflow: hidden;
  box-shadow: var(--np-shadow-md);
}
.hero-portrait::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(135deg, rgba(20,19,17,.05) 0 1px, transparent 1px 22px);
}
.hero-portrait .ph {
  position: absolute; inset: 20px;
  border: 1px dashed rgba(20,19,17,.25);
  border-radius: var(--np-r-lg);
  display: flex; align-items: flex-end; justify-content: center;
  padding: 24px;
  font-family: var(--np-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(20,19,17,.55);
}
.hero-portrait .float-tag {
  position: absolute; top: 20px; left: 20px;
  background: var(--np-bg); border: 1px solid var(--np-rule);
  border-radius: 999px; padding: 8px 14px;
  font-family: var(--np-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--np-ink-2);
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: var(--np-shadow-sm);
}
.hero-portrait .float-tag i { width: 6px; height: 6px; border-radius: 999px; background: #3fbf6f; }

.hero-rating {
  position: absolute; bottom: 20px; right: 20px; left: 20px;
  background: var(--np-bg); border: 1px solid var(--np-rule);
  border-radius: var(--np-r-md);
  padding: 14px 16px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--np-shadow-sm);
}
.hero-rating .v {
  font-family: var(--np-display); font-weight: 700;
  font-size: 26px; letter-spacing: -0.02em;
}
.hero-rating .l {
  font-size: 11px; color: var(--np-ink-2); line-height: 1.3;
}
.hero-rating .l .mono { font-family: var(--np-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--np-mute); display: block; }

/* Hero strip — 4 cells in a single row, same hierarchy across all.
   (Reverted from the flagship variant per design call.) */
.hero-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 64px;
  border-top: 1px solid var(--np-rule);
  border-bottom: 1px solid var(--np-rule);
}
.hero-strip .cell {
  padding: 24px 22px;
  border-right: 1px solid var(--np-rule);
}
.hero-strip .cell:last-child { border-right: none; }
.hero-strip .v {
  font-family: var(--np-display); font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1; letter-spacing: -0.03em;
  display: flex; align-items: baseline; gap: 6px;
  flex-wrap: nowrap;
}
.hero-strip .v .u {
  font-family: var(--np-display);
  font-weight: 600;
  font-size: 0.55em;
  letter-spacing: -0.015em;
  color: var(--np-accent);
}
.hero-strip .l {
  margin-top: 14px;
  font-family: var(--np-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--np-mute);
  line-height: 1.45;
}
@media (max-width: 900px) {
  .hero-strip { grid-template-columns: 1fr 1fr; }
  .hero-strip .cell:nth-child(2) { border-right: none; }
  .hero-strip .cell:nth-child(1), .hero-strip .cell:nth-child(2) { border-bottom: 1px solid var(--np-rule); }
}
@media (max-width: 540px) {
  .hero-strip { grid-template-columns: 1fr; }
  .hero-strip .cell { border-right: none; border-bottom: 1px solid var(--np-rule); }
  .hero-strip .cell:last-child { border-bottom: none; }
}

/* ── Section heading pattern ──────────────────────────── */
.sec-head {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 32px; align-items: end; margin-bottom: 56px;
}
.sec-head .label {
  font-family: var(--np-mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--np-mute);
  display: inline-flex; align-items: center; gap: 10px;
}
.sec-head .label::before {
  content: ""; width: 24px; height: 1px; background: var(--np-mute);
}
.sec-head h2 {
  font-family: var(--np-display); font-weight: 600;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1; letter-spacing: -0.035em;
  margin: 12px 0 0;
}
.sec-head h2 em {
  font-family: var(--np-italic); font-style: italic; font-weight: 400;
  color: var(--np-ink-2);
}
.sec-head .sub {
  color: var(--np-ink-2); font-size: 17px; line-height: 1.5;
  max-width: 56ch; margin: 0;
}
.sec-head .right { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.sec-head .right .np-btn { margin-top: 8px; }
@media (max-width: 860px) {
  .sec-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 40px; }
}

/* ── About ────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

.about-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, 100px);
  gap: 14px;
}
.about-img {
  border-radius: var(--np-r-md);
  background: linear-gradient(135deg, #ddd6c4, #b6ad97);
  position: relative; overflow: hidden;
}
.about-img:nth-child(1) { grid-row: span 2; background: linear-gradient(135deg, #d7e0c5, #9aa97f); }
.about-img:nth-child(2) { grid-row: span 1; background: linear-gradient(135deg, #e6d7c5, #b69676); }
.about-img:nth-child(3) { grid-row: span 2; background: linear-gradient(135deg, #cdd0d9, #7f8395); }
.about-img:nth-child(4) { grid-row: span 1; background: linear-gradient(135deg, #ebe5d8, #c5bea7); }
.about-img::after {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(20,19,17,.04) 0 1px, transparent 1px 16px);
}
.about-img .lbl {
  position: absolute; bottom: 10px; left: 12px;
  font-family: var(--np-mono); font-size: 9px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(20,19,17,.6);
  background: rgba(255,255,255,.6); padding: 4px 8px; border-radius: 999px;
}

.about-body p { font-size: clamp(16px, 1.6vw, 18px); line-height: 1.55; color: var(--np-ink-2); margin: 0 0 18px; }
.about-body p:first-of-type { font-size: clamp(18px, 2.4vw, 22px); line-height: 1.4; color: var(--np-ink); font-family: var(--np-display); font-weight: 500; letter-spacing: -0.01em; }
.about-body p em { font-family: var(--np-italic); font-style: italic; color: var(--np-accent-2); }

.about-contacts {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin-top: 32px;
}
@media (max-width: 720px) { .about-contacts { grid-template-columns: 1fr; } }
.about-contacts .pc {
  border: 1px solid var(--np-rule);
  border-radius: var(--np-r-md);
  padding: 16px;
  background: var(--np-surface);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  transition: border-color .15s ease, transform .15s ease;
}
.about-contacts .pc:hover {
  border-color: var(--np-accent);
  transform: translateY(-2px);
}
.about-contacts .pc:hover .card-icon {
  background: var(--np-accent);
  color: #fff;
}
.about-contacts .card-icon {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--np-surface-2);
  color: var(--np-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .15s ease, color .15s ease;
}
.about-contacts .pc-text { min-width: 0; }
.about-contacts .k {
  font-family: var(--np-mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--np-mute);
  margin-bottom: 6px;
}
.about-contacts .v {
  font-family: var(--np-display); font-weight: 600; font-size: 15px;
  letter-spacing: -0.01em;
  word-break: break-word;
}

/* ── Capabilities (services) ──────────────────────────── */
.services {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 900px) { .services { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .services { grid-template-columns: 1fr; } }

/* ── Why work with me — 2-column editorial layout ─────────
   Left: dark header block (heading + intro).
   Right: numbered editorial list, no icon squares (icons were the
   AI-template tell flagged in the audit). */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 1px;
  background: var(--np-rule);
  border: 1px solid var(--np-rule);
  border-radius: var(--np-r-lg);
  overflow: hidden;
}
.why-cell.header {
  background: var(--np-ink);
  color: var(--np-bg);
  padding: 40px;
  display: flex;
  flex-direction: column;
}
.why-cell.header h3 {
  font-family: var(--np-display); font-weight: 600;
  font-size: 28px; line-height: 1.05; letter-spacing: -0.02em;
  margin: 18px 0 14px;
}
.why-cell.header h3 em {
  font-family: var(--np-italic); font-style: italic;
  /* on dark — override comes from the harden block, light royal */
}
.why-cell.header p {
  color: rgba(244, 239, 232, .72);
  font-size: 14px; line-height: 1.55; margin: 0;
}
.why-reasons {
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--np-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.why-reasons li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 22px 36px;
  border-top: 1px solid var(--np-rule);
  align-items: baseline;
}
.why-reasons li:first-child { border-top: none; }
.why-reasons .n {
  font-family: var(--np-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--np-accent);
}
.why-reasons h4 {
  font-family: var(--np-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.018em;
  margin: 0 0 6px;
  color: var(--np-ink);
}
.why-reasons p {
  font-family: var(--np-sans);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--np-ink-2);
  margin: 0;
}
@media (max-width: 720px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-cell.header { padding: 28px; }
  .why-reasons li { padding: 22px 24px; grid-template-columns: 40px 1fr; gap: 14px; }
}

/* ── Recent works grid ────────────────────────────────── */
.work-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 900px) { .work-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .work-grid { grid-template-columns: 1fr; } }

.work-card {
  background: var(--np-surface);
  border: 1px solid var(--np-rule);
  border-radius: var(--np-r-lg);
  padding: 16px;
  display: flex; flex-direction: column;
  transition: transform .25s cubic-bezier(.2,.6,.2,1), box-shadow .25s ease;
}
.work-card:hover { transform: translateY(-3px); box-shadow: var(--np-shadow-md); }
.work-card .image {
  height: 220px; border-radius: var(--np-r-md);
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #d8d3c2, #aea692);
}
.work-card .image::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(135deg, rgba(20,19,17,.05) 0 1px, transparent 1px 28px);
}
.work-card .image.a { background: linear-gradient(135deg, #d7e0c5, #9aa97f); }
.work-card .image.b { background: linear-gradient(135deg, #cdd0d9, #7e8295); }
.work-card .image.c { background: linear-gradient(135deg, #e7d6bf, #b59574); }
.work-card .image.d { background: linear-gradient(135deg, #e8e0c8, #c2b687); }
.work-card .image.e { background: linear-gradient(135deg, #cfd6d8, #859398); }
.work-card .image .top {
  position: absolute; top: 14px; left: 14px; right: 14px;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 2;
}
.work-card .image .value {
  font-family: var(--np-display); font-weight: 700;
  font-size: clamp(44px, 6vw, 64px);
  line-height: 1; letter-spacing: -0.045em;
  position: absolute; bottom: 18px; left: 18px;
  color: rgba(20,19,17,.92);
  z-index: 2;
}
.work-card .image .value sup {
  font-family: var(--np-display);
  font-weight: 600;
  font-size: 0.45em;
  color: var(--np-accent);
  letter-spacing: -0.01em;
  vertical-align: 0.55em;
  margin-left: 4px;
}
.work-card .body { padding: 18px 8px 6px; }
.work-card h3 {
  font-family: var(--np-display); font-weight: 600;
  font-size: 18px; line-height: 1.25; letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.work-card .meta {
  display: flex; gap: 10px; align-items: center;
  font-family: var(--np-mono); font-size: 11px;
  color: var(--np-mute); letter-spacing: 0.06em;
}

/* ── Case study (PPSR) cards ──────────────────────────── */
.case-list { display: flex; flex-direction: column; gap: 24px; }
.case {
  background: var(--np-surface);
  border: 1px solid var(--np-rule);
  border-radius: var(--np-r-xl);
  padding: 28px;
  display: grid; grid-template-columns: 1.2fr 1.6fr; gap: 32px;
  align-items: stretch;
}
.case:nth-child(even) { grid-template-columns: 1.6fr 1.2fr; }
.case:nth-child(even) .case-image { order: 2; }
.case-image {
  border-radius: var(--np-r-lg);
  background: linear-gradient(135deg, #d7e0c5, #9aa97f);
  position: relative; overflow: hidden;
  min-height: 320px;
}
.case-image.b { background: linear-gradient(135deg, #cdd0d9, #7f8395); }
.case-image.c { background: linear-gradient(135deg, #e7d6bf, #b59574); }
.case-image::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(135deg, rgba(20,19,17,.05) 0 1px, transparent 1px 26px);
}
.case-image .float-value {
  position: absolute; top: 20px; left: 20px;
  background: var(--np-bg); border: 1px solid var(--np-rule);
  border-radius: 999px; padding: 8px 16px;
  font-family: var(--np-mono); font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--np-ink-2);
}
.case-image .big-value {
  position: absolute; bottom: 22px; left: 22px;
  font-family: var(--np-display); font-weight: 700;
  font-size: clamp(56px, 8vw, 96px);
  line-height: 0.9; letter-spacing: -0.045em;
  color: rgba(20,19,17,.92);
}
.case-image .big-value sup {
  font-family: var(--np-display);
  font-weight: 600;
  font-size: 0.42em;
  color: var(--np-accent);
  letter-spacing: -0.012em;
  vertical-align: 0.65em;
  margin-left: 6px;
}
.case-image .ph-label {
  position: absolute; bottom: 22px; right: 22px;
  font-family: var(--np-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(20,19,17,.5);
  background: rgba(255,255,255,.6); padding: 6px 10px; border-radius: 999px;
}
.case-body {
  display: flex; flex-direction: column; justify-content: center;
}
.case-body .tags { display: flex; gap: 8px; margin-bottom: 18px; }
.case-body h3 {
  font-family: var(--np-display); font-weight: 600;
  font-size: clamp(24px, 3.4vw, 32px); line-height: 1.1; letter-spacing: -0.025em;
  margin: 0 0 14px;
}
.case-body .lede { color: var(--np-ink-2); font-size: 15px; line-height: 1.55; margin: 0 0 22px; }
.case-ppsr {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px 24px; padding: 20px 0;
  border-top: 1px solid var(--np-rule);
  border-bottom: 1px solid var(--np-rule);
  margin-bottom: 18px;
}
@media (max-width: 540px) {
  .case-ppsr { grid-template-columns: 1fr; }
}
.case-ppsr .k {
  font-family: var(--np-display); font-weight: 600; font-size: 14px;
  color: var(--np-ink); margin-bottom: 4px;
  display: flex; align-items: center; gap: 6px;
}
.case-ppsr .k::before { content: ""; width: 4px; height: 4px; border-radius: 999px; background: var(--np-accent-2); }
.case-ppsr .v { font-size: 13px; color: var(--np-ink-2); line-height: 1.5; }
.case-results { display: flex; gap: 8px; flex-wrap: wrap; }
.case-results .pill {
  background: var(--np-accent); color: var(--np-accent-ink);
  border-radius: 999px; padding: 8px 14px;
  font-size: 12px; font-weight: 600;
}
@media (max-width: 900px) {
  .case, .case:nth-child(even) { grid-template-columns: 1fr; }
  .case:nth-child(even) .case-image { order: 0; }
}

/* ── Creative edge / expertise grid ───────────────────── */
.edge-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}
.edge-hero {
  grid-row: span 2;
  background: var(--np-ink);
  color: var(--np-bg);
  border-radius: var(--np-r-xl);
  padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 540px;
  position: relative; overflow: hidden;
}
.edge-hero .shape {
  position: absolute;
  width: 360px; height: 360px;
  background: linear-gradient(135deg, var(--np-accent), var(--np-accent-2));
  border-radius: 999px;
  right: -120px; top: -100px;
  opacity: 0.85;
}
.edge-hero .shape::after {
  content: ""; position: absolute; inset: 60px;
  background: var(--np-ink); border-radius: 999px;
}
.edge-hero .label {
  font-family: var(--np-mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(244, 239, 232, .55);
  position: relative;
}
.edge-hero h3 {
  font-family: var(--np-display); font-weight: 600;
  font-size: clamp(28px, 4.2vw, 42px); line-height: 1.05; letter-spacing: -0.03em;
  margin: 16px 0 0;
  position: relative;
}
.edge-hero h3 em { font-family: var(--np-italic); font-style: italic; color: var(--np-accent); }

.edge-card {
  background: var(--np-surface);
  border: 1px solid var(--np-rule);
  border-radius: var(--np-r-xl);
  padding: 28px;
  display: flex; flex-direction: column;
}
.edge-card .num {
  font-family: var(--np-mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--np-mute);
}
.edge-card h4 {
  font-family: var(--np-display); font-weight: 600;
  font-size: 22px; line-height: 1.15; letter-spacing: -0.02em;
  margin: 14px 0 10px;
}
.edge-card p { color: var(--np-ink-2); font-size: 14px; line-height: 1.5; margin: 0 0 18px; flex: 1; }
.edge-card .chips { display: flex; gap: 6px; flex-wrap: wrap; }
.edge-card .chips .np-tag { font-size: 11px; height: 26px; padding: 0 10px; }

@media (max-width: 900px) {
  .edge-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .edge-hero { grid-row: auto; grid-column: span 2; min-height: 380px; }
}
@media (max-width: 600px) {
  .edge-grid { grid-template-columns: 1fr; }
  .edge-hero { grid-column: auto; min-height: 320px; }
}

/* ── Experience / awards timeline ─────────────────────── */
.exp-grid {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) { .exp-grid { grid-template-columns: 1fr; } }

.exp-side-img {
  border-radius: var(--np-r-xl);
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #d8d2c1, #b2ac9a);
  overflow: hidden;
  position: sticky; top: 110px;
}
@media (max-width: 900px) {
  /* When exp-grid collapses to 1 column the side image moves above its
     list — sticky becomes a UX trap, so disable it. */
  .exp-side-img { position: relative; top: auto; max-height: 50vh; aspect-ratio: 4/3; }
}
.exp-side-img::after { content: ""; position: absolute; inset: 0; background-image: repeating-linear-gradient(135deg, rgba(20,19,17,.05) 0 1px, transparent 1px 22px); }
.exp-side-img .ph {
  position: absolute; inset: 20px;
  border: 1px dashed rgba(20,19,17,.25);
  border-radius: var(--np-r-lg);
  display: flex; align-items: flex-end; justify-content: center;
  padding: 24px;
  font-family: var(--np-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(20,19,17,.5);
}

.exp-list { display: flex; flex-direction: column; gap: 16px; }
.exp-row {
  background: var(--np-surface);
  border: 1px solid var(--np-rule);
  border-radius: var(--np-r-lg);
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 64px 1fr auto auto;
  gap: 18px;
  align-items: center;
  transition: transform .2s ease;
}
.exp-row:hover { transform: translateX(4px); }
.exp-row .glyph {
  width: 56px; height: 56px;
  border-radius: var(--np-r-md);
  background: var(--np-accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--np-display); font-weight: 700; font-size: 22px;
  color: var(--np-accent-ink);
}
.exp-row .glyph.ink { background: var(--np-ink); color: var(--np-bg); }
.exp-row .glyph.glyph-img {
  background: var(--np-surface);
  border: 1px solid var(--np-rule);
  padding: 6px;
  overflow: hidden;
}
.exp-row .glyph.glyph-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.exp-row .role {
  font-family: var(--np-display); font-weight: 600;
  font-size: 18px; letter-spacing: -0.01em;
}
.exp-row .company {
  font-size: 12px; color: var(--np-ink-2); margin-top: 4px;
}
.exp-row .badge {
  font-family: var(--np-mono); font-size: 11px;
  letter-spacing: 0.06em; color: var(--np-ink-2);
  padding: 8px 12px; border-radius: 999px;
  background: var(--np-surface-2);
  white-space: nowrap;
}
.exp-row .years {
  font-family: var(--np-mono); font-size: 12px;
  color: var(--np-mute); letter-spacing: 0.05em;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .exp-row { grid-template-columns: 56px 1fr; row-gap: 8px; }
  .exp-row .badge, .exp-row .years { grid-column: 2; justify-self: flex-start; }
}

/* ── CTA ticker strip ─────────────────────────────────── */
.cta-strip {
  background: var(--np-ink); color: var(--np-bg);
  border-radius: var(--np-r-xl);
  padding: 64px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: end;
  position: relative; overflow: hidden;
}
.cta-strip::after {
  content: ""; position: absolute;
  width: 420px; height: 420px; border-radius: 999px;
  background: linear-gradient(135deg, var(--np-accent), var(--np-accent-2));
  right: -180px; top: -180px; opacity: 0.7;
}
.cta-strip h3 {
  font-family: var(--np-display); font-weight: 600;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1; letter-spacing: -0.035em;
  margin: 0;
  position: relative;
}
.cta-strip h3 em { font-family: var(--np-italic); font-style: italic; color: var(--np-accent); }
.cta-strip p {
  color: rgba(244,239,232,.78);
  font-size: 17px; line-height: 1.5; margin: 0 0 28px;
  position: relative;
}
.cta-strip .stats {
  display: flex; gap: 32px; flex-wrap: wrap;
  margin-top: 32px;
  position: relative;
}
.cta-strip .stat .v {
  font-family: var(--np-display); font-weight: 700;
  font-size: clamp(32px, 4.5vw, 48px); letter-spacing: -0.03em; line-height: 1;
}
.cta-strip .stat .l {
  font-family: var(--np-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(244,239,232,.55); margin-top: 10px;
}
.cta-strip .right { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; position: relative; }
.cta-strip .np-btn--accent .icon-wrap { background: var(--np-ink); color: var(--np-bg); }
@media (max-width: 900px) {
  .cta-strip { grid-template-columns: 1fr; padding: 40px 28px; }
}

/* ── Contact ──────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-left h2 em { font-family: var(--np-italic); font-style: italic; color: var(--np-accent-2); }
.contact-left .info {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}
.contact-left .info .card {
  background: var(--np-surface);
  border: 1px solid var(--np-rule);
  border-radius: var(--np-r-md);
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  transition: border-color .15s ease, transform .15s ease;
}
a.card:hover {
  border-color: var(--np-accent);
  transform: translateY(-2px);
}
a.card:hover .card-icon {
  background: var(--np-accent);
  color: #fff;
}
.contact-left .info .card-icon {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--np-surface-2);
  color: var(--np-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .15s ease, color .15s ease;
}
.contact-left .info .card-text { min-width: 0; }
.contact-left .info .card .k {
  font-family: var(--np-mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--np-mute);
  margin-bottom: 8px;
}
.contact-left .info .card .v {
  font-family: var(--np-display); font-weight: 600;
  font-size: 15px; letter-spacing: -0.01em;
  word-break: break-word;
}

.contact-form {
  background: var(--np-surface);
  border: 1px solid var(--np-rule);
  border-radius: var(--np-r-xl);
  padding: clamp(20px, 3.5vw, 32px);
}
.contact-form .head {
  font-family: var(--np-mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--np-mute);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.contact-form .head::after { content: ""; flex: 1; height: 1px; background: var(--np-rule); }

.contact-form .row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.contact-form .field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.contact-form .field label {
  font-family: var(--np-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--np-mute);
}
.contact-form .field.err input,
.contact-form .field.err textarea,
.contact-form .field.err select { border-color: #c44e3a; box-shadow: 0 0 0 4px rgba(196,78,58,.08); }
.contact-form .field .e {
  font-family: var(--np-mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase; color: #c44e3a;
  min-height: 12px;
}
/* File attachment zone */
.np-file {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px dashed var(--np-rule);
  border-radius: var(--np-r-md);
  background: var(--np-bg);
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.np-file:hover { border-color: var(--np-accent); background: #fff; }
.np-file:focus-within { border-color: var(--np-accent); box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.08); }
.np-file-icon {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--np-surface-2);
  color: var(--np-ink-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-family: var(--np-display);
  font-weight: 500;
  flex-shrink: 0;
  transition: background .15s ease, color .15s ease;
}
.np-file:hover .np-file-icon { background: var(--np-accent); color: #fff; }
.np-file-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}
.np-file-prompt {
  font-family: var(--np-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--np-ink);
  letter-spacing: -0.01em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.np-file-meta {
  font-family: var(--np-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--np-mute);
}
.np-file.has-file { border-style: solid; border-color: var(--np-accent); background: #fff; }
.np-file.has-file .np-file-icon { background: var(--np-accent); color: #fff; font-size: 14px; }
.np-file-clear {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--np-mute);
  font-size: 14px;
  flex-shrink: 0;
  transition: background .15s ease, color .15s ease;
}
.np-file-clear:hover { background: var(--np-surface-2); color: var(--np-ink); }

.contact-form .submit-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 8px; gap: 16px; flex-wrap: wrap;
}
.contact-form .submit-row .note {
  font-size: 12px; color: var(--np-mute);
}

.success-card {
  text-align: center; padding: 40px 16px;
}
.success-card .check {
  width: 64px; height: 64px;
  border-radius: 999px;
  background: var(--np-accent); color: var(--np-accent-ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
}
.success-card h4 {
  font-family: var(--np-display); font-weight: 600; font-size: 26px;
  letter-spacing: -0.02em; margin: 0 0 8px;
}
.success-card p { color: var(--np-ink-2); margin: 0; }

@media (max-width: 600px) {
  .contact-form .row { grid-template-columns: 1fr; }
  .contact-left .info { grid-template-columns: 1fr; }
}

/* ── Footer ──────────────────────────────────────────── */
.foot {
  border-top: 1px solid var(--np-rule);
  padding: 36px 0;
  margin-top: 60px;
}
.foot .row {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  font-family: var(--np-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--np-mute);
}
.foot-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--np-ink-2);
  transition: color .15s ease;
}
.foot-social:hover { color: var(--np-accent); }
.foot-social svg { display: block; }

/* ── Reveal animation ─────────────────────────────────── */
.reveal {
  opacity: 1; transform: translateY(0);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.6,.2,1);
}

/* ── Mobile menu ──────────────────────────────────────── */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--np-bg);
  z-index: 100;
  padding: 80px 24px 24px;
  display: none;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu li a {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 22px 4px; border-bottom: 1px solid var(--np-rule);
  font-family: var(--np-display); font-weight: 600;
  font-size: clamp(24px, 6vw, 32px); letter-spacing: -0.025em;
}
.mobile-menu li a .n {
  font-family: var(--np-mono); font-size: 11px;
  color: var(--np-mute); letter-spacing: 0.14em;
}
.mobile-menu .close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px; border-radius: 999px;
  background: var(--np-ink); color: var(--np-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; cursor: pointer;
  border: none;
}

/* ============================================================
   Loadex-palette adjustments
   Targeted fixes for places where the original design used the
   lime accent as a text colour on dark surfaces. With accent now
   = ink, those elements would disappear — restore contrast with
   white / light grey instead.
   ============================================================ */

/* Em emphasis on dark hero/CTA/why-cell headers — light royal blue so
   the italic words read as the accent against the dark surface. */
.why-cell.header h3 em,
.edge-hero h3 em,
.cta-strip h3 em {
  color: #8AA3DC;
}

/* "+" / unit highlights inside dark CTA stat values — currently inline
   style="color: var(--np-accent)". Override the inline colour using a
   higher-specificity selector so the unit reads against the dark bg. */
.cta-strip .stat .v span[style] {
  color: #f6f6f6 !important;
}

/* Decorative gradient shape in CTA strip / edge hero — was lime → olive
   over dark ink. With the new tokens it would collapse to dark-on-dark.
   Make it a soft light-grey orb so the shape still reads. */
.cta-strip::after,
.edge-hero .shape {
  background: linear-gradient(135deg, #f6f6f6 0%, #9e9e9e 100%);
  opacity: 0.18;
}
.edge-hero .shape::after { background: var(--np-ink); }

/* The accent-coloured "Open to roles" service card now reads as a solid
   dark card. Re-tune its inner text colours so the eyebrow + body stay
   legible against the dark surface. */
.np-service[style*="--np-accent"] h3,
.np-service[style*="np-accent"] h3,
.np-service[style*="np-accent"] p,
.np-service[style*="--np-accent"] p {
  color: #f6f6f6 !important;
}
.np-service[style*="np-accent"] div[style*="--np-accent-ink"],
.np-service[style*="--np-accent"] div[style*="--np-accent-ink"] {
  color: #9e9e9e !important;
}

/* Footer-mark dot — currently lime "." separator. Mute to grey so it
   doesn't read as a missing brand colour. */
.site-mark span[style] { color: var(--np-mute) !important; }

/* Selection — uses ink for max readability regardless of accent */
::selection { background: var(--np-ink); color: var(--np-bg); }

/* ============================================================
   Pill controls in royal blue
   Repaints every dark-filled pill (primary CTA, active nav link,
   burger, mobile-menu close, ghost hover) from ink to accent.
   The inner icon-wrap circle on primary buttons inverts to white
   so it still reads as a distinct dot inside the blue pill.
   ============================================================ */

.np-btn--primary {
  background: var(--np-accent);
  color: #fff;
}
.np-btn--primary:hover { background: var(--np-accent-2); }
.np-btn--primary .icon-wrap {
  background: #fff;
  color: var(--np-accent);
}

.site-nav nav a.active {
  background: var(--np-accent);
  color: #fff;
}

.nav-burger,
.mobile-menu .close {
  background: var(--np-accent);
  color: #fff;
}

/* Ghost hover state: was filling with ink, now fills with accent */
.np-btn--ghost:hover {
  background: var(--np-accent);
  color: #fff;
  border-color: var(--np-accent);
}
.np-btn--ghost:hover .icon-wrap {
  background: #fff;
  color: var(--np-accent);
}

/* Edge case: the "Open to roles" service card is itself royal blue,
   so its inner primary button needs the inverse treatment so it doesn't
   disappear into the card. */
.np-service[style*="np-accent"] .np-btn--primary {
  background: #fff;
  color: var(--np-accent);
}
.np-service[style*="np-accent"] .np-btn--primary .icon-wrap {
  background: var(--np-accent);
  color: #fff;
}

/* ============================================================
   Photographic content
   Wires real images (assets/*.jpg) into the placeholder tiles.
   Strategy:
   - Hero portrait: img element, full-bleed under floating UI chrome
   - Section image grids (about / service / exp-side): clean photo
     backgrounds, existing diagonal-stripe ::after stays as it adds
     a subtle textural sheen
   - Value tiles (work-card / case-image): photo + slightly muted
     filter + a light scrim so the dark dollar number reads on top
   ============================================================ */

/* ---------- Hero portrait ---------- */
.hero-portrait { background: var(--np-surface-2); }
.hero-portrait .portrait-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;     /* keep her face in frame above the rating card */
  border-radius: inherit;
  z-index: 0;
}
.hero-portrait::after { display: none; }   /* drop the diagonal pattern; photo replaces it */
.hero-portrait .float-tag,
.hero-portrait .hero-rating { z-index: 2; }

/* ---------- About 4-grid ---------- */
.about-img {
  background-size: cover !important;
  background-position: center !important;
}
.about-img:nth-child(1) { background-image: url('/assets/hardhat-worker.jpg'); }
.about-img:nth-child(2) { background-image: url('/assets/meeting-review.jpg'); }
.about-img:nth-child(3) { background-image: url('/assets/blueprint-draft.jpg'); }
.about-img:nth-child(4) { background-image: url('/assets/train-station.jpg'); }
/* the existing ::after diagonal-pattern texture stays — adds a subtle sheen */
.about-img .lbl { z-index: 2; }

/* ---------- Service card images ----------
   Compound selector `.image.svc-*` raises specificity above the
   `.np-service .image { background: linear-gradient(...) }` base
   rule so the photo wins. !important on background-image guards
   against the shorthand setting background-image: linear-gradient. */
.np-service .image.svc-img {
  background-size: cover !important;
  background-position: center !important;
}
.np-service .image.svc-estimating  { background-image: url('/assets/blueprint-draft.jpg') !important; }
.np-service .image.svc-rail        { background-image: url('/assets/rail-tracks.jpg') !important; }
.np-service .image.svc-commercial  { background-image: url('/assets/documents-handshake.jpg') !important; }
.np-service .image.svc-reporting   { background-image: url('/assets/meeting-review.jpg') !important; }

/* ---------- Experience side image ---------- */
.exp-side-img {
  background-image: url('/assets/crane-construction.jpg');
  background-size: cover;
  background-position: center;
}

/* ---------- Recent work grid (value tile) ----------
   Each card has a huge dark dollar value overlaid on the image.
   Photo → grayscale + light scrim so the value stays legible
   regardless of which photo is behind it. */
.work-card .image {
  background-size: cover !important;
  background-position: center !important;
  filter: grayscale(0.55) contrast(1.02);
}
.work-card .image::after {
  background-image: none;
  background: rgba(246, 246, 246, 0.62);   /* light scrim */
}
.work-card .image .top,
.work-card .image .value { z-index: 2; }

.work-card .image.a { background-image: url('/assets/architecture.jpg'); }
.work-card .image.b { background-image: url('/assets/crane-construction.jpg'); }
.work-card .image.c { background-image: url('/assets/rail-tracks.jpg'); }
.work-card .image.d { background-image: url('/assets/hardhat-worker.jpg'); }
.work-card .image.e { background-image: url('/assets/train-station.jpg'); }
/* card 6 (Major Infrastructure Tenders) — see .image.f below */

/* ---------- Case studies (large value tile) ---------- */
.case-image {
  background-size: cover !important;
  background-position: center !important;
  filter: grayscale(0.45) contrast(1.02);
}
.case-image::after {
  background-image: none;
  background: rgba(246, 246, 246, 0.55);   /* light scrim */
}
.case-image .float-value,
.case-image .big-value { z-index: 2; }

.case-list .case:nth-child(1) .case-image { background-image: url('/assets/architecture.jpg'); }
.case-list .case:nth-child(2) .case-image { background-image: url('/assets/hardhat-worker.jpg'); }
.case-list .case:nth-child(3) .case-image { background-image: url('/assets/documents-handshake.jpg'); }

/* Work card 6 (Major Infrastructure Tenders) — was using inline gradient,
   now classed properly. */
.work-card .image.f { background-image: url('/assets/documents-handshake.jpg'); }

/* ============================================================
   Accessibility hardening
   ============================================================ */

/* Skip-to-content for keyboard users */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  background: var(--np-ink);
  color: #fff;
  padding: 12px 18px;
  font-family: var(--np-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 8px;
  text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus {
  top: 16px;
  outline: 2px solid var(--np-accent);
  outline-offset: 3px;
}

/* Visible keyboard focus on every interactive control. Uses :focus-visible
   so mouse clicks don't leave a ring behind. Royal blue accent + offset so
   the ring sits on the page rather than crushed against the element. */
.np-btn:focus-visible,
.site-nav nav a:focus-visible,
.nav-burger:focus-visible,
.mobile-menu .close:focus-visible,
.mobile-menu li a:focus-visible,
.site-mark:focus-visible,
.exp-toggle:focus-visible,
.contact-direct a:focus-visible,
.about-contacts a:focus-visible,
.foot a:focus-visible,
.np-file-clear:focus-visible,
.np-tag:focus-visible {
  outline: 2px solid var(--np-accent);
  outline-offset: 3px;
  border-radius: 999px;     /* match pill controls; harmless on rectangles */
}
.np-file:focus-within {
  outline: 2px solid var(--np-accent);
  outline-offset: 3px;
  border-color: var(--np-accent);
}

/* Inputs already have a focus border-color change; add the outline ring
   to match other controls when focused via keyboard. */
.np-input:focus-visible,
.np-textarea:focus-visible {
  outline: 2px solid var(--np-accent);
  outline-offset: 2px;
}

/* Reduced motion: kill marquee, ticker, pulse, reveals, smooth scroll */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .np-marquee .track,
  .np-ticker .track {
    animation: none !important;
    transform: none !important;
  }
  .reveal,
  .stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
  .np-tag--avail::before,
  .hero .eyebrow .live i,
  .hero-portrait .float-tag i {
    animation: none !important;
    box-shadow: none !important;
  }
}
