/* SB326architect.com — extends the Nalu guide design language into web */
/* Type: Abel (display) + Inter (body). Guide color system. */

@import url('https://fonts.googleapis.com/css2?family=Abel&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Colors — pulled from the Nalu guide PDFs */
  --navy-deep: #1e2939;
  --navy-body: #2a3441;
  --gold: #a67c3a;
  --gold-light: #c99850;
  --cream: #f5ead6;
  --cream-soft: #faf5e8;
  --paper: #fafaf7;
  --white: #ffffff;
  --border: #e5ded0;
  --text-muted: #5a6673;
  --text-faint: #8a94a0;

  /* Typography */
  --f-display: 'Abel', 'Trebuchet MS', sans-serif;
  --f-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Scale */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;

  /* Layout */
  --measure: 680px;         /* main text column */
  --measure-wide: 960px;    /* wide sections with tables */
  --page-max: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--navy-body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Focus ring */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ============ TOP NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 250, 247, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: var(--s-4) var(--s-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
}
.nav-brand {
  color: var(--navy-deep);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--s-4);
  min-width: 0;
}
.nav-brand-logo {
  height: 28px;
  width: auto;
  flex-shrink: 0;
  display: block;
}
.nav-brand-divider {
  width: 1px;
  height: 22px;
  background: var(--border);
  flex-shrink: 0;
}
.nav-brand-title {
  font-family: var(--f-display);
  font-size: 15px;
  letter-spacing: 0.16em;
  color: var(--navy-deep);
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
.nav-brand-sub {
  color: var(--text-muted);
  font-size: 11px;
  font-family: var(--f-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-top: 3px;
}
@media (max-width: 640px) {
  .nav-brand-divider, .nav-brand-sub { display: none; }
  .nav-brand-title { font-size: 13px; letter-spacing: 0.12em; }
  .nav-brand-logo { height: 24px; }
}
.nav-links {
  display: flex;
  gap: var(--s-6);
  align-items: center;
  list-style: none;
}
.nav-links a {
  color: var(--navy-body);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color .15s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a[aria-current="page"] {
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
}
.nav-links a.cta {
  background: var(--navy-deep);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 2px;
  transition: background .15s;
}
.nav-links a.cta:hover { background: var(--gold); color: var(--white); }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  color: var(--navy-deep);
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--paper);
    padding: var(--s-5);
    border-bottom: 1px solid var(--border);
    gap: var(--s-4);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 16px; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(30, 41, 57, 0.55) 0%,
    rgba(30, 41, 57, 0.35) 35%,
    rgba(30, 41, 57, 0.85) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--page-max);
  width: 100%;
  margin: 0 auto;
  padding: var(--s-9) var(--s-6) var(--s-8);
  color: var(--white);
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: var(--s-5);
  font-weight: 500;
}
.hero-eyebrow .sep { color: var(--gold-light); margin: 0 8px; }

.hero-logo {
  height: 44px;
  width: auto;
  display: block;
  margin-bottom: var(--s-6);
  opacity: 0.95;
}
@media (max-width: 640px) { .hero-logo { height: 36px; } }
.hero-title {
  font-family: var(--f-display);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.01em;
  max-width: 16ch;
  margin-bottom: var(--s-5);
}
.hero-lead {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
  max-width: 52ch;
  margin-bottom: var(--s-6);
}
.hero-cta-row {
  display: flex;
  gap: var(--s-4);
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .18s ease;
  font-family: var(--f-body);
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-light); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover { border-color: var(--gold-light); color: var(--gold-light); }
.btn-navy { background: var(--navy-deep); color: var(--white); }
.btn-navy:hover { background: var(--gold); }

/* Hero: sub-hero small strip for other pages */
.subhero {
  background: var(--navy-deep);
  color: var(--white);
  padding: var(--s-9) var(--s-6) var(--s-8);
}
.subhero-inner {
  max-width: var(--page-max);
  margin: 0 auto;
}
.subhero .hero-eyebrow { color: var(--gold-light); }
.subhero .hero-title {
  font-size: clamp(38px, 5.5vw, 64px);
  max-width: 20ch;
  margin-bottom: var(--s-4);
}
.subhero-lead {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 60ch;
  line-height: 1.6;
}

/* ============ SECTIONS ============ */
section { padding: var(--s-9) var(--s-6); }
section.tight { padding: var(--s-8) var(--s-6); }
section.dark { background: var(--navy-deep); color: rgba(255, 255, 255, 0.9); }
section.cream { background: var(--cream-soft); }
section.paper { background: var(--paper); }

.container { max-width: var(--page-max); margin: 0 auto; }
.column { max-width: var(--measure); margin: 0 auto; }
.column-wide { max-width: var(--measure-wide); margin: 0 auto; }

/* Section eyebrow — matches guide's "SECTION 1 · WHAT SB 326 REQUIRES" */
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: var(--s-4);
}
.eyebrow .sep { color: var(--text-faint); margin: 0 8px; font-weight: 300; }
section.dark .eyebrow { color: var(--gold-light); }

.section-title {
  font-family: var(--f-display);
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.1;
  font-weight: 400;
  color: var(--navy-deep);
  letter-spacing: -0.005em;
  margin-bottom: var(--s-5);
}
section.dark .section-title { color: var(--white); }

.section-lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--navy-body);
  margin-bottom: var(--s-6);
}
section.dark .section-lead { color: rgba(255, 255, 255, 0.82); }

.section-body p { margin-bottom: var(--s-5); }
.section-body p:last-child { margin-bottom: 0; }
.section-body h3 {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--navy-deep);
  margin-top: var(--s-7);
  margin-bottom: var(--s-3);
  letter-spacing: 0;
}
section.dark .section-body h3 { color: var(--white); }

/* ============ CALLOUT BOXES — guide style ============ */
.callout {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  padding: var(--s-5) var(--s-6);
  margin: var(--s-6) 0;
  border-radius: 0 3px 3px 0;
}
.callout-title {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: var(--s-3);
}
.callout p {
  color: var(--navy-body);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}
.callout p + p { margin-top: var(--s-3); }

/* ============ DATA TABLES — matches the guide's dark-header tables ============ */
.data-table-wrap {
  margin: var(--s-6) 0;
  overflow-x: auto;
  border-radius: 3px;
}
table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  background: var(--white);
  border-radius: 3px;
  overflow: hidden;
  min-width: 600px;
}
table.data thead {
  background: var(--navy-deep);
  color: var(--white);
}
table.data th {
  text-align: left;
  padding: 14px 18px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
}
table.data td {
  padding: 14px 18px;
  vertical-align: top;
  color: var(--navy-body);
  line-height: 1.55;
  border-bottom: 1px solid var(--border);
}
table.data tbody tr:nth-child(odd) td { background: var(--cream-soft); }
table.data tbody tr:last-child td { border-bottom: 0; }
table.data td:first-child { font-weight: 500; color: var(--navy-deep); width: 28%; }

.sources {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: var(--s-4);
  font-style: italic;
}

/* ============ COMPARE CARDS (mobile alt for wide tables) ============ */
.compare-cards { display: none; margin: var(--s-6) 0; }
.compare-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: var(--s-4);
}
.compare-card:last-child { margin-bottom: 0; }
.compare-card-header {
  background: var(--navy-deep);
  color: var(--white);
  padding: var(--s-4) var(--s-5);
}
.compare-card-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 4px;
}
.compare-card-title {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.compare-list {
  margin: 0;
  padding: 0;
}
.compare-list > div {
  padding: var(--s-4) var(--s-5);
  border-bottom: 1px solid var(--border);
}
.compare-list > div:nth-child(odd) { background: var(--cream-soft); }
.compare-list > div:last-child { border-bottom: 0; }
.compare-list dt {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
}
.compare-list dd {
  margin: 0;
  font-size: 15px;
  color: var(--navy-body);
  line-height: 1.55;
}
.compare-list dd strong { color: var(--navy-deep); font-weight: 600; }

/* Show/hide helpers keyed to the same breakpoint as the nav collapse */
.show-mobile { display: none; }
@media (max-width: 720px) {
  .hide-mobile { display: none; }
  .show-mobile { display: block; }
  .compare-cards { display: block; }
}

/* ============ NUMBERED LIST — for "six moments" style ============ */
.numbered-list {
  list-style: none;
  padding: 0;
  margin: var(--s-6) 0;
  counter-reset: step;
}
.numbered-list li {
  counter-increment: step;
  position: relative;
  padding-left: 72px;
  margin-bottom: var(--s-6);
}
.numbered-list li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: -2px;
  font-family: var(--f-display);
  font-size: 36px;
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
}
.numbered-list h4 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy-deep);
  margin-bottom: var(--s-2);
  letter-spacing: 0;
}
.numbered-list p {
  color: var(--navy-body);
  line-height: 1.6;
  margin: 0;
}
section.dark .numbered-list h4 { color: var(--white); }
section.dark .numbered-list p { color: rgba(255, 255, 255, 0.82); }

/* ============ TWO-COLUMN CARD GRID (services / concepts) ============ */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5);
  margin: var(--s-6) 0;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin: var(--s-6) 0;
}
@media (max-width: 780px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: var(--s-6);
  border-radius: 3px;
  transition: border-color .15s, transform .15s;
}
.card:hover { border-color: var(--gold); transform: translateY(-2px); }
.card-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s-2);
  font-weight: 600;
}
.card-title {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--navy-deep);
  margin-bottom: var(--s-3);
  line-height: 1.2;
  font-weight: 400;
}
.card p {
  color: var(--navy-body);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* ============ STATS STRIP (animated count-up) ============ */
.stats-strip {
  background: var(--navy-deep);
  color: var(--white);
  padding: var(--s-9) var(--s-6);
}
.stats-strip .eyebrow { color: var(--gold-light); text-align: center; }
.stats-strip .stats-title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.2;
  font-weight: 400;
  color: var(--white);
  text-align: center;
  max-width: 26ch;
  margin: 0 auto var(--s-8);
  letter-spacing: -0.005em;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
  max-width: var(--page-max);
  margin: 0 auto;
}
.stats-grid.stats-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}
@media (max-width: 980px) {
  .stats-grid,
  .stats-grid.stats-grid-3 { grid-template-columns: repeat(2, 1fr); gap: var(--s-7) var(--s-5); }
}
@media (max-width: 560px) {
  .stats-grid,
  .stats-grid.stats-grid-3 { grid-template-columns: 1fr; gap: var(--s-7); }
}
.stat {
  text-align: center;
  padding: 0 var(--s-4);
  position: relative;
}
.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}
@media (max-width: 780px) {
  .stat + .stat::before { display: none; }
}
.stat-number {
  font-family: var(--f-display);
  font-size: clamp(52px, 5.8vw, 78px);
  line-height: 1;
  color: var(--gold-light);
  font-weight: 400;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  margin-bottom: var(--s-3);
  display: block;
}
.stat-suffix {
  color: var(--gold-light);
  font-size: 0.55em;
  font-weight: 400;
  margin-left: 2px;
  vertical-align: baseline;
}
.stat-label {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
  line-height: 1.4;
}
.stat-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: var(--s-2);
  font-style: italic;
  letter-spacing: 0.02em;
}

/* ============ CONDITION PHOTO ============ */
.condition-photo {
  margin: var(--s-7) 0;
}
.condition-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}
.condition-photo figcaption {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  padding-top: var(--s-3);
  font-style: italic;
  border-left: 2px solid var(--border);
  padding-left: var(--s-4);
  margin-top: var(--s-3);
}

/* Photo strip — three-across images */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
  margin: var(--s-6) 0;
}
.photo-strip img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 2px;
  filter: contrast(1.02);
}
@media (max-width: 780px) {
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .photo-strip img { height: 180px; }
  .photo-strip img:nth-child(3) { grid-column: 1 / -1; height: 220px; }
}

/* ============ CTA STRIP ============ */
.cta-strip {
  background: var(--navy-deep);
  color: var(--white);
  padding: var(--s-9) var(--s-6);
  text-align: center;
}
.cta-strip .eyebrow { color: var(--gold-light); }
.cta-strip h2 {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  max-width: 22ch;
  margin: 0 auto var(--s-5);
}
.cta-strip p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 50ch;
  margin: 0 auto var(--s-6);
  font-size: 17px;
}

/* ============ CONTACT FORM ============ */
.form-panel {
  background: var(--white);
  border: 1px solid var(--border);
  padding: var(--s-7);
  border-radius: 3px;
  max-width: 560px;
  margin: 0 auto;
}
.form-panel h3 {
  font-family: var(--f-display);
  font-size: 26px;
  color: var(--navy-deep);
  margin-bottom: var(--s-4);
  font-weight: 400;
}
.form-panel p.form-sub {
  color: var(--navy-body);
  font-size: 15px;
  margin-bottom: var(--s-5);
  line-height: 1.55;
}
.field { margin-bottom: var(--s-4); }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy-body);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  font-family: var(--f-body);
  color: var(--navy-body);
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: border-color .15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.field textarea { min-height: 120px; resize: vertical; }
.field-consent {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: var(--s-4) 0 var(--s-5);
}
.field-consent a { color: var(--gold); text-decoration: none; }
.field-consent a:hover { text-decoration: underline; }
.form-panel .btn { width: 100%; padding: 14px; font-size: 15px; }

/* ============ FOOTER ============ */
footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: var(--s-8) var(--s-6) var(--s-6);
  font-size: 14px;
}
.footer-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--s-7);
  padding-bottom: var(--s-6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: var(--s-5);
}
@media (max-width: 780px) {
  .footer-inner { grid-template-columns: 1fr; gap: var(--s-5); }
}
.footer-brand {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: var(--s-3);
}
.footer-brand::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-left: 6px;
  vertical-align: middle;
}
.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.55;
  max-width: 32ch;
}
.footer-col h5 {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: var(--s-3);
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color .15s;
}
.footer-col a:hover { color: var(--gold-light); }

.footer-legal {
  max-width: var(--page-max);
  margin: 0 auto;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  letter-spacing: 0.01em;
}
.footer-legal a { color: rgba(255, 255, 255, 0.65); text-decoration: none; }
.footer-legal a:hover { color: var(--gold-light); }
.footer-legal .sep { color: rgba(255, 255, 255, 0.3); margin: 0 8px; }

/* ============ HELPERS ============ */
.text-muted { color: var(--text-muted); }
.text-gold { color: var(--gold); }
.spacer-lg { height: var(--s-8); }
.spacer-md { height: var(--s-6); }
.rule { height: 1px; background: var(--border); margin: var(--s-7) 0; border: 0; }

/* ============ CRITICAL PATH FIGURE ============ */
.critical-path-section .section-title { max-width: 26ch; }
.critical-path-section .section-lead { max-width: 68ch; margin-bottom: var(--s-7); }
.critical-path-figure {
  /* Break out of the reading column and stretch to the viewport, with a comfortable
     ultimate cap and side gutters. The graphic itself is 2400px wide; capping at
     1800px keeps it crisp on ultra-wide displays without adding empty margin inside
     the figure. */
  width: min(100% - var(--s-8), 1800px);
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(199, 161, 91, 0.22);
}
.critical-path-figure img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 720px) {
  .critical-path-figure { width: calc(100% - var(--s-6)); border-radius: 8px; }
}

/* Print / accessibility */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0s !important; transition-duration: 0s !important; }
}
