:root {
  --ink: #17241b;
  --heading: #101727;
  --body: #475467;
  --muted: #667085;
  --red: #b32318;
  --red-bright: #d92d1f;
  --red-soft: #fef2f2;
  --dark: #290600;
  --dark-card: #3b140e;
  --dark-card-2: #481d16;
  --gold: #aa7228;
  --gold-bright: #d99826;
  --cream: #fef7ed;
  --soft: #f7f8fa;
  --soft-blue: #f3f5f8;
  --sage: #e7ece6;
  --line: #e5e7eb;
  --white: #fff;
  --container: 1240px;
  --section-space: clamp(76px, 7vw, 116px);
  --radius: 14px;
  --shadow: 0 14px 36px rgba(16, 24, 40, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--body);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

p,
h1,
h2,
h3,
h4,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  margin-block: 0;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid rgba(217, 45, 31, 0.45);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--white);
  color: var(--heading);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.section--soft {
  background: var(--soft);
}

.section--dark {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.82);
}

.section--dark h2,
.section--dark h3,
.section--dark strong {
  color: var(--white);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.eyebrow,
.overline {
  margin-bottom: 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow--gold {
  color: var(--gold-bright);
}

h1,
h2,
h3,
h4 {
  color: var(--heading);
  font-weight: 700;
  letter-spacing: -0.035em;
}

h2 {
  max-width: 860px;
  font-size: clamp(42px, 4.25vw, 64px);
  line-height: 1.02;
}

h3 {
  font-size: clamp(20px, 1.75vw, 28px);
  line-height: 1.18;
}

.display-script {
  color: var(--red-bright);
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.display-script--light {
  color: #ec4d40;
}

.lede {
  margin-top: 28px;
  color: var(--body);
  font-size: 18px;
  line-height: 1.62;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  align-items: start;
  gap: 72px;
}

.section-intro {
  padding-top: 34px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.split-heading--dark .section-intro {
  color: rgba(255, 255, 255, 0.66);
}

.two-grid,
.three-grid,
.five-grid {
  display: grid;
  gap: 20px;
}

.two-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.three-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.five-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 8px 20px;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.button--outline {
  border: 1px solid rgba(217, 45, 31, 0.45);
  color: var(--red-bright);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 76px;
  border-bottom: 1px solid rgba(16, 24, 40, 0.08);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
}

.nav-shell {
  display: grid;
  grid-template-columns: 205px minmax(0, 1fr) auto;
  align-items: center;
  width: min(calc(100% - 48px), 1310px);
  height: 100%;
  margin-inline: auto;
}

.brand {
  width: 156px;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.25vw, 38px);
}

.site-nav a {
  position: relative;
  color: #273029;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--red-bright);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 12px;
  border: 0;
  background: none;
  color: var(--heading);
  cursor: pointer;
  font-weight: 700;
}

.menu-toggle__lines {
  display: grid;
  gap: 6px;
  width: 22px;
}

.menu-toggle__lines span {
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  min-height: 764px;
  overflow: hidden;
  background: url("../images/hero-forest.jpg") center 56% / cover no-repeat;
  color: var(--white);
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 9, 6, 0.5), rgba(5, 9, 6, 0.34) 56%, rgba(5, 9, 6, 0.83)),
    radial-gradient(circle at 50% 34%, transparent 0, rgba(0, 0, 0, 0.15) 58%, rgba(0, 0, 0, 0.36) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  align-self: center;
  padding-bottom: 138px;
  text-align: center;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(54px, 5.1vw, 78px);
  font-weight: 600;
  line-height: 0.97;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero h1 .display-script {
  white-space: nowrap;
}

.hero__content > p {
  max-width: 760px;
  margin: 36px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.5;
}

.hero-awards {
  position: absolute;
  right: 0;
  bottom: 44px;
  left: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-award {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

.hero-award img {
  width: 82px;
  height: 42px;
  object-fit: contain;
  opacity: 0.9;
}

.hero-award p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.35;
}

.hero-award strong {
  color: var(--white);
}

/* Highlights */
.highlights {
  padding-top: 68px;
  padding-bottom: 74px;
}

.highlights .split-heading h2 {
  font-size: clamp(44px, 4vw, 60px);
}

.metric-scroller {
  display: flex;
  width: 100%;
  margin-top: 52px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.metric-track {
  display: flex;
  flex: 0 0 auto;
  gap: 20px;
  padding-right: 20px;
  animation: marquee-scroll 40s linear infinite;
}

.metric-card {
  flex: 0 0 289px;
  width: 289px;
  min-height: 237px;
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.metric-icon,
.info-icon {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--red-soft);
  box-shadow: 0 0 0 8px rgba(254, 242, 242, 0.65);
  color: var(--red-bright);
  font-size: 15px;
  font-weight: 800;
}

.metric-card .metric-icon {
  width: 46px;
  height: 46px;
  object-fit: contain;
  background: none;
  box-shadow: none;
}

.metric-card strong {
  display: block;
  color: #79261f;
  font-size: clamp(30px, 2vw, 38px);
  line-height: 1;
}

.metric-card small,
.fact-grid small,
.performance-metrics small {
  display: block;
  margin-top: 8px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.metric-card p {
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

/* Who we are */
.who-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: 78px;
}

.who-copy h2 {
  max-width: 520px;
}

.who-copy .lede {
  margin-bottom: 40px;
}

.info-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.info-card + .info-card {
  margin-top: 18px;
}

.info-card .info-icon {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  margin: 3px 0 0;
  object-fit: contain;
  background: none;
  box-shadow: none;
}

.info-card h3 {
  margin-bottom: 8px;
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-card p,
.info-card li {
  color: var(--body);
  font-size: 15px;
}

.red-list {
  padding-left: 20px;
}

.red-list li {
  padding-left: 5px;
}

.red-list li + li {
  margin-top: 10px;
}

.red-list li::marker {
  color: var(--red-bright);
}

.feature-image {
  width: 100%;
  height: 292px;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center 42%;
}

.who-facts > .overline {
  margin: 22px 0 12px;
  color: var(--muted);
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  gap: 1px;
}

.fact-grid article {
  min-height: 142px;
  padding: 22px 20px;
  background: var(--white);
}

.fact-grid article:nth-child(odd) {
  background: #fff6f5;
}

.fact-grid strong {
  display: block;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
}

.fact-grid p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.ownership-card {
  margin-top: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.ownership-card .overline {
  margin-bottom: 15px;
  color: var(--muted);
}

.ownership-bar,
.market-bar {
  display: flex;
  height: 13px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--line);
}

.ownership-bar span,
.market-bar span {
  width: calc(var(--share) * 1%);
  background: var(--tone);
}

.ownership-legend,
.market-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  margin-top: 18px;
  padding: 0;
  list-style: none;
}

.ownership-legend li,
.market-card li {
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 12px;
}

.ownership-legend i,
.market-card li i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tone);
}

.ownership-legend b,
.market-card li b {
  color: var(--heading);
}

/* Journey */
.journey {
  position: relative;
  min-height: 800px;
  overflow: hidden;
  background: url("../images/journey/journey.jpg") center 80% / cover no-repeat;
  color: var(--white);
}

.journey__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 14, 8, 0.68), rgba(41, 6, 0, 0.76)),
    radial-gradient(circle at center, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.35));
}

.journey__content {
  position: relative;
  z-index: 1;
  padding-block: 88px 76px;
}

.journey h2 {
  margin-inline: auto;
  color: var(--white);
  text-align: center;
}

.timeline-wrap {
  position: relative;
  width: 100vw;
  margin-top: 72px;
  margin-left: 50%;
  transform: translateX(-50%);
}

.timeline {
  position: relative;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 38px 24px 20px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.timeline::-webkit-scrollbar {
  display: none;
}

.timeline-wrap::before {
  position: absolute;
  top: 12px;
  right: 24px;
  left: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
  content: "";
  pointer-events: none;
}

.timeline article {
  position: relative;
  flex: 0 0 320px;
  min-height: 128px;
  padding: 24px 20px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  scroll-snap-align: center;
  text-align: center;
}

.timeline article::before {
  position: absolute;
  top: -36px;
  left: 50%;
  width: 18px;
  height: 18px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 0 3px rgba(217, 45, 31, 0.72);
  content: "";
  transform: translateX(-50%);
}

.timeline strong {
  color: var(--white);
  font-size: 24px;
}

.timeline p {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.35;
}

.carousel-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 15vw;
  margin-top: 24px;
  margin-left: 50%;
  transform: translateX(-50%);
  padding-inline: 24px;
}

.carousel-controls button {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border: 0;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.32);
  color: var(--white);
  cursor: pointer;
  font-size: 26px;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.carousel-controls button:last-child,
.carousel-controls button:first-child:not(:disabled) {
  background: var(--red-bright);
}

.carousel-controls button:disabled {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.4);
  cursor: not-allowed;
  opacity: 0.6;
}

.carousel-controls span {
  position: relative;
  flex: 1;
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
}

.carousel-controls span::before {
  position: absolute;
  inset: 0;
  width: var(--line-progress, 0%);
  background: var(--white);
  content: "";
  transition: width 0.25s ease;
}

.journey__copy {
  max-width: 1130px;
  margin: 54px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.55;
  text-align: center;
}

/* Context */
.context {
  padding-block: 102px 114px;
}

.context .split-heading {
  grid-template-columns: minmax(0, 1fr) 360px;
}

.context h2 {
  max-width: 780px;
}

.context-metrics {
  margin-top: 70px;
}

.dark-stat {
  min-height: 218px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.dark-stat .metric-icon {
  margin-bottom: 22px;
  background: rgba(217, 45, 31, 0.28);
  color: #ff8479;
  box-shadow: 0 0 0 9px rgba(255, 255, 255, 0.035);
}

.dark-stat strong {
  display: block;
  font-size: clamp(32px, 2.4vw, 42px);
  line-height: 1;
}

.dark-stat p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.quote-grid {
  margin-top: 56px;
  gap: 32px;
}

.quote-grid blockquote {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  border-left: 3px solid var(--gold-bright);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.92);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 20px;
  line-height: 1.55;
}

.quote-grid cite {
  display: block;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.46);
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-style: normal;
}

.materiality {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
  margin-top: 58px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.materiality h3 {
  font-size: 27px;
}

.materiality p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
}

/* Strategy */
.strategy {
  padding-bottom: 124px;
}

.pillar-grid {
  margin-top: 64px;
}

.pillar-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.pillar-card__image {
  position: relative;
  display: flex;
  height: 250px;
  align-items: flex-end;
  justify-content: space-between;
  padding: 24px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.pillar-card__image::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(7, 14, 11, 0.78));
  content: "";
}

.pillar-card__image--planet {
  background-image: url("../images/strategy/planet.jpg");
}

.pillar-card__image--people {
  background-image: url("../images/strategy/people.jpg");
  background-position: center 34%;
}

.pillar-card__image--profit {
  background-image: url("../images/strategy/profit.jpg");
}

.pillar-card__image span,
.pillar-card__image small {
  position: relative;
  z-index: 1;
}

.pillar-card__image span {
  font-size: 24px;
  font-weight: 700;
}

.pillar-card__image small {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pillar-card > .red-list {
  min-height: 246px;
  padding: 30px 30px 30px 52px;
  background-image:
    linear-gradient(rgba(16, 24, 40, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 40, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
}

.pillar-card li {
  color: var(--body);
  font-size: 15px;
}

.strategy-callouts {
  margin-top: 24px;
}

.strategy-callouts article {
  padding: 25px 28px;
  border: 1px solid rgba(217, 45, 31, 0.32);
  border-radius: var(--radius);
  background: #fff7f6;
}

.strategy-callouts h3 {
  color: var(--red);
  font-size: 17px;
  letter-spacing: -0.01em;
}

.strategy-callouts p {
  margin-top: 8px;
  font-size: 14px;
}

.targets-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 90px;
}

.targets-heading h3,
.subsection-title {
  color: var(--heading);
  font-size: clamp(27px, 2.2vw, 34px);
}

.filter-pills,
.tab-list {
  display: flex;
  gap: 8px;
}

.filter-pills button,
.tab-list button {
  min-height: 36px;
  padding: 7px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--body);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.filter-pills button.is-active,
.tab-list button.is-active {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.table-scroll {
  width: 100%;
  margin-top: 24px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--body);
  font-size: 14px;
}

.data-table th,
.data-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.data-table tr:last-child th,
.data-table tr:last-child td {
  border-bottom: 0;
}

.data-table thead th {
  background: var(--soft);
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.data-table tbody th {
  color: var(--red);
  font-weight: 700;
}

.data-table td strong {
  color: var(--heading);
}

.targets-table {
  min-width: 880px;
}

.target-notes {
  margin-top: 24px;
}

.target-note {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.target-note--dark {
  border-color: var(--dark);
  background: var(--dark);
  color: rgba(255, 255, 255, 0.78);
}

.target-note small {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.target-note--dark small {
  color: var(--gold-bright);
}

.target-note p {
  margin-top: 8px;
  font-size: 14px;
}

.target-note--dark strong {
  color: var(--white);
}

.fine-print {
  margin-top: 20px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

/* Value creation */
.value-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 66px;
  padding: 0;
  list-style: none;
}

.value-steps li {
  min-height: 270px;
  padding: 25px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.value-steps li > span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
  font-weight: 800;
}

.value-steps h3 {
  margin-top: 15px;
  color: var(--red);
  font-size: 17px;
}

.value-steps p {
  margin-top: 13px;
  color: var(--body);
  font-size: 14px;
  line-height: 1.45;
}

.value-model .subsection-title {
  margin-top: 76px;
}

.subsection-title span {
  color: var(--muted);
  font-weight: 400;
}

.economic-table {
  min-width: 760px;
}

.economic-table thead th {
  background: #312801;
  color: var(--white);
  text-align: right;
}

.economic-table thead th:first-child {
  text-align: left;
}

.economic-table tbody td {
  text-align: right;
}

.economic-table tbody th {
  color: var(--body);
}

/* Andaru */
.andaru-hero {
  position: relative;
  min-height: 564px;
  background: url("../images/flagship_value_in_action/Andaru.jpg") center 46% / cover no-repeat;
  color: var(--white);
}

.andaru-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 13, 13, 0.74), rgba(4, 13, 13, 0.32) 55%, rgba(4, 13, 13, 0.42)), linear-gradient(180deg, transparent 55%, rgba(4, 8, 12, 0.62));
}

.andaru-hero__content {
  position: relative;
  z-index: 1;
  padding-top: 180px;
}

.andaru-hero .eyebrow {
  color: #ff6f62;
}

.andaru-hero h2 {
  color: var(--white);
}

.andaru-hero__content > p:not(.eyebrow) {
  margin-top: 16px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 21px;
  line-height: 1.45;
}

.hero-pill {
  display: inline-flex;
  margin-top: 28px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.andaru-case {
  padding-top: 86px;
}

.andaru-intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 72px;
}

.andaru-intro > p {
  color: var(--body);
  font-size: 19px;
  line-height: 1.6;
}

.before-after {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  gap: 14px;
}

.before-after article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.before-after article:last-child {
  border-color: rgba(217, 45, 31, 0.24);
  background: var(--red-soft);
}

.before-after > span {
  align-self: center;
  color: var(--red-bright);
  font-size: 28px;
}

.before-after small,
.stage-grid small {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.before-after ul {
  margin-top: 12px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
}

.before-after li + li {
  margin-top: 7px;
}

.stage-grid {
  margin-top: 58px;
}

.stage-grid article {
  min-height: 180px;
  padding: 28px;
  border: 1px solid rgba(217, 45, 31, 0.72);
  border-radius: var(--radius);
}

.stage-grid h3 {
  margin-top: 13px;
  font-size: 20px;
}

.stage-grid p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.andaru-case .subsection-title {
  margin-top: 88px;
}

.outcomes-grid {
  margin-top: 30px;
}

.outcomes-grid article {
  min-height: 240px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.outcomes-grid h3 {
  margin-bottom: 18px;
  color: #7a2b22;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.outcomes-grid li {
  font-size: 15px;
}

.impact-grid {
  margin-top: 32px;
}

.testimonial-photo {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--heading);
}

.testimonial-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.testimonial-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(17, 4, 2, 0.9));
  content: "";
}

.testimonial-photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 38px;
  color: var(--white);
}

.testimonial-photo blockquote {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 24px;
  line-height: 1.45;
}

.testimonial-photo figcaption p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.sroi-panel {
  display: flex;
  min-height: 510px;
  flex-direction: column;
  padding: 42px;
  border-radius: var(--radius);
  background: var(--dark);
  color: rgba(255, 255, 255, 0.72);
}

.sroi-panel > div:first-child {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.sroi-panel strong {
  color: var(--white);
  font-size: clamp(58px, 5vw, 78px);
  line-height: 1;
}

.sroi-panel small {
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.sroi-panel p {
  margin-top: 28px;
  font-size: 14px;
}

.sdg-row {
  display: flex;
  gap: 12px;
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.sdg-row img {
  width: 62px;
  height: 62px;
  border-radius: 5px;
}

.profile-grid {
  margin-top: 30px;
}

.profile-grid article {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.profile-grid img {
  width: 86px;
  height: 86px;
  border-radius: 12px;
  object-fit: cover;
}

.profile-grid p {
  color: var(--muted);
  font-size: 14px;
}

.profile-grid strong {
  color: var(--heading);
  font-size: 16px;
}

/* Performance */
.performance-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 48px;
}

.performance-heading h2 {
  max-width: 760px;
}

.tab-list {
  overflow-x: auto;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
  white-space: nowrap;
}

.tab-list button {
  border: 0;
  border-radius: 6px;
}

.performance-panel {
  margin-top: 62px;
}

.performance-metrics article,
.performance-detail article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.performance-metrics strong {
  display: block;
  color: #7a2a22;
  font-size: clamp(28px, 2.3vw, 38px);
  line-height: 1;
}

.performance-metrics p {
  margin-top: 15px;
  color: var(--muted);
  font-size: 14px;
}

.performance-detail {
  margin-top: 22px;
}

.performance-detail article {
  min-height: 210px;
}

.performance-detail h3 {
  margin-bottom: 18px;
  color: #7a2a22;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.performance-detail li,
.performance-detail p {
  color: var(--body);
  font-size: 14px;
}

/* Stakeholders */
.stakeholder-metrics {
  margin-top: 72px;
}

.stakeholder-metric {
  min-height: 190px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.stakeholder-metric--dark {
  border-color: var(--dark);
  background: var(--dark);
  color: rgba(255, 255, 255, 0.72);
}

.stakeholder-metric strong {
  display: block;
  color: #7a2a22;
  font-size: clamp(42px, 4vw, 60px);
  line-height: 1;
}

.stakeholder-metric--dark strong {
  color: var(--white);
}

.stakeholder-metric p {
  margin-top: 18px;
  font-size: 14px;
}

.stakeholder-insights {
  margin-top: 22px;
}

.stakeholder-insights > article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.stakeholder-insights h3 {
  margin-bottom: 20px;
  color: #7a2a22;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.score {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding-bottom: 13px;
  color: var(--muted);
  font-size: 13px;
}

.score + .score {
  margin-top: 17px;
}

.score b {
  color: var(--heading);
}

.score b small {
  color: var(--muted);
  font-weight: 400;
}

.score i {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--line);
}

.score i::after {
  display: block;
  width: var(--score);
  height: 100%;
  border-radius: inherit;
  background: var(--red);
  content: "";
}

.reported-gaps {
  background: var(--cream);
}

.reported-gaps li {
  font-size: 14px;
}

.stakeholders .subsection-title {
  margin-top: 70px;
}

.accordion {
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.accordion-item + .accordion-item {
  border-top: 1px solid var(--line);
}

.accordion-item h4 {
  font-size: 16px;
  letter-spacing: 0;
}

.accordion-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 28px;
  border: 0;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
  text-align: left;
}

.accordion-trigger span {
  color: var(--red);
  font-size: 22px;
  font-weight: 400;
}

.accordion-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding: 0 28px 28px;
}

.accordion-panel > div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.accordion-panel small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.accordion-panel p {
  margin-top: 9px;
  color: var(--body);
  font-size: 14px;
}

.accordion-panel .accordion-outcome {
  padding: 18px;
  border: 1px solid rgba(217, 165, 35, 0.4);
  border-radius: 10px;
  background: #fffaf0;
}

.accordion-outcome small,
.accordion-outcome p {
  color: #9a651e;
}

.accordion-outcome p {
  font-weight: 700;
}

/* Awards */
.awards-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: end;
  gap: 76px;
}

.awards-heading h2 {
  max-width: 620px;
}

.awards-heading article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.awards-heading article h3 {
  color: #7a2a22;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.awards-heading article p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
}

.award-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 40px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  counter-reset: awards;
  gap: 1px;
  list-style: none;
}

.award-list li {
  position: relative;
  min-height: 132px;
  padding: 27px 24px 24px 58px;
  background: var(--white);
  counter-increment: awards;
}

.award-list li::before {
  position: absolute;
  top: 29px;
  left: 24px;
  color: #aeb4bd;
  content: counter(awards, decimal-leading-zero);
  font-size: 11px;
  font-weight: 800;
}

.award-list strong,
.award-list span {
  display: block;
}

.award-list strong {
  color: var(--heading);
  font-size: 15px;
  line-height: 1.35;
}

.award-list span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.award-list li:last-child {
  background: var(--sage);
}

/* Roadmap */
.roadmap {
  padding-block: 96px 102px;
}

.roadmap h2 {
  max-width: 620px;
}

.roadmap-grid {
  margin-top: 68px;
  gap: 16px;
}

.roadmap-grid article {
  min-height: 320px;
  padding: 26px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.roadmap-grid strong {
  display: block;
  margin-bottom: 22px;
  font-size: clamp(30px, 2.5vw, 39px);
  line-height: 1;
}

.roadmap-grid small {
  display: block;
  margin-top: 17px;
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.roadmap-grid p {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.4;
}

.roadmap-targets {
  margin-top: 30px;
}

.roadmap-targets article {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.roadmap-targets h3 {
  font-size: 18px;
}

.roadmap-targets ul {
  margin-top: 16px;
  padding-left: 20px;
}

.roadmap-targets li {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.roadmap-targets li + li {
  margin-top: 11px;
}

.roadmap-targets li::marker {
  color: var(--gold-bright);
}

.fine-print--dark {
  color: rgba(255, 255, 255, 0.48);
}

/* Footprint */
.footprint-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 70px;
}

.footprint h2 {
  max-width: 650px;
}

.map-card {
  position: relative;
  margin-top: 32px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.map-card img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.map-pin {
  position: absolute;
  top: var(--y);
  left: var(--x);
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  padding: 0;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 0 2px rgba(217, 45, 31, 0.7), 0 4px 10px rgba(16, 24, 40, 0.25);
  cursor: pointer;
}

.map-pin span {
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(217, 45, 31, 0.65);
  border-radius: 50%;
  opacity: 0;
}

.map-pin.is-active span {
  animation: map-ping 1.9s ease-out infinite;
}

@keyframes map-ping {
  0% { opacity: 0.8; transform: scale(0.65); }
  100% { opacity: 0; transform: scale(1.55); }
}

.footprint-cards {
  display: grid;
  gap: 24px;
}

.concession-card,
.market-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.status-pill {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--red-soft);
  color: #7a2a22;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-pill[data-status="inactive"] {
  background: #eef0f2;
  color: var(--muted);
}

.concession-card h3 {
  margin-top: 13px;
  font-size: 20px;
}

.concession-card dl {
  margin-top: 24px;
}

.concession-card dl > div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  padding-block: 8px;
}

.concession-card dt {
  color: var(--muted);
  font-size: 13px;
}

.concession-card dd {
  color: var(--body);
  font-size: 13px;
  font-weight: 600;
}

.market-card {
  background: var(--white);
}

.market-card .overline {
  color: var(--muted);
}

.market-card ul {
  margin-top: 18px;
}

.market-card .fine-print {
  margin-top: 20px;
}

/* CTA and footer */
.report-cta {
  padding-block: 94px 102px;
}

.report-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 86px;
}

.report-grid h2 {
  max-width: 610px;
}

.report-grid > div:first-child > p {
  max-width: 610px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.report-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 14px;
}

.report-links a {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  font-size: 14px;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease;
}

.report-links a:hover {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
}

.report-links span {
  color: rgba(255, 255, 255, 0.46);
}

.site-footer {
  padding-block: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #110101;
  color: rgba(255, 255, 255, 0.44);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
}

.footer-grid strong {
  color: var(--white);
  font-size: 16px;
}

.footer-grid p {
  margin-top: 5px;
  font-size: 13px;
}

.footer-grid > div:last-child {
  text-align: right;
}

/* Responsive */
@media (max-width: 1320px) {
  .nav-shell {
    grid-template-columns: 180px minmax(0, 1fr) auto;
  }

  .site-nav {
    gap: 18px;
  }

  .site-nav a {
    font-size: 13px;
  }
}

@media (min-width: 901px) {
  .footprint-grid {
    align-items: start;
  }

  .footprint-left {
    display: flex;
    flex-direction: column;
    align-self: stretch;
  }

  .footprint-left .map-card {
    margin-top: auto;
  }

  .footprint-cards {
    margin-top: -33px;
  }
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - 20px));
  }
}

@media (max-width: 1100px) {
  .site-header {
    height: 70px;
  }

  .nav-shell {
    grid-template-columns: 1fr auto auto;
    gap: 20px;
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    display: grid;
    align-content: start;
    justify-content: stretch;
    gap: 0;
    max-height: calc(100vh - 70px);
    padding: 16px 24px 28px;
    overflow-y: auto;
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 22px 42px rgba(16, 24, 40, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-awards {
    gap: 22px;
  }

  .hero-award {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .hero-award img {
    width: 58px;
  }

  .hero-award p {
    font-size: 11px;
  }

  .split-heading,
  .context .split-heading {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 48px;
  }

  .who-grid,
  .footprint-grid {
    gap: 48px;
  }

  .fact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-steps,
  .roadmap-grid,
  .performance-metrics.five-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .value-steps li,
  .roadmap-grid article {
    min-height: auto;
  }

  .andaru-intro,
  .report-grid {
    gap: 48px;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .header-cta {
    display: none;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .split-heading,
  .context .split-heading,
  .who-grid,
  .andaru-intro,
  .performance-heading,
  .awards-heading,
  .footprint-grid,
  .report-grid {
    grid-template-columns: 1fr;
  }

  .split-heading,
  .context .split-heading {
    gap: 18px;
  }

  .section-intro {
    max-width: 680px;
    padding-top: 0;
  }

  .who-grid,
  .andaru-intro,
  .performance-heading,
  .awards-heading,
  .footprint-grid,
  .report-grid {
    gap: 46px;
  }

  .who-facts {
    max-width: 680px;
  }

  .three-grid,
  .five-grid,
  .pillar-grid,
  .performance-detail.three-grid,
  .award-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .materiality {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pillar-card > .red-list {
    min-height: 220px;
  }

  .value-steps,
  .roadmap-grid,
  .performance-metrics.five-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .performance-heading {
    align-items: start;
  }

  .tab-list {
    width: 100%;
  }

  .accordion-panel {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .awards-heading article {
    max-width: 680px;
  }

  .roadmap-grid article {
    min-height: 270px;
  }

  .report-grid > div:first-child > p {
    max-width: 720px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-grid > div:last-child {
    text-align: left;
  }
}

@media (max-width: 680px) {
  :root {
    --section-space: 70px;
  }

  body {
    font-size: 15px;
  }

  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  h2 {
    font-size: clamp(36px, 10.2vw, 47px);
  }

  .brand {
    width: 140px;
  }

  .menu-toggle__label {
    display: none;
  }

  .hero {
    min-height: 900px;
    background-position: 42% center;
  }

  .hero__content {
    align-self: flex-start;
    padding-top: 120px;
    padding-bottom: 330px;
  }

  .hero h1 {
    font-size: clamp(43px, 12.5vw, 58px);
  }

  .hero h1 .display-script {
    white-space: normal;
  }

  .hero__content > p {
    margin-top: 28px;
    font-size: 16px;
  }

  .hero-awards {
    bottom: 30px;
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 22px;
  }

  .hero-award {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .hero-award img {
    width: 70px;
    height: 32px;
  }

  .hero-award p {
    font-size: 11px;
  }

  .metric-scroller {
    grid-auto-columns: minmax(235px, 78vw);
    padding-bottom: 10px;
  }

  .who-copy .lede,
  .andaru-intro > p {
    font-size: 16px;
  }

  .fact-grid,
  .two-grid,
  .three-grid,
  .five-grid,
  .pillar-grid,
  .strategy-callouts,
  .target-notes,
  .outcomes-grid,
  .impact-grid,
  .profile-grid,
  .performance-detail,
  .stakeholder-insights,
  .roadmap-targets,
  .award-list,
  .report-links {
    grid-template-columns: 1fr;
  }

  .fact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fact-grid article {
    min-height: 135px;
    padding: 20px 16px;
  }

  .ownership-legend,
  .market-card ul {
    grid-template-columns: 1fr;
  }

  .journey {
    min-height: 860px;
  }

  .journey__content {
    padding-block: 70px 62px;
  }

  .timeline-wrap {
    margin-top: 54px;
  }

  .timeline article {
    flex-basis: 78vw;
  }

  .carousel-controls {
    width: max-content;
    justify-content: center;
    padding-inline: 0;
  }

  .carousel-controls span {
    flex: 0 0 73px;
  }

  .journey__copy {
    margin-top: 40px;
    font-size: 13px;
  }

  .context {
    padding-block: 78px;
  }

  .quote-grid blockquote {
    min-height: auto;
    padding: 26px;
    font-size: 18px;
  }

  .targets-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 68px;
  }

  .filter-pills {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .value-steps,
  .roadmap-grid,
  .performance-metrics.five-grid,
  .performance-metrics.three-grid {
    grid-template-columns: 1fr;
  }

  .andaru-hero {
    min-height: 500px;
  }

  .andaru-hero__content {
    padding-top: 132px;
  }

  .before-after {
    grid-template-columns: 1fr;
  }

  .before-after > span {
    justify-self: center;
    transform: rotate(90deg);
  }

  .testimonial-photo,
  .sroi-panel {
    min-height: 470px;
  }

  .testimonial-photo figcaption,
  .sroi-panel {
    padding: 28px;
  }

  .profile-grid article {
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 16px;
    padding: 18px;
  }

  .profile-grid img {
    width: 66px;
    height: 66px;
  }

  .tab-list {
    overflow-x: auto;
  }

  .tab-list button {
    flex: 0 0 auto;
  }

  .stakeholder-metric {
    min-height: auto;
  }

  .accordion-trigger {
    padding: 19px 20px;
  }

  .accordion-panel {
    padding: 0 20px 22px;
  }

  .award-list li {
    min-height: 115px;
  }

  .roadmap-grid article {
    min-height: auto;
  }

  .map-card {
    padding: 8px;
  }

  .map-pin {
    width: 15px;
    height: 15px;
    margin: -7.5px 0 0 -7.5px;
  }

  .concession-card,
  .market-card {
    padding: 24px;
  }

  .concession-card dl > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .report-grid {
    gap: 52px;
  }

  .report-grid > div:first-child > p {
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .metric-track {
    animation: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .carousel-controls,
  .filter-pills,
  .tab-list,
  .map-pin,
  .skip-link {
    display: none !important;
  }

  body {
    color: #000;
  }

  .section,
  .journey,
  .hero,
  .andaru-hero {
    break-inside: avoid;
  }
}