:root {
  --ink: #2d1719;
  --ink-soft: #4a3739;
  --wine: #7c003c;
  --wine-bright: #a32761;
  --surface: #ffffff;
  --muted: #d9d8d7;
  --muted-light: #efedeb;
  --ink-secondary: rgba(45, 23, 25, 0.64);
  --ink-secondary-on-muted: rgba(45, 23, 25, 0.68);
  --footer: #171717;
  --header-height: 92px;
  --gutter: clamp(20px, 6.8vw, 98px);
  --container: 1440px;
  --section-space: clamp(88px, 10vw, 152px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

html:has(#social-impact:target) {
  scroll-behavior: auto;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html.menu-open,
body.menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

picture {
  display: block;
}

button,
a {
  color: inherit;
}

a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

button {
  font: inherit;
}

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

h1,
h2,
h3 {
  font-weight: 400;
  text-wrap: balance;
}

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

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

.section-muted {
  position: relative;
  overflow: hidden;
  background: var(--muted);
}

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

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

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

:focus-visible {
  outline: 2px solid var(--wine-bright);
  outline-offset: 4px;
}

.site-header {
  position: relative;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid transparent;
  transition:
    color 240ms ease,
    background-color 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    backdrop-filter 240ms ease;
}

.site-header.is-scrolled {
  position: sticky;
  top: 0;
  border-bottom-color: rgba(45, 23, 25, 0.08);
  box-shadow: 0 8px 28px rgba(45, 23, 25, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  position: relative;
  z-index: 2;
  width: clamp(205px, 22vw, 273px);
  flex: none;
}

.brand img {
  width: 100%;
  height: auto;
  transition: filter 240ms ease;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.2vw, 34px);
}

.lang-switch {
  position: relative;
  z-index: 3;
  flex: none;
}

.lang-switch__toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 8px 2px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.lang-switch__chevron {
  width: 5px;
  height: 5px;
  flex: none;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  margin-top: -3px;
  opacity: 0.72;
  transform: rotate(45deg);
  transition: transform 280ms var(--ease), opacity 180ms ease;
}

.lang-switch:hover .lang-switch__chevron,
.lang-switch:focus-within .lang-switch__chevron,
.lang-switch.is-open .lang-switch__chevron {
  opacity: 1;
  transform: rotate(-135deg);
}

.lang-switch__toggle::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

.lang-switch:hover .lang-switch__toggle::after,
.lang-switch:focus-within .lang-switch__toggle::after,
.lang-switch.is-open .lang-switch__toggle::after,
.lang-switch__toggle:hover::after,
.lang-switch__toggle:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.lang-switch__menu {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 20;
  display: flex;
  min-width: 156px;
  flex-direction: column;
  padding: 8px 0;
  margin: 0;
  list-style: none;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(255, 255, 255, 0.84) 100%
    );
  border: 1px solid rgba(45, 23, 25, 0.1);
  box-shadow: 0 16px 40px rgba(45, 23, 25, 0.12);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 260ms var(--ease),
    transform 340ms var(--ease),
    visibility 260ms ease;
  visibility: hidden;
}

.lang-switch.is-open .lang-switch__menu,
.lang-switch:hover .lang-switch__menu,
.lang-switch:focus-within .lang-switch__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.lang-switch__menu a {
  display: block;
  padding: 10px 16px;
  color: inherit;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.2;
  text-decoration: none;
}

.lang-switch__menu a:hover,
.lang-switch__menu a:focus-visible,
.lang-switch__menu a[aria-current="true"] {
  background: rgba(45, 23, 25, 0.06);
}

.has-overlay-header .site-header:not(.is-scrolled) .lang-switch__menu {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.16) 0%,
      rgba(255, 255, 255, 0.1) 100%
    );
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
}

.has-overlay-header .site-header:not(.is-scrolled) .lang-switch__menu a:hover,
.has-overlay-header .site-header:not(.is-scrolled) .lang-switch__menu a:focus-visible,
.has-overlay-header .site-header:not(.is-scrolled) .lang-switch__menu a[aria-current="true"] {
  background: rgba(255, 255, 255, 0.14);
}

@media (min-width: 1025px) {
  .primary-nav {
    margin-left: auto;
  }

  .lang-switch {
    margin-left: clamp(18px, 1.6vw, 28px);
  }
}

@media (hover: none) {
  .lang-switch:hover .lang-switch__menu,
  .lang-switch:hover .lang-switch__toggle::after,
  .lang-switch:hover .lang-switch__chevron {
    /* Touch devices: open via click/focus only, matching mobile nav habits. */
  }

  .lang-switch:hover .lang-switch__menu {
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    visibility: hidden;
  }

  .lang-switch:hover .lang-switch__toggle::after {
    transform: scaleX(0);
  }

  .lang-switch:hover .lang-switch__chevron {
    opacity: 0.72;
    transform: rotate(45deg);
  }

  .lang-switch.is-open .lang-switch__menu,
  .lang-switch:focus-within .lang-switch__menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .lang-switch.is-open .lang-switch__toggle::after,
  .lang-switch:focus-within .lang-switch__toggle::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .lang-switch.is-open .lang-switch__chevron,
  .lang-switch:focus-within .lang-switch__chevron {
    opacity: 1;
    transform: rotate(-135deg);
  }
}

@media (min-width: 2000px) {
  .lang-switch__toggle {
    font-size: clamp(17px, 1.05vw, 19px);
  }
}

.primary-nav a {
  position: relative;
  padding-block: 8px;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

@media (min-width: 2000px) {
  .primary-nav a {
    font-size: clamp(17px, 1.05vw, 19px);
  }
}

/* Primary navigation dropdowns */
.nav-dropdown {
  position: relative;
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-right: 2px;
}

.nav-dropdown__trigger::before {
  width: 5px;
  height: 5px;
  flex: none;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  margin-top: -3px;
  content: "";
  opacity: 0.72;
  transform: rotate(45deg);
  transition: transform 280ms var(--ease), opacity 180ms ease;
}

.nav-dropdown:hover .nav-dropdown__trigger::before,
.nav-dropdown:focus-within .nav-dropdown__trigger::before,
.nav-dropdown.is-open .nav-dropdown__trigger::before {
  opacity: 1;
  transform: rotate(-135deg);
}

.primary-nav .nav-dropdown__trigger::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

.nav-dropdown:hover .nav-dropdown__trigger::after,
.nav-dropdown:focus-within .nav-dropdown__trigger::after,
.nav-dropdown.is-open .nav-dropdown__trigger::after,
.nav-dropdown__trigger[aria-current="page"]::after,
.nav-dropdown__trigger.is-section-current::after,
.nav-dropdown__trigger:hover::after,
.nav-dropdown__trigger:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 12;
  display: flex;
  min-width: 228px;
  flex-direction: column;
  padding: 10px 0 12px;
  margin: 0;
  border-radius: 0;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.72) 0%,
      rgba(255, 255, 255, 0.58) 100%
    );
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 18px 48px rgba(45, 23, 25, 0.14),
    0 6px 18px rgba(45, 23, 25, 0.08);
  gap: 1px;
  isolation: isolate;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 260ms var(--ease),
    transform 340ms var(--ease),
    visibility 260ms ease;
  visibility: hidden;
  -webkit-backdrop-filter: blur(26px) saturate(145%);
  backdrop-filter: blur(26px) saturate(145%);
}

.nav-dropdown--contact .nav-dropdown__menu {
  right: 0;
  left: auto;
}

.nav-dropdown__menu::before {
  position: absolute;
  top: -14px;
  right: 0;
  left: 0;
  height: 14px;
  content: "";
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(8px);
  visibility: visible;
}

.nav-dropdown__menu a {
  position: relative;
  padding: 11px 26px 11px 24px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.25;
  text-decoration: none;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    color 200ms ease,
    opacity 280ms var(--ease),
    transform 320ms var(--ease),
    background 200ms ease;
}

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

.nav-dropdown__menu a::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2px;
  height: 0;
  background: var(--wine);
  content: "";
  transform: translateY(-50%);
  transition: height 220ms var(--ease);
}

.nav-dropdown:hover .nav-dropdown__menu a,
.nav-dropdown:focus-within .nav-dropdown__menu a,
.nav-dropdown.is-open .nav-dropdown__menu a {
  opacity: 1;
  transform: translateY(0);
}

.nav-dropdown:hover .nav-dropdown__menu a:nth-child(1),
.nav-dropdown:focus-within .nav-dropdown__menu a:nth-child(1),
.nav-dropdown.is-open .nav-dropdown__menu a:nth-child(1) {
  transition-delay: 45ms;
}

.nav-dropdown:hover .nav-dropdown__menu a:nth-child(2),
.nav-dropdown:focus-within .nav-dropdown__menu a:nth-child(2),
.nav-dropdown.is-open .nav-dropdown__menu a:nth-child(2) {
  transition-delay: 90ms;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus-visible {
  background: rgba(124, 0, 60, 0.06);
  outline: 0;
}

.nav-dropdown__menu a + a {
  border-top: 1px solid rgba(45, 23, 25, 0.06);
}

.nav-dropdown__menu a:hover::before,
.nav-dropdown__menu a:focus-visible::before {
  height: 18px;
}

.nav-dropdown__menu a[aria-current="page"] {
  color: var(--wine);
}

.nav-dropdown__menu a[aria-current="page"]::before {
  height: 18px;
}

/* Overlay / hero headers — dark matte glass, sharp edges */
.has-overlay-header .site-header:not(.is-scrolled) .nav-dropdown__menu {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.11) 0%,
      rgba(255, 255, 255, 0.03) 22%,
      rgba(0, 0, 0, 0.06) 100%
    ),
    rgba(18, 14, 16, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-top-color: rgba(255, 255, 255, 0.24);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 -1px 0 rgba(0, 0, 0, 0.18) inset,
    0 10px 36px rgba(0, 0, 0, 0.22),
    0 28px 64px rgba(0, 0, 0, 0.28);
  -webkit-backdrop-filter: blur(32px) saturate(155%) brightness(0.88);
  backdrop-filter: blur(32px) saturate(155%) brightness(0.88);
}

.has-overlay-header .site-header:not(.is-scrolled) .nav-dropdown__menu a + a {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.has-overlay-header .site-header:not(.is-scrolled) .nav-dropdown__menu a {
  color: rgba(255, 255, 255, 0.92);
}

.has-overlay-header .site-header:not(.is-scrolled) .nav-dropdown__menu a:hover,
.has-overlay-header .site-header:not(.is-scrolled) .nav-dropdown__menu a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.has-overlay-header .site-header:not(.is-scrolled) .nav-dropdown__menu a[aria-current="page"] {
  color: white;
}

.has-overlay-header .site-header:not(.is-scrolled) .nav-dropdown__menu a::before {
  background: rgba(255, 255, 255, 0.78);
}

.has-overlay-header .site-header.is-scrolled .nav-dropdown__menu {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.84) 0%,
      rgba(255, 255, 255, 0.68) 100%
    );
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 16px 44px rgba(45, 23, 25, 0.12);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  backdrop-filter: blur(24px) saturate(140%);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav-dropdown__menu {
    background: rgba(255, 255, 255, 0.96);
  }

  .has-overlay-header .site-header:not(.is-scrolled) .nav-dropdown__menu {
    background: rgba(22, 18, 20, 0.9);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-dropdown__menu,
  .nav-dropdown__menu a,
  .nav-dropdown__trigger::before {
    transition-duration: 1ms;
  }

  .nav-dropdown:hover .nav-dropdown__menu a,
  .nav-dropdown:focus-within .nav-dropdown__menu a,
  .nav-dropdown.is-open .nav-dropdown__menu a {
    transition-delay: 0ms;
  }
}

.menu-toggle {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  flex: none;
  padding: 11px 8px;
  border: 0;
  background: transparent;
}

.menu-toggle > span:not(.sr-only) {
  position: absolute;
  top: 17px;
  left: 8px;
  display: block;
  width: 28px;
  height: 2px;
  background: var(--ink);
  transition: transform 220ms var(--ease);
}

.menu-toggle > span:not(.sr-only) + span {
  top: 26px;
}

.hero-line {
  position: absolute;
  z-index: -1;
  top: clamp(44px, 6vw, 86px);
  right: max(-72px, calc((100vw - var(--container)) / 2));
  width: min(62vw, 840px);
  height: auto;
  opacity: 0.92;
  animation: hero-drift-404 16s ease-in-out infinite alternate;
}

.eyebrow {
  margin-bottom: 16px;
  color: rgba(45, 23, 25, 0.68);
  font-size: 14px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

/* Contextual diagram heroes share one bottom-aligned lockup with image heroes
   (About, Projects, division pages): title sits on the same baseline band. */
.diagram-hero__layout {
  display: grid;
  width: 100%;
  min-height: inherit;
  grid-template-columns: minmax(0, 1.15fr) minmax(400px, 0.85fr);
  align-items: end;
  padding-top: clamp(48px, 6vh, 88px);
  padding-bottom: clamp(64px, 8vw, 100px);
  gap: clamp(48px, 6vw, 104px);
}

.diagram-hero__copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.js .diagram-hero .diagram-hero__copy .reveal {
  opacity: 1;
  transform: none;
}

.js .diagram-hero__copy .eyebrow {
  animation: diagram-copy-enter 700ms var(--ease) 100ms both;
}

.js .diagram-hero__copy h1 {
  animation: diagram-copy-enter 820ms var(--ease) 240ms both;
}

.js .diagram-hero__copy > p:not(.eyebrow),
.js .diagram-hero__copy .news-links {
  animation: diagram-copy-enter 820ms var(--ease) 360ms both;
}

.diagram-hero__copy .eyebrow {
  margin-bottom: clamp(14px, 1.4vw, 22px);
}

.diagram-hero__copy h1 {
  max-width: none;
  font-size: clamp(70px, 6.2vw, 110px);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.diagram-hero__copy > p:not(.eyebrow) {
  max-width: 28em;
  margin-top: clamp(18px, 2vw, 28px);
  font-size: clamp(18px, 1.45vw, 24px);
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.diagram-hero__copy .news-links {
  margin-top: clamp(22px, 2.4vw, 34px);
}

.diagram-hero.page-hero--viewport-fill .hero-line {
  --diagram-art-opacity: 0.88;
  position: relative;
  z-index: 0;
  top: auto;
  right: auto;
  left: auto;
  width: min(100%, 680px);
  justify-self: end;
  opacity: 0.88;
}

.js .diagram-hero .hero-line--404 {
  animation:
    diagram-art-enter-horizontal 1050ms var(--ease) 340ms both,
    hero-drift-404 16s ease-in-out 1390ms infinite alternate;
}

.diagram-hero--404 {
  --hero-atmosphere: url("../images/hero-atmosphere-404.svg");
  --hero-atmosphere-opacity: 0.7;
}

.diagram-hero--404::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: var(--hero-atmosphere);
  background-repeat: no-repeat;
  background-position: center 48%;
  background-size: cover;
  opacity: var(--hero-atmosphere-opacity);
}

.diagram-hero__layout {
  position: relative;
  z-index: 1;
}

.js .diagram-hero--404::after {
  animation:
    hero-atmosphere-enter 1100ms var(--ease) 620ms both,
    hero-atmosphere-drift 20s ease-in-out 1720ms infinite alternate;
}

@keyframes hero-atmosphere-enter {
  from { opacity: 0; }
  to { opacity: var(--hero-atmosphere-opacity); }
}

@keyframes hero-atmosphere-drift {
  from { background-position: center 47%; }
  to { background-position: center 51%; }
}

@media (min-width: 2000px) {
  .diagram-hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(680px, 0.82fr);
    padding-top: clamp(64px, 5vh, 96px);
    padding-bottom: clamp(72px, 6vh, 112px);
    gap: clamp(100px, 7vw, 180px);
  }

  .diagram-hero__copy h1 {
    font-size: clamp(110px, 5.2vw, 138px);
  }

  .diagram-hero.page-hero--viewport-fill .hero-line {
    width: min(100%, 860px);
  }
}

@media (max-width: 1024px) {
  .diagram-hero--404::after {
    --hero-atmosphere-opacity: 0.52;
    background-position: center top;
    background-size: auto 100%;
  }

  .diagram-hero__layout {
    grid-template-columns: minmax(0, 1fr);
    align-content: end;
    padding-top: clamp(36px, 7vh, 64px);
    padding-bottom: clamp(48px, 8vw, 72px);
    gap: clamp(18px, 4vh, 34px);
  }

  .diagram-hero__copy {
    grid-row: 2;
  }

  .diagram-hero__copy h1 {
    font-size: clamp(56px, 11vw, 88px);
  }

  .diagram-hero.page-hero--viewport-fill .hero-line {
    --diagram-art-opacity: 0.68;
    grid-row: 1;
    width: min(76vw, 520px);
    justify-self: start;
    opacity: 0.68;
  }
}

@media (max-width: 600px) {
  .diagram-hero--404::after {
    --hero-atmosphere-opacity: 0.34;
  }

  .diagram-hero__layout {
    min-height: 430px;
    padding-top: 34px;
    padding-bottom: 40px;
    gap: 18px;
  }

  .diagram-hero__copy .eyebrow {
    margin-bottom: 10px;
  }

  .diagram-hero__copy h1 {
    font-size: clamp(52px, 15vw, 64px);
  }

  .diagram-hero__copy > p:not(.eyebrow) {
    margin-top: 14px;
    font-size: 18px;
  }

  .diagram-hero.page-hero--viewport-fill .hero-line {
    --diagram-art-opacity: 0.58;
    width: min(84vw, 360px);
    opacity: 0.58;
  }
}

.intro {
  padding-bottom: clamp(80px, 9vw, 136px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
  gap: clamp(50px, 8vw, 118px);
}

.intro-copy {
  display: flex;
  min-height: 650px;
  flex-direction: column;
  justify-content: space-between;
}

.intro-lead .section-intro__label {
  margin-bottom: 22px;
}

.display-copy {
  max-width: 760px;
  font-size: clamp(31px, 3.05vw, 45px);
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.body-copy {
  max-width: 660px;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.52;
}

.body-copy p + p {
  margin-top: 24px;
}

.portrait-media {
  position: relative;
  aspect-ratio: 407 / 538;
  overflow: hidden;
  background: var(--muted-light);
}

.portrait-media::after {
  position: absolute;
  inset: 0;
  content: "";
  box-shadow: inset 0 0 0 1px rgba(45, 23, 25, 0.05);
  pointer-events: none;
}

.portrait-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.portrait-media:hover img {
  transform: scale(1.025);
}

.quote-block {
  max-width: 980px;
  margin: clamp(92px, 10vw, 148px) auto 0;
}

.quote-block blockquote {
  font-size: clamp(28px, 3.1vw, 45px);
  letter-spacing: -0.03em;
  line-height: 1.3;
}

.quote-author {
  display: flex;
  align-items: center;
  margin-top: clamp(32px, 4vw, 48px);
  gap: clamp(24px, 3.4vw, 48px);
}

.chairman-photo {
  width: clamp(100px, 15.8vw, 230px);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}

.author-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.signature {
  width: clamp(185px, 23vw, 320px);
  height: auto;
}

.author-details span {
  margin-top: 8px;
  color: var(--wine);
  font-size: clamp(18px, 2vw, 28px);
}

.team-section {
  padding-bottom: 30px;
}

.leadership-section {
  overflow: hidden;
  background: var(--surface);
}

.leadership-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: end;
  margin-bottom: clamp(46px, 6vw, 88px);
  gap: clamp(40px, 8vw, 128px);
}

.leadership-intro {
  max-width: 520px;
  padding-bottom: 0.75em;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.55;
}

.leadership-carousel {
  --leadership-gap: clamp(18px, 2vw, 30px);
}

.leadership-carousel .carousel-track {
  gap: var(--leadership-gap);
}

.leadership-carousel__viewport {
  padding-top: 6px;
}

.leadership-slide {
  width: min(
    calc((100% - (var(--leadership-gap) * 2)) / 3),
    max(190px, calc(76svh - 76px))
  );
  min-width: min(300px, 76vw, max(190px, calc(76svh - 76px)));
}

.leadership-carousel .carousel-arrow {
  top: min(clamp(190px, 19vw, 260px), max(120px, calc(50svh - 50px)));
}

.leadership-carousel .carousel-progress {
  width: min(420px, 46%);
}

.leadership-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(45, 23, 25, 0.12);
  background: var(--muted-light);
  transition: border-color 400ms ease, transform 500ms var(--ease);
}

.leadership-card:hover {
  border-color: rgba(124, 0, 60, 0.42);
  transform: translateY(-5px);
}

.leadership-card__portrait {
  position: relative;
  aspect-ratio: 315 / 414;
  overflow: hidden;
  background: #cbc7c5;
}

.leadership-card__portrait::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(31, 16, 18, 0.16));
  content: "";
  pointer-events: none;
}

.leadership-card__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82);
  transition: filter 600ms var(--ease), transform 900ms var(--ease);
}

.leadership-card__portrait--top img {
  object-position: center top;
  transform-origin: center top;
}

.leadership-card:hover .leadership-card__portrait img {
  filter: saturate(1);
  transform: scale(1.03);
}

.leadership-card__content {
  min-height: 190px;
  padding: clamp(24px, 2.7vw, 38px);
}

.leadership-market {
  color: var(--ink-secondary-on-muted);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.leadership-card h3 {
  margin-top: 22px;
  font-size: clamp(27px, 2.65vw, 39px);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.leadership-role {
  margin-top: 7px;
  color: var(--wine);
  font-size: 15px;
}

.team-card {
  position: relative;
  min-height: clamp(520px, 49vw, 700px);
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}

.team-card > picture,
.team-card > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.team-card > picture img,
.team-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  transition: transform 1.2s var(--ease);
}

.team-card:hover > picture img,
.team-card:hover > img {
  transform: scale(1.02);
}

.team-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(25, 12, 14, 0.38), transparent 70%),
    linear-gradient(0deg, rgba(25, 12, 14, 0.88), rgba(25, 12, 14, 0.08) 68%);
}

.team-content {
  display: flex;
  min-height: inherit;
  max-width: 900px;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 4.2vw, 58px);
  color: white;
}

.team-content h2 {
  font-size: clamp(36px, 4.8vw, 68px);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.team-content p {
  max-width: 720px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 1.5vw, 20px);
}

.partners-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(64px, 8vw, 132px);
}

.partners-lion-mark {
  --partners-lion-opacity: 0.085;

  position: relative;
  width: min(100%, 480px);
  aspect-ratio: 62 / 50;
  overflow: hidden;
  justify-self: center;
  opacity: var(--partners-lion-opacity);
  pointer-events: none;
}

.partners-lion-mark img {
  width: auto;
  max-width: none;
  height: 100%;
  filter:
    grayscale(1)
    drop-shadow(-1px -1px 0 rgba(255, 255, 255, 0.68))
    drop-shadow(2px 3px 4px rgba(45, 23, 25, 0.12));
}

.partners-copy {
  min-width: 0;
}

.partners .partners-heading {
  grid-template-columns: 1fr;
  gap: clamp(24px, 2.4vw, 36px);
}

.partners .lead {
  max-width: 660px;
  padding-top: 0;
}

.partners-heading {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  align-items: start;
  gap: clamp(48px, 8vw, 130px);
}

.section-title {
  font-size: clamp(58px, 7vw, 102px);
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.lead {
  max-width: 550px;
  padding-top: 12px;
  font-size: clamp(23px, 2.25vw, 32px);
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.partners-contact-list p + p {
  margin-top: 12px;
}

.partner-map {
  display: grid;
  max-width: 780px;
  grid-template-columns: minmax(165px, 0.52fr) 2px minmax(0, 1fr);
  margin: clamp(64px, 6vw, 88px) 0 0;
  align-items: stretch;
}

.partner-label {
  align-self: center;
  padding-right: 30px;
  font-size: clamp(30px, 2.8vw, 44px);
  line-height: 1.05;
  text-align: right;
}

.partner-line {
  position: relative;
  background: rgba(45, 23, 25, 0.15);
}

.partner-line span {
  position: absolute;
  inset: 0 0 auto;
  height: 50%;
  background: var(--wine);
  transition: height 500ms var(--ease);
}

.partner-list {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: space-between;
  padding-left: clamp(28px, 3vw, 44px);
}

.partner-item {
  position: relative;
  display: flex;
  min-height: 90px;
  align-items: center;
  padding: 0;
  color: rgba(45, 23, 25, 0.52);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: clamp(32px, 3.2vw, 50px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.02;
  text-align: left;
  transition: color 320ms ease;
}

.partner-dot {
  position: absolute;
  top: 50%;
  left: calc(clamp(28px, 3vw, 44px) * -1 - 10px);
  width: 18px;
  height: 18px;
  background: var(--muted);
  border: 2px solid var(--wine);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  transition: background 320ms ease, transform 320ms var(--ease);
}

.partner-item.is-active,
.partner-item:hover,
.partner-item:focus-visible {
  color: var(--ink);
}

.partner-item.is-active .partner-dot,
.partner-item:hover .partner-dot,
.partner-item:focus-visible .partner-dot {
  background: var(--wine);
  transform: translate(-50%, -50%) scale(1);
}

@media (min-width: 1025px) and (max-width: 1180px) {
  .partners-inner {
    grid-template-columns: minmax(210px, 0.58fr) minmax(0, 1.42fr);
    gap: clamp(44px, 6vw, 68px);
  }

  .partners-lion-mark {
    width: min(100%, 300px);
  }

  .partner-map {
    grid-template-columns: 2px minmax(0, 1fr);
    margin-top: 56px;
  }

  .partner-label {
    grid-column: 1 / -1;
    margin-bottom: 24px;
    padding-right: 0;
    text-align: left;
  }

  .partner-line {
    grid-column: 1;
    grid-row: 2;
  }

  .partner-list {
    grid-column: 2;
    grid-row: 2;
  }
}

.pillars-kicker {
  margin-top: 28px;
  font-size: clamp(28px, 3.3vw, 48px);
  letter-spacing: -0.03em;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(58px, 7vw, 94px);
  padding: 0;
  gap: clamp(48px, 5.2vw, 78px) clamp(28px, 4vw, 64px);
  list-style: none;
}

.pillar {
  position: relative;
  min-height: 280px;
  border-top: 1px solid rgba(45, 23, 25, 0.16);
}

.pillar-number {
  display: block;
  margin-top: 14px;
  color: transparent;
  font-size: clamp(88px, 11.5vw, 168px);
  font-weight: 200;
  letter-spacing: -0.075em;
  line-height: 0.95;
  -webkit-text-stroke: 1px var(--wine-bright);
}

.pillar h3 {
  max-width: 400px;
  margin-top: 22px;
  font-size: clamp(25px, 3vw, 43px);
  letter-spacing: -0.035em;
  line-height: 1.17;
}

.cta {
  display: inline-flex;
  min-width: 300px;
  margin-top: clamp(72px, 8vw, 112px);
  align-items: center;
  justify-content: space-between;
  padding: 17px 18px 17px 24px;
  color: white;
  background: var(--wine);
  text-decoration: none;
  transition: background 220ms ease;
}

.cta:hover,
.cta:focus-visible {
  background: #5f002f;
}

.cta-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-left: 30px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  overflow: hidden;
}

.cta-icon svg {
  display: block;
  transform: rotate(0deg);
  transform-origin: 50% 50%;
  transition: transform 280ms var(--ease);
}

.cta:hover .cta-icon svg,
.cta:focus-visible .cta-icon svg {
  transform: rotate(-25deg);
}

.site-footer {
  padding-block: clamp(30px, 3vw, 44px) 22px;
  color: white;
  background: var(--footer);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top > a:first-child {
  width: clamp(160px, 15vw, 210px);
}

.footer-top img {
  width: 100%;
  height: auto;
}

.social-link {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  font-size: 14px;
  text-decoration: none;
  transition: color 200ms ease, background 200ms ease;
}

.social-link:hover {
  color: var(--footer);
  background: white;
}

.social-link--office {
  width: 32px;
  height: 32px;
  margin-top: 16px;
  justify-self: end;
  border-color: rgba(255, 255, 255, 0.32);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.social-link--office:hover,
.social-link--office:focus-visible {
  color: var(--footer);
  background: white;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(110px, 0.42fr) minmax(360px, 1.3fr) minmax(120px, 0.45fr);
  align-items: start;
  padding-block: 28px 30px;
  gap: clamp(32px, 6vw, 92px);
}

.footer-title {
  padding-top: 3px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.footer-main .footer-nav:first-of-type {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: repeat(2, minmax(120px, 160px));
  grid-template-rows: repeat(4, auto);
  gap: 7px clamp(28px, 4vw, 62px);
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: white;
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-block: 28px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  gap: 0;
}

.office {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
}

.office:first-child {
  padding-right: clamp(24px, 3vw, 44px);
}

.office + .office {
  padding-inline: clamp(24px, 3vw, 44px);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.office:last-child {
  padding-right: 0;
}

.office h2 {
  grid-column: 1 / -1;
  margin-bottom: 18px;
  font-size: 20px;
}

.office address {
  grid-column: 1;
  min-height: 102px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-style: normal;
  line-height: 1.55;
}

.office dl {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  margin-top: 14px;
  gap: 5px;
  font-size: 13px;
}

.office dl div {
  display: grid;
  grid-template-columns: minmax(68px, 0.32fr) minmax(0, 1fr);
  gap: 12px;
}

.office dd {
  min-width: 0;
  overflow-wrap: anywhere;
}

.office-contact-empty {
  display: block;
  min-height: 1em;
}

.office dt {
  color: rgba(255, 255, 255, 0.48);
}

.office a {
  color: white;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

@media (min-width: 2000px) {
  .site-footer {
    padding-block: clamp(42px, 2vw, 56px) clamp(26px, 1.3vw, 34px);
  }

  .site-footer > .container {
    width: 100%;
    max-width: none;
    padding-inline: var(--wide-header-gutter, clamp(128px, 6.5vw, 384px));
  }

  .footer-top {
    padding-bottom: clamp(28px, 1.3vw, 36px);
  }

  .footer-top > a:first-child {
    width: clamp(232px, 9.5vw, 270px);
  }

  .social-link {
    width: clamp(46px, 1.9vw, 52px);
    height: clamp(46px, 1.9vw, 52px);
    font-size: clamp(15px, 0.68vw, 18px);
  }

  .social-link--office {
    width: clamp(34px, 1.5vw, 40px);
    height: clamp(34px, 1.5vw, 40px);
    margin-top: clamp(16px, 0.9vw, 22px);
    font-size: clamp(13px, 0.6vw, 15px);
  }

  .footer-main {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: auto auto;
    padding-block: clamp(30px, 1.5vw, 40px) clamp(34px, 1.7vw, 46px);
    column-gap: 0;
    row-gap: clamp(18px, 0.9vw, 24px);
  }

  .footer-title {
    grid-column: 1 / -1;
    padding-top: 0;
    font-size: clamp(12px, 0.52vw, 14px);
  }

  .footer-main .footer-nav:first-of-type {
    grid-column: 1 / 3;
    grid-row: 2;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(2, auto);
    gap: 10px 0;
  }

  .footer-main .footer-nav:last-of-type {
    grid-column: 3;
    grid-row: 2;
  }

  .footer-nav {
    gap: 10px;
  }

  .footer-nav a {
    font-size: clamp(16px, 0.68vw, 18px);
  }

  .office-grid {
    padding-block: clamp(34px, 1.6vw, 44px) clamp(36px, 1.8vw, 48px);
  }

  .office:first-child {
    padding-right: clamp(38px, 2.6vw, 72px);
  }

  .office + .office {
    padding-inline: clamp(38px, 2.6vw, 72px);
  }

  .office:last-child {
    padding-right: 0;
  }

  .office h2 {
    margin-bottom: 20px;
    font-size: clamp(22px, 0.9vw, 26px);
  }

  .office address {
    min-height: 110px;
    font-size: clamp(14px, 0.62vw, 16px);
  }

  .office dl {
    margin-top: 16px;
    gap: 7px;
    font-size: clamp(14px, 0.62vw, 16px);
  }

  .office dl div {
    grid-template-columns: minmax(78px, 0.28fr) minmax(0, 1fr);
    gap: 16px;
  }

  .footer-bottom {
    padding-top: clamp(19px, 1vw, 26px);
  }

  .footer-bottom,
  .footer-bottom a {
    font-size: clamp(13px, 0.56vw, 15px);
  }
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms var(--ease) var(--delay, 0ms),
    transform 700ms var(--ease) var(--delay, 0ms);
}

.delay-50 { --delay: 50ms; }
.delay-60 { --delay: 60ms; }
.delay-70 { --delay: 70ms; }
.delay-80 { --delay: 80ms; }
.delay-90 { --delay: 90ms; }
.delay-100 { --delay: 100ms; }
.delay-120 { --delay: 120ms; }
.delay-140 { --delay: 140ms; }
.delay-150 { --delay: 150ms; }
.delay-180 { --delay: 180ms; }
.delay-240 { --delay: 240ms; }

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .partners-lion-mark.reveal {
  opacity: 0;
  filter: blur(3px);
  transform: translateY(26px) scale(0.94);
  transform-origin: center bottom;
  transition:
    opacity 900ms var(--ease) var(--delay, 0ms),
    filter 900ms var(--ease) var(--delay, 0ms),
    transform 900ms var(--ease) var(--delay, 0ms);
}

.js .partners-lion-mark.reveal.is-visible {
  opacity: var(--partners-lion-opacity);
  filter: blur(0);
  transform: translateY(0) scale(1);
}

@keyframes hero-drift-404 {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(1%, -0.4%, 0); }
}

@keyframes diagram-copy-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes diagram-art-enter-horizontal {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  to {
    opacity: var(--diagram-art-opacity, 0.88);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes diagram-art-enter-vertical {
  from {
    opacity: 0;
    clip-path: inset(100% 0 0 0);
  }
  to {
    opacity: var(--diagram-art-opacity, 0.88);
    clip-path: inset(0 0 0 0);
  }
}

/* Homepage */
.home-page .site-header {
  position: absolute;
  inset: 0 0 auto;
}

.home-page .site-header.is-scrolled {
  position: fixed;
}

.home-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  color: white;
  background: var(--ink);
  isolation: isolate;
}

.home-hero > picture,
.page-hero--image > picture,
.investor-portal-hero > picture {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.home-hero > picture img,
.page-hero--image > picture img,
.investor-portal-hero > picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__image,
.home-hero__veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.home-hero__image {
  object-fit: cover;
  object-position: center;
}

.home-hero__veil {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20, 8, 10, 0.28), transparent 30%),
    linear-gradient(0deg, rgba(20, 8, 10, 0.68), rgba(20, 8, 10, 0.04) 58%);
}

.home-hero__content {
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: clamp(72px, 8vw, 112px);
}

.home-hero .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.home-hero h1 {
  max-width: 970px;
  font-size: clamp(58px, 7.4vw, 108px);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.cta--glass {
  margin-top: clamp(32px, 4vw, 54px);
  background: rgba(102, 0, 51, 0.78);
  backdrop-filter: blur(6px);
}

/* Match the investors hero CTA: keep its glass colour steady on hover. */
.home-hero .cta--glass:hover,
.home-hero .cta--glass:focus-visible {
  background: rgba(102, 0, 51, 0.78);
}

.home-scroll-cue {
  position: absolute;
  z-index: 3;
  right: var(--gutter);
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: white;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

/* Keep the cue clear of News carousel controls on the bottom edge. */
.news-feature .home-scroll-cue {
  bottom: clamp(96px, 12vh, 128px);
}

.home-scroll-cue i {
  position: relative;
  display: block;
  width: 1px;
  height: 48px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
}

.home-scroll-cue i::after {
  position: absolute;
  top: -50%;
  left: 0;
  width: 1px;
  height: 50%;
  content: "";
  background: white;
  animation: scroll-cue 1.9s var(--ease) infinite;
}

@media (min-width: 2000px) {
  .home-page,
  .inner-page,
  .investor-portal-page {
    --wide-header-gutter: clamp(128px, 6.5vw, 384px);
  }

  .home-page .header-inner,
  .inner-page .header-inner,
  .investor-portal-page .header-inner,
  .home-hero__content,
  .page-hero--viewport-fill .page-hero__content,
  .page-hero--viewport-fill .diagram-hero__layout,
  .page-hero--adaptive-immersive .page-hero__content,
  .investor-portal-hero__shell {
    width: 100%;
    max-width: none;
    padding-inline: var(--wide-header-gutter);
  }

  .home-scroll-cue {
    right: var(--wide-header-gutter);
  }

  /*
   * Grey first screens track the wide header edge at QHD+.
   * About / Projects photo heroes use the same grey-band height PLUS the
   * in-flow header height, so switching between overlay-photo and
   * white-header + grey pages keeps one shared first-screen silhouette.
   */
  .page-hero--viewport-fill {
    min-height: clamp(580px, 42vw, 700px);
  }

  .page-hero.page-hero--adaptive-immersive {
    min-height: calc(var(--header-height) + clamp(580px, 42vw, 700px));
  }

  .page-hero.page-hero--adaptive-immersive .page-hero__content {
    min-height: inherit;
    align-content: end;
    padding-top: calc(var(--header-height) + clamp(40px, 3vw, 72px));
    padding-bottom: clamp(72px, 5.5vh, 112px);
  }

  .page-hero--viewport-fill .hero-line {
    top: clamp(56px, 4vw, 96px);
    right: max(-48px, calc(var(--wide-header-gutter) - 80px));
    width: min(48vw, 980px);
  }
}

@media (min-width: 2000px) and (min-height: 1100px) {
  .home-hero__content {
    padding-bottom: clamp(180px, 15vh, 320px);
  }

  .home-hero .eyebrow {
    margin-bottom: 20px;
    font-size: clamp(14px, 0.65vw, 17px);
  }

  .home-hero h1 {
    max-width: 1240px;
    font-size: clamp(126px, 5.6vw, 150px);
    line-height: 0.96;
  }

  .home-hero .cta--glass {
    min-width: clamp(340px, 17vw, 430px);
    margin-top: clamp(42px, 3vw, 62px);
    padding: 21px 22px 21px 30px;
    font-size: clamp(17px, 0.78vw, 20px);
  }

  .home-hero .cta--glass .cta-icon {
    width: 54px;
    height: 54px;
    margin-left: 38px;
  }

  .page-hero--viewport-fill .page-hero__content,
  .page-hero--viewport-fill .diagram-hero__layout,
  .page-hero--adaptive-immersive .page-hero__content {
    padding-bottom: clamp(72px, 6vh, 112px);
  }

  .page-hero--viewport-fill .page-hero__content h1,
  .page-hero--adaptive-immersive .page-hero__content h1 {
    max-width: min(100%, 1240px);
    font-size: clamp(100px, 5.2vw, 132px);
    line-height: 0.96;
  }

  .divisions-photo-hero .page-hero__content h1 {
    max-width: none;
  }

  .divisions-photo-hero .page-hero__content {
    padding-bottom: clamp(80px, 6.5vh, 120px);
  }

  .page-hero--viewport-fill .page-hero__content > p,
  .page-hero--adaptive-immersive .page-hero__content > p {
    max-width: min(100%, 560px);
    font-size: clamp(22px, 1.05vw, 30px);
  }
}

.home-metrics {
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.42), transparent 30%),
    var(--muted);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(52px, 7vw, 90px);
  gap: 34px;
}

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

.about-exec-panel {
  background: var(--muted-light);
}

.about-exec-panel .editorial-copy h2 {
  max-width: 14em;
  margin-top: 14px;
  font-size: clamp(36px, 4.2vw, 56px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.about-exec-summary__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  margin-top: 30px;
}

.about-exec-summary__links a {
  margin-top: 0;
}

.about-exec-summary__links a span {
  text-decoration: none;
}

/* Give the executive summary a complete first-screen composition on laptops.
 * It fills the viewport below the sticky header without returning to the
 * oversized spacing that originally pushed its content off-screen. */
@media (min-width: 1025px) and (max-height: 1100px) {
  .about-exec-panel {
    --about-exec-padding: 46px;
    display: flex;
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100svh - var(--header-height));
    align-items: center;
    padding-block: var(--about-exec-padding);
  }

  .about-exec-panel .editorial-split {
    width: 100%;
    gap: clamp(42px, 6vw, 84px);
  }

  .about-exec-panel .editorial-media {
    height: min(640px, calc(100vh - (2 * var(--about-exec-padding))));
    height: min(640px, calc(100svh - (2 * var(--about-exec-padding))));
    min-height: 0;
  }

  .about-exec-panel .editorial-copy h2 {
    font-size: clamp(38px, 3.8vw, 52px);
  }

  .about-exec-panel .editorial-copy p {
    margin-top: 22px;
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.48;
  }

  .about-exec-summary__links {
    margin-top: 24px;
    gap: 14px 28px;
  }
}

@media (min-width: 1025px) and (max-width: 1199px) and (max-height: 1100px) {
  .about-exec-panel {
    --about-exec-padding: 40px;
  }

  .about-exec-panel .editorial-copy h2 {
    font-size: clamp(34px, 3.4vw, 44px);
  }

  .about-exec-panel .editorial-copy p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.45;
  }

  .about-exec-summary__links {
    margin-top: 20px;
    gap: 12px 24px;
  }
}

/* Keep the executive summary composed as a complete second screen on tall
 * desktop displays instead of leaving an oversized empty band beneath it. */
@media (min-width: 1025px) and (min-height: 1101px) {
  .about-exec-panel {
    --about-exec-padding: clamp(72px, 8vh, 124px);
    display: flex;
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100svh - var(--header-height));
    align-items: center;
    padding-block: var(--about-exec-padding);
  }

  .about-exec-panel .editorial-split {
    width: 100%;
  }

  .about-exec-panel .editorial-media {
    height: min(720px, calc(100svh - var(--header-height) - (2 * var(--about-exec-padding))));
    min-height: 0;
  }
}

@media (min-width: 2000px) {
  .about-page .container {
    width: 100%;
    max-width: none;
    padding-inline: var(--wide-header-gutter);
  }

  .about-exec-panel .editorial-copy h2 {
    font-size: clamp(40px, 2.1vw, 56px);
  }
}

.metric-grid > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 20px;
  border-top: 1px solid rgba(45, 23, 25, 0.2);
}

.metric-grid dt {
  min-height: 1.05em;
  font-size: clamp(42px, 4.4vw, 68px);
  font-weight: 300;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.05em;
  line-height: 1;
  white-space: nowrap;
}

.metric-grid dd {
  max-width: 12em;
  margin-top: 18px;
  color: var(--ink-secondary-on-muted);
  font-size: clamp(15px, 1.5vw, 20px);
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-transform: uppercase;
}

.home-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(48px, 7vw, 92px);
  gap: 50px;
}

.home-section-head > p {
  max-width: 500px;
  padding-bottom: 8px;
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.42;
}

.home-section-link {
  margin-bottom: 10px;
  font-size: 18px;
}

.carousel-shell {
  position: relative;
}

.carousel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}

.carousel-viewport::-webkit-scrollbar {
  display: none;
}

.carousel-track {
  display: flex;
  align-items: stretch;
  gap: clamp(18px, 2vw, 30px);
}

.carousel-slide {
  flex: none;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.project-slide {
  width: min(82vw, 1050px, max(440px, calc(174svh - 226px)));
  aspect-ratio: 1150 / 660;
}

.project-slide a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: white;
  background: var(--muted);
}

.project-slide picture,
.news-slide__media picture {
  width: 100%;
  height: 100%;
}

.project-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease);
}

.project-slide a:hover img {
  transform: scale(1.025);
}

.project-slide__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 7, 9, 0.48), transparent 46%);
}

.project-slide__copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(22px, 3vw, 38px);
  font-size: clamp(17px, 1.65vw, 24px);
  line-height: 1.35;
}

.project-slide__copy strong {
  margin-bottom: 6px;
  font-size: clamp(22px, 2.25vw, 32px);
  font-weight: 400;
  text-transform: uppercase;
}

.project-slide__copy > span:last-child {
  margin-top: 16px;
}

.news-slide {
  width: calc((100% - clamp(36px, 4vw, 60px)) / 3);
  min-width: 310px;
}

.news-slide a {
  display: block;
  text-decoration: none;
}

.news-slide__media {
  position: relative;
  height: min(
    clamp(250px, 25vw, 360px),
    max(210px, calc(100svh - 250px))
  );
  margin-bottom: 22px;
  overflow: hidden;
  background: var(--muted-light);
}

.news-slide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.news-slide a:hover .news-slide__media img {
  transform: scale(1.035);
}

.news-slide h3 {
  margin-bottom: 12px;
  font-size: clamp(22px, 2vw, 29px);
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.news-slide p {
  color: rgba(45, 23, 25, 0.7);
  font-size: 16px;
}

.carousel-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  display: grid;
  width: clamp(62px, 6vw, 88px);
  height: clamp(62px, 6vw, 88px);
  padding: 0;
  place-items: center;
  color: white;
  background: rgba(102, 0, 51, 0.72);
  border: 0;
  border-radius: 50%;
  backdrop-filter: blur(5px);
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity 180ms ease, background 180ms ease, transform 220ms var(--ease);
}

.carousel-arrow svg {
  display: block;
  width: 28px;
  height: 18px;
}

.carousel-arrow--prev {
  left: calc(clamp(62px, 6vw, 88px) / -2);
}

.carousel-arrow--prev svg {
  transform: rotate(180deg);
}

.carousel-arrow--next {
  right: calc(clamp(62px, 6vw, 88px) / -2);
}

.carousel-arrow:hover:not(:disabled),
.carousel-arrow:focus-visible:not(:disabled) {
  background: var(--wine);
  transform: translateY(-50%) scale(1.06);
}

.carousel-arrow:disabled {
  opacity: 0.22;
  cursor: default;
}

.carousel-shell--news .carousel-arrow {
  top: calc(
    min(clamp(250px, 25vw, 360px), max(210px, calc(100svh - 250px))) / 2
  );
}

.carousel-progress {
  position: relative;
  width: min(340px, 45%);
  height: 5px;
  margin-top: clamp(34px, 4vw, 54px);
  overflow: hidden;
  background: rgba(45, 23, 25, 0.2);
}

.carousel-progress span {
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 120ms linear;
}

.home-story__grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  align-items: start;
  gap: clamp(50px, 9vw, 140px);
}

.home-story .lead a {
  display: inline-block;
  margin-top: 32px;
  color: var(--wine);
  font-size: 17px;
}

.home-cta-section {
  border-top: 1px solid rgba(45, 23, 25, 0.1);
}

.home-cta-section .display-copy {
  max-width: 850px;
}

.newsletter-band {
  padding-block: clamp(46px, 4.8vw, 72px);
  color: var(--ink);
  background: var(--muted);
}

.newsletter-band__grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.5fr);
  align-items: center;
  gap: clamp(32px, 4.5vw, 64px);
}

.newsletter-band__copy .section-intro__label {
  margin-bottom: 12px;
}

.newsletter-band__copy h2 {
  max-width: 16ch;
  font-size: clamp(32px, 2.7vw, 44px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.newsletter-band__copy > p:last-child {
  margin-top: 12px;
  max-width: 36ch;
  color: var(--ink-secondary-on-muted);
  font-size: 16px;
  line-height: 1.5;
}

.newsletter-band__form {
  display: grid;
  gap: 22px;
}

[data-newsletter-form][inert] {
  display: none;
}

.newsletter-band__fallback {
  padding: clamp(20px, 2.4vw, 28px);
  border: 1px solid rgba(45, 23, 25, 0.14);
  background: rgba(255, 255, 255, 0.42);
}

.newsletter-band__fallback a {
  color: var(--wine);
}

.newsletter-band__fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.newsletter-band__fieldset legend {
  margin-bottom: 10px;
  padding: 0;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.newsletter-band__chips {
  padding-top: 0;
}

.newsletter-band .contact-region-options {
  gap: 10px;
}

.newsletter-band .contact-region-option {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  font-size: 15px;
}

.newsletter-band__req {
  color: var(--wine);
}

.newsletter-band__hint {
  min-height: 1.2em;
  margin: 6px 0 0;
  color: var(--wine);
  font-size: 13px;
}

.newsletter-band__hint:empty {
  min-height: 0;
  margin: 0;
}

.newsletter-band__choices,
.newsletter-band__fields,
.newsletter-band__legal {
  display: grid;
  gap: 16px 22px;
}

.newsletter-band__choices {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.newsletter-band__fields {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.9fr) minmax(0, 1.2fr) auto;
  align-items: end;
}

.newsletter-band__legal {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.newsletter-band .form-field {
  gap: 8px;
}

.newsletter-band .form-field label {
  font-size: 12px;
}

.newsletter-band .form-field input {
  padding: 10px 0 12px;
  background: transparent;
}

.newsletter-band .form-field input::placeholder {
  color: rgba(45, 23, 25, 0.38);
}

.newsletter-band .form-consent {
  margin: 0;
  color: rgba(45, 23, 25, 0.72);
  font-size: 14px;
  line-height: 1.45;
}

.newsletter-band .form-consent a {
  color: var(--ink);
}

.newsletter-band .cta {
  min-width: 0;
  height: 54px;
  margin-top: 0;
  padding: 8px 10px 8px 18px;
  border: 0;
  cursor: pointer;
}

.newsletter-band .cta:disabled {
  cursor: wait;
  opacity: 0.68;
}

.newsletter-band .cta-icon {
  width: 36px;
  height: 36px;
  margin-left: 16px;
}

.newsletter-band .form-status {
  min-height: 0;
  margin: 0;
}

.newsletter-band .form-status:empty {
  display: none;
}

@media (max-width: 1200px) {
  .newsletter-band__fields {
    grid-template-columns: 1fr 1fr;
  }

  .newsletter-band__fields .cta {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .newsletter-band__grid,
  .newsletter-band__choices,
  .newsletter-band__fields,
  .newsletter-band__legal {
    grid-template-columns: 1fr;
  }

  .newsletter-band__copy h2 {
    max-width: none;
  }

  .newsletter-band .cta {
    width: 100%;
    min-width: 0;
  }
}

@keyframes scroll-cue {
  0% { transform: translateY(0); }
  100% { transform: translateY(300%); }
}

/* Shared inner pages */
.inner-page .site-header {
  position: relative;
}

.inner-page .site-header.is-scrolled {
  position: sticky;
}

.has-overlay-header .site-header {
  position: absolute;
  inset: 0 0 auto;
  color: white;
  background: transparent;
}

.has-overlay-header .site-header .brand img {
  filter: brightness(0) invert(1);
}

.has-overlay-header .site-header .menu-toggle > span:not(.sr-only) {
  background: white;
}

.has-overlay-header .site-header.is-scrolled {
  position: fixed;
  top: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(45, 23, 25, 0.1);
  box-shadow: 0 8px 28px rgba(45, 23, 25, 0.08);
}

/*
 * Keep the blur on a separate paint layer. A backdrop-filter on the header
 * itself makes position: fixed descendants use the header as their containing
 * block in WebKit/Chromium. On mobile that trapped the full-screen navigation
 * inside the 70px scrolled header and caused its links to overlap the page.
 */
.has-overlay-header .site-header.is-scrolled::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  pointer-events: none;
}

.has-overlay-header .site-header.is-scrolled .brand img {
  filter: none;
}

.has-overlay-header .site-header.is-scrolled .menu-toggle > span:not(.sr-only) {
  background: var(--ink);
}

/* Investor portal */
.investor-portal-page {
  color: var(--ink);
  background: #171113;
}

.investor-portal-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  color: white;
  background: #211719;
  isolation: isolate;
  overflow: hidden;
}

.investor-portal-hero__image,
.investor-portal-hero__veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.investor-portal-hero__image {
  object-fit: cover;
  object-position: center 54%;
  filter: saturate(0.78) contrast(0.96);
  transform: scale(1.012);
}

.investor-portal-hero__veil {
  z-index: -1;
  background:
    radial-gradient(circle at 76% 46%, rgba(247, 225, 204, 0.12), transparent 35%),
    linear-gradient(90deg, rgba(25, 13, 16, 0.82) 0%, rgba(25, 13, 16, 0.57) 43%, rgba(25, 13, 16, 0.24) 72%, rgba(25, 13, 16, 0.42) 100%),
    linear-gradient(180deg, rgba(15, 10, 13, 0.48), transparent 30%, rgba(15, 9, 11, 0.56) 100%);
}

.investor-portal-hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  height: 32%;
  background: linear-gradient(0deg, rgba(18, 11, 13, 0.56), transparent);
  content: "";
  pointer-events: none;
}

.investor-portal-hero__shell {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 500px);
  align-items: center;
  padding-top: calc(var(--header-height) + clamp(44px, 6vh, 76px));
  padding-bottom: clamp(56px, 7vh, 90px);
  gap: clamp(52px, 7vw, 118px);
}

.investor-portal-hero__intro {
  align-self: center;
  min-width: 0;
  max-width: 760px;
  padding-block: 28px;
}

.investor-portal-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  color: rgba(255, 246, 237, 0.78);
  font-size: 13px;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.investor-portal-hero__eyebrow::before {
  width: 38px;
  height: 1px;
  background: rgba(255, 246, 237, 0.72);
  content: "";
}

.investor-portal-hero__title {
  margin: 0;
  font-size: clamp(58px, 6.2vw, 92px);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.94;
  text-wrap: balance;
}

.investor-portal-hero__title span {
  display: block;
  color: rgba(255, 245, 235, 0.72);
}

.investor-portal-hero__lead {
  max-width: 610px;
  margin: clamp(28px, 4vh, 42px) 0 0;
  color: rgba(255, 248, 241, 0.82);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.55;
}

.investor-portal-hero__features {
  display: grid;
  max-width: 680px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(36px, 5vh, 54px) 0 0;
  padding: 0;
  list-style: none;
}

.investor-portal-hero__features li {
  min-width: 0;
  padding: 4px 20px 4px 18px;
  border-left: 1px solid rgba(255, 246, 237, 0.28);
  color: rgba(255, 248, 241, 0.88);
  font-size: 14px;
  line-height: 1.35;
}

.investor-portal-hero__features li:first-child {
  padding-left: 0;
  border-left: 0;
}

.investor-portal-hero__features span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 246, 237, 0.48);
  font-size: 11px;
  letter-spacing: 0.13em;
}

.investor-portal-hero__card-wrap {
  display: flex;
  min-width: 0;
  width: 100%;
  justify-content: flex-end;
}

.investor-gateway-card {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: clamp(440px, 51vh, 520px);
  width: min(100%, 500px);
  max-width: 100%;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border: 1px solid rgba(255, 247, 238, 0.22);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(61, 44, 48, 0.66), rgba(25, 18, 21, 0.54));
  box-shadow:
    0 42px 100px rgba(8, 5, 7, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  color: rgba(255, 249, 243, 0.94);
  -webkit-backdrop-filter: blur(34px) saturate(1.22);
  backdrop-filter: blur(34px) saturate(1.22);
  animation: investor-glass-enter 720ms var(--ease) both;
}

.investor-gateway-card::before {
  position: absolute;
  top: -160px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 236, 220, 0.14), transparent 68%);
  content: "";
  pointer-events: none;
}

@keyframes investor-glass-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes investor-gateway-content-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.investor-gateway-card__masthead {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 27px 30px 18px;
  color: rgba(255, 250, 244, 0.94);
}

.investor-gateway-card__security-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border: 1px solid rgba(255, 248, 240, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: #ead9ca;
}

.investor-gateway-card__masthead > span:nth-child(2) {
  display: grid;
  gap: 2px;
}

.investor-gateway-card__masthead small {
  color: rgba(255, 250, 244, 0.58);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.investor-gateway-card__masthead strong {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.35;
}

.investor-gateway-card__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  padding: 7px 10px;
  border: 1px solid rgba(255, 248, 240, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 250, 244, 0.68);
  font-size: 10px;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
}

.investor-gateway-card__status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b8d7c0;
  box-shadow: 0 0 0 4px rgba(184, 215, 192, 0.09);
}

.investor-gateway-card__view {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: center;
  padding: 22px 30px 28px;
  animation: investor-gateway-content-enter 620ms 160ms var(--ease) both;
}

.investor-gateway-card__kicker {
  margin: 0 0 12px;
  color: rgba(255, 250, 244, 0.5);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.investor-gateway-card__heading {
  margin: 0;
  color: rgba(255, 250, 245, 0.96);
  font-size: clamp(32px, 3vw, 38px);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.investor-gateway-card__intro {
  max-width: 410px;
  margin: 14px 0 28px;
  color: rgba(255, 248, 241, 0.6);
  font-size: 14px;
  line-height: 1.55;
}

.investor-gateway-card__cta {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
  min-height: 54px;
  padding: 15px 18px 15px 21px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  background: linear-gradient(135deg, #97004a, #730039);
  box-shadow: 0 14px 30px rgba(45, 0, 21, 0.28);
  color: white;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  line-height: 1.2;
  text-decoration: none;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.investor-gateway-card__cta::after {
  display: inline-block;
  font-size: 21px;
  font-weight: 300;
  line-height: 0.8;
  content: "→";
  transform-origin: 50% 50%;
  transition: transform 220ms var(--ease);
}

.investor-gateway-card__cta:hover,
.investor-gateway-card__cta:focus-visible {
  background: linear-gradient(135deg, #ad185e, #850042);
  box-shadow: 0 17px 34px rgba(45, 0, 21, 0.36);
  transform: translateY(-1px);
}

.investor-gateway-card__cta:hover::after,
.investor-gateway-card__cta:focus-visible::after {
  transform: rotate(-25deg);
}

.investor-gateway-card__cta:focus-visible {
  outline: 2px solid rgba(246, 222, 232, 0.48);
  outline-offset: 3px;
}

.investor-gateway-card__handoff {
  margin: 12px 0 0;
  color: rgba(255, 248, 241, 0.45);
  font-size: 12px;
  line-height: 1.45;
}

.investor-gateway-card__support {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 19px 30px 24px;
  border-top: 1px solid rgba(255, 248, 241, 0.09);
  color: rgba(255, 248, 241, 0.5);
  font-size: 13px;
  line-height: 1.45;
}

.investor-gateway-card__support a {
  color: rgba(255, 239, 232, 0.88);
}

@media (min-width: 2000px) {
  .investor-portal-hero__shell {
    width: min(100%, 2100px);
    max-width: 2100px;
    grid-template-columns: minmax(720px, 850px) minmax(540px, 610px);
    justify-content: center;
    padding-inline: clamp(84px, 4.5vw, 120px);
    gap: clamp(92px, 5vw, 132px);
  }

  .investor-portal-hero__intro {
    max-width: 850px;
  }

  .investor-portal-hero__title {
    font-size: clamp(94px, 4.15vw, 112px);
  }

  .investor-portal-hero__lead {
    max-width: 680px;
    font-size: clamp(20px, 0.92vw, 23px);
  }

  .investor-portal-hero__features {
    max-width: 760px;
  }

  .investor-portal-hero__features li {
    font-size: 15px;
  }

  .investor-gateway-card {
    min-height: 560px;
    width: min(100%, clamp(540px, 22.5vw, 610px));
  }

  .investor-gateway-card__masthead {
    padding: 30px 36px 20px;
  }

  .investor-gateway-card__security-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .investor-gateway-card__view {
    padding: 26px 36px 30px;
  }

  .investor-gateway-card__heading {
    font-size: 42px;
  }

  .investor-gateway-card__intro {
    font-size: 15px;
  }

  .investor-gateway-card__cta {
    min-height: 58px;
  }

  .investor-gateway-card__support {
    padding: 21px 36px 26px;
  }
}

@media (max-width: 1180px) {
  .investor-portal-hero__shell {
    grid-template-columns: minmax(0, 0.9fr) minmax(400px, 470px);
    gap: clamp(38px, 5vw, 64px);
  }

  .investor-portal-hero__title {
    font-size: clamp(54px, 6.6vw, 74px);
  }

  .investor-portal-hero__features {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .investor-portal-hero__features li,
  .investor-portal-hero__features li:first-child {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: baseline;
    padding: 0;
    border-left: 0;
  }

  .investor-portal-hero__features span {
    margin: 0;
  }
}

@media (max-width: 900px) {
  .investor-portal-hero {
    min-height: auto;
  }

  .investor-portal-hero__image {
    object-position: 58% center;
  }

  .investor-portal-hero__veil {
    background:
      linear-gradient(90deg, rgba(25, 13, 16, 0.78), rgba(25, 13, 16, 0.42)),
      linear-gradient(180deg, rgba(15, 10, 13, 0.5), rgba(15, 9, 11, 0.7));
  }

  .investor-portal-hero__shell {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 46px;
    padding-top: calc(var(--header-height) + 54px);
    padding-bottom: 72px;
  }

  .investor-portal-hero__intro {
    max-width: 700px;
    padding-block: 14px 0;
  }

  .investor-portal-hero__title {
    font-size: clamp(56px, 9vw, 76px);
  }

  .investor-portal-hero__card-wrap {
    justify-content: flex-start;
  }

  .investor-gateway-card {
    width: min(100%, 560px);
  }
}

@media (max-width: 600px) {
  .investor-portal-hero__shell {
    gap: 34px;
    padding-top: calc(var(--header-height) + 34px);
    padding-bottom: 40px;
  }

  .investor-portal-hero__intro {
    padding-top: 4px;
  }

  .investor-portal-hero__eyebrow {
    margin-bottom: 20px;
  }

  .investor-portal-hero__title {
    font-size: clamp(45px, 13vw, 60px);
    line-height: 0.96;
  }

  .investor-portal-hero__lead {
    margin-top: 24px;
    font-size: 16px;
  }

  .investor-portal-hero__features {
    margin-top: 30px;
  }

  .investor-gateway-card {
    min-height: 0;
    border-radius: 16px;
  }

  .investor-gateway-card__masthead {
    padding: 20px 22px;
  }

  .investor-gateway-card__view {
    padding: 18px 22px 26px;
  }

  .investor-gateway-card__heading {
    font-size: 30px;
  }

  .investor-gateway-card__intro {
    margin-bottom: 24px;
  }

  .investor-gateway-card__support {
    padding: 17px 22px 20px;
  }
}

@media (max-width: 380px) {
  .investor-gateway-card__status {
    padding-inline: 8px;
    font-size: 9px;
  }
}

.page-hero {
  position: relative;
  display: flex;
  min-height: clamp(480px, 56vw, 700px);
  align-items: flex-end;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 25%, rgba(255, 255, 255, 0.62), transparent 30%),
    var(--muted);
  isolation: isolate;
}

.page-hero__art,
.page-hero__veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.page-hero__art {
  object-fit: cover;
}

.page-hero__veil {
  z-index: -1;
  background: linear-gradient(0deg, rgba(23, 9, 11, 0.68), rgba(23, 9, 11, 0.04) 68%);
}

.page-hero--image {
  color: white;
}

.page-hero--image .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

/* Divisions photo hero: home-style single lockup (eyebrow → title → CTA). */
.divisions-photo-hero .page-hero__art {
  object-position: center 40%;
}

.divisions-photo-hero .page-hero__veil {
  background:
    linear-gradient(180deg, rgba(20, 8, 10, 0.56) 0%, rgba(20, 8, 10, 0.18) 28%, transparent 52%),
    linear-gradient(0deg, rgba(20, 8, 10, 0.82) 0%, rgba(20, 8, 10, 0.4) 46%, rgba(20, 8, 10, 0.08) 74%),
    linear-gradient(90deg, rgba(20, 8, 10, 0.42) 0%, rgba(20, 8, 10, 0.14) 42%, transparent 70%);
}

.divisions-photo-hero .page-hero__content {
  grid-template-columns: minmax(0, 1fr);
  align-content: end;
  gap: 0;
  padding-bottom: clamp(56px, 7vh, 96px);
}

.divisions-photo-hero__lockup {
  max-width: min(100%, 14em);
}

.divisions-photo-hero__lockup .eyebrow {
  margin-bottom: clamp(14px, 1.5vw, 22px);
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 0.95vw, 18px);
  letter-spacing: 0.13em;
  white-space: nowrap;
}

.divisions-photo-hero .page-hero__content h1 {
  max-width: none;
  margin: 0;
  color: #fff;
  overflow: visible;
  white-space: nowrap;
  text-shadow: 0 2px 22px rgba(20, 8, 10, 0.34);
}

.divisions-photo-hero__lockup .cta--glass {
  margin-top: clamp(28px, 3.2vw, 48px);
  min-width: min(100%, 300px);
}

@media (max-width: 600px) {
  .divisions-photo-hero__lockup {
    max-width: none;
  }

  .divisions-photo-hero__lockup .eyebrow,
  .divisions-photo-hero .page-hero__content h1 {
    white-space: normal;
  }

  .divisions-photo-hero__lockup .cta--glass {
    width: 100%;
    min-width: 0;
  }
}

/* Projects hero (page-hero--image): use a single column so the eyebrow
 * sits directly above the big H1 (instead of grid auto-placement). */
.projects-page .page-hero--adaptive-immersive .page-hero__content {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.projects-hero__heading {
  max-width: min(100%, 14em);
}

.projects-hero__heading .eyebrow {
  margin-bottom: clamp(14px, 1.5vw, 22px);
  font-size: clamp(13px, 0.85vw, 16px);
  letter-spacing: 0.13em;
  white-space: nowrap;
}

.projects-page .page-hero__content h1 {
  max-width: none;
  margin: 0;
  white-space: nowrap;
}

.projects-page .page-hero__content > p {
  margin-top: clamp(18px, 2vw, 28px);
  font-size: clamp(18px, 1.05vw, 22px);
  line-height: 1.55;
}

/* Careers photo hero: the source image is intentionally bright, so the
 * layered veil protects contrast for both the overlay navigation and copy. */
.careers-photo-hero .page-hero__art {
  object-position: center center;
}

.careers-photo-hero .page-hero__veil {
  background:
    linear-gradient(180deg, rgba(20, 8, 10, 0.62) 0%, rgba(20, 8, 10, 0.2) 28%, transparent 52%),
    linear-gradient(0deg, rgba(20, 8, 10, 0.84) 0%, rgba(20, 8, 10, 0.42) 48%, rgba(20, 8, 10, 0.08) 76%),
    linear-gradient(90deg, rgba(20, 8, 10, 0.34) 0%, transparent 72%);
}

.careers-photo-hero__heading .eyebrow {
  margin-bottom: clamp(16px, 1.6vw, 24px);
  color: rgba(255, 255, 255, 0.82);
}

.careers-photo-hero .page-hero__content h1,
.careers-photo-hero .page-hero__content > p {
  color: #fff;
  text-shadow: 0 2px 22px rgba(20, 8, 10, 0.34);
}

@media (max-width: 600px) {
  .careers-page .careers-photo-hero.page-hero--adaptive-immersive .page-hero__content > p {
    width: min(100%, 31ch);
    max-width: 31ch;
    font-size: clamp(17px, 4.8vw, 19px);
    line-height: 1.42;
  }
}

/* Investors photo hero: single bottom lockup + matched CTA pair. */
.investors-photo-hero .page-hero__art {
  object-position: center 46%;
}

.investors-photo-hero .page-hero__veil {
  background:
    linear-gradient(180deg, rgba(20, 8, 10, 0.56) 0%, rgba(20, 8, 10, 0.18) 28%, transparent 52%),
    linear-gradient(0deg, rgba(20, 8, 10, 0.82) 0%, rgba(20, 8, 10, 0.4) 46%, rgba(20, 8, 10, 0.08) 74%),
    linear-gradient(90deg, rgba(20, 8, 10, 0.4) 0%, rgba(20, 8, 10, 0.14) 42%, transparent 70%);
}

.investors-photo-hero .page-hero__content {
  grid-template-columns: minmax(0, 1fr);
  align-content: end;
  gap: 0;
  padding-bottom: clamp(56px, 7vh, 96px);
}

.investors-photo-hero__lockup {
  max-width: min(100%, 42rem);
}

.investors-photo-hero__lockup .eyebrow {
  margin-bottom: clamp(16px, 1.6vw, 24px);
  color: rgba(255, 255, 255, 0.82);
}

.investors-photo-hero .page-hero__content h1 {
  max-width: none;
  margin: 0;
  color: #fff;
  overflow: visible;
  white-space: nowrap;
  text-shadow: 0 2px 22px rgba(20, 8, 10, 0.34);
}

.investors-photo-hero__lead {
  margin: clamp(18px, 2vw, 28px) 0 0;
  max-width: 36ch;
  color: #fff;
  font-size: clamp(18px, 1.25vw, 22px);
  letter-spacing: -0.02em;
  line-height: 1.45;
  text-shadow: 0 2px 22px rgba(20, 8, 10, 0.34);
}

.investors-photo-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 14px;
  margin-top: clamp(28px, 3vw, 42px);
}

.investors-photo-hero__actions .cta {
  margin-top: 0;
  min-width: min(100%, 280px);
  flex: 1 1 240px;
}

.investors-photo-hero__actions .cta--glass {
  background: rgba(102, 0, 51, 0.78);
  backdrop-filter: blur(6px);
}

.cta--ghost {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(6px);
}

.cta--ghost:hover,
.cta--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 600px) {
  .investors-photo-hero .page-hero__content h1 {
    white-space: normal;
  }

  .investors-page .investors-photo-hero.page-hero--adaptive-immersive .investors-photo-hero__lead {
    width: min(100%, 34ch);
    max-width: 34ch;
    font-size: clamp(17px, 4.8vw, 19px);
    line-height: 1.42;
  }

  .investors-photo-hero__actions .cta {
    flex: 1 1 100%;
    min-width: 0;
  }
}

.page-hero__content {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr minmax(260px, 0.52fr);
  align-items: end;
  padding-block: clamp(64px, 8vw, 100px);
  gap: clamp(40px, 9vw, 140px);
}

.page-hero__content h1 {
  font-size: clamp(62px, 8vw, 116px);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.page-hero__content > p {
  max-width: 520px;
  padding-bottom: 8px;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.section-intro {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  align-items: start;
  gap: clamp(45px, 10vw, 150px);
}

.section-intro__label {
  color: var(--wine);
  font-size: 14px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-intro__copy {
  font-size: clamp(29px, 3.2vw, 46px);
  letter-spacing: -0.035em;
  line-height: 1.22;
}

.section-intro__copy p + p {
  margin-top: 28px;
  color: rgba(45, 23, 25, 0.68);
  font-size: clamp(17px, 1.45vw, 20px);
  letter-spacing: 0;
  line-height: 1.55;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(64px, 8vw, 112px);
  gap: 24px;
}

.region-card {
  position: relative;
  min-height: clamp(570px, 48vw, 700px);
  overflow: hidden;
  color: white;
  background: var(--ink);
  isolation: isolate;
}

.region-card--wide {
  grid-column: 1 / -1;
  min-height: clamp(520px, 48vw, 680px);
}

.region-card > picture,
.region-card > img,
.region-card__veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.region-card > picture {
  display: block;
}

.region-card > picture img,
.region-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease);
}

.region-card:hover > picture img,
.region-card:hover > img {
  transform: scale(1.025);
}

.region-card__veil {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(23, 9, 11, 0.34), rgba(23, 9, 11, 0.08) 42%),
    linear-gradient(0deg, rgba(23, 9, 11, 0.82), rgba(23, 9, 11, 0.04) 65%);
}

.region-card__content {
  display: flex;
  min-height: inherit;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 4vw, 54px);
  gap: 70px;
}

.region-card--wide .region-card__content {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.62fr);
  align-items: end;
}

.region-card__heading {
  align-self: start;
}

.region-card__heading p {
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.region-card__heading h2 {
  margin-top: 12px;
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.region-card__details {
  max-width: 540px;
}

.region-card__details > p {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.48;
}

.region-card__details ul {
  display: flex;
  flex-wrap: wrap;
  margin: 26px 0 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}

.region-card__details li {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  font-size: 12px;
}

.region-card__details a {
  display: inline-block;
  margin-top: 28px;
  color: inherit;
  text-underline-offset: 5px;
}

.region-card__overlay-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.region-card__overlay-link:focus-visible {
  outline: 2px solid var(--wine-bright);
  outline-offset: 6px;
}

.region-card__explore {
  display: inline-block;
  margin-top: 28px;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

.regional-switcher {
  display: flex;
  padding-block: 22px;
  border-bottom: 1px solid rgba(45, 23, 25, 0.16);
  gap: clamp(22px, 4vw, 58px);
}

.regional-switcher a {
  position: relative;
  color: var(--ink-secondary);
  text-decoration: none;
}

.regional-switcher a:hover,
.regional-switcher a[aria-current="page"] {
  color: var(--ink);
}

.regional-switcher a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: -23px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--wine);
}

.regional-projects-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(48px, 7vw, 90px);
  gap: 50px;
}

.regional-projects-head > p {
  max-width: 470px;
  padding-bottom: 8px;
  color: rgba(45, 23, 25, 0.66);
  font-size: 18px;
  line-height: 1.5;
}

.portfolio-rail-copy {
  max-width: 500px;
  padding-bottom: 8px;
}

.portfolio-rail-copy p {
  color: rgba(45, 23, 25, 0.72);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.5;
}

.portfolio-rail-copy span {
  display: block;
  margin-top: 14px;
  color: var(--ink-secondary-on-muted);
  font-size: 13px;
}

.portfolio-carousel {
  position: relative;
}

.portfolio-viewport {
  padding-block: 5px 8px;
}

.portfolio-track {
  align-items: stretch;
}

.portfolio-slide {
  width: min(
    clamp(310px, 34vw, 480px),
    max(240px, calc(133svh - 133px))
  );
}

.portfolio-card {
  display: flex;
  height: 100%;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(45, 23, 25, 0.1);
  text-decoration: none;
  transition: border-color 300ms ease, transform 450ms var(--ease);
}

.portfolio-card:hover {
  border-color: rgba(124, 0, 60, 0.42);
  transform: translateY(-5px);
}

.portfolio-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #c8c4c2;
}

.portfolio-card__media picture {
  width: 100%;
  height: 100%;
}

.portfolio-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 10, 12, 0.34), transparent 38%, rgba(20, 10, 12, 0.12));
  content: "";
  pointer-events: none;
}

.portfolio-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease);
}

.portfolio-card:hover .portfolio-card__media img {
  transform: scale(1.035);
}

.portfolio-card__sector {
  position: absolute;
  z-index: 1;
  top: 22px;
  left: 22px;
  color: white;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portfolio-card__content {
  display: flex;
  min-height: 176px;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(24px, 2.5vw, 34px);
}

.portfolio-card__content h3 {
  font-size: clamp(27px, 2.4vw, 36px);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.portfolio-card__content p {
  margin-top: 15px;
  color: rgba(45, 23, 25, 0.65);
  font-size: 15px;
}

.portfolio-card__content > span {
  margin-top: auto;
  padding-top: 22px;
  color: var(--wine);
  font-size: 13px;
}

.portfolio-carousel > .carousel-arrow {
  top: min(clamp(116px, 12.75vw, 180px), max(90px, calc(50svh - 50px)));
}

.portfolio-rail-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: clamp(32px, 4vw, 54px);
  gap: 40px;
}

.portfolio-rail-footer p {
  color: var(--ink-secondary-on-muted);
  font-size: 14px;
}

.portfolio-rail-footer p strong {
  margin-right: 6px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 400;
}

.portfolio-rail-footer .carousel-progress {
  width: min(420px, 46%);
  margin-top: 0;
}

.project-detail-hero {
  position: relative;
  min-height: min(max(680px, 88svh), 1080px);
  overflow: hidden;
  color: white;
  background: var(--ink);
  isolation: isolate;
}

.project-detail-hero__image,
.project-detail-hero__veil {
  position: absolute;
  inset: 0;
}

.project-detail-hero__image {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-detail-hero__image--arteria {
  object-position: center 48%;
}

@media (min-width: 1025px) {
  .project-skyview-page .project-detail-hero__image {
    object-position: center 76%;
  }
}

.project-detail-hero__veil {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(25, 12, 14, 0.52), transparent 42%),
    linear-gradient(0deg, rgba(25, 12, 14, 0.82), transparent 62%);
}

.project-detail-hero__content {
  display: flex;
  min-height: inherit;
  flex-direction: column;
  justify-content: space-between;
  padding-top: calc(var(--header-height) + clamp(30px, 5vw, 72px));
  padding-bottom: clamp(46px, 6vw, 86px);
}

.project-detail-back {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  text-decoration: none;
}

.project-detail-back::before {
  content: "←";
  font-size: 22px;
  transition: transform 240ms var(--ease);
}

.project-detail-back:hover::before {
  transform: translateX(-5px);
}

.project-detail-kicker {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-detail-hero h1 {
  max-width: 1120px;
  font-size: clamp(62px, 8.4vw, 120px);
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.project-overview__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.62fr);
  align-items: start;
  gap: clamp(68px, 10vw, 160px);
}

.project-overview__lead,
.project-overview__statement h2 {
  max-width: 820px;
  margin-top: 26px;
  font-size: clamp(20px, 1.85vw, 28px);
  letter-spacing: -0.028em;
  line-height: 1.32;
  text-wrap: pretty;
}

.project-official-link {
  display: flex;
  width: min(100%, 430px);
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(32px, 4vw, 52px);
  padding-block: 19px;
  border-top: 1px solid rgba(45, 23, 25, 0.2);
  border-bottom: 1px solid rgba(45, 23, 25, 0.2);
  color: var(--wine);
  text-decoration: none;
  transition: padding 280ms var(--ease);
}

.project-official-link span:last-child {
  font-size: 20px;
  transform-origin: center;
  transition: transform 280ms var(--ease);
}

.project-official-link:hover,
.project-official-link:focus-visible {
  padding-inline: 10px;
}

.project-official-link:hover span:last-child,
.project-official-link:focus-visible span:last-child {
  transform: rotate(-25deg);
}

.project-facts {
  border-top: 1px solid rgba(45, 23, 25, 0.22);
}

.project-facts > div {
  display: grid;
  grid-template-columns: minmax(105px, 0.58fr) 1fr;
  padding-block: 18px;
  border-bottom: 1px solid rgba(45, 23, 25, 0.16);
  gap: 24px;
}

.project-facts dt {
  color: var(--ink-secondary);
  font-size: 14px;
}

.project-facts dd {
  font-size: 16px;
}

.project-gallery-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.45fr);
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 90px);
  gap: clamp(50px, 8vw, 120px);
}

.project-gallery-heading > p {
  max-width: 470px;
  padding-bottom: 10px;
  color: rgba(45, 23, 25, 0.66);
  font-size: 17px;
  line-height: 1.5;
}

.project-gallery-track {
  align-items: flex-start;
}

.project-gallery-slide {
  position: relative;
  width: min(84vw, 1040px, max(440px, calc(160svh - 288px)));
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #c8c4c2;
}

.project-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease);
}

.project-gallery-slide:hover img {
  transform: scale(1.02);
}

/*
 * Mixed portrait and landscape galleries.
 *
 * Every slide keeps the height a 16:10 slide has and lets its width follow the
 * image's own proportions, so a tall image is shown whole instead of being
 * cropped into a landscape frame. Very wide images stop at the usual maximum
 * width and simply become shorter.
 */
.project-gallery-slide--fit {
  --gallery-height: calc(
    min(84vw, 1040px, max(440px, calc(160svh - 288px))) / 1.6
  );
  width: min(
    calc(var(--gallery-height) * var(--slide-aspect, 1.6)),
    min(84vw, 1040px)
  );
  height: auto;
  aspect-ratio: var(--slide-ratio, 16 / 10);
  background: transparent;
}

.project-gallery-slide--fit img {
  object-fit: contain;
}

.project-gallery-slide--fit:hover img {
  transform: none;
}

.project-gallery-slide--portrait {
  width: min(70vw, 620px, max(190px, calc(75svh - 135px)));
  aspect-ratio: 3 / 4;
  background: transparent;
}

.project-gallery-slide--portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-gallery-slide--portrait:hover img {
  transform: none;
}

.project-gallery-slide--arteria-brand {
  display: grid;
  place-items: center;
  background: #f2f0eb;
}

.project-gallery-slide--arteria-brand img {
  width: min(72%, 720px);
  height: auto;
  object-fit: contain;
}

.project-gallery-slide--arteria-brand:hover img {
  transform: scale(1.015);
}

.project-gallery-slide figcaption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  padding: 8px 10px;
  color: white;
  background: rgba(25, 12, 14, 0.58);
  font-size: 11px;
  letter-spacing: 0.1em;
  display: none;
}

.project-gallery-carousel > .carousel-progress {
  width: min(420px, 46%);
}

.project-perspective {
  padding-block: clamp(72px, 8vw, 116px);
  background: var(--surface);
}

.project-perspective__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  padding-block: clamp(42px, 5vw, 68px);
  border-top: 1px solid rgba(45, 23, 25, 0.18);
  border-bottom: 1px solid rgba(45, 23, 25, 0.18);
  gap: clamp(48px, 8vw, 120px);
}

.project-perspective__copy {
  max-width: 860px;
}

.project-perspective__copy h2 {
  margin-top: 22px;
  font-size: clamp(38px, 4.6vw, 66px);
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.project-perspective__copy > p:last-child {
  max-width: 680px;
  margin-top: 22px;
  color: rgba(45, 23, 25, 0.66);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.52;
}

.project-perspective__link {
  display: inline-flex;
  align-items: center;
  padding-bottom: 2px;
  gap: 22px;
  color: var(--wine);
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
}

.project-perspective__icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(124, 0, 60, 0.45);
  border-radius: 50%;
  transition:
    color 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

.project-perspective__icon svg {
  transform: rotate(0deg);
  transition: transform 280ms var(--ease);
}

.project-perspective__link:hover .project-perspective__icon,
.project-perspective__link:focus-visible .project-perspective__icon {
  color: white;
  background: var(--wine);
  border-color: var(--wine);
}

.project-perspective__link:hover .project-perspective__icon svg,
.project-perspective__link:focus-visible .project-perspective__icon svg {
  transform: rotate(-25deg);
}

/* Contextual project discovery */
.related-projects {
  overflow: hidden;
  background: #f7f5f3;
}

.related-projects__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(44px, 5.5vw, 78px);
  gap: clamp(34px, 7vw, 110px);
}

.related-projects__header h2 {
  margin-top: 14px;
  font-size: clamp(58px, 7vw, 104px);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.related-projects__all {
  display: inline-flex;
  flex: none;
  align-items: center;
  padding-bottom: 8px;
  gap: 18px;
  color: var(--ink);
  border-bottom: 1px solid rgba(45, 23, 25, 0.34);
  font-size: clamp(15px, 1.15vw, 18px);
  text-decoration: none;
  transition: color 220ms ease, border-color 220ms ease;
}

.related-projects__all > span:last-child {
  display: grid;
  width: 28px;
  place-items: center;
  color: var(--wine);
}

.related-projects__all svg {
  display: block;
  width: 26px;
  height: 16px;
  transform: rotate(0deg);
  transform-origin: 50% 50%;
  transition: transform 280ms var(--ease);
}

.related-projects__all:hover,
.related-projects__all:focus-visible {
  color: var(--wine);
  border-color: var(--wine);
}

.related-projects__all:hover svg,
.related-projects__all:focus-visible svg {
  transform: rotate(-25deg);
}

.related-projects__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.related-projects__viewport::-webkit-scrollbar {
  display: none;
}

.related-projects__track {
  gap: clamp(20px, 2.5vw, 38px);
}

.related-project-card {
  width: calc((100% - clamp(20px, 2.5vw, 38px)) / 2);
  min-width: min(620px, calc((100vw - (2 * var(--gutter)) - clamp(20px, 2.5vw, 38px)) / 2));
  scroll-snap-align: start;
}

.related-project-card a {
  display: block;
  color: white;
  text-decoration: none;
}

.related-project-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--muted);
}

.related-project-card__media picture,
.related-project-card__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.related-project-card__media img {
  object-fit: cover;
  transition: transform 900ms var(--ease), filter 500ms ease;
}

.related-project-card__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 10, 12, 0.03) 20%, rgba(25, 12, 16, 0.16) 52%, rgba(28, 13, 17, 0.9) 100%),
    linear-gradient(90deg, rgba(30, 14, 18, 0.26), transparent 58%);
  transition: background-color 420ms ease;
}

.related-project-card__copy {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(24px, 3vw, 42px);
}

.related-project-card__copy p {
  margin-bottom: clamp(12px, 1.2vw, 18px);
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(11px, 0.82vw, 13px);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.related-project-card__copy h3 {
  max-width: 90%;
  font-size: clamp(34px, 3.25vw, 54px);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.related-project-card__copy > span {
  display: block;
  max-width: 620px;
  margin-top: clamp(13px, 1.4vw, 19px);
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.45;
}

.related-project-card__arrow {
  position: absolute;
  z-index: 3;
  top: clamp(20px, 2vw, 30px);
  right: clamp(20px, 2vw, 30px);
  display: grid;
  width: clamp(46px, 4vw, 60px);
  height: clamp(46px, 4vw, 60px);
  place-items: center;
  color: white;
  background: rgba(32, 16, 20, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.related-project-card__arrow svg {
  display: block;
  width: 25px;
  height: 16px;
  transform: rotate(0deg);
  transform-origin: 50% 50%;
  transition: transform 280ms var(--ease);
}

.related-project-card a:hover .related-project-card__media img,
.related-project-card a:focus-visible .related-project-card__media img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.035);
}

.related-project-card a:hover .related-project-card__arrow svg,
.related-project-card a:focus-visible .related-project-card__arrow svg {
  transform: rotate(-25deg);
}

.related-projects__carousel .carousel-arrow {
  width: clamp(54px, 4.8vw, 72px);
  height: clamp(54px, 4.8vw, 72px);
  background: rgba(91, 0, 45, 0.82);
}

.related-projects__carousel .carousel-arrow--prev {
  left: calc(clamp(54px, 4.8vw, 72px) / -2);
}

.related-projects__carousel .carousel-arrow--next {
  right: calc(clamp(54px, 4.8vw, 72px) / -2);
}

.related-projects__carousel .carousel-arrow:disabled {
  opacity: 0;
  pointer-events: none;
}

.related-projects__carousel > .carousel-progress {
  width: min(420px, 46%);
}

@media (max-width: 900px) {
  .related-projects__header {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 40px;
    gap: 24px;
  }

  .related-projects__header h2 {
    font-size: clamp(52px, 12vw, 76px);
  }

  .related-project-card {
    width: min(82vw, 620px);
    min-width: min(82vw, 620px);
  }
}

@media (max-width: 600px) {
  .related-projects__all {
    width: 100%;
    justify-content: space-between;
  }

  .related-projects__track {
    gap: 14px;
  }

  .related-project-card {
    width: calc(100vw - 54px);
    min-width: calc(100vw - 54px);
  }

  .related-project-card__media {
    aspect-ratio: 4 / 5;
  }

  .related-project-card__copy {
    padding: 24px 22px;
  }

  .related-project-card__copy h3 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .related-project-card__copy > span {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .related-projects__carousel .carousel-arrow {
    display: none;
  }

  .related-projects__carousel > .carousel-progress {
    width: 100%;
  }
}

.projects-grid--single {
  grid-template-columns: minmax(0, 860px);
}

.portfolio-note {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  max-width: 1080px;
  margin-top: clamp(52px, 7vw, 90px);
  padding-top: 30px;
  border-top: 1px solid rgba(45, 23, 25, 0.2);
  gap: 40px;
}

.portfolio-note > p:last-child {
  color: rgba(45, 23, 25, 0.68);
  font-size: 17px;
  line-height: 1.58;
}

.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.88fr);
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
}

.editorial-split--reverse .editorial-media {
  order: -1;
}

.editorial-copy h2 {
  font-size: clamp(44px, 5.4vw, 76px);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.editorial-copy p {
  margin-top: 28px;
  color: rgba(45, 23, 25, 0.72);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.56;
}

.editorial-copy a {
  display: inline-block;
  margin-top: 30px;
  color: var(--wine);
}

.editorial-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--muted-light);
}

.editorial-media > picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.editorial-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Careers teamwork image: let the media block follow the source portrait
 * instead of presenting it inside an oversized landscape placeholder. */
.editorial-media--careers-teamwork {
  width: min(100%, 420px);
  min-height: 0;
  aspect-ratio: 3 / 4;
  justify-self: end;
  background: transparent;
}

.editorial-media--careers-teamwork > picture {
  padding: 0;
}

.editorial-media--careers-teamwork img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: none;
}

@media (max-width: 1024px) {
  .editorial-media--careers-teamwork {
    justify-self: center;
  }
}

@media (max-width: 600px) {
  .editorial-media--careers-teamwork {
    width: min(100%, 320px);
  }
}

.timeline {
  margin-top: clamp(56px, 7vw, 96px);
}

.timeline article {
  display: grid;
  grid-template-columns: 160px 1fr;
  padding-block: 28px;
  border-top: 1px solid rgba(45, 23, 25, 0.18);
  gap: 34px;
}

.timeline time {
  color: var(--wine);
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 300;
}

.timeline h3 {
  font-size: clamp(25px, 2.7vw, 38px);
  letter-spacing: -0.03em;
}

.timeline p {
  max-width: 720px;
  margin-top: 10px;
  color: rgba(45, 23, 25, 0.66);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(54px, 7vw, 90px);
  gap: 1px;
  background: rgba(45, 23, 25, 0.15);
  border: 1px solid rgba(45, 23, 25, 0.15);
}

.value-card {
  min-height: 310px;
  padding: clamp(28px, 3vw, 42px);
  background: white;
}

.value-card span,
.social-impact-principles span,
.social-impact-program__index,
.division-item__index {
  color: var(--wine);
  font-size: clamp(15px, 0.95vw, 18px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.value-card h3 {
  margin-top: 90px;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.035em;
}

.value-card p {
  margin-top: 16px;
  color: rgba(45, 23, 25, 0.65);
}

.about-esg__cards {
  overflow: hidden;
}

.about-esg__heading {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 40px);
}

.about-esg__heading .section-title {
  font-size: clamp(44px, 4.8vw, 72px);
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.about-esg__card {
  position: relative;
  background: white;
  overflow: hidden;
  isolation: isolate;
}

.about-esg__card::before {
  position: absolute;
  top: clamp(28px, 3vw, 42px);
  right: clamp(14px, 2vw, 24px);
  width: clamp(110px, 11vw, 150px);
  height: clamp(82px, 8.5vw, 112px);
  content: "";
  background-repeat: no-repeat;
  background-position: top right;
  background-size: contain;
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}

.about-esg__card > * {
  position: relative;
  z-index: 1;
}

.about-esg__card--environmental::before {
  background-image: url("../images/environmental-line.svg");
}

.about-esg__card--social::before {
  background-image: url("../images/social-line.svg");
}

.about-esg__card--governance::before {
  background-image: url("../images/governance-line.svg");
}

.about-impact-feature {
  overflow: hidden;
  background: var(--surface);
}

.about-impact-feature__grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.94fr) minmax(0, 1.06fr);
  align-items: center;
  gap: clamp(52px, 9vw, 138px);
}

.about-impact-feature__media {
  position: relative;
  min-height: clamp(470px, 43vw, 620px);
  overflow: hidden;
  background: var(--muted);
}

.about-impact-feature__media::after {
  position: absolute;
  inset: 0;
  content: "";
  box-shadow: inset 0 0 0 1px rgba(45, 23, 25, 0.08);
  pointer-events: none;
}

.about-impact-feature__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% center;
  transition: transform 900ms var(--ease);
}

.about-impact-feature__media:hover img {
  transform: scale(1.025);
}

.about-impact-feature__copy h2 {
  max-width: 730px;
  margin-top: 22px;
  font-size: clamp(44px, 5.6vw, 78px);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.about-impact-feature__copy > p:not(.section-intro__label) {
  max-width: 650px;
  margin-top: 30px;
  color: rgba(45, 23, 25, 0.69);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.58;
}

.impact-text-link {
  display: flex;
  width: min(100%, 390px);
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  padding: 22px 0;
  border-top: 1px solid rgba(45, 23, 25, 0.24);
  border-bottom: 1px solid rgba(45, 23, 25, 0.24);
  color: var(--wine);
  text-decoration: none;
  transition: padding 280ms var(--ease);
}

.impact-text-link span:last-child {
  font-size: 24px;
  transform-origin: 50% 50%;
  transition: transform 280ms var(--ease);
}

.impact-text-link:hover,
.impact-text-link:focus-visible {
  padding-inline: 10px;
}

.impact-text-link:hover span:last-child,
.impact-text-link:focus-visible span:last-child {
  transform: rotate(-25deg);
}

.social-impact-hero {
  min-height: 100svh;
}

.social-impact-hero .page-hero__art {
  object-position: center top;
}

.social-impact-hero .page-hero__veil {
  background:
    linear-gradient(90deg, rgba(23, 9, 11, 0.48), rgba(23, 9, 11, 0.04) 66%),
    linear-gradient(0deg, rgba(23, 9, 11, 0.74), rgba(23, 9, 11, 0.05) 65%);
}

.social-impact-hero__content {
  min-height: inherit;
  grid-template-rows: auto minmax(80px, 1fr) auto;
  align-content: stretch;
  padding-top: calc(var(--header-height) + clamp(30px, 5vw, 72px));
}

.social-impact-back {
  grid-column: 1 / -1;
  grid-row: 1;
  align-self: start;
}

.social-impact-hero__heading {
  grid-column: 1;
  grid-row: 3;
  align-self: end;
}

.social-impact-hero__content > p {
  grid-column: 2;
  grid-row: 3;
  align-self: end;
}

.social-impact-hero__eyebrow {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.1vw, 21px);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.social-impact-intro__title {
  font-size: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

.social-impact-intro .section-intro__copy > p {
  margin-top: 30px;
  color: rgba(45, 23, 25, 0.68);
  font-size: clamp(17px, 1.45vw, 20px);
  letter-spacing: 0;
  line-height: 1.58;
}

.social-impact-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(68px, 8vw, 112px);
  border-top: 1px solid rgba(45, 23, 25, 0.18);
  border-bottom: 1px solid rgba(45, 23, 25, 0.18);
}

.social-impact-principles article {
  min-height: 290px;
  padding: clamp(28px, 3vw, 42px);
  border-right: 1px solid rgba(45, 23, 25, 0.18);
}

.social-impact-principles article:last-child {
  border-right: 0;
}

.social-impact-principles h3 {
  margin-top: clamp(72px, 7vw, 104px);
  font-size: clamp(27px, 2.8vw, 40px);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.social-impact-principles p {
  margin-top: 16px;
  color: var(--ink-secondary-on-muted);
  line-height: 1.55;
}

.social-impact-programs__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: clamp(42px, 8vw, 124px);
}

.social-impact-programs__heading > p {
  max-width: 520px;
  padding-bottom: 0.65em;
  color: rgba(45, 23, 25, 0.66);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.58;
}

.social-impact-program-list {
  margin-top: clamp(60px, 8vw, 110px);
  border-top: 1px solid rgba(45, 23, 25, 0.18);
}

.social-impact-program {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: stretch;
  padding-block: clamp(42px, 5vw, 72px);
  border-bottom: 1px solid rgba(45, 23, 25, 0.18);
  gap: clamp(46px, 8vw, 126px);
}

.social-impact-program--reverse {
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
}

.social-impact-program--reverse figure {
  order: 2;
}

.social-impact-program figure {
  position: relative;
  min-height: clamp(390px, 36vw, 520px);
  overflow: hidden;
  background: #c9c5c2;
}

.social-impact-program figure::after {
  position: absolute;
  inset: 0;
  content: "";
  box-shadow: inset 0 0 0 1px rgba(45, 23, 25, 0.08);
  pointer-events: none;
}

.social-impact-program figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
  transition: filter 600ms ease, transform 900ms var(--ease);
}

.social-impact-program:hover figure img {
  filter: saturate(1);
  transform: scale(1.02);
}

.social-impact-program__copy {
  align-self: center;
}

.social-impact-program__copy h3 {
  margin-top: 20px;
  font-size: clamp(40px, 5vw, 70px);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.social-impact-program__copy > p:not(.social-impact-program__index) {
  margin-top: 25px;
  color: rgba(45, 23, 25, 0.68);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.62;
}

.social-impact-metrics {
  position: relative;
  overflow: hidden;
  padding-block: clamp(76px, 7vw, 104px);
  background: #d1cfce;
}

.social-impact-metrics__inner {
  display: block;
}

.social-impact-metrics__content {
  min-width: 0;
}

.social-impact-metrics__heading {
  max-width: 900px;
}

.social-impact-metrics__heading .section-title {
  margin-top: 18px;
  font-size: clamp(54px, 5.8vw, 86px);
}

.social-impact-metrics__heading > p:last-child {
  max-width: 720px;
  margin-top: 24px;
  color: rgba(45, 23, 25, 0.7);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.58;
}

.social-impact-metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(44px, 5vw, 68px);
  border-top: 1px solid rgba(45, 23, 25, 0.2);
  border-bottom: 1px solid rgba(45, 23, 25, 0.2);
}

.social-impact-metrics__grid > div {
  display: flex;
  min-height: clamp(170px, 14vw, 210px);
  min-width: 0;
  flex-direction: column;
  padding: clamp(24px, 2.4vw, 34px);
}

.social-impact-metrics__grid > div:not(:last-child) {
  border-right: 1px solid rgba(45, 23, 25, 0.2);
}

.social-impact-metrics__grid dt {
  order: 2;
  max-width: 170px;
  margin-top: auto;
  padding-top: 42px;
  color: var(--ink-secondary-on-muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.social-impact-metrics__grid dd {
  order: 1;
  font-size: clamp(50px, 5vw, 76px);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.95;
  white-space: nowrap;
}

.social-impact-statement {
  padding-block: clamp(96px, 12vw, 180px);
  color: white;
  background: var(--ink);
}

.social-impact-statement__inner {
  display: grid;
  grid-template-columns: minmax(160px, 0.4fr) minmax(0, 1.6fr);
  gap: clamp(48px, 9vw, 140px);
}

.social-impact-statement .section-intro__label {
  color: rgba(255, 255, 255, 0.58);
}

.social-impact-statement blockquote {
  max-width: 1040px;
  font-size: clamp(48px, 6.5vw, 92px);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.social-impact-cta__label {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.social-impact-page .page-cta__inner > div {
  max-width: 870px;
}

@media (min-width: 1600px) and (min-height: 900px) {
  .social-impact-hero__content {
    padding-bottom: clamp(124px, 12vh, 180px);
  }

  .social-impact-hero .page-hero__content h1 {
    font-size: clamp(108px, 6vw, 132px);
  }

  .social-impact-hero__content > p {
    max-width: 580px;
    font-size: clamp(22px, 1.2vw, 27px);
  }
}

@media (min-width: 1441px) and (max-width: 1999px) {
  .social-impact-hero__content {
    width: min(100%, var(--container));
  }
}

@media (min-width: 2000px) {
  .social-impact-hero__content {
    padding-inline: var(--wide-header-gutter);
    padding-top: calc(var(--header-height) + clamp(54px, 4vw, 96px));
    padding-bottom: clamp(170px, 14vh, 300px);
  }

  .social-impact-back {
    gap: 15px;
    font-size: clamp(18px, 0.75vw, 21px);
  }

  .social-impact-back::before {
    font-size: clamp(23px, 0.95vw, 27px);
  }

  .social-impact-hero__eyebrow {
    margin-bottom: clamp(22px, 1.2vw, 30px);
    font-size: clamp(15px, 0.68vw, 18px);
  }

  .social-impact-hero .page-hero__content h1 {
    font-size: clamp(132px, 5.8vw, 162px);
    line-height: 0.92;
  }

  .social-impact-hero__content > p {
    max-width: 670px;
    padding-bottom: 0.15em;
    font-size: clamp(25px, 1.12vw, 32px);
    line-height: 1.42;
  }
}

.division-list {
  margin-top: clamp(64px, 8vw, 112px);
}

.division-item {
  display: grid;
  grid-template-columns: 0.28fr 0.9fr 1fr;
  min-height: 300px;
  padding-block: clamp(35px, 4vw, 56px);
  border-top: 1px solid rgba(45, 23, 25, 0.2);
  gap: clamp(28px, 5vw, 80px);
}

.division-item h2 {
  font-size: clamp(35px, 4vw, 58px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.division-item__details p {
  color: rgba(45, 23, 25, 0.68);
  font-size: 18px;
  line-height: 1.55;
}

.division-item__details ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 30px 0 0;
  padding: 0;
  gap: 10px 24px;
  list-style: none;
}

.division-item__details li {
  position: relative;
  padding-left: 16px;
}

.division-item__details li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  background: var(--wine);
  border-radius: 50%;
}

/* The link after a capability list had no separation from the last bullet row.
   It takes the same 30px step the list takes from the paragraph above it. */
.division-item__details ul + p {
  margin-top: 30px;
}

.division-item__details > p a {
  color: var(--wine);
  text-decoration: none;
}

.division-item__details > p a:hover,
.division-item__details > p a:focus-visible {
  text-decoration: underline;
}

.division-team-section {
  overflow: hidden;
  padding-block: clamp(88px, 7vw, 112px);
  background: var(--surface);
}

.division-team-heading {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  margin-bottom: clamp(30px, 3vw, 42px);
  gap: clamp(40px, 6vw, 92px);
}

.division-team-heading .section-title {
  font-size: clamp(54px, 5.6vw, 82px);
  line-height: 1;
}

.division-team-heading .leadership-intro {
  max-width: 410px;
  font-size: clamp(16px, 1.2vw, 18px);
}

.segment-tabs,
.division-team-tabs,
.project-gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.segment-tab,
.division-team-tab,
.project-gallery-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(45, 23, 25, 0.18);
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  cursor: pointer;
  font: inherit;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.segment-tab:hover,
.division-team-tab:hover,
.project-gallery-tab:hover {
  border-color: rgba(45, 23, 25, 0.38);
}

.segment-tab[aria-selected="true"],
.division-team-tab[aria-selected="true"],
.project-gallery-tab[aria-selected="true"] {
  color: white;
  background: linear-gradient(135deg, #73003a, #8d2355);
  border-color: #73003a;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 10px 22px rgba(115, 0, 58, 0.16);
}

.segment-tab:focus-visible,
.division-team-tab:focus-visible,
.project-gallery-tab:focus-visible {
  position: relative;
  z-index: 1;
  outline: 2px solid var(--wine);
  outline-offset: 3px;
}

.division-team-panel,
.project-gallery-panel.is-entering {
  animation: division-team-enter 260ms var(--ease) both;
}

.division-team-panel[hidden],
.project-gallery-panel[hidden] {
  display: none;
}

.project-gallery-tabs {
  margin: 0 0 clamp(28px, 3.5vw, 42px);
}

.project-gallery-panel .project-gallery-carousel {
  margin-top: 0;
}

.division-team-carousel {
  margin-top: clamp(34px, 3.5vw, 50px);
}

.division-team-carousel .leadership-slide {
  width: clamp(280px, 25vw, 340px);
  min-width: 280px;
}

.division-team-carousel .leadership-card__portrait {
  aspect-ratio: 4 / 5;
}

.division-team-carousel .leadership-card__content {
  min-height: 150px;
  padding: clamp(22px, 2vw, 28px);
}

.division-team-carousel .leadership-card h3 {
  margin-top: 17px;
  font-size: clamp(27px, 2.25vw, 33px);
}

.division-team-carousel .carousel-arrow {
  top: clamp(180px, 15.6vw, 213px);
}

.division-team-carousel .carousel-progress {
  width: min(360px, 40%);
}

.division-team-card__portrait--empty {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 55%),
    #d6d3d1;
}

.division-team-card__portrait--empty::after {
  background: linear-gradient(180deg, transparent 62%, rgba(45, 23, 25, 0.06));
}

@keyframes division-team-enter {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sector-band {
  color: white;
  background: var(--ink);
}

.sector-band .section-title,
.sector-band .lead {
  color: white;
}

.sector-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.sector-list article {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.sector-list span {
  color: rgba(255, 255, 255, 0.5);
}

.sector-list h3 {
  margin-top: 120px;
  font-size: clamp(25px, 2.5vw, 36px);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 54px;
  gap: 10px;
}

.filter-button {
  padding: 11px 18px;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(45, 23, 25, 0.22);
  border-radius: 999px;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.filter-button:hover,
.filter-button.is-active,
.filter-button[aria-pressed="true"] {
  color: white;
  background: var(--wine);
  border-color: var(--wine);
}

.filter-bar--projects .filter-button {
  padding: 12px 22px;
  border-color: rgba(45, 23, 25, 0.18);
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.filter-bar--projects .filter-button:hover,
.filter-bar--projects .filter-button:focus-visible {
  border-color: rgba(45, 23, 25, 0.38);
}

.filter-bar--projects .filter-button.is-active,
.filter-bar--projects .filter-button[aria-pressed="true"] {
  background: linear-gradient(135deg, #73003a, #8d2355);
  border-color: #73003a;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 10px 22px rgba(115, 0, 58, 0.16);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(45px, 6vw, 84px) clamp(22px, 3vw, 42px);
}

.projects-grid + .projects-results {
  margin-top: 32px;
}

.projects-results {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.projects-results .form-status {
  margin: 0;
}

.projects-load-all {
  padding: 4px 0 7px;
  color: var(--wine);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  font: inherit;
  transition: color 180ms ease, border-color 180ms ease;
}

.projects-load-all:hover,
.projects-load-all:focus-visible {
  color: #73003a;
}

.project-grid-card[hidden] {
  display: none;
}

.project-grid-card a {
  display: block;
  text-decoration: none;
}

.project-grid-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--muted);
}

.project-grid-card__media picture {
  width: 100%;
  height: 100%;
}

.project-grid-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease);
}

.project-grid-card a:hover img {
  transform: scale(1.03);
}

.project-grid-card__tags {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  gap: 8px;
}

.project-grid-card__tag {
  padding: 8px 11px;
  color: white;
  background: rgba(45, 23, 25, 0.78);
  font-size: 12px;
  text-transform: uppercase;
  width: fit-content;
}

.project-grid-card h2 {
  margin-top: 20px;
  font-size: clamp(27px, 3vw, 42px);
  letter-spacing: -0.04em;
}

.project-grid-card p {
  margin-top: 8px;
  color: var(--ink-secondary-on-muted);
}

.news-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
}

.news-links a {
  color: var(--wine);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.news-links a:hover {
  color: var(--ink);
}

/* About hero — static office photo + soft cream metrics bar */
.about-feature {
  position: relative;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: white;
  background: var(--muted);
  isolation: isolate;
}

.about-feature__stage {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-feature__art,
.about-feature__stage > picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-feature__stage > picture img,
.about-feature__art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.about-feature__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(17, 7, 9, 0.26), transparent 36%),
    linear-gradient(0deg, rgba(17, 7, 9, 0.22), rgba(17, 7, 9, 0.06) 48%);
  pointer-events: none;
}

.about-feature__content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: calc(var(--header-height) + clamp(48px, 8vh, 100px));
  padding-bottom: clamp(36px, 5vh, 64px);
}

.about-feature__content .eyebrow {
  margin-bottom: clamp(18px, 1.8vw, 26px);
  color: rgba(255, 255, 255, 0.82);
}

.about-feature__content h1 {
  max-width: 12em;
  font-size: clamp(62px, 8vw, 116px);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.about-feature__metrics > .container {
  width: 100%;
}

.about-feature__metrics {
  position: relative;
  z-index: 3;
  color: var(--ink);
  background: rgba(239, 237, 235, 0.82);
  border-top: 1px solid rgba(45, 23, 25, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.about-feature__stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding-block: clamp(34px, 4.2vw, 52px);
}

.about-feature__stats > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding-inline: clamp(12px, 1.2vw, 22px);
  border-right: 1px solid rgba(45, 23, 25, 0.14);
}

.about-feature__stats > div:first-child {
  padding-left: 0;
}

.about-feature__stats > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.about-feature__stats dt {
  display: block;
  min-height: calc(1.35em * 2);
  color: var(--ink-secondary);
  font-size: clamp(12px, 0.85vw, 14px);
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.about-feature__stats dd {
  margin-top: auto;
  padding-top: 14px;
  color: var(--ink);
  font-size: clamp(36px, 3.8vw, 64px);
  font-weight: 300;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.045em;
  line-height: 0.95;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .about-feature__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 28px;
  }

  .about-feature__stats > div:nth-child(3) {
    border-right: 0;
  }

  .about-feature__stats > div:nth-child(4) {
    padding-left: 0;
  }
}

@media (max-width: 700px) {
  .about-feature__content h1 {
    font-size: clamp(48px, 13vw, 64px);
  }

  .about-feature__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 28px;
  }

  .about-feature__stats > div {
    padding-inline: 0 16px;
  }

  .about-feature__stats > div:nth-child(2n) {
    border-right: 0;
    padding-right: 0;
  }

  .about-feature__stats > div:nth-child(3),
  .about-feature__stats > div:nth-child(5) {
    padding-left: 0;
  }

  .about-feature__stats dd {
    font-size: clamp(34px, 9vw, 44px);
  }
}

@media (min-width: 2000px) {
  .about-feature__content h1 {
    font-size: clamp(100px, 5.2vw, 132px);
  }

  .about-feature__stats dd {
    font-size: clamp(52px, 2.8vw, 72px);
  }
}

/* News archive — Penta-inspired feed within Lordship editorial language */
.news-feature {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  color: white;
  background: #171717;
  isolation: isolate;
}

.news-feature__stage {
  position: relative;
  min-height: inherit;
}

.news-feature__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 700ms var(--ease),
    visibility 700ms var(--ease);
}

.news-feature__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.no-js .news-feature__slide {
  position: relative;
  min-height: 70vh;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.no-js .news-feature__slide + .news-feature__slide {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.news-feature__art,
.news-feature__slide > img,
.news-feature__slide > picture {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.news-feature__slide > picture img,
.news-feature__slide > img,
.news-feature__art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.news-feature__slide.is-active .news-feature__art,
.news-feature__slide.is-active > img,
.news-feature__slide.is-active > picture img {
  transform: scale(1);
}

.news-feature__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(17, 7, 9, 0.72), rgba(17, 7, 9, 0.28) 58%, rgba(17, 7, 9, 0.18)),
    linear-gradient(0deg, rgba(17, 7, 9, 0.78), rgba(17, 7, 9, 0.12) 55%);
}

.news-feature__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: calc(var(--header-height) + clamp(48px, 8vh, 96px));
  padding-bottom: clamp(110px, 14vh, 160px);
}

.news-feature__meta {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-feature__content h2 {
  margin-top: clamp(16px, 2vw, 24px);
  max-width: 14em;
  font-size: clamp(36px, 4.8vw, 68px);
  letter-spacing: -0.045em;
  line-height: 1.05;
  text-wrap: balance;
}

.news-feature__content > p {
  margin-top: clamp(18px, 2.2vw, 28px);
  max-width: 36em;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.45;
}

.news-feature__cta {
  display: inline-flex;
  align-items: center;
  margin-top: clamp(24px, 3vw, 36px);
  padding: 14px 22px;
  color: white;
  background: rgba(23, 9, 11, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  transition: background 180ms ease, border-color 180ms ease;
}

.news-feature__cta:hover,
.news-feature__cta:focus-visible {
  background: rgba(124, 0, 60, 0.78);
  border-color: rgba(255, 255, 255, 0.42);
}

.news-feature__controls {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: clamp(28px, 4vh, 48px);
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  pointer-events: none;
}

.news-feature__arrow,
.news-feature__dot {
  pointer-events: auto;
}

.news-feature__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: white;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: opacity 180ms ease, transform 180ms ease;
}

.news-feature__arrow:hover,
.news-feature__arrow:focus-visible {
  transform: scale(1.08);
}

.news-feature__dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-feature__dot {
  position: relative;
  width: 28px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: width 220ms var(--ease);
}

.news-feature__dot::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.34);
  content: "";
  transform: translateY(-50%);
  transition: background 220ms ease;
}

.news-feature__dot.is-active,
.news-feature__dot[aria-selected="true"] {
  width: 52px;
}

.news-feature__dot.is-active::before,
.news-feature__dot[aria-selected="true"]::before {
  background: white;
}

.news-archive {
  padding-top: clamp(64px, 8vw, 112px);
}

.news-archive__intro {
  max-width: 40rem;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.news-archive__intro h2 {
  margin-top: 12px;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.news-archive__intro > p {
  margin-top: clamp(14px, 1.8vw, 22px);
  max-width: 34em;
  color: rgba(45, 23, 25, 0.68);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.45;
}

.news-feed-card__meta {
  color: var(--wine);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-feed-card__more {
  margin-top: auto;
  padding-top: 22px;
  color: var(--wine);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.news-feed-card__more:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.news-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 28px;
  margin-bottom: clamp(36px, 5vw, 56px);
  padding-top: clamp(8px, 1.5vw, 18px);
  border-top: 1px solid rgba(45, 23, 25, 0.12);
}

.news-toolbar .filter-bar {
  margin-bottom: 0;
}

.news-toolbar__count {
  margin: 0;
  color: var(--ink-secondary);
  font-size: 14px;
}

.news-feed {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(42px, 6vw, 72px) clamp(28px, 4vw, 56px);
}

.news-feed-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(18px, 2.4vw, 28px);
  align-items: start;
  min-width: 0;
}

.news-feed-card[hidden] {
  display: none;
}

.news-feed-card__media {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--muted-light);
}

.news-feed-card__media-link {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline-offset: -3px;
}

.news-feed-card__media picture,
.news-feed-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-feed-card__media-link img {
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.news-feed-card__media-link:hover img,
.news-feed-card__media-link:focus-visible img {
  transform: scale(1.035);
}

.news-feed-card__media-link:focus-visible {
  outline: 2px solid var(--wine);
}

.news-feed-card__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.news-feed-card__body h2 {
  margin-top: 12px;
  font-size: clamp(22px, 1.8vw, 28px);
  letter-spacing: -0.03em;
  line-height: 1.22;
}

.news-feed-card__body > p {
  margin-top: 12px;
  color: rgba(45, 23, 25, 0.66);
  font-size: 16px;
  line-height: 1.5;
}

.news-feed__empty {
  margin-top: 28px;
}

@media (max-width: 1024px) {
  .news-feed {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .news-feature__content {
    padding-bottom: clamp(96px, 16vh, 128px);
  }

  .news-feature__content h2 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .news-feed-card {
    grid-template-columns: 1fr;
  }

  .news-feed-card__media {
    aspect-ratio: 16 / 10;
  }
}

@media (min-width: 2000px) {
  .news-feature__content {
    width: 100%;
    max-width: none;
    padding-inline: var(--wide-header-gutter);
  }

  .news-feature__content h2 {
    max-width: 16em;
    font-size: clamp(64px, 4.2vw, 88px);
  }
}

/* Editorial article pages */
.article-hero {
  position: relative;
  min-height: min(max(680px, 88svh), 980px);
  overflow: hidden;
  color: white;
  background: var(--ink);
  isolation: isolate;
}

.article-hero__image,
.article-hero__veil {
  position: absolute;
  inset: 0;
}

.article-hero__image {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero__image--arteria {
  object-position: center 48%;
}

.article-hero__veil {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(25, 12, 14, 0.58), transparent 44%),
    linear-gradient(0deg, rgba(25, 12, 14, 0.88), rgba(25, 12, 14, 0.08) 72%);
}

.article-hero__content {
  display: flex;
  min-height: inherit;
  flex-direction: column;
  justify-content: space-between;
  padding-top: calc(var(--header-height) + clamp(28px, 5vw, 70px));
  padding-bottom: clamp(48px, 7vw, 92px);
}

.article-back {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  text-decoration: none;
}

.article-back::before {
  content: "←";
  font-size: 20px;
  transition: transform 240ms var(--ease);
}

.article-back:hover::before {
  transform: translateX(-5px);
}

.article-hero__heading {
  width: 100%;
  min-width: 0;
  max-width: 1240px;
}

.article-hero__meta {
  display: flex;
  margin-bottom: 20px;
  gap: 10px 24px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-hero__meta span + span {
  position: relative;
}

.article-hero__meta span + span::before {
  position: absolute;
  top: 50%;
  left: -14px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  content: "";
  transform: translateY(-50%);
}

.article-hero h1 {
  max-width: 1200px;
  font-size: clamp(54px, 7.2vw, 104px);
  letter-spacing: -0.058em;
  line-height: 0.98;
  text-wrap: balance;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(190px, 0.35fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(70px, 11vw, 180px);
}

.article-aside {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.article-aside dl {
  border-top: 1px solid rgba(45, 23, 25, 0.2);
}

.article-aside dl > div {
  padding-block: 16px;
  border-bottom: 1px solid rgba(45, 23, 25, 0.14);
}

.article-aside dt {
  margin-bottom: 5px;
  color: var(--ink-secondary);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-aside dd {
  font-size: 14px;
  line-height: 1.45;
}

.article-aside > a {
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  color: var(--wine);
  font-size: 14px;
  gap: 9px;
}

.article-aside > a::before {
  content: "←";
  text-decoration: none;
}

.article-prose {
  max-width: 850px;
}

.article-lead {
  margin-bottom: clamp(64px, 8vw, 112px);
  font-size: clamp(29px, 3.2vw, 45px);
  letter-spacing: -0.04em;
  line-height: 1.18;
}

.article-copy-section + .article-copy-section,
.article-inline-media + .article-copy-section {
  margin-top: clamp(64px, 8vw, 110px);
}

.article-copy-section h2 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.article-copy-section p {
  max-width: 760px;
  color: rgba(45, 23, 25, 0.74);
  font-size: 18px;
  line-height: 1.72;
}

.article-copy-section p + p {
  margin-top: 20px;
}

.article-pullquote {
  margin-block: clamp(64px, 8vw, 105px);
  padding: 8px 0 8px clamp(24px, 3vw, 42px);
  border-left: 4px solid var(--wine);
}

.article-pullquote p {
  max-width: 760px;
  color: var(--wine);
  font-size: clamp(28px, 3.2vw, 43px);
  letter-spacing: -0.035em;
  line-height: 1.22;
}

.article-inline-media {
  margin-top: clamp(66px, 9vw, 118px);
}

.article-inline-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.article-inline-media figcaption {
  max-width: 650px;
  margin-top: 14px;
  color: var(--ink-secondary);
  font-size: 13px;
  line-height: 1.5;
}

/* Image-led discovery at the end of editorial articles */
.article-related {
  overflow: hidden;
  background: #f7f5f3;
}

.article-related__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(44px, 5.5vw, 78px);
  gap: clamp(34px, 7vw, 110px);
}

.article-related__header h2 {
  margin-top: 14px;
  font-size: clamp(58px, 7vw, 104px);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.article-related__all {
  display: inline-flex;
  flex: none;
  align-items: center;
  padding-bottom: 8px;
  gap: 18px;
  color: var(--ink);
  border-bottom: 1px solid rgba(45, 23, 25, 0.34);
  font-size: clamp(15px, 1.15vw, 18px);
  text-decoration: none;
  transition: color 220ms ease, border-color 220ms ease;
}

.article-related__all > span:last-child,
.article-related-card__action > span {
  display: grid;
  width: 28px;
  flex: none;
  place-items: center;
  color: var(--wine);
}

.article-related__all svg,
.article-related-card__action svg {
  display: block;
  width: 26px;
  height: 16px;
  transform: rotate(0deg);
  transform-origin: 50% 50%;
  transition: transform 280ms var(--ease);
}

.article-related__all:hover,
.article-related__all:focus-visible {
  color: var(--wine);
  border-color: var(--wine);
}

.article-related__all:hover svg,
.article-related__all:focus-visible svg {
  transform: rotate(-25deg);
}

.article-related__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.article-related__viewport::-webkit-scrollbar {
  display: none;
}

.article-related__track {
  --article-related-gap: clamp(18px, 2vw, 30px);
  gap: var(--article-related-gap);
}

.article-related-card {
  width: calc((100% - (2 * var(--article-related-gap))) / 3);
  min-width: 320px;
  background: white;
  scroll-snap-align: start;
}

.article-related--compact .article-related-card {
  width: calc((100% - var(--article-related-gap)) / 2);
  min-width: 420px;
}

.article-related-card > a {
  display: flex;
  height: 100%;
  flex-direction: column;
  color: var(--ink);
  text-decoration: none;
}

.article-related-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--muted-light);
}

.article-related-card__media picture,
.article-related-card__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.article-related-card__media img {
  object-fit: cover;
  transition: transform 800ms var(--ease), filter 420ms ease;
}

.article-related-card__body {
  display: flex;
  min-height: clamp(270px, 23vw, 340px);
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(24px, 2.4vw, 34px);
}

.article-related-card__meta {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 16px;
  gap: 6px 18px;
  color: var(--wine);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-related-card__meta span + span {
  position: relative;
}

.article-related-card__meta span + span::before {
  position: absolute;
  top: 50%;
  left: -11px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  content: "";
  transform: translateY(-50%);
}

.article-related-card h3 {
  font-size: clamp(25px, 2.25vw, 35px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.1;
  text-wrap: balance;
}

.article-related-card__summary {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 16px;
  color: rgba(45, 23, 25, 0.66);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 15px;
  line-height: 1.5;
}

.article-related-card__action {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 24px;
  gap: 12px;
  color: var(--wine);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-related-card > a:hover .article-related-card__media img,
.article-related-card > a:focus-visible .article-related-card__media img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.035);
}

.article-related-card > a:hover .article-related-card__action svg,
.article-related-card > a:focus-visible .article-related-card__action svg {
  transform: rotate(-25deg);
}

.article-related__carousel .carousel-arrow {
  top: clamp(135px, 11vw, 170px);
  width: clamp(54px, 4.8vw, 72px);
  height: clamp(54px, 4.8vw, 72px);
  background: rgba(91, 0, 45, 0.82);
}

.article-related__carousel .carousel-arrow--prev {
  left: calc(clamp(54px, 4.8vw, 72px) / -2);
}

.article-related__carousel .carousel-arrow--next {
  right: calc(clamp(54px, 4.8vw, 72px) / -2);
}

.article-related__carousel .carousel-arrow:disabled {
  opacity: 0;
  pointer-events: none;
}

.article-related__carousel > .carousel-progress {
  width: min(420px, 46%);
}

@media (max-width: 1100px) {
  .article-related-card,
  .article-related--compact .article-related-card {
    width: calc((100% - var(--article-related-gap)) / 2);
    min-width: min(440px, 72vw);
  }
}

@media (max-width: 700px) {
  .article-related__header {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 40px;
    gap: 24px;
  }

  .article-related__header h2 {
    font-size: clamp(48px, 12vw, 70px);
  }

  .article-related__all {
    width: 100%;
    justify-content: space-between;
  }

  .article-related__track {
    --article-related-gap: 14px;
  }

  .article-related-card,
  .article-related--compact .article-related-card {
    width: calc(100vw - 54px);
    min-width: calc(100vw - 54px);
  }

  .article-related-card__body {
    min-height: 290px;
    padding: 24px 22px;
  }

  .article-related-card h3 {
    font-size: clamp(29px, 8vw, 38px);
  }

  .article-related__carousel .carousel-arrow {
    display: none;
  }

  .article-related__carousel > .carousel-progress {
    width: 100%;
  }
}

/* Iconica company profile */
.iconica-profile-page .article-hero__veil {
  background:
    linear-gradient(180deg, rgba(13, 13, 13, 0.7), transparent 43%),
    linear-gradient(0deg, rgba(13, 13, 13, 0.94), rgba(13, 13, 13, 0.14) 76%);
}

.iconica-profile-page .article-hero__meta {
  color: #ddc36f;
}

.iconica-profile-hero__image {
  object-position: center 54%;
}

.iconica-profile-page .article-hero h1 span {
  display: block;
}

.iconica-profile-page .article-prose {
  min-width: 0;
}

.iconica-profile-page .article-pullquote {
  border-left-color: #b8962e;
}

.iconica-profile-page .article-pullquote p {
  color: #685316;
}

.iconica-snapshot {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(52px, 7vw, 86px);
  border-top: 1px solid rgba(45, 23, 25, 0.18);
  border-bottom: 1px solid rgba(45, 23, 25, 0.18);
}

.iconica-snapshot div {
  min-width: 0;
  padding: 24px 18px 28px;
}

.iconica-snapshot div + div {
  border-left: 1px solid rgba(45, 23, 25, 0.14);
}

.iconica-snapshot strong,
.iconica-snapshot span {
  display: block;
}

.iconica-snapshot strong {
  color: #8b6d18;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.iconica-snapshot span {
  margin-top: 10px;
  color: var(--ink-secondary);
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-transform: uppercase;
}

.iconica-identity-feature {
  display: grid;
  grid-template-columns: minmax(270px, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  color: white;
  background: #0d0d0d;
}

.iconica-identity-feature__media {
  display: grid;
  min-width: 0;
  place-items: center;
  background: #07111f;
}

.article-inline-media .iconica-identity-feature__media img {
  width: 100%;
  height: auto;
  max-height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
}

.iconica-identity-feature__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 64px);
}

.iconica-identity-feature__eyebrow {
  margin-bottom: 28px;
  color: #ddc36f;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.iconica-identity-feature h2 {
  font-size: clamp(30px, 3.6vw, 49px);
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.iconica-identity-feature__content > p:not(.iconica-identity-feature__eyebrow) {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.65;
}

.iconica-identity-feature ul {
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
}

.iconica-identity-feature li {
  position: relative;
  padding: 13px 0 13px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.iconica-identity-feature li::before {
  position: absolute;
  top: 21px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #b8962e;
  content: "";
}

.iconica-pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 42px;
  border-top: 1px solid rgba(45, 23, 25, 0.18);
  border-left: 1px solid rgba(45, 23, 25, 0.18);
}

.iconica-pillars > div {
  min-height: 230px;
  padding: clamp(24px, 3vw, 36px);
  border-right: 1px solid rgba(45, 23, 25, 0.18);
  border-bottom: 1px solid rgba(45, 23, 25, 0.18);
}

.iconica-pillars span {
  color: #8b6d18;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.iconica-pillars h3 {
  margin: 34px 0 14px;
  font-size: clamp(23px, 2.2vw, 30px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.iconica-pillars p {
  color: rgba(45, 23, 25, 0.66);
  font-size: 15px;
  line-height: 1.6;
}

.iconica-expertise-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 40px 0 0;
  padding: 0;
  border-top: 1px solid rgba(45, 23, 25, 0.18);
  list-style: none;
}

.iconica-expertise-list li {
  position: relative;
  padding: 18px 22px 18px 20px;
  border-bottom: 1px solid rgba(45, 23, 25, 0.14);
  color: rgba(45, 23, 25, 0.78);
  line-height: 1.45;
}

.iconica-expertise-list li:nth-child(odd) {
  border-right: 1px solid rgba(45, 23, 25, 0.14);
}

.iconica-expertise-list li::before {
  position: absolute;
  top: 25px;
  left: 2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #b8962e;
  content: "";
}

.iconica-profile-links {
  display: flex;
  flex-wrap: wrap;
  margin-top: 34px;
  gap: 12px 28px;
}

.iconica-profile-links a {
  color: var(--wine);
  font-size: 15px;
  text-underline-offset: 4px;
}

.iconica-profile-links a:hover,
.iconica-profile-links a:focus-visible {
  color: #8b6d18;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: clamp(55px, 10vw, 145px);
}

.contact-intro h1 {
  font-size: clamp(44px, 5.5vw, 78px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.contact-intro > p {
  margin-top: 28px;
  color: rgba(45, 23, 25, 0.68);
  font-size: 19px;
  line-height: 1.55;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 22px;
}

[data-contact-form][inert] {
  display: none;
}

.contact-form-fallback {
  align-self: start;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(45, 23, 25, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 18px 48px rgba(45, 23, 25, 0.07);
}

.contact-form-fallback p:last-child {
  margin: 14px 0 0;
  line-height: 1.65;
}

.contact-form-fallback a {
  color: var(--wine);
  overflow-wrap: anywhere;
}

.contact-region-field {
  display: grid;
  grid-column: 1 / -1;
  gap: 16px;
  margin: 0;
  padding: 0 0 clamp(28px, 3.5vw, 48px);
  border: 0;
}

.contact-region-field legend {
  margin-bottom: clamp(18px, 2.2vw, 28px);
  padding: 0;
}

.contact-region-options {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: clamp(6px, 1vw, 12px);
}

.contact-region-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-region-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid rgba(45, 23, 25, 0.18);
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  color: var(--ink);
  cursor: pointer;
  transition: color 240ms ease, background 240ms ease, border-color 240ms ease, box-shadow 260ms ease;
}

.contact-region-option:hover {
  border-color: rgba(45, 23, 25, 0.38);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.contact-region-options input:checked + .contact-region-option {
  color: white;
  background: linear-gradient(135deg, #73003a, #8d2355);
  border-color: #73003a;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 10px 22px rgba(115, 0, 58, 0.16);
}

.contact-region-options input:focus-visible + .contact-region-option {
  outline: 2px solid var(--wine);
  outline-offset: 3px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(45, 23, 25, 0.35);
  border-radius: 0;
  font: inherit;
}

.form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
  border-color: var(--wine);
  outline: 2px solid rgba(124, 0, 60, 0.35);
  outline-offset: 3px;
}

.form-field input:focus:not(:focus-visible),
.form-field select:focus:not(:focus-visible),
.form-field textarea:focus:not(:focus-visible) {
  border-color: var(--wine);
  outline: 0;
}

.custom-select {
  position: relative;
}

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

.custom-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  color: var(--ink);
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(45, 23, 25, 0.35);
  border-radius: 0;
  font: inherit;
  cursor: pointer;
  transition: border-color 240ms ease, color 240ms ease;
}

.custom-select__trigger::after {
  content: "";
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin-left: 16px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 240ms ease;
}

.custom-select.is-open .custom-select__trigger::after {
  transform: rotate(-135deg) translateY(2px);
}

.custom-select__trigger.is-placeholder {
  color: var(--ink-secondary);
}

.custom-select__trigger:focus-visible {
  border-color: var(--wine);
  outline: 2px solid rgba(124, 0, 60, 0.35);
  outline-offset: 3px;
}

.custom-select__listbox {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  max-height: 280px;
  margin: 0;
  padding: 8px;
  overflow: auto;
  list-style: none;
  color: var(--ink);
  background: var(--muted-light);
  border: 1px solid rgba(45, 23, 25, 0.14);
  border-radius: 16px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 14px 36px rgba(45, 23, 25, 0.1);
  transform-origin: top center;
  animation: custom-select-open 220ms var(--ease) both;
}

@keyframes custom-select-open {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.custom-select__option {
  padding: 12px 16px;
  color: var(--ink);
  border-radius: 10px;
  cursor: pointer;
  transition:
    background-color 280ms var(--ease),
    color 280ms var(--ease),
    box-shadow 280ms var(--ease);
}

.custom-select__option[aria-selected="true"] {
  color: white;
  background: linear-gradient(135deg, #73003a, #8d2355);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 6px 14px rgba(115, 0, 58, 0.12);
}

.custom-select__option:hover,
.custom-select__option:focus-visible,
.custom-select__option.is-highlighted {
  color: white;
  background-color: var(--wine);
  background-image: none;
  outline: 0;
  box-shadow: 0 6px 14px rgba(124, 0, 60, 0.1);
}

.custom-select__option[aria-selected="true"]:hover,
.custom-select__option[aria-selected="true"]:focus-visible,
.custom-select__option[aria-selected="true"].is-highlighted {
  background: linear-gradient(135deg, #73003a, #8d2355);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 6px 14px rgba(115, 0, 58, 0.12);
}

.custom-select__option[aria-disabled="true"] {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .custom-select__trigger,
  .custom-select__trigger::after,
  .custom-select__option {
    transition: none;
  }

  .custom-select__listbox {
    animation: none;
  }
}

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

.careers-search-band {
  background: var(--ink);
  padding: clamp(28px, 4vw, 42px) 0;
}

.careers-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: stretch;
}

.careers-search__input {
  width: 100%;
  min-height: 64px;
  padding: 0 28px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font: inherit;
  font-size: clamp(14px, 1.35vw, 18px);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 0;
}

.careers-search__input::placeholder {
  color: rgba(255, 255, 255, 0.88);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.careers-search__input:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.careers-search__submit {
  min-height: 64px;
  min-width: clamp(160px, 18vw, 220px);
  padding: 0 28px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font: inherit;
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 500;
  background: #f4f1ef;
  border: 1px solid #f4f1ef;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.careers-search__submit:hover {
  color: #fff;
  background: var(--wine);
  border-color: var(--wine);
}

.careers-search__submit:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.careers-listings__head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.7fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.careers-listings__head > p {
  margin: 0;
  color: rgba(45, 23, 25, 0.68);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
}

.careers-filters {
  margin-bottom: 22px;
}

.careers-listings__count {
  margin: 0 0 28px;
}

.careers-job-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(45, 23, 25, 0.16);
}

.careers-job {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 28px;
  padding: clamp(26px, 3vw, 34px) 0;
  border-bottom: 1px solid rgba(45, 23, 25, 0.16);
}

.careers-job[hidden] {
  display: none;
}

.careers-job__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  grid-column: 1 / -1;
  color: var(--ink-secondary-on-muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.careers-job__badge {
  color: var(--wine);
}

.careers-job h3 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.careers-job p {
  grid-column: 1;
  max-width: 58ch;
  margin: 0;
  color: rgba(45, 23, 25, 0.68);
  font-size: 16px;
  line-height: 1.55;
}

.careers-job__link {
  display: inline-flex;
  align-self: end;
  min-height: 44px;
  align-items: center;
  padding: 10px 0;
  color: var(--wine);
  font: inherit;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-align: left;
  text-decoration: none;
  white-space: nowrap;
  background: none;
  border: 0;
  cursor: pointer;
}

.careers-job__link:hover,
.careers-job__link:focus-visible {
  text-decoration: underline;
}

.careers-empty {
  padding: clamp(48px, 7vw, 80px) 0;
  text-align: left;
}

.careers-empty[hidden] {
  display: none;
}

.careers-empty h3 {
  margin: 12px 0 16px;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  letter-spacing: -0.03em;
}

.careers-empty p {
  max-width: 48ch;
  margin: 0 0 28px;
  color: rgba(45, 23, 25, 0.68);
  font-size: 17px;
  line-height: 1.55;
}

.careers-empty .cta {
  margin-top: 0;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.careers-external {
  margin-top: clamp(48px, 6vw, 72px);
  padding-top: 8px;
}

.careers-external__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 16px;
}

.careers-external__links a {
  color: var(--wine);
  text-decoration: none;
}

.careers-external__links a:hover,
.careers-external__links a:focus-visible {
  text-decoration: underline;
}

/* Careers apply modal */
.careers-apply {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vh, 32px);
  box-sizing: border-box;
}

.careers-apply[hidden] {
  display: none;
}

.careers-apply__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(124, 0, 60, 0.18), transparent 55%),
    rgba(22, 10, 12, 0.58);
  backdrop-filter: blur(2px);
  cursor: pointer;
}

.careers-apply__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(760px, 100%);
  height: min(820px, calc(100vh - 32px));
  height: min(820px, calc(100dvh - 32px));
  max-height: calc(100vh - 32px);
  max-height: calc(100dvh - 32px);
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(165deg, #fffdfb 0%, #f7f3f0 48%, #f1ece8 100%);
  border: 1px solid rgba(45, 23, 25, 0.1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 30px 90px rgba(22, 10, 12, 0.34);
}

.careers-apply.is-open .careers-apply__backdrop {
  animation: careers-apply-fade 360ms var(--ease) both;
}

.careers-apply.is-open .careers-apply__panel {
  animation: careers-apply-rise 420ms var(--ease);
}

@keyframes careers-apply-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes careers-apply-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes careers-apply-step-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.careers-apply__top {
  display: flex;
  flex: 0 0 auto;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(22px, 3vw, 32px) clamp(22px, 3vw, 36px) 18px;
  border-bottom: 1px solid rgba(45, 23, 25, 0.08);
}

.careers-apply__eyebrow {
  margin: 0 0 8px;
  color: var(--wine);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.careers-apply__top h2 {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.careers-apply__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
}

.careers-apply__meta:empty {
  display: none;
}

.careers-apply__chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 11px;
  color: rgba(45, 23, 25, 0.72);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(45, 23, 25, 0.12);
}

.careers-apply__close {
  display: grid;
  flex: none;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: -4px -4px 0 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(45, 23, 25, 0.12);
  cursor: pointer;
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease;
}

.careers-apply__close:hover,
.careers-apply__close:focus-visible {
  color: var(--wine);
  background: #fff;
  border-color: rgba(124, 0, 60, 0.35);
}

.careers-apply__progress {
  flex: 0 0 auto;
  padding: 18px clamp(22px, 3vw, 36px) 0;
}

.careers-apply__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.careers-apply__steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: rgba(45, 23, 25, 0.38);
}

.careers-apply__step-index {
  display: grid;
  flex: none;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(45, 23, 25, 0.18);
  border-radius: 50%;
  font-size: 12px;
  letter-spacing: 0.04em;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease;
}

.careers-apply__step-label {
  overflow: hidden;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.careers-apply__steps li.is-active {
  color: var(--wine);
}

.careers-apply__steps li.is-active .careers-apply__step-index {
  color: #fff;
  background: var(--wine);
  border-color: var(--wine);
}

.careers-apply__steps li.is-complete {
  color: var(--ink);
}

.careers-apply__steps li.is-complete .careers-apply__step-index {
  color: var(--wine);
  background: rgba(124, 0, 60, 0.08);
  border-color: rgba(124, 0, 60, 0.35);
}

.careers-apply__progress-track {
  position: relative;
  height: 2px;
  overflow: hidden;
  background: rgba(45, 23, 25, 0.1);
}

.careers-apply__progress-fill {
  display: block;
  width: 33.333%;
  height: 100%;
  background: linear-gradient(90deg, #73003a, #a32761);
  transform-origin: left center;
  transition: width 380ms var(--ease);
}

.careers-apply__form {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
}

.careers-apply__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  padding: 22px clamp(22px, 3vw, 36px) 32px;
  -webkit-overflow-scrolling: touch;
}

.careers-apply__step {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.careers-apply__step[hidden] {
  display: none;
}

.careers-apply__step.is-entering {
  animation: careers-apply-step-in 320ms var(--ease) both;
}

.careers-apply__step-intro {
  margin-bottom: 22px;
}

.careers-apply__step-intro legend {
  padding: 0;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.careers-apply__step-intro p {
  max-width: 42ch;
  margin: 8px 0 0;
  color: rgba(45, 23, 25, 0.62);
  font-size: 15px;
  line-height: 1.5;
}

.careers-apply__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 20px;
}

.careers-apply .form-field input,
.careers-apply .form-field textarea {
  padding: 13px 0 12px;
  border-bottom-color: rgba(45, 23, 25, 0.22);
  transition: border-color 200ms ease;
}

.careers-apply .form-field input:hover,
.careers-apply .form-field textarea:hover {
  border-bottom-color: rgba(45, 23, 25, 0.4);
}

.careers-apply .form-field input:focus-visible,
.careers-apply .form-field textarea:focus-visible {
  border-bottom-color: var(--wine);
  outline: none;
  box-shadow: 0 1px 0 0 var(--wine);
}

.careers-apply .form-field textarea {
  min-height: 140px;
}

.careers-phone__label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.careers-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-width: 0;
  border-bottom: 1px solid rgba(45, 23, 25, 0.22);
  transition: border-color 200ms ease;
}

.careers-phone:hover {
  border-bottom-color: rgba(45, 23, 25, 0.4);
}

.careers-phone:focus-within {
  border-bottom-color: var(--wine);
  box-shadow: 0 1px 0 0 var(--wine);
}

.careers-phone__code {
  position: relative;
  flex: 0 0 auto;
}

.careers-phone__number {
  flex: 1 1 auto;
  min-width: 0;
}

.careers-phone .custom-select--dial {
  width: auto;
}

.careers-phone .custom-select--dial .custom-select__trigger {
  gap: 7px;
  width: auto;
  min-width: 0;
  min-height: 0;
  padding: 13px 2px 12px 0;
  justify-content: flex-start;
  border: 0;
  border-bottom: 0;
  box-shadow: none;
}

.careers-phone .custom-select--dial .custom-select__trigger:focus-visible {
  outline: 2px solid rgba(124, 0, 60, 0.35);
  outline-offset: 3px;
  border-bottom: 0;
}

.careers-phone .custom-select--dial .custom-select__trigger::after {
  margin-left: 2px;
  width: 7px;
  height: 7px;
  opacity: 0.55;
}

.careers-phone__flag {
  flex: none;
  font-size: 15px;
  line-height: 1;
}

.careers-phone__dial {
  flex: none;
  color: rgba(45, 23, 25, 0.72);
  font-size: 15px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.careers-apply .careers-phone__number input {
  width: 100%;
  padding: 13px 0 12px;
  border: 0;
  border-bottom: 0;
  box-shadow: none;
}

.careers-apply .careers-phone__number input:hover,
.careers-apply .careers-phone__number input:focus-visible {
  border: 0;
  border-bottom: 0;
  box-shadow: none;
  outline: none;
}

.careers-phone .custom-select--dial .custom-select__listbox {
  top: calc(100% + 8px);
  right: auto;
  left: 0;
  width: min(280px, calc(100vw - 48px));
  max-height: 220px;
  padding: 6px;
  border-radius: 12px;
}

.careers-phone .custom-select--dial .custom-select__listbox.is-portal {
  margin: 0;
}

.careers-phone .custom-select--dial .custom-select__option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 8px;
}

.careers-phone .custom-select--dial .custom-select__option.is-highlighted:not([aria-selected="true"]) {
  color: var(--ink);
  background: rgba(124, 0, 60, 0.08);
  box-shadow: none;
}

.careers-phone .custom-select--dial .custom-select__option[hidden] {
  display: none;
}

.careers-phone .custom-select--dial .custom-select__option--empty,
.custom-select__listbox.is-portal .custom-select__option--empty {
  display: block;
  color: var(--ink-secondary);
  cursor: default;
}

.careers-phone .custom-select--dial .custom-select__option--empty[hidden],
.custom-select__listbox.is-portal .custom-select__option--empty[hidden] {
  display: none;
}

.custom-select__listbox.is-portal {
  z-index: 90;
  width: min(280px, calc(100vw - 48px));
  max-height: 220px;
  padding: 6px;
  border-radius: 12px;
}

.custom-select__listbox.is-portal .custom-select__option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 8px;
}

.custom-select__listbox.is-portal .custom-select__option.is-highlighted:not([aria-selected="true"]) {
  color: var(--ink);
  background: rgba(124, 0, 60, 0.08);
  box-shadow: none;
}

.custom-select__listbox.is-portal .custom-select__option[hidden] {
  display: none;
}

.careers-phone__option-copy {
  display: block;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.careers-apply__label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.careers-apply__counter {
  color: rgba(45, 23, 25, 0.45);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.careers-apply__optional {
  color: rgba(45, 23, 25, 0.42);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
}

.careers-apply__file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.careers-apply__upload {
  position: relative;
}

.careers-apply__dropzone {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 18px 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px dashed rgba(45, 23, 25, 0.22);
  cursor: pointer;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.careers-apply__dropzone:hover,
.careers-apply__file-input:focus-visible + .careers-apply__dropzone {
  background: #fff;
  border-color: rgba(124, 0, 60, 0.45);
  box-shadow: 0 10px 24px rgba(45, 23, 25, 0.05);
}

.careers-apply__upload.is-filled .careers-apply__dropzone {
  border-style: solid;
  border-color: rgba(124, 0, 60, 0.28);
  background: rgba(124, 0, 60, 0.04);
}

.careers-apply__dropzone-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--wine);
  background: rgba(124, 0, 60, 0.06);
}

.careers-apply__dropzone-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.careers-apply__dropzone-copy strong {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.careers-apply__dropzone-copy strong em {
  color: rgba(45, 23, 25, 0.42);
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.careers-apply__dropzone-copy span {
  color: var(--ink-secondary);
  font-size: 13px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.careers-apply__dropzone-action {
  color: var(--wine);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.careers-apply__review {
  padding: 18px 18px 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.5));
  border: 1px solid rgba(45, 23, 25, 0.1);
}

.careers-apply__review[hidden] {
  display: none;
}

.careers-apply__review-title {
  margin: 0 0 4px;
  color: var(--wine);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.careers-apply__review-lead {
  margin: 0 0 16px;
  color: var(--ink-secondary);
  font-size: 13px;
  line-height: 1.45;
}

.careers-apply__review dl {
  display: grid;
  grid-template-columns: minmax(96px, 0.34fr) minmax(0, 1fr);
  gap: 10px 18px;
  margin: 0;
}

.careers-apply__review dt {
  color: rgba(45, 23, 25, 0.48);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.careers-apply__review dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.careers-apply__consent {
  margin-top: 4px;
}

.careers-apply__footer {
  flex: 0 0 auto;
  padding: 8px clamp(22px, 3vw, 36px) clamp(24px, 3vw, 32px);
  background: transparent;
  border-top: 0;
}

.careers-apply__status {
  min-height: 0;
  margin: 0;
  color: rgba(45, 23, 25, 0.68);
  font-size: 13px;
  line-height: 1.4;
}

.careers-apply__status:not(:empty) {
  min-height: 1.35em;
  margin-bottom: 10px;
}

.careers-apply__status.is-error {
  color: #8a1632;
}

.careers-apply__status.is-success {
  color: #2f5d3a;
}

.careers-apply__footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.careers-apply__step-count {
  margin: 0;
  color: rgba(45, 23, 25, 0.48);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.careers-apply__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.careers-apply__primary,
.careers-apply__secondary {
  min-height: 48px;
  padding: 0 22px;
  font: inherit;
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.careers-apply__primary {
  color: #fff;
  background: var(--wine);
  border: 1px solid var(--wine);
}

.careers-apply__primary:hover,
.careers-apply__primary:focus-visible {
  background: #5f002f;
  border-color: #5f002f;
}

.careers-apply__primary:disabled,
.careers-apply__secondary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.careers-apply__secondary {
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(45, 23, 25, 0.2);
}

.careers-apply__secondary:hover,
.careers-apply__secondary:focus-visible {
  color: var(--wine);
  border-color: rgba(124, 0, 60, 0.45);
}

.careers-apply__secondary[hidden],
.careers-apply__primary[hidden] {
  display: none;
}

.page-cta .cta[data-careers-apply] {
  border: 0;
  cursor: pointer;
  font: inherit;
}

body.careers-apply-open {
  overflow: hidden;
}

body.careers-apply-open .site-header {
  z-index: 1;
  pointer-events: none;
}

body.careers-apply-open .site-header .nav-dropdown__menu {
  visibility: hidden;
}

@media (max-width: 700px) {
  .careers-apply {
    padding: 0;
    place-items: stretch;
  }

  .careers-apply__panel {
    width: 100%;
    height: 100%;
    max-height: none;
    min-height: 100%;
    border: 0;
  }

  .careers-apply__grid {
    grid-template-columns: 1fr;
  }

  .careers-apply__steps {
    gap: 6px;
  }

  .careers-apply__step-label {
    display: none;
  }

  .careers-apply__steps li {
    justify-content: center;
  }

  .careers-apply__dropzone {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .careers-apply__dropzone-action {
    grid-column: 2;
  }

  .careers-apply__footer-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .careers-apply__actions {
    width: 100%;
  }

  .careers-apply__primary,
  .careers-apply__secondary {
    flex: 1 1 auto;
  }

  .careers-apply__review dl {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .careers-apply__review dd {
    margin-bottom: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .careers-apply.is-open .careers-apply__backdrop,
  .careers-apply.is-open .careers-apply__panel,
  .careers-apply__step.is-entering {
    animation: none;
  }

  .careers-apply__progress-fill,
  .careers-apply__primary,
  .careers-apply__secondary,
  .careers-apply__dropzone {
    transition: none;
  }
}

.social-impact-sponsorship__grid h3 a {
  color: inherit;
  text-decoration: none;
}

.social-impact-sponsorship__grid h3 a:hover,
.social-impact-sponsorship__grid h3 a:focus-visible {
  color: var(--wine);
}

.social-impact-heritage__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 0;
}

.social-impact-heritage__grid article {
  min-height: 360px;
  border-bottom: 1px solid rgba(45, 23, 25, 0.18);
}

.social-impact-heritage__grid article:nth-child(2n) {
  border-right: 0;
}

.social-impact-heritage__grid h3 {
  margin-top: clamp(50px, 5vw, 76px);
}

@media (max-width: 900px) {
  .careers-values {
    grid-template-columns: 1fr;
  }

  .careers-listings__head {
    grid-template-columns: 1fr;
  }

  .careers-job {
    grid-template-columns: 1fr;
  }

  .careers-job__link {
    justify-self: start;
  }
}

@media (max-width: 700px) {
  .careers-search {
    grid-template-columns: 1fr;
  }

  .careers-search__input,
  .careers-search__submit {
    min-height: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .careers-search__submit {
    transition: none;
  }
}

.form-consent {
  display: flex;
  grid-column: 1 / -1;
  align-items: flex-start;
  gap: 11px;
  color: rgba(45, 23, 25, 0.68);
  font-size: 14px;
}

.form-consent input {
  margin-top: 3px;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  color: var(--wine);
}

.contact-form .cta {
  grid-column: 1 / -1;
  margin-top: 10px;
  border: 0;
  cursor: pointer;
}

.office-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 68px;
  gap: 24px;
}

.office-card {
  min-height: 310px;
  padding: clamp(28px, 4vw, 52px);
  color: white;
  background: var(--ink);
}

.office-card h3 {
  font-size: clamp(30px, 3vw, 42px);
}

.office-card address {
  margin-top: 50px;
  color: rgba(255, 255, 255, 0.64);
  font-style: normal;
  line-height: 1.6;
}

.office-card a {
  display: inline-block;
  margin-top: 24px;
  color: white;
}

.office-card__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 24px;
  gap: 7px;
}

.office-card__links a {
  margin-top: 0;
}

.legal-hero {
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.72), transparent 29%),
    var(--muted);
}

.legal-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.58fr);
  align-items: end;
  min-height: clamp(300px, 28vw, 390px);
  padding-block: clamp(50px, 5.4vw, 78px);
  gap: clamp(50px, 9vw, 138px);
}

.legal-hero__title h1 {
  margin-top: clamp(16px, 1.6vw, 24px);
  font-size: clamp(68px, 8vw, 118px);
  font-weight: 300;
  letter-spacing: -0.065em;
  line-height: 0.82;
}

.legal-hero__summary > p {
  max-width: 24em;
  font-size: clamp(20px, 1.75vw, 27px);
  letter-spacing: -0.025em;
  line-height: 1.4;
}

.legal-hero__summary dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(34px, 4vw, 54px);
  padding-top: 18px;
  border-top: 1px solid rgba(45, 23, 25, 0.22);
  gap: 22px;
}

.legal-hero__summary dt {
  color: rgba(45, 23, 25, 0.56);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-hero__summary dd {
  margin-top: 7px;
  font-size: 15px;
}

.legal-content-section {
  padding-top: clamp(62px, 6.5vw, 92px);
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 760px);
  justify-content: space-between;
  gap: 60px;
}

.legal-nav {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  align-self: start;
  align-items: flex-start;
  height: max-content;
  gap: 10px;
}

.legal-nav__label {
  width: 100%;
  margin-bottom: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(45, 23, 25, 0.18);
  color: var(--wine);
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal-nav a {
  color: rgba(45, 23, 25, 0.62);
  text-decoration: none;
}

.legal-nav a:hover {
  color: var(--wine);
}

.legal-copy h2 {
  margin-top: 58px;
  font-size: clamp(30px, 3.3vw, 46px);
  letter-spacing: -0.035em;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy h3 {
  margin-top: 32px;
  font-size: 23px;
}

.legal-copy p,
.legal-copy li {
  color: rgba(45, 23, 25, 0.72);
  line-height: 1.68;
}

.legal-copy p {
  margin-top: 16px;
}

.legal-copy ul {
  margin: 15px 0 0;
  padding-left: 20px;
}

.cookie-summary {
  padding: clamp(26px, 2.4vw, 34px);
  color: white;
  background: var(--ink);
}

.legal-copy .cookie-summary__label {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.cookie-summary__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(24px, 2.5vw, 34px);
}

.legal-copy .cookie-summary__grid p {
  display: grid;
  min-height: 82px;
  align-content: space-between;
  margin: 0;
  padding: 0 clamp(14px, 1.4vw, 20px);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  color: white;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.35;
}

.legal-copy .cookie-summary__grid p:first-child {
  padding-left: 0;
  border-left: 0;
}

.legal-copy .cookie-summary__grid p:last-child {
  padding-right: 0;
}

.cookie-summary__grid span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  letter-spacing: 0.12em;
}

@media (max-width: 900px) {
  .legal-hero__inner {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 0;
    gap: 54px;
  }

  .legal-hero__title h1 {
    font-size: clamp(70px, 16vw, 112px);
  }

  .legal-hero__summary {
    max-width: 620px;
  }
}

@media (max-width: 600px) {
  .legal-hero__inner {
    padding-block: 58px 66px;
    gap: 42px;
  }

  .legal-hero__title h1 {
    font-size: clamp(62px, 20vw, 82px);
  }

  .legal-hero__summary > p {
    font-size: 19px;
  }

  .legal-hero__summary dl {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .cookie-summary__grid {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .legal-copy .cookie-summary__grid p,
  .legal-copy .cookie-summary__grid p:first-child,
  .legal-copy .cookie-summary__grid p:last-child {
    min-height: 0;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
    gap: 22px;
  }
}

.page-cta {
  color: white;
  background: var(--wine);
}

.page-cta__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 45px;
}

.page-cta h2 {
  max-width: 820px;
  font-size: clamp(48px, 6.5vw, 92px);
  letter-spacing: -0.055em;
  line-height: 1;
}

.page-cta .cta {
  flex: none;
  margin-top: 0;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 1024px) {
  :root {
    --header-height: 76px;
    --gutter: clamp(20px, 5.5vw, 48px);
  }

  .brand {
    width: 210px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
    margin-left: auto;
  }

  .lang-switch {
    margin-left: 10px;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    inset: 0;
    display: flex;
    width: 100%;
    height: 100dvh;
    min-height: 100svh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 92px var(--gutter) 40px;
    gap: 12px;
    background: linear-gradient(145deg, #f7f5f3 0%, #f1eeeb 100%);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 220ms ease, visibility 220ms ease, transform 220ms var(--ease);
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  body.menu-open .site-header,
  body.menu-open .site-header.is-scrolled {
    position: fixed;
    inset: 0 0 auto;
    z-index: 101;
    color: var(--ink);
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
  }

  body.menu-open .site-header::before {
    display: none;
  }

  body.menu-open .site-header .brand img {
    filter: none;
  }

  body.menu-open .site-header .menu-toggle > span:not(.sr-only) {
    background: var(--ink);
  }

  .primary-nav a {
    font-size: clamp(37px, 8vw, 58px);
    font-weight: 300;
    letter-spacing: -0.04em;
    line-height: 1.08;
  }

  .nav-dropdown {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .nav-dropdown__trigger {
    width: 100%;
    justify-content: space-between;
    gap: 20px;
  }

  .nav-dropdown__trigger::before {
    display: block;
    width: 11px;
    height: 11px;
    order: 2;
    margin: 0 6px 0 auto;
    border-width: 0 1px 1px 0;
    opacity: 0.62;
    transform: translateY(-3px) rotate(45deg);
  }

  .nav-dropdown.is-open .nav-dropdown__trigger::before {
    opacity: 1;
    transform: translateY(3px) rotate(-135deg);
  }

  .nav-dropdown__menu {
    position: static;
    display: flex;
    width: 100%;
    min-width: 0;
    max-height: 0;
    flex-direction: column;
    margin: 0;
    padding: 0 0 0 20px;
    overflow: hidden;
    border: 0;
    border-left: 1px solid rgba(124, 0, 60, 0.18);
    background: transparent;
    box-shadow: none;
    gap: 3px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    visibility: hidden;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    transition:
      max-height 420ms var(--ease),
      margin 320ms var(--ease),
      padding 320ms var(--ease),
      opacity 200ms ease,
      transform 320ms var(--ease),
      visibility 200ms ease;
  }

  .nav-dropdown:not(.is-open) .nav-dropdown__menu {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    visibility: hidden;
  }

  .nav-dropdown.is-open .nav-dropdown__menu {
    max-height: 150px;
    margin: 5px 0 9px 3px;
    padding-top: 7px;
    padding-bottom: 7px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .nav-dropdown__menu::before {
    display: none;
  }

  .nav-dropdown__menu a {
    width: fit-content;
    padding: 3px 0;
    color: rgba(45, 23, 25, 0.66);
    font-size: clamp(20px, 4.2vw, 29px);
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 1.12;
    opacity: 0;
    transform: translateY(-5px);
    transition: color 180ms ease, opacity 260ms var(--ease), transform 300ms var(--ease);
  }

  .nav-dropdown.is-open .nav-dropdown__menu a {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-dropdown.is-open .nav-dropdown__menu a:nth-child(1) {
    transition-delay: 70ms;
  }

  .nav-dropdown.is-open .nav-dropdown__menu a:nth-child(2) {
    transition-delay: 110ms;
  }

  .nav-dropdown__menu a::before {
    display: none;
  }

  .nav-dropdown__menu a:hover,
  .nav-dropdown__menu a:focus-visible {
    background: transparent;
    color: var(--wine);
  }

  body.menu-open.has-overlay-header .site-header .nav-dropdown__menu {
    border-width: 0 0 0 1px;
    border-color: rgba(124, 0, 60, 0.18);
    background: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  body.menu-open.has-overlay-header .site-header .nav-dropdown__menu a {
    color: rgba(45, 23, 25, 0.66);
  }

  body.menu-open.has-overlay-header .site-header .nav-dropdown__menu a:hover,
  body.menu-open.has-overlay-header .site-header .nav-dropdown__menu a:focus-visible,
  body.menu-open.has-overlay-header .site-header .nav-dropdown__menu a[aria-current="page"] {
    color: var(--wine);
  }

  .no-js .site-header {
    height: auto;
  }

  .no-js .header-inner {
    flex-wrap: wrap;
    padding-block: 18px;
  }

  .no-js .menu-toggle {
    display: none;
  }

  .no-js .primary-nav {
    position: static;
    display: flex;
    width: 100%;
    flex-flow: row wrap;
    justify-content: flex-start;
    padding: 18px 0 0;
    gap: 10px 20px;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .no-js .primary-nav a {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
  }

  .no-js .nav-dropdown__menu {
    max-height: none;
    margin-top: 6px;
    padding-block: 5px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .no-js .nav-dropdown__menu a {
    opacity: 1;
    transform: none;
  }

  .hero-line {
    top: 62px;
    right: -110px;
    width: min(110vw, 720px);
    opacity: 0.7;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .intro-copy {
    min-height: 0;
  }

  .body-copy {
    margin-top: 50px;
  }

  .portrait-media {
    width: min(100%, 600px);
    justify-self: end;
  }

  .partners-heading {
    grid-template-columns: 1fr;
  }

  .partners-inner {
    grid-template-columns: minmax(150px, 0.48fr) minmax(0, 1.52fr);
    gap: clamp(36px, 6vw, 64px);
  }

  .partners-lion-mark {
    width: min(100%, 240px);
  }

  .lead {
    padding-top: 0;
  }

  .partner-map {
    grid-template-columns: 2px minmax(0, 1fr);
    margin-top: 56px;
  }

  .partner-label {
    grid-column: 1 / -1;
    margin-bottom: 22px;
    padding-right: 0;
    text-align: left;
  }

  .partner-line {
    grid-column: 1;
    grid-row: 2;
  }

  .partner-list {
    grid-column: 2;
    grid-row: 2;
  }

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

  .leadership-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
  }

  .leadership-intro {
    max-width: 620px;
    padding-bottom: 0;
  }

  .leadership-card__content {
    min-height: 170px;
  }

  .leadership-slide {
    width: min(68vw, 430px, max(190px, calc(76svh - 76px)));
  }

  .leadership-carousel .carousel-arrow {
    top: min(clamp(250px, 34vw, 282px), max(120px, calc(50svh - 50px)));
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-title {
    grid-column: 1 / -1;
  }

  .office {
    grid-template-columns: 1fr;
  }

  .office-cards {
    grid-template-columns: 1fr;
  }

  .office address,
  .office dl {
    grid-column: 1;
  }

  .office dl {
    margin-top: 14px;
  }

  .home-hero h1 {
    font-size: clamp(56px, 10vw, 84px);
  }

  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 28px;
  }

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

  .metric-grid--five > div:nth-child(4),
  .metric-grid--five > div:nth-child(5) {
    grid-column: span 1;
  }

  .home-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .project-slide {
    width: min(88vw, max(440px, calc(174svh - 226px)));
  }

  .news-slide {
    width: min(68vw, 430px);
  }

  .carousel-arrow {
    width: 62px;
    height: 62px;
  }

  .carousel-arrow--prev {
    left: -18px;
  }

  .carousel-arrow--next {
    right: -18px;
  }

  .home-story__grid {
    grid-template-columns: 1fr;
  }

  .page-hero__content,
  .section-intro,
  .editorial-split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .page-hero__content {
    gap: 28px;
  }

  .page-hero__content > p {
    padding-bottom: 0;
  }

  .region-card--wide .region-card__content {
    display: flex;
  }

  .editorial-split--reverse .editorial-media {
    order: 0;
  }

  .editorial-media {
    min-height: 480px;
  }

  .division-item {
    grid-template-columns: 80px 0.85fr 1fr;
  }

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

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
    flex-flow: row wrap;
  }

  .page-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .regional-projects-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .portfolio-slide {
    width: min(52vw, 420px, max(240px, calc(133svh - 133px)));
  }

  .project-overview__grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .project-facts {
    width: min(100%, 620px);
  }

  .project-gallery-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
  }

  .project-gallery-heading > p {
    padding-bottom: 0;
  }

  .project-gallery-tabs {
    flex-wrap: nowrap;
    max-width: 100%;
    margin-bottom: 28px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .project-gallery-tabs::-webkit-scrollbar {
    display: none;
  }

  .project-gallery-tab {
    flex: 0 0 auto;
  }

  .project-perspective__inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 36px;
  }

}

@media (max-width: 600px) {
  :root {
    --gutter: 20px;
    --section-space: 76px;
  }

  .projects-results {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .division-team-section {
    padding-block: 76px;
  }

  .division-team-carousel {
    margin-top: 34px;
  }

  .division-team-carousel .leadership-slide {
    width: min(
      100%,
      calc(100vw - 72px),
      max(190px, calc(76svh - 76px))
    );
    min-width: 0;
  }

  .division-team-carousel .carousel-progress {
    width: 100%;
  }

  .brand {
    width: 172px;
  }

  .site-header {
    height: 70px;
  }

  .hero-line {
    top: 78px;
    right: -120px;
    width: 135vw;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .display-copy {
    font-size: 28px;
  }

  .body-copy {
    margin-top: 38px;
    font-size: 16px;
  }

  .portrait-media {
    width: 100%;
  }

  .quote-block {
    margin-top: 72px;
  }

  .quote-block blockquote {
    font-size: 25px;
    line-height: 1.32;
  }

  .quote-author {
    gap: 20px;
  }

  .chairman-photo {
    width: 92px;
  }

  .signature {
    width: 175px;
  }

  .author-details span {
    margin-top: 3px;
    font-size: 17px;
  }

  .leadership-heading {
    margin-bottom: 38px;
    gap: 22px;
  }

  .leadership-heading .section-title {
    font-size: 50px;
  }

  .leadership-intro {
    font-size: 16px;
  }

  .leadership-slide {
    width: min(
      100%,
      calc(100vw - 72px),
      max(190px, calc(76svh - 76px))
    );
    max-width: 100%;
    min-width: 0;
  }

  .leadership-carousel .carousel-progress {
    width: 100%;
  }

  .leadership-card h3 {
    margin-top: 18px;
    font-size: 30px;
  }

  .leadership-card__content {
    min-height: 0;
    padding: 24px 20px 28px;
  }

  .team-section {
    padding-bottom: 16px;
  }

  .team-section .container {
    padding-inline: 0;
  }

  .team-card {
    min-height: 560px;
  }

  .team-card > picture img,
  .team-card > img {
    object-position: 58% center;
  }

  .team-content {
    padding: 28px 20px;
  }

  .team-content h2 {
    font-size: 36px;
  }

  .team-content p {
    margin-top: 18px;
    font-size: 15px;
  }

  .partners-inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 48px;
  }

  .partners-lion-mark {
    --partners-lion-opacity: 0.075;

    width: min(56vw, 210px);
    justify-self: start;
    opacity: var(--partners-lion-opacity);
  }

  .partners-heading {
    gap: 30px;
  }

  .section-title {
    font-size: 58px;
  }

  .lead {
    font-size: 21px;
  }

  .partner-map {
    grid-template-columns: 2px minmax(0, 1fr);
    margin-top: 54px;
  }

  .partner-label {
    margin-bottom: 24px;
    font-size: 32px;
  }

  .partner-list {
    min-height: 190px;
    padding-left: 30px;
  }

  .partner-item {
    min-height: 78px;
    font-size: 38px;
  }

  .partner-dot {
    left: -31px;
    width: 16px;
    height: 16px;
  }

  .pillars-kicker {
    margin-top: 18px;
    font-size: 27px;
  }

  .pillar-grid {
    grid-template-columns: 1fr;
    margin-top: 50px;
    gap: 44px;
  }

  .pillar {
    display: grid;
    min-height: 0;
    grid-template-columns: 118px minmax(0, 1fr);
    align-items: end;
    padding-top: 18px;
  }

  .pillar-number {
    margin-top: 0;
    font-size: 86px;
    line-height: 0.8;
  }

  .pillar h3 {
    margin-top: 0;
    padding-left: 16px;
    font-size: 25px;
  }

  .cta {
    width: 100%;
    min-width: 0;
    margin-top: 72px;
  }

  .footer-top {
    padding-bottom: 24px;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    padding-block: 26px 30px;
    gap: 20px;
  }

  .footer-title {
    font-size: 11px;
  }

  .footer-nav a {
    font-size: 14px;
  }

  .footer-main .footer-nav:first-of-type {
    grid-template-columns: 1fr 1fr;
    gap: 7px 18px;
  }

  .office-grid {
    grid-template-columns: 1fr;
    padding-block: 26px 30px;
    gap: 0;
  }

  .office address {
    min-height: 0;
  }

  .office:first-child {
    padding-right: 0;
    padding-bottom: 28px;
  }

  .office + .office {
    padding-top: 28px;
    padding-inline: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
  }

  .office dl div {
    gap: 12px;
  }

  .footer-bottom {
    align-items: center;
  }

  .home-page .site-header {
    height: 70px;
  }

  .home-hero__content {
    padding-top: 118px;
    padding-bottom: 84px;
  }

  .home-hero h1 {
    font-size: clamp(51px, 15vw, 68px);
  }

  .home-scroll-cue {
    display: none;
  }

  .metric-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 18px;
  }

  .metric-grid--five > div:last-child {
    grid-column: 1 / -1;
  }

  .metric-grid dt {
    font-size: 42px;
  }

  .metric-grid dd {
    font-size: 13px;
  }

  .project-slide {
    width: min(100%, calc(100vw - 56px));
    max-width: 100%;
    height: clamp(280px, calc(100svh - 110px), 470px);
    min-height: 0;
    aspect-ratio: auto;
  }

  .project-slide__copy strong {
    font-size: 24px;
  }

  .news-slide {
    width: min(100%, calc(100vw - 56px));
    max-width: 100%;
    min-width: 0;
  }

  .news-slide__media {
    height: min(290px, max(210px, calc(100svh - 250px)));
  }

  .carousel-arrow {
    display: none;
  }

  .carousel-progress {
    width: 100%;
  }

  .home-story__grid {
    gap: 36px;
  }

  .page-hero {
    min-height: 430px;
  }

  .page-hero__content {
    padding-block: 58px;
  }

  .page-hero__content h1 {
    font-size: 58px;
  }

  .page-hero__content > p {
    font-size: 19px;
  }

  .section-intro__copy {
    font-size: 27px;
  }

  .editorial-media {
    min-height: 390px;
  }

  .timeline article {
    grid-template-columns: 90px 1fr;
    gap: 18px;
  }

  .value-grid,
  .region-grid,
  .projects-grid,
  .office-cards {
    grid-template-columns: 1fr;
  }

  .region-card,
  .region-card--wide {
    grid-column: auto;
    min-height: 570px;
  }

  .region-card__content {
    padding: 26px 22px;
  }

  .region-card__heading h2 {
    font-size: 52px;
  }

  .regional-switcher {
    overflow-x: auto;
    gap: 28px;
    white-space: nowrap;
  }

  .regional-projects-head {
    margin-bottom: 42px;
    gap: 24px;
  }

  .portfolio-rail-copy p {
    font-size: 16px;
  }

  .portfolio-slide {
    width: min(
      100%,
      calc(100vw - 56px),
      max(240px, calc(133svh - 133px))
    );
    max-width: 100%;
  }

  .portfolio-card__content {
    min-height: 164px;
    padding: 24px 20px 27px;
  }

  .portfolio-card__content h3 {
    font-size: 29px;
  }

  .portfolio-rail-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .portfolio-rail-footer .carousel-progress {
    width: 100%;
  }

  .project-detail-hero {
    min-height: min(max(620px, 86svh), 820px);
  }

  .project-detail-hero__content {
    padding-top: 108px;
    padding-bottom: 40px;
  }

  .project-detail-back {
    font-size: 15px;
  }

  .project-detail-back::before {
    font-size: 20px;
  }

  .project-detail-kicker {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .project-detail-hero h1 {
    font-size: clamp(49px, 15vw, 66px);
  }

  .project-overview__grid {
    gap: 46px;
  }

  .project-overview__lead,
  .project-overview__statement h2 {
    margin-top: 20px;
    font-size: 21px;
  }

  .project-facts > div {
    grid-template-columns: 94px 1fr;
    gap: 16px;
  }

  .project-gallery-heading {
    margin-bottom: 38px;
    gap: 22px;
  }

  .project-gallery-heading > p {
    font-size: 15px;
  }

  .project-gallery-slide {
    width: min(
      100%,
      calc(100vw - 56px),
      max(220px, calc(80svh - 112px))
    );
    max-width: 100%;
    aspect-ratio: 4 / 5;
  }

  .project-gallery-slide--fit {
    --gallery-height: calc(
      min(100%, calc(100vw - 56px), max(220px, calc(80svh - 112px))) / 0.8
    );
    width: min(
      calc(var(--gallery-height) * var(--slide-aspect, 1.6)),
      min(100%, calc(100vw - 56px))
    );
    height: auto;
  }

  .project-gallery-slide--portrait {
    width: min(
      100%,
      calc(100vw - 56px),
      max(190px, calc(75svh - 120px))
    );
    aspect-ratio: 3 / 4;
  }

  .project-gallery-carousel > .carousel-progress {
    width: 100%;
  }

  .project-perspective {
    padding-block: 64px;
  }

  .project-perspective__inner {
    padding-block: 34px;
    gap: 30px;
  }

  .project-perspective__copy h2 {
    margin-top: 18px;
    font-size: 34px;
  }

  .project-perspective__copy > p:last-child {
    margin-top: 18px;
    font-size: 15px;
  }

  .project-perspective__link {
    width: 100%;
    justify-content: space-between;
  }

  .portfolio-note {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .value-card {
    min-height: 250px;
  }

  .value-card h3 {
    margin-top: 60px;
  }

  .division-item {
    grid-template-columns: 48px 1fr;
    min-height: 0;
  }

  .division-item__details {
    grid-column: 2;
  }

  .division-item__details ul {
    grid-template-columns: 1fr;
  }

  .sector-list {
    grid-template-columns: 1fr;
  }

  .sector-list article {
    min-height: 200px;
  }

  .sector-list h3 {
    margin-top: 80px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .form-field,
  .form-field--full,
  .form-consent,
  .form-status,
  .contact-form .cta {
    grid-column: 1;
  }

  .legal-layout {
    gap: 42px;
  }

  .page-cta h2 {
    font-size: 50px;
  }
}

@media (max-width: 1024px) {
  .article-hero {
    min-height: min(max(640px, 88svh), 840px);
  }

  .article-hero__content {
    padding-top: 112px;
    padding-bottom: 44px;
  }

  .article-hero h1 {
    font-size: clamp(52px, 11vw, 78px);
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .article-aside {
    position: static;
  }

  .article-aside dl {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .article-aside dl > div {
    padding: 16px;
    border-right: 1px solid rgba(45, 23, 25, 0.14);
  }

  .article-aside dl > div:last-child {
    border-right: 0;
  }

  .article-prose {
    max-width: none;
  }

  .article-copy-section p {
    max-width: 780px;
  }
}

@media (max-width: 600px) {
  .article-hero {
    min-height: min(max(610px, 86svh), 760px);
  }

  .article-hero__content {
    padding-top: 104px;
    padding-bottom: 34px;
  }

  .article-hero__meta {
    flex-wrap: wrap;
    margin-bottom: 14px;
    font-size: 10px;
    gap: 8px 18px;
  }

  .article-hero__meta span + span::before {
    left: -11px;
  }

  .article-hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(39px, 11vw, 52px);
    line-height: 1;
    overflow-wrap: break-word;
    text-wrap: pretty;
  }

  .article-layout {
    gap: 48px;
  }

  .article-aside dl {
    grid-template-columns: 1fr;
  }

  .article-aside dl > div {
    display: grid;
    grid-template-columns: 90px 1fr;
    padding: 13px 0;
    border-right: 0;
  }

  .article-aside dt {
    margin-bottom: 0;
  }

  .article-lead {
    margin-bottom: 62px;
    font-size: 28px;
  }

  .article-copy-section h2 {
    margin-bottom: 22px;
    font-size: 34px;
  }

  .article-copy-section p {
    font-size: 16px;
    line-height: 1.68;
  }

  .article-pullquote {
    padding-left: 20px;
  }

  .article-pullquote p {
    font-size: 28px;
  }

  .article-inline-media {
    width: calc(100% + (2 * var(--gutter)));
    margin-left: calc(-1 * var(--gutter));
  }

  .article-inline-media figcaption {
    padding-inline: var(--gutter);
  }

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

  .iconica-snapshot div:nth-child(3) {
    border-top: 1px solid rgba(45, 23, 25, 0.14);
    border-left: 0;
  }

  .iconica-snapshot div:nth-child(4) {
    border-top: 1px solid rgba(45, 23, 25, 0.14);
  }

  .iconica-pillars,
  .iconica-expertise-list {
    grid-template-columns: 1fr;
  }

  .iconica-identity-feature {
    grid-template-columns: 1fr;
  }

  .iconica-identity-feature__media {
    max-height: none;
  }

  .iconica-identity-feature__content {
    padding: 36px var(--gutter) 42px;
  }

  .iconica-identity-feature h2 {
    font-size: 34px;
  }

  .iconica-pillars > div {
    min-height: 0;
  }

  .iconica-expertise-list li:nth-child(odd) {
    border-right: 0;
  }
}

@media (max-width: 1180px) {
  .about-impact-feature__grid {
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(44px, 6vw, 76px);
  }

  .about-impact-feature__media {
    min-height: 470px;
  }

  .social-impact-program {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
    gap: clamp(42px, 6vw, 76px);
  }

  .social-impact-program--reverse {
    grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
  }
}

@media (max-width: 1024px) {
  .about-impact-feature__grid {
    grid-template-columns: 1fr;
  }

  .about-impact-feature__media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .about-impact-feature__copy {
    max-width: 680px;
  }

  .social-impact-hero {
    min-height: 100svh;
  }

  .social-impact-hero .page-hero__content {
    grid-template-rows: auto minmax(80px, 1fr) auto auto;
    align-content: end;
  }

  .social-impact-back,
  .social-impact-hero__heading,
  .social-impact-hero__content > p {
    grid-column: 1;
  }

  .social-impact-back {
    grid-row: 1;
  }

  .social-impact-hero__heading {
    grid-row: 3;
  }

  .social-impact-hero__content > p {
    grid-row: 4;
  }

  .social-impact-principles {
    grid-template-columns: 1fr;
  }

  .social-impact-principles article {
    min-height: 0;
    padding-block: 32px 38px;
    border-right: 0;
    border-bottom: 1px solid rgba(45, 23, 25, 0.18);
  }

  .social-impact-principles article:last-child {
    border-bottom: 0;
  }

  .social-impact-heritage__grid article,
  .social-impact-heritage__grid article:nth-child(2n) {
    min-height: 0;
    border-right: 0;
  }

  .social-impact-heritage__grid article:last-child {
    border-bottom: 1px solid rgba(45, 23, 25, 0.18);
  }

  .social-impact-principles h3 {
    margin-top: 52px;
  }

  .social-impact-programs__heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
  }

  .social-impact-programs__heading > p {
    max-width: 680px;
    padding-bottom: 0;
  }

  .social-impact-program,
  .social-impact-program--reverse {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .social-impact-program--reverse figure {
    order: 0;
  }

  .social-impact-program figure {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .social-impact-program__copy {
    max-width: 720px;
  }

  .social-impact-metrics__heading {
    max-width: 680px;
  }

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

  .social-impact-metrics__grid > div {
    border-right: 0;
  }

  .social-impact-metrics__grid > div:nth-child(odd) {
    border-right: 1px solid rgba(45, 23, 25, 0.2);
  }

  .social-impact-metrics__grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(45, 23, 25, 0.2);
  }

  .social-impact-statement__inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

@media (max-width: 600px) {
  .about-impact-feature__grid {
    gap: 42px;
  }

  .about-impact-feature__media {
    width: calc(100% + (2 * var(--gutter)));
    margin-left: calc(-1 * var(--gutter));
    aspect-ratio: 4 / 3;
  }

  .about-impact-feature__copy h2 {
    margin-top: 18px;
    font-size: 44px;
  }

  .about-impact-feature__copy > p:not(.section-intro__label) {
    margin-top: 24px;
    font-size: 17px;
  }

  .impact-text-link {
    margin-top: 32px;
  }

  .social-impact-hero {
    min-height: 100svh;
  }

  .social-impact-hero .page-hero__art {
    object-position: 58% center;
  }

  .social-impact-hero .page-hero__content {
    gap: 24px;
  }

  .social-impact-hero__eyebrow {
    margin-bottom: 14px;
    font-size: 13px;
  }

  .social-impact-hero .page-hero__content h1 {
    font-size: clamp(52px, 16vw, 68px);
  }

  .social-impact-hero .page-hero__content > p {
    width: 100%;
    max-width: 430px;
    min-width: 0;
    font-size: 18px;
    overflow-wrap: break-word;
  }

  .social-impact-intro__title {
    font-size: 30px;
  }

  .social-impact-intro .section-intro__copy > p {
    margin-top: 24px;
    font-size: 16px;
  }

  .social-impact-principles {
    margin-top: 58px;
  }

  .social-impact-principles article {
    padding-inline: 0;
  }

  .social-impact-principles h3 {
    margin-top: 42px;
    font-size: 31px;
  }

  .social-impact-program-list {
    margin-top: 50px;
  }

  .social-impact-program {
    padding-block: 34px 42px;
    gap: 30px;
  }

  .social-impact-program figure {
    width: calc(100% + (2 * var(--gutter)));
    margin-left: calc(-1 * var(--gutter));
    aspect-ratio: 4 / 3;
  }

  .social-impact-program__copy h3 {
    margin-top: 16px;
    font-size: 42px;
  }

  .social-impact-program__copy > p:not(.social-impact-program__index) {
    margin-top: 20px;
    font-size: 16px;
  }

  .social-impact-metrics {
    padding-block: 70px;
  }

  .social-impact-metrics__heading .section-title {
    margin-top: 16px;
    font-size: clamp(48px, 15vw, 64px);
  }

  .social-impact-metrics__heading > p:last-child {
    margin-top: 24px;
    font-size: 16px;
  }

  .social-impact-metrics__grid {
    margin-top: 48px;
  }

  .social-impact-metrics__grid > div {
    min-height: 165px;
    padding: 22px 16px;
  }

  .social-impact-metrics__grid dt {
    max-width: 135px;
    padding-top: 38px;
    font-size: 11px;
  }

  .social-impact-metrics__grid dd {
    font-size: clamp(40px, 12vw, 52px);
  }

  .social-impact-statement {
    padding-block: 88px;
  }

  .social-impact-statement__inner {
    gap: 30px;
  }

  .social-impact-statement blockquote {
    font-size: 45px;
  }

  .social-impact-page .page-cta h2 {
    font-size: 46px;
  }
}

/*
 * About and Projects: immersive first screen below 2000px.
 * At ≥2000px their height is matched to the white-header + grey stack
 * (see large-display block; higher specificity beats base .page-hero).
 */
@media (max-width: 1999px) {
  .page-hero.page-hero--adaptive-immersive {
    min-height: 100vh;
    min-height: 100svh;
  }

  .page-hero.page-hero--adaptive-immersive .page-hero__content {
    min-height: 100vh;
    min-height: 100svh;
    align-content: end;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: clamp(72px, 8vw, 112px);
  }
}

/*
 * Divisions, Investors, and News use in-flow headers with grey first screens.
 * On laptop / MacBook widths the previous clamp capped short of the viewport,
 * leaving a white strip under the hero. Fill the remaining first-screen height
 * only between phone and wide-display breakpoints so those compositions stay.
 */
@media (min-width: 1025px) and (max-width: 1999px) {
  .page-hero--viewport-fill {
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100svh - var(--header-height));
  }

  .page-hero--viewport-fill .page-hero__content,
  .page-hero--viewport-fill .diagram-hero__layout {
    min-height: inherit;
  }
}

@media (max-width: 1024px) {
  .page-hero--adaptive-immersive .page-hero__content {
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }

  .page-hero--adaptive-immersive .page-hero__content > * {
    min-width: 0;
  }

  .page-hero--adaptive-immersive .page-hero__content > p {
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 600px) {
  .hero-line {
    --diagram-art-opacity: 0.34;
    top: 48px;
    right: -70px;
    width: min(108vw, 460px);
    opacity: 0.34;
  }
}

/*
 * Section captions: retain the established phone/tablet scale, then add
 * restrained fluid growth from laptop widths through large/TV displays.
 */
@media (min-width: 1025px) {
  .section-intro__label {
    font-size: clamp(17px, 1.1vw, 21px);
  }

  .eyebrow {
    font-size: clamp(15px, 0.95vw, 18px);
  }

  .social-impact-principles span,
  .social-impact-program__index,
  .social-impact-cta__label {
    font-size: clamp(17px, 1.1vw, 21px);
  }

  .project-facts dt {
    font-size: clamp(16px, 0.95vw, 19px);
  }

  .project-facts dd {
    font-size: clamp(18px, 1.15vw, 23px);
  }

  .investor-portal-hero__eyebrow {
    font-size: clamp(14px, 0.9vw, 17px);
  }

  .project-detail-back {
    font-size: clamp(18px, 1.05vw, 21px);
  }

  .project-detail-kicker {
    font-size: clamp(14px, 0.92vw, 17px);
  }
}

/* Unified desktop hero geometry
 *
 * Header and hero shells used to remain inside the 1440px content container
 * until a hard 2000px breakpoint. That created a large inward jump at common
 * 1680–1920px displays, followed by a second outward jump at QHD. Keep the
 * editorial content container unchanged, but let first-screen compositions
 * follow one continuous viewport-relative grid at every desktop width. */
@media (min-width: 1025px) {
  :root {
    --hero-shell-gutter: clamp(70px, 6.8vw, 300px);
    --hero-bottom-inset: clamp(70px, 7vh, 108px);
  }

  .brand {
    width: clamp(273px, 16vw, 360px);
  }

  .primary-nav {
    gap: clamp(28px, 2.35vw, 48px);
  }

  .primary-nav a {
    font-size: clamp(16px, 1vw, 21px);
  }

  .home-page .header-inner,
  .inner-page .header-inner,
  .home-hero__content,
  .page-hero__content,
  .diagram-hero__layout,
  .investor-portal-hero__shell {
    width: 100%;
    max-width: none;
    padding-right: var(--hero-shell-gutter);
    padding-left: var(--hero-shell-gutter);
  }

  .home-scroll-cue {
    right: var(--hero-shell-gutter);
  }

  .page-hero.page-hero--adaptive-immersive {
    min-height: 100vh;
    min-height: 100svh;
  }

  .page-hero.page-hero--adaptive-immersive .page-hero__content {
    min-height: inherit;
    align-content: end;
    padding-top: calc(var(--header-height) + clamp(40px, 4vh, 68px));
    padding-bottom: var(--hero-bottom-inset);
  }

  .page-hero--viewport-fill {
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100svh - var(--header-height));
  }

  .page-hero--viewport-fill .page-hero__content,
  .page-hero--viewport-fill .diagram-hero__layout {
    min-height: inherit;
  }

  .page-hero__content,
  .diagram-hero__layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    align-items: end;
    padding-bottom: var(--hero-bottom-inset);
    gap: clamp(64px, 6vw, 128px);
  }

  .page-hero__content h1,
  .page-hero--adaptive-immersive .page-hero__content h1 {
    max-width: 11em;
    font-size: clamp(78px, 6.9vw, 168px);
    line-height: 0.94;
  }

  .divisions-photo-hero .page-hero__content {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding-bottom: clamp(72px, 7vh, 110px);
  }

  .investors-photo-hero .page-hero__content {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding-bottom: clamp(72px, 7vh, 110px);
  }

  .divisions-photo-hero .page-hero__content h1 {
    max-width: none;
  }

  .divisions-photo-hero__lockup {
    max-width: none;
  }

  .page-hero__content > p,
  .page-hero--adaptive-immersive .page-hero__content > p {
    width: 100%;
    max-width: 590px;
    padding-bottom: 0.12em;
    font-size: clamp(21px, 1.45vw, 30px);
  }

  .diagram-hero__copy h1 {
    max-width: 9.5em;
    font-size: clamp(76px, 6.35vw, 152px);
    line-height: 0.95;
  }

  .diagram-hero.page-hero--viewport-fill .hero-line {
    width: min(100%, 900px);
    margin-bottom: clamp(-30px, -1.35vw, -16px);
  }

  .home-hero h1 {
    max-width: 1120px;
    font-size: clamp(78px, 6.9vw, 154px);
  }

  .social-impact-hero__content {
    padding-right: var(--hero-shell-gutter);
    padding-left: var(--hero-shell-gutter);
  }
}

/* Preserve the authored two-line headline at QHD and 4K widths. */
@media (min-width: 2000px) {
  .home-hero h1 {
    max-width: min(1500px, 80vw);
    font-size: clamp(126px, 5.6vw, 150px);
  }
}

/* Unified wide footer
 *
 * The previous QHD layout forced nine links into a 4 × 2 grid, producing an
 * implicit fifth column that collided with the legal navigation. The office
 * content also stayed at small desktop scale inside very wide columns. */
.office__name {
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 1.2;
}

@media (min-width: 1440px) {
  .site-footer {
    padding-block: clamp(54px, 4vw, 104px) clamp(30px, 2.2vw, 58px);
  }

  .site-footer > .container {
    width: 100%;
    max-width: none;
    padding-right: var(--hero-shell-gutter, clamp(98px, 6.8vw, 300px));
    padding-left: var(--hero-shell-gutter, clamp(98px, 6.8vw, 300px));
  }

  .footer-top {
    padding-bottom: clamp(34px, 2.2vw, 56px);
  }

  .footer-top > a:first-child {
    width: clamp(240px, 12vw, 350px);
  }

  .footer-main {
    grid-template-columns: minmax(0, 1fr) minmax(180px, 14vw);
    grid-template-rows: auto auto;
    padding-block: clamp(38px, 2.8vw, 68px) clamp(44px, 3vw, 76px);
    column-gap: clamp(72px, 7vw, 170px);
    row-gap: clamp(28px, 1.8vw, 42px);
  }

  .footer-title {
    grid-column: 1 / -1;
    grid-row: 1;
    padding-top: 0;
    font-size: clamp(12px, 0.7vw, 16px);
  }

  .footer-main .footer-nav:first-of-type {
    grid-column: 1;
    grid-row: 2;
    grid-auto-flow: column;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(3, auto);
    gap: clamp(11px, 0.75vw, 17px) clamp(48px, 5vw, 120px);
  }

  .footer-main .footer-nav:last-of-type {
    grid-column: 2;
    grid-row: 2;
  }

  .footer-nav {
    gap: clamp(11px, 0.75vw, 17px);
  }

  .footer-nav a {
    font-size: clamp(16px, 0.78vw, 20px);
    line-height: 1.4;
  }

  .office-grid {
    padding-block: clamp(46px, 3.2vw, 82px) clamp(50px, 3.5vw, 90px);
  }

  .office:first-child {
    padding-right: clamp(34px, 3vw, 76px);
  }

  .office + .office {
    padding-inline: clamp(34px, 3vw, 76px);
  }

  .office:last-child {
    padding-right: 0;
  }

  .office__name {
    margin-bottom: clamp(22px, 1.5vw, 36px);
    font-size: clamp(21px, 1vw, 26px);
  }

  .office address,
  .office dl {
    font-size: clamp(14px, 0.68vw, 18px);
  }

  .office address {
    min-height: clamp(118px, 7vw, 160px);
    line-height: 1.62;
  }

  .office dl {
    margin-top: clamp(18px, 1.1vw, 28px);
    gap: clamp(7px, 0.5vw, 11px);
  }

  .office dl div {
    grid-template-columns: minmax(82px, 0.3fr) minmax(0, 1fr);
    gap: clamp(14px, 1vw, 24px);
  }

  .social-link--office {
    width: clamp(38px, 1.7vw, 48px);
    height: clamp(38px, 1.7vw, 48px);
    margin-top: clamp(22px, 1.4vw, 34px);
    font-size: clamp(13px, 0.65vw, 17px);
  }

  .footer-bottom {
    padding-top: clamp(24px, 1.5vw, 38px);
  }

  .footer-bottom,
  .footer-bottom a {
    font-size: clamp(13px, 0.64vw, 17px);
  }
}

@media (min-width: 2400px) {
  .office {
    grid-template-columns: minmax(120px, 0.72fr) minmax(286px, 1.35fr) auto;
    grid-template-rows: auto 1fr;
    column-gap: clamp(18px, 1.2vw, 32px);
  }

  .office__name {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .office address {
    grid-column: 1;
    grid-row: 2;
    min-height: 0;
  }

  .office dl {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    margin-top: 0;
  }

  .office .social-link--office {
    grid-column: 3;
    grid-row: 2;
    align-self: end;
    margin-top: 0;
  }
}

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

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

  .hero-line,
  .home-scroll-cue i {
    animation: none !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Languages without published routes stay visible but inert. */
.lang-switch__menu [aria-disabled="true"] {
  display: block;
  padding: 9px 4px;
  color: inherit;
  opacity: 0.45;
  cursor: default;
  font-size: 15px;
  line-height: 1.2;
}

/* Czech and Slovak fit-ups.
   Carons and acutes sit above the cap height these display headings were tuned
   for, so an eyebrow directly above one is touched by the next line's
   diacritics; and words like "Súčasnosť" are wider than the English ones the
   timeline's fixed period column was sized for. Both rules are scoped by
   language, so the English pages are untouched. */
.section-intro__label:lang(cs),
.section-intro__label:lang(sk) {
  margin-bottom: 10px;
}

.timeline:lang(cs) article,
.timeline:lang(sk) article {
  grid-template-columns: minmax(160px, max-content) 1fr;
}

/* An editorial heading with a designed line break has to hold each of its two
   lines on one line. Czech and Slovak run about two characters longer per line
   than the English they were sized against, so those two languages step the
   size down; headings without a forced break wrap on their own and keep it. */
.editorial-copy h2:has(br):lang(cs),
.editorial-copy h2:has(br):lang(sk) {
  font-size: clamp(39px, 4.75vw, 67px);
}

/* Cloudflare Turnstile. The widget runs in Invisible mode and renders nothing,
   so the row holds only the disclosure line, styled as fine print under the
   consent checkboxes. The widget itself is kept out of the layout. */
.form-turnstile {
  grid-column: 1 / -1;
}

.form-turnstile .cf-turnstile {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-turnstile__notice {
  margin: 0;
  color: rgba(45, 23, 25, 0.56);
  font-size: 12px;
  line-height: 1.5;
}

.form-turnstile__notice a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.careers-apply__review .form-turnstile {
  margin-top: 12px;
}

/* An address must never split across lines. With the whole address held
   together, it moves to the next line intact instead of breaking at the @. */
.partners-contact-list a {
  white-space: nowrap;
}

.careers-apply__review .cf-turnstile {
  margin-top: 14px;
}
