/* --- Figma design tokens --- */
:root {
  --Colour-Neutrals-White: #ffffff;
  --Colour-Neutrals-Off-white: #EEEEEE;
  --Colour-Green-Darkest-green: #035918;
  --Colour-Green-Green: #34C057;
  --green: #035918;
  --green-light: #A3E8A3;
  --green-bg: #E7F7EB;
  --Colour-Green-Lightest-green: #E7F7EB;
  --green-bg-gradient: linear-gradient(7deg, #ffffff 0%, #E7F7EB 100%);
  --white: #ffffff;
  --text: #035918;
  --text-muted: #035918;
  --border: #EEEEEE;
  --radius: 16px;
  --radius-card: 20px;
  --font-sans: 'Raleway', system-ui, sans-serif;
  --font-display: 'Raleway', system-ui, sans-serif;
}

/* --- Reset & base --- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  scroll-padding-top: 104px;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--Colour-Green-Darkest-green);
  background: var(--Colour-Neutrals-White);
}

/* =========================
   Case study pages
   ========================= */
.cs-container {
  width: 100%;
  max-width: 1728px;
  margin: 0 auto;
}

/* McDonald's case study: allow content to span ultra-wide displays */
.cs-container--wide {
  max-width: 2520px;
}

.cs-body {
  background: var(--Colour-Neutrals-White);
}

.cs-page {
  width: 100%;
  margin: 0;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.cs-hero {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cs-hero-copy {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cs-tag {
  padding: 4px 8px;
  background: var(--Colour-Green-Lightest-green);
  border-radius: 8px;
  color: var(--Colour-Green-Darkest-green);
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
}

.cs-title {
  margin: 0;
  color: var(--Colour-Green-Darkest-green);
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  font-family: var(--font-display, var(--font-sans));
}

.cs-subtitle {
  margin: 0;
  color: var(--Colour-Green-Darkest-green);
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.cs-hero-media {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: var(--Colour-Neutrals-Off-white);
  outline: 1px solid var(--Colour-Neutrals-Off-white);
  outline-offset: -1px;
}
.cs-hero-media picture {
  display: block;
  width: 100%;
}
.cs-hero-media picture img,
.cs-hero-media > img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.cs-meta {
  padding: 16px 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 901px) {
  .cs-meta {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
  }
}
.cs-meta-col {
  min-width: 0;
}
@media (min-width: 901px) {
  .cs-meta-col {
    padding-right: 16px;
    border-right: 2px solid var(--Colour-Neutrals-Off-white);
  }
  .cs-meta-col:last-child {
    padding-right: 0;
    border-right: none;
  }
}
.cs-meta-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cs-meta-line {
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  color: var(--Colour-Green-Darkest-green);
}
.cs-meta-list {
  margin: 0;
  padding-left: 18px;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cs-meta-item {
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
}
.cs-meta-item--muted {
  opacity: 0.75;
}

.cs-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.cs-kicker-dot {
  width: 8px;
  height: 8px;
  background: var(--Colour-Green-Green);
  border-radius: 2px;
}
.cs-kicker-label {
  color: var(--Colour-Green-Green);
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
}

.cs-impact-inner {
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cs-impact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 901px) {
  .cs-impact-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.cs-impact-tile {
  border-radius: 20px;
  background: linear-gradient(7deg, white 0%, var(--Colour-Green-Lightest-green) 100%);
  outline: 1px solid var(--Colour-Neutrals-Off-white);
  outline-offset: -1px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
.cs-impact-feature-icon {
  width: 67px;
  height: 67px;
  border-radius: 16px;
  background: url("assets/Icons/lock_open.svg") center / contain no-repeat;
}
.cs-impact-feature-icon--arrow-outward {
  background-image: url("assets/Icons/arrow_outward.svg");
}
.cs-impact-feature-icon--arrow-downward {
  background-image: url("assets/Icons/arrow_downward.svg");
}
.cs-impact-feature-icon--arrow-upward {
  background-image: url("assets/Icons/arrow_upward.svg");
}
.cs-impact-feature-icon--check {
  background-image: url("assets/Icons/check.svg");
}
.cs-impact-feature-icon--visibility {
  background-image: url("assets/Icons/visibility.svg");
}
.cs-impact-feature-icon--attach-money {
  background-image: url("assets/Icons/attach_money.svg");
}

/* Why it mattered + figure (case studies without accordion) */
.cs-statement--goal-split {
  gap: 8px;
}
.cs-goal-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
@media (min-width: 901px) {
  .cs-goal-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
.cs-goal--split {
  max-width: none;
}
.cs-goal-split__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
.cs-goal-split__body .cs-why {
  max-width: none;
}

.cs-statement--why-split {
  gap: 8px;
}
.cs-why-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
@media (min-width: 901px) {
  .cs-why-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
.cs-why-split__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
.cs-why-split__text .cs-why {
  max-width: none;
}
.cs-why-split__media {
  min-width: 0;
}
.cs-why-split__media .cs-figure {
  margin: 0;
}

.cs-kicker--sub {
  margin-top: 8px;
}

.cs-solution-points {
  margin: 0;
  padding-left: 1.25em;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--Colour-Green-Darkest-green);
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
}
.cs-solution-points li {
  padding-left: 0.15em;
}

.cs-impact-value {
  font-size: 56px;
  font-weight: 700;
  line-height: 67.2px;
  font-family: var(--font-display, var(--font-sans));
}
.cs-impact-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  font-family: var(--font-display, var(--font-sans));
}
.cs-impact-body {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

.cs-statement {
  padding: 16px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cs-goal {
  margin: 0;
  max-width: 1332px;
  color: var(--Colour-Green-Darkest-green);
  font-family: var(--font-display, var(--font-sans));
  font-size: 48px;
  font-weight: 700;
  line-height: 57.6px;
}

.cs-why {
  margin: 0;
  max-width: 1060px;
  color: var(--Colour-Green-Darkest-green);
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
}

.cs-statement-card {
  border-radius: 20px;
  background: var(--Colour-Neutrals-White);
  outline: 1px solid var(--Colour-Neutrals-Off-white);
  outline-offset: -1px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 901px) {
  .cs-statement-card {
    grid-template-columns: 1fr 1fr;
  }
}
.cs-statement-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  color: var(--Colour-Green-Green);
}
.cs-statement-body {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}

.cs-process-card {
  border-radius: 20px;
  background: var(--Colour-Neutrals-White);
  outline: 1px solid var(--Colour-Neutrals-Off-white);
  outline-offset: -1px;
  overflow: hidden;
}
.cs-process-header {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-bottom: 2px solid var(--Colour-Neutrals-Off-white);
}
.cs-process-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
}

.cs-accordion {
  /* Match scroll-padding-top (nav clearance) + extra gap when column is stuck */
  --cs-accordion-sticky-top: calc(104px + 24px);
}

.cs-accordion-item {
  border-bottom: 2px solid var(--Colour-Neutrals-Off-white);
  /* scrollIntoView: keep section header below sticky nav (matches html scroll-padding-top) */
  scroll-margin-top: 104px;
}
.cs-accordion-item:last-child {
  border-bottom: none;
}
.cs-accordion-heading {
  margin: 0;
}
.cs-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 32px;
  background: transparent;
  border: none;
  color: var(--Colour-Green-Darkest-green);
  cursor: pointer;
  text-align: left;
}
.cs-accordion-trigger:hover {
  background: rgba(52, 192, 87, 0.06);
}
.cs-accordion-trigger:focus {
  outline: none;
}
.cs-accordion-trigger:focus-visible {
  outline: 2px solid var(--Colour-Green-Green);
  outline-offset: -2px;
}
.cs-step {
  width: 30px;
  height: 30px;
  padding: 4px 8px;
  background: var(--Colour-Green-Lightest-green);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  flex-shrink: 0;
}
.cs-accordion-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  flex: 1 1 auto;
  min-width: 0;
}
.cs-accordion-icon {
  width: 36px;
  height: 36px;
  border-radius: 16px;
  outline: 1px solid var(--Colour-Green-Darkest-green);
  outline-offset: -1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 180ms ease;
  background: transparent url("assets/Icons/arrow_downward.svg") center / 24px 24px no-repeat;
}
.cs-accordion-trigger[aria-expanded="true"] .cs-accordion-icon {
  transform: rotate(180deg);
}

.cs-accordion-heading:has(.cs-accordion-trigger[aria-expanded="true"]) {
  border-bottom: 2px solid var(--Colour-Neutrals-Off-white);
}

.cs-accordion-panel {
  padding: 16px 32px 32px;
}
.cs-phase-content {
  display: block;
}
.cs-phase-lead {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
}
.cs-phase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
@media (min-width: 901px) {
  .cs-phase-grid:has(.cs-phase-media) {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .cs-phase-grid:has(.cs-phase-media) > .cs-phase-text {
    position: sticky;
    top: var(--cs-accordion-sticky-top);
    align-self: start;
  }
}
.cs-phase-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
.cs-phase-label {
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
}
.cs-phase-paragraph {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
}
.cs-phase-bullets {
  margin: 0;
  padding-left: 18px;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
}
.cs-phase-media {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
.cs-figure {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: var(--Colour-Neutrals-Off-white);
  outline: 1px solid var(--Colour-Neutrals-Off-white);
  outline-offset: -1px;
}
.cs-figure img {
  width: 100%;
  height: auto;
  display: block;
}

/* Flows & interaction: stacked option rows (design: 64px between blocks, 24px column gap) */
.cs-phase-flows {
  display: flex;
  flex-direction: column;
  gap: 64px;
  min-width: 0;
}
.cs-flow-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
@media (min-width: 901px) {
  .cs-flow-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .cs-flow-row:has(.cs-flow-row__figures) > .cs-flow-row__copy {
    position: sticky;
    top: var(--cs-accordion-sticky-top);
    align-self: start;
  }
}
.cs-flow-row__copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
.cs-flow-option-title {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--Colour-Green-Darkest-green, #035918);
}
.cs-flow-row__figures {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}
.cs-flow-row__figures .cs-flow-figure {
  margin: 0;
}

.cs-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cs-option {
  border-radius: 20px;
  background: var(--Colour-Neutrals-Off-white);
  outline: 1px solid var(--Colour-Neutrals-Off-white);
  outline-offset: -1px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cs-option-label {
  color: var(--Colour-Green-Green);
  font-weight: 700;
}
.cs-option-titleline {
  font-weight: 700;
}
.cs-option-bullets {
  margin: 0;
  padding-left: 18px;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cs-option-media {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.cs-footer {
  padding: 40px 16px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 24px;
}
@media (min-width: 901px) {
  .cs-footer {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 64px;
  }
}

.cs-footer-top {
  justify-self: center;
  padding: 12px 24px;
  border-radius: 16px;
  outline: 1px solid var(--Colour-Green-Darkest-green);
  outline-offset: -1px;
  background: var(--Colour-Neutrals-White);
  border: none;
  color: var(--Colour-Green-Darkest-green);
  font: inherit;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.cs-footer-arrow {
  width: 12px;
  height: 12px;
  display: inline-block;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(135deg);
}

.cs-footer-nav {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
/* Fills the viewport strip above sticky nav (nav uses top: 16px) so scrolled content does not show through */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: calc(16px + env(safe-area-inset-top, 0px));
  background: var(--Colour-Neutrals-White);
  z-index: 150;
  pointer-events: none;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--Colour-Green-Darkest-green); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; margin: 0; padding: 0; }

/* --- Scroll reveal (sections fade/slide in when entering view) --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
  html.js .anim-fade,
  html.js .img-reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    will-change: auto;
  }
}

/* --- Staggered fade + image dissolve (JS adds .in; html.js required to hide until animated) --- */
html.js .anim-fade {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform;
}
html.js .anim-fade.in {
  opacity: 1;
  transform: translateY(0);
}
html.js .img-reveal {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(8px) scale(0.995);
  transition:
    opacity 740ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 740ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 740ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0ms);
}
html.js .img-reveal.in {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}
.type-on-view {
  min-height: 1.2em;
}
html:not(.js) .anim-fade,
html:not(.js) .img-reveal {
  opacity: 1;
  transform: none;
  filter: none;
}

/* --- Page wrapper (Figma: 16px padding; section spacing via margins / main gap for scroll snap) --- */
.page-wrapper {
  position: relative;
  z-index: 0;
  width: 100%;
  min-height: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.page-wrapper > .hero-section {
  margin-bottom: 64px;
}
main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-bottom: 0;
}

/* --- Hero section (top of page) --- */
.hero-section {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  display: flex;
  align-self: stretch;
  /* Breathing room below the sticky nav */
  margin-top: 16px;
}
.hero-inner {
  align-self: stretch;
  flex-direction: column;
  gap: 16px;
  display: flex;
}

/* Full-viewport snap targets */
.hero-section,
.works-section,
.approach-section {
  min-height: 100svh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* Hero header bar — Figma: gradient pill, 20px radius, outline (sticky at top) */
.hero-header {
  padding: 16px 32px;
  padding-top: 16px;
  background-color: #f7fcf7;
  background-image: linear-gradient(7deg, #ffffff 0%, #e7f7eb 100%);
  border-radius: 20px;
  outline: 1px solid var(--Colour-Neutrals-Off-white);
  outline-offset: -1px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  box-sizing: border-box;
}
/* Sticky bar: inset to match page padding; keeps Figma rounded card look while scrolling */
.hero-header.site-nav {
  position: sticky;
  top: 16px;
  z-index: 500;
  width: calc(100% - 32px);
  max-width: 100%;
  margin-left: 16px;
  margin-right: 16px;
  transition: box-shadow 0.25s ease, background 0.25s ease, background-color 0.25s ease;
  isolation: isolate;
}
.hero-header.site-nav.is-scrolled {
  background-color: #f0faf2;
  background-image: linear-gradient(7deg, #ffffff 0%, #dff3e3 100%);
  box-shadow: 0 8px 28px rgba(3, 89, 24, 0.09);
}
.logo {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: contain;
  display: block;
}
.logo-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-light);
  border: 1.5px solid var(--Colour-Green-Darkest-green);
  color: var(--Colour-Green-Darkest-green);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero-nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
}
.hero-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--Colour-Green-Darkest-green);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.hero-nav-link:hover { text-decoration: none; opacity: 0.85; }
.icon-arrow {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  object-fit: contain;
}
.btn-download {
  padding: 12px 24px;
  background: var(--Colour-Neutrals-White);
  border-radius: 16px;
  outline: 1px solid var(--Colour-Green-Darkest-green);
  color: var(--Colour-Green-Darkest-green);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-download:hover { text-decoration: none; background: #f5f5f5; }

/* Primary nav: desktop row; mobile hamburger + dropdown (see max-width: 900px) */
.site-nav-panel {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}
.nav-menu-toggle {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 12px;
  background: var(--Colour-Neutrals-White);
  outline: 1px solid var(--Colour-Green-Darkest-green);
  cursor: pointer;
  color: inherit;
}
.nav-menu-toggle:hover {
  background: #f5f5f5;
}
.nav-menu-toggle:focus-visible {
  outline: 2px solid var(--Colour-Green-Darkest-green);
  outline-offset: 2px;
}
.nav-menu-toggle-icon {
  display: block;
  width: 24px;
  height: 24px;
  pointer-events: none;
}
body.site-nav-open {
  overflow: hidden;
}

/* Hero card */
.hero-card {
  align-self: stretch;
  min-height: 90vh;
  border-radius: 20px;
  outline: 1px solid var(--Colour-Neutrals-Off-white);
  outline-offset: -1px;
  background-color: #f0f9f0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  overflow: hidden;
  position: relative;
}
/* Unicorn Studio WebGL layer (background) */
.hero-card-webgl {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
}
.hero-card-webgl-inner {
  width: 100%;
  height: 100%;
  min-height: 500px;
}
.hero-card-webgl-inner canvas {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
}
.hero-card-top {
  position: relative;
  z-index: 1;
  align-self: stretch;
  padding: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
}
.hero-col {
  flex: 1 1 0;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--Colour-Green-Green);
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
}
.hero-dot {
  width: 8px;
  height: 8px;
  background: var(--Colour-Green-Green);
  border-radius: 2px;
  flex-shrink: 0;
}
.hero-intro-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-avatar {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}
.hero-name {
  color: var(--Colour-Green-Darkest-green);
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
}
.hero-bio {
  color: var(--Colour-Green-Darkest-green);
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  margin: 0;
}
.hero-list {
  color: var(--Colour-Green-Darkest-green);
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
}
.hero-located-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--Colour-Green-Darkest-green);
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
}
.hero-local-time {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.hero-located-sep {
  color: var(--Colour-Green-Green);
  user-select: none;
}
.icon-pin {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  object-fit: contain;
}
.hero-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--Colour-Green-Darkest-green);
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
}
.hero-contact-link:hover { text-decoration: none; opacity: 0.85; }
.hero-contact-link--copy {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
  /* Match <a> contact links: UA button styles can tint text (esp. Chromium on Windows). */
  color: var(--Colour-Green-Darkest-green);
  -webkit-text-fill-color: var(--Colour-Green-Darkest-green);
  appearance: none;
  -webkit-appearance: none;
}
.hero-contact-link--copy:focus-visible {
  outline: 2px solid var(--Colour-Green-Darkest-green);
  outline-offset: 2px;
  border-radius: 2px;
}
.site-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  z-index: 9999;
  max-width: calc(100vw - 32px);
  padding: 12px 20px;
  border-radius: var(--radius);
  background: var(--Colour-Green-Darkest-green);
  color: var(--Colour-Neutrals-White);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  box-shadow: 0 4px 24px rgba(3, 89, 24, 0.25);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}
.site-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .site-toast {
    transition: opacity 0.15s ease, visibility 0.15s;
    transform: translateX(-50%);
  }
  .site-toast.is-visible {
    transform: translateX(-50%);
  }
}
.hero-card-bottom {
  position: relative;
  z-index: 1;
  align-self: stretch;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-role-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-role-title {
  margin: 0;
  color: var(--Colour-Green-Darkest-green);
  font-size: 56px;
  font-weight: 700;
  line-height: 67.2px;
  font-family: var(--font-sans);
}

/* Legacy nav (footer) */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-links a:not(.btn) {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--green);
  font-weight: 500;
}
.nav-links a:not(.btn)::after {
  content: '';
  width: 12px;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23035918' stroke-width='2'%3E%3Cpath d='M7 17L17 7M17 7h-6M17 7v6'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--green);
  background: var(--Colour-Neutrals-White);
  color: var(--green);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
}
.btn:hover { background: #f5f5f5; text-decoration: none; }
.btn-cta { flex-shrink: 0; }

/* --- Sections --- */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.section-tag {
  color: var(--Colour-Green-Darkest-green);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.5rem;
  text-align: center;
}
.section-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--Colour-Green-Darkest-green);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.3;
}

.block-title {
  color: var(--Colour-Green-Darkest-green);
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
}

/* --- Works (Figma) --- */
.works-section {
  width: 100%;
  padding: 16px;
  background: var(--Colour-Neutrals-White);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
}
.works-section-inner {
  align-self: stretch;
  overflow: hidden;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
}
.works-card {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.works-header {
  align-self: stretch;
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.works-header-content {
  flex: 1 1 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.works-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.works-kicker-dot {
  width: 8px;
  height: 8px;
  background: var(--Colour-Green-Green);
  border-radius: 2px;
  flex-shrink: 0;
}
.works-kicker-label {
  color: var(--Colour-Green-Green);
  font-size: 18px;
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 27px;
}
.works-title {
  width: 100%;
  max-width: 1004px;
  margin: 0;
  text-align: center;
  color: var(--Colour-Green-Darkest-green);
  font-size: clamp(28px, 5vw, 48px);
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.2;
}
.works-list {
  list-style: none;
  margin: 0;
  padding: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.works-row {
  margin: 0;
  padding: 0;
  border-bottom: 2px solid var(--Colour-Neutrals-Off-white);
}
.works-row--last {
  border-bottom: none;
}
.works-row-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 16px 32px;
  color: inherit;
  text-decoration: none;
}
.works-row-link:hover {
  text-decoration: none;
  opacity: 0.92;
}
.works-row-body {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.works-row:not(:first-child) .works-row-body {
  gap: 16px;
}
.works-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px;
}
.works-tag {
  padding: 4px 8px;
  background: var(--Colour-Green-Lightest-green);
  border-radius: 8px;
  color: var(--Colour-Green-Darkest-green);
  font-size: 14px;
  font-family: var(--font-sans);
  font-weight: 600;
  line-height: 21px;
}
.works-row-title {
  margin: 0;
  color: var(--Colour-Green-Darkest-green);
  font-size: clamp(26px, 4vw, 40px);
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.2;
}
.works-row-desc {
  margin: 0;
  color: var(--Colour-Green-Darkest-green);
  font-size: 20px;
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 30px;
}
.works-thumb {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: 16px;
  border: 1px solid var(--Colour-Neutrals-Off-white);
  object-fit: cover;
}
.logo-placeholder {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text);
}
.logo-mcdonalds { background: #fff; color: #ff0000; }
.logo-unified {
  background: linear-gradient(135deg, #4fc3f7, #81c784, #fff176, #ff8a65);
  opacity: 0.9;
}
.logo-idlvr { background: #1a1a1a; color: #ffc107; }
.logo-sweeney { background: #e65100; color: #fff; }
.logo-pie { background: #e65100; color: #fff; }

/* --- About --- */
.about { padding: 3rem 2rem; }
.about-card {
  background: var(--green-bg-gradient);
  border-radius: var(--radius-card);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.about-block { margin: 0; }
.about-intro { grid-column: 1; }
.about-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.75rem;
}
.about-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem;
}
.about-bio {
  color: var(--text-muted);
  margin: 0;
  max-width: 42ch;
  font-size: 0.95rem;
}
.about-experience ul,
.about-contact ul { margin: 0; }
.about-experience li,
.about-contact li {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.contact-links a::after {
  content: '↗';
  font-size: 0.85em;
}
.about-role {
  position: relative;
  z-index: 1;
}
.role-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  color: var(--green);
  margin: 0;
  line-height: 1.1;
}

/* --- Approach (Figma) --- */
.approach-section {
  width: 100%;
  padding: 16px;
  background: var(--Colour-Neutrals-White);
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
  margin-bottom: 0;
}
.approach-shell {
  align-self: stretch;
}
.approach-card {
  align-self: stretch;
  background: var(--Colour-Neutrals-Off-white);
  border-radius: 20px;
  outline: 1px solid var(--Colour-Neutrals-Off-white);
  outline-offset: -1px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
}
@media (min-width: 901px) {
  .approach-card {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
  }
}
.approach-left {
  flex: 1 1 100%;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: sticky;
  top: 104px;
  align-self: flex-start;
  z-index: 0;
}
@media (min-width: 901px) {
  .approach-left {
    flex: 1 1 50%;
    width: 50%;
    max-width: 50%;
  }
}
.approach-block {
  align-self: stretch;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.approach-block--tools {
  max-width: 100%;
}
.approach-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.approach-kicker-dot {
  width: 8px;
  height: 8px;
  background: var(--Colour-Green-Green);
  border-radius: 2px;
  flex-shrink: 0;
}
.approach-kicker-label {
  color: var(--Colour-Green-Green);
  font-size: 18px;
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 27px;
}
.approach-identity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: stretch;
}
.approach-avatar {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}
.approach-name {
  flex: 1 1 0;
  color: var(--Colour-Green-Darkest-green);
  font-size: 18px;
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 27px;
}
.approach-lede {
  margin: 0;
  align-self: stretch;
  color: var(--Colour-Green-Darkest-green);
  font-size: clamp(24px, 3.5vw, 40px);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}
.approach-tools-row {
  align-self: stretch;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.approach-tool {
  position: relative;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  cursor: default;
  color: inherit;
  font: inherit;
}
.approach-tool:focus {
  outline: none;
}
.approach-tool:focus-visible {
  outline: 2px solid var(--Colour-Green-Green);
  outline-offset: 2px;
}
.approach-tool img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: contain;
  display: block;
  pointer-events: none;
}
.approach-tool-tip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%);
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--Colour-Green-Darkest-green);
  color: var(--Colour-Neutrals-White);
  font-size: 13px;
  font-family: var(--font-sans);
  font-weight: 600;
  line-height: 1.25;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.15s ease,
    visibility 0.15s ease;
  z-index: 4;
  box-shadow: 0 4px 12px rgba(3, 89, 24, 0.15);
}
.approach-tool:hover .approach-tool-tip,
.approach-tool:focus-visible .approach-tool-tip {
  opacity: 1;
  visibility: visible;
}
.approach-right {
  padding: 32px;
  flex: 1 1 100%;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (min-width: 901px) {
  .approach-right {
    flex: 1 1 50%;
    width: 50%;
    max-width: 50%;
  }
}
.approach-right-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 100%;
}
@media (min-width: 1729px) {
  .approach-right-inner {
    max-width: min(100%, 1280px);
  }
}
#lifecycleCardsGrid {
  --lc-stagger-mid: 170px;
  --lc-stagger-tall: 260px;
  width: 100%;
}
/* Wide only: three flex columns (stagger = padding on column, even vertical rhythm) */
.lifecycle-panel--cols {
  display: none;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}
.lifecycle-panel--cols .lifecycle-col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.lifecycle-panel--cols .lifecycle-col--stagger {
  padding-top: var(--lc-stagger-mid);
}
.lifecycle-panel--cols .lifecycle-col--stagger-tall {
  padding-top: var(--lc-stagger-tall);
}
@media (min-width: 1729px) {
  .lifecycle-panel--cols {
    display: flex;
  }
  .lifecycle-panel--grid {
    display: none !important;
  }
}
/* Below 1729px: two flex columns (same stagger model as wide — column padding, not grid margins) */
.lifecycle-panel--grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  align-items: stretch;
}
.lifecycle-panel--grid .lifecycle-split-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
  width: 100%;
}
@media (min-width: 901px) {
  .lifecycle-panel--grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
  }
  .lifecycle-panel--grid .lifecycle-split-col {
    flex: 1 1 calc(50% - 12px);
    width: auto;
  }
  .lifecycle-panel--grid .lifecycle-split-col--stagger {
    padding-top: var(--lc-stagger-mid);
  }
}
/* Cursor-follow glow on 1px “stroke” (white ring + green highlight); --mx/--my set in script.js */
.lifecycle-card {
  --mx: -240px;
  --my: -240px;
  --glow-radius: 220px;
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 1px;
  border-radius: 20px;
  background: #ffffff;
  isolation: isolate;
}
@media (min-width: 901px) {
  .lifecycle-panel--grid .lifecycle-card,
  .lifecycle-panel--cols .lifecycle-card {
    max-width: none;
  }
}
.lifecycle-card.is-glow-active {
  background: radial-gradient(
    var(--glow-radius) circle at var(--mx) var(--my),
    rgba(52, 192, 87, 0.92) 0%,
    rgba(52, 192, 87, 0.45) 32%,
    rgba(52, 192, 87, 0.12) 52%,
    #ffffff 74%
  );
}
.lifecycle-card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  min-height: 438px;
  /* No right padding so media can sit flush with the inner edge; text inset in .lifecycle-card-body */
  padding: 15px 0 15px 15px;
  box-sizing: border-box;
  border-radius: 19px;
  background: linear-gradient(7deg, #ffffff 0%, #e7f7eb 100%);
  overflow: hidden;
}
.lifecycle-card-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s ease;
  background: radial-gradient(
    200px circle at var(--mx) var(--my),
    rgba(52, 192, 87, 0.35) 0%,
    rgba(52, 192, 87, 0.08) 45%,
    transparent 70%
  );
  z-index: 0;
}
.lifecycle-card.is-glow-active .lifecycle-card-inner::before {
  opacity: 1;
}
.lifecycle-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
  padding-right: 15px;
}
.lifecycle-card-title {
  margin: 0;
  color: var(--Colour-Green-Darkest-green);
  font-size: 20px;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 28px;
}
.lifecycle-card-desc {
  margin: 0;
  align-self: stretch;
  color: var(--Colour-Green-Darkest-green);
  font-size: 20px;
  font-family: var(--font-sans);
  font-weight: 500;
  line-height: 30px;
}
.lifecycle-card-media {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 100%;
  height: 200px;
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: hidden;
}
.lifecycle-card-media img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: right bottom;
  display: block;
}

/* --- Footer (Figma: white strip, inner bar 20px radius, 3× flex columns, 64px gap) --- */
.site-footer {
  width: 100%;
  min-height: auto;
  scroll-snap-align: none;
  scroll-snap-stop: normal;
  padding: 40px 0;
  background: var(--Colour-Neutrals-White);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 64px;
  box-sizing: border-box;
}
.site-footer-bar {
  align-self: stretch;
  overflow: hidden;
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 64px;
  box-sizing: border-box;
}
.site-footer-cell {
  flex: 1 1 0;
  min-width: 0;
  padding: 16px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
.site-footer-cell--brand {
  justify-content: flex-start;
}
.site-footer-cell--action {
  justify-content: center;
}
.site-footer-cell--links {
  justify-content: flex-end;
}
.site-footer-nav {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}
.site-footer-nav .btn-download {
  flex-shrink: 0;
}
.site-footer-outline {
  margin: 0;
  padding: 12px 24px;
  background: var(--Colour-Neutrals-White);
  border-radius: 16px;
  border: none;
  color: var(--Colour-Green-Darkest-green);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  font-family: var(--font-sans);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
}
.site-footer-outline:hover {
  background: #f5f5f5;
  text-decoration: none;
}
.site-footer-icon-up {
  flex-shrink: 0;
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero-header { padding: 16px; padding-top: 16px; }
  .hero-header.site-nav {
    flex-wrap: nowrap;
  }
  .nav-menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }
  .site-nav-panel {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px 18px 18px;
    background-color: #f0faf2;
    background-image: linear-gradient(7deg, #ffffff 0%, #dff3e3 100%);
    border-radius: 20px;
    outline: 1px solid var(--Colour-Neutrals-Off-white);
    outline-offset: -1px;
    box-shadow: 0 12px 36px rgba(3, 89, 24, 0.12);
    z-index: 501;
  }
  .site-nav-panel.is-open {
    display: flex;
  }
  .hero-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .hero-nav-link {
    padding: 12px 4px;
    border-radius: 12px;
  }
  .hero-nav-link:hover {
    background: rgba(255, 255, 255, 0.65);
  }
  .site-nav-panel .btn-download {
    width: 100%;
    box-sizing: border-box;
    margin-top: 4px;
  }
  .hero-card-top { flex-direction: column; }
  .hero-col { min-width: 100%; }
  .hero-role-title { font-size: 40px; line-height: 1.2; }
  .approach-card { flex-direction: column; flex-wrap: wrap; }
  .approach-left {
    position: static;
    align-self: stretch;
    width: 100%;
  }
  .approach-right-inner {
    max-width: none;
  }
  .lifecycle-panel--grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  /* Flatten split wrappers so one column can use flex `order` for story sequence */
  .lifecycle-panel--grid .lifecycle-split-col,
  .lifecycle-panel--grid .lifecycle-split-col--stagger {
    display: contents;
  }
  .lifecycle-panel--grid .lifecycle-split-col--stagger {
    padding-top: 0;
  }
  .lifecycle-panel--grid .lifecycle-card--discover {
    order: 1;
  }
  .lifecycle-panel--grid .lifecycle-card--research {
    order: 2;
  }
  .lifecycle-panel--grid .lifecycle-card--flows {
    order: 3;
  }
  .lifecycle-panel--grid .lifecycle-card--rapid {
    order: 4;
  }
  .lifecycle-panel--grid .lifecycle-card--ui {
    order: 5;
  }
  .lifecycle-panel--grid .lifecycle-card--dev {
    order: 6;
  }
  .lifecycle-panel--grid .lifecycle-card--iter {
    order: 7;
  }
  .lifecycle-panel--grid .lifecycle-card {
    max-width: none;
    width: 100%;
    margin-top: 0 !important;
  }
}

@media (max-width: 900px) {
  .site-footer-bar {
    gap: 32px;
  }
}

@media (max-width: 720px) {
  .site-footer-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .site-footer-cell--brand,
  .site-footer-cell--action,
  .site-footer-cell--links {
    flex: none;
    width: 100%;
    justify-content: center;
  }
  .site-footer-nav {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .works-row-link { flex-direction: column; align-items: flex-start; }
  .works-thumb { align-self: flex-start; }
  .section { padding: 2rem 1rem; }
  .site-footer {
    padding: 32px 0;
    gap: 32px;
  }
  .site-footer-nav {
    flex-direction: column;
    gap: 12px;
  }
  .site-footer-nav .btn-download {
    width: 100%;
    box-sizing: border-box;
  }
}
