:root {
  --black: #0b0b0b;
  --ink: #171717;
  --muted: #64645f;
  --paper: #f1f1ec;
  --white: #ffffff;
  --line: #a7a79d;
  --lime: #ff554b;
  --coral-on-paper: #c9362e;
  --lime-dark: var(--coral-on-paper);
  --panel: #e4e4dc;
  --soft-line: #d0d0c8;
  --dark-line: #3a3a36;
  --landing-header-height: clamp(62px, 4.4vw, 90px);
  --site-title-size: clamp(48px, 4.2vw, 86px);
  --site-title-line: 0.95;
  --site-title-weight: 400;
  --site-title-tracking: -0.01em;
}

@font-face {
  font-family: "Neue Corp";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/PPNeueCorp-CompactRegular.woff2") format("woff2");
}

@font-face {
  font-family: "Neue Corp";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/PPNeueCorp-CompactMedium.woff2") format("woff2");
}

@font-face {
  font-family: "Neue Corp";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/PPNeueCorp-CompactSemibold.woff2") format("woff2");
}

* {
  box-sizing: border-box;
}

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

html,
body {
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Neue Corp", Arial, Helvetica, ui-sans-serif, system-ui, sans-serif;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: inherit;
}

body.is-locked {
  overflow: hidden;
}

body.subpage {
  background: #f4f4ef;
}

body::before {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: calc(var(--scroll-progress, 0) * 100%);
  height: 3px;
  background: #08090c;
  content: "";
  pointer-events: none;
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--lime);
  pointer-events: none;
  visibility: hidden;
  transform: translateY(-102%);
  transition:
    transform 900ms cubic-bezier(0.76, 0, 0.24, 1),
    visibility 0s linear 900ms;
}

.page-transition span {
  width: 12px;
  height: 12px;
  background: currentColor;
  transform: rotate(45deg);
  animation: loaderPulse 820ms ease-in-out infinite alternate;
}

body.is-loaded .page-transition {
  visibility: hidden;
  transform: translateY(-102%);
}

@keyframes loaderPulse {
  from {
    transform: rotate(45deg) scale(0.8);
  }

  to {
    transform: rotate(45deg) scale(1.3);
  }
}

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

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 2px solid var(--white);
  padding: 8px 16px;
  background: var(--black);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  transform: translateY(calc(-100% - 20px));
  transition: transform 160ms ease;
}

.skip-link:focus {
  outline: 3px solid var(--coral-on-paper);
  outline-offset: 2px;
  transform: translateY(0);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

#main-content {
  scroll-margin-top: var(--landing-header-height);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: grid;
  width: 100%;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid var(--soft-line);
  padding: 14px clamp(16px, 3.2vw, 48px);
  color: var(--white);
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    padding 180ms ease,
    transform 600ms cubic-bezier(0.53, 0, 0, 1);
}

.site-header::before {
  color: currentColor;
  content: "HASU DAYAN";
  font-size: 12px;
  font-weight: 800;
}

.site-header.is-scrolled {
  border-color: var(--ink);
  background: var(--paper);
  color: var(--ink);
}

.site-header.menu-open {
  border-color: var(--dark-line);
  background: var(--black);
  color: var(--paper);
}

.site-header.is-scrolled {
  padding-top: 9px;
  padding-bottom: 9px;
}

body.subpage .site-header {
  border-color: var(--ink);
  background: var(--paper);
  color: var(--ink);
  padding-top: 9px;
  padding-bottom: 9px;
}

body.subpage .site-header.menu-open {
  border-color: var(--dark-line);
  background: var(--black);
  color: var(--paper);
}

body.about-page .site-header:not(.is-scrolled):not(.menu-open) {
  border-color: transparent;
  background: transparent;
  color: var(--white);
}

body.about-page .site-header:not(.is-scrolled):not(.menu-open) .brand-mark img {
  filter: invert(1);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  justify-self: center;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 46px;
  aspect-ratio: 1;
  place-items: center;
  border: 0;
  color: var(--lime);
  font-size: 14px;
  line-height: 1;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1);
}

.site-header.is-scrolled .brand-mark img,
body.subpage .brand-mark img {
  filter: none;
}

.site-header.menu-open .brand-mark img,
body.subpage .site-header.menu-open .brand-mark img {
  filter: invert(1);
}

.brand-name {
  max-width: 130px;
  font-size: 13px;
  line-height: 0.95;
  overflow-wrap: anywhere;
}

.site-header.is-scrolled .brand-mark {
  width: 40px;
}

.nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  align-content: safe center;
  gap: clamp(8px, 1.1vw, 18px);
  padding: clamp(96px, 11vw, 150px) clamp(18px, 6vw, 92px) clamp(34px, 6vw, 76px);
  background: var(--black);
  color: var(--paper);
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-16px);
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav::before {
  position: absolute;
  top: clamp(96px, 11vw, 148px);
  left: clamp(18px, 6vw, 92px);
  color: var(--lime);
  content: var(--nav-heading, "Navigation");
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav::after {
  position: absolute;
  right: clamp(18px, 6vw, 92px);
  bottom: clamp(28px, 4vw, 54px);
  left: clamp(18px, 6vw, 92px);
  height: 1px;
  background: var(--dark-line);
  content: "";
}

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

.nav a {
  position: relative;
  display: block;
  width: fit-content;
  overflow: hidden;
  color: inherit;
  font-size: clamp(34px, min(5.4vw, 7.2svh), 86px);
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
}

.nav a span,
.nav a::before {
  display: block;
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav a::before {
  position: absolute;
  top: 100%;
  left: 0;
  color: var(--lime);
  content: attr(data-label);
}

.nav a:hover span {
  transform: translateY(-100%);
}

.nav a:hover::before {
  transform: translateY(-100%);
}

.menu-toggle {
  position: relative;
  z-index: 110;
  display: grid;
  width: 58px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle::before {
  position: absolute;
  top: 50%;
  right: calc(100% + 12px);
  content: "Menu";
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transform: translateY(-50%);
}

.menu-toggle span {
  position: absolute;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-toggle span:first-child {
  transform: translateY(-5px);
}

.menu-toggle span:last-child {
  transform: translateY(5px);
}

.menu-toggle[aria-expanded="true"]::before {
  content: "Close";
}

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

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

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  grid-template-rows: minmax(520px, 1fr) auto;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #0b0b0ba3;
  content: "";
}

.hero-media {
  position: absolute;
  inset: 0;
  margin: 0;
}

.hero-video-shell {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #08090c;
}

.hero-video-controls {
  position: absolute;
  top: auto;
  right: max(clamp(20px, 2.7vw, 42px), env(safe-area-inset-right));
  bottom: max(clamp(20px, 2.7vw, 42px), env(safe-area-inset-bottom));
  z-index: 4;
  display: flex;
  gap: 8px;
}

.hero-video-control {
  display: inline-grid;
  min-width: 48px;
  min-height: 48px;
  grid-template-columns: 24px auto;
  align-items: center;
  gap: 10px;
  border: 1px solid rgb(255 255 255 / 0.78);
  padding: 0 14px;
  background: rgb(8 9 12 / 0.72);
  color: #ffffff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  touch-action: manipulation;
  backdrop-filter: blur(12px);
  -webkit-tap-highlight-color: transparent;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.hero-video-control[hidden] {
  display: none;
}

.hero-video-control:hover {
  border-color: #ff5949;
  background: #ff5949;
  color: #08090c;
}

.hero-video-control:focus-visible {
  outline: 2px solid #ff5949;
  outline-offset: 3px;
}

.hero-video-control-icon {
  position: relative;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
}

.hero-video-icon {
  position: absolute;
  width: 24px;
  height: 24px;
}

.hero-video-icon-play path,
.hero-video-icon-pause path {
  fill: currentColor;
}

.hero-video-icon-expand path,
.hero-video-icon-collapse path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.8;
}

.hero-video-control[data-video-state="playing"] .hero-video-icon-play,
.hero-video-control[data-video-state="paused"] .hero-video-icon-pause,
.hero-video-control[data-fullscreen-state="closed"] .hero-video-icon-collapse,
.hero-video-control[data-fullscreen-state="open"] .hero-video-icon-expand {
  display: none;
}

.hero-video-control-label {
  white-space: nowrap;
}

.hero-video-shell.has-video-error .hero-video-controls {
  display: none;
}

.hero-video-shell:fullscreen,
.hero-video-shell:-webkit-full-screen {
  width: 100%;
  height: 100%;
  background: #08090c;
}

body:not(.subpage) .hero-video-shell:fullscreen .hero-video,
body:not(.subpage) .hero-video-shell:-webkit-full-screen .hero-video {
  width: 100%;
  height: 100%;
  filter: none;
  object-fit: contain;
  object-position: center;
  transform: none;
  transition: none;
}

.hero-video-shell:fullscreen .hero-video-controls,
.hero-video-shell:-webkit-full-screen .hero-video-controls {
  top: auto;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
}

@media (prefers-reduced-motion: reduce) {
  .hero-video-control {
    transition: none;
  }
}

.hero-media img,
.hero-media video {
  display: block;
  width: 100%;
  height: 112%;
  object-fit: cover;
  transform: translateY(calc(var(--hero-shift, 0) * 1px));
  transition: transform 80ms linear;
}

.hero-content {
  position: relative;
  z-index: 3;
  align-self: end;
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 142px 0 88px;
  transform: translateY(calc(var(--hero-copy-shift, 0) * 1px));
  transition: transform 80ms linear;
}

.hero-content .eyebrow,
.hero-content h1,
.hero-content p,
.hero-actions {
  opacity: 0;
  transform: translateY(26px);
}

body.is-loaded .hero-content .eyebrow,
body.is-loaded .hero-content h1,
body.is-loaded .hero-content p,
body.is-loaded .hero-actions {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-loaded .hero-content h1 {
  transition-delay: 100ms;
}

body.is-loaded .hero-content p {
  transition-delay: 180ms;
}

body.is-loaded .hero-actions {
  transition-delay: 260ms;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--lime-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--lime);
}

.hero h1 {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(58px, 11vw, 168px);
  font-weight: 900;
  line-height: 0.84;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-transform: uppercase;
}

.hero p:not(.eyebrow) {
  width: 100%;
  max-width: 660px;
  margin: 30px 0 0;
  color: #ddddd4;
  font-size: clamp(18px, 2.1vw, 28px);
  font-weight: 500;
  overflow-wrap: anywhere;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.button {
  position: relative;
  display: inline-flex;
  max-width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid currentColor;
  border-radius: 0;
  padding: 13px 18px;
  overflow: hidden;
  isolation: isolate;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    border-color 260ms ease,
    color 260ms ease;
}

.button::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: currentColor;
  content: "";
  transform: translateX(-102%);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.button::after {
  position: relative;
  z-index: 1;
  content: ">";
  font-weight: 900;
  transform: translateX(0);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.button span {
  position: relative;
  z-index: 1;
}

.button:hover::before {
  transform: translateX(0);
}

.button:hover::after {
  transform: translateX(4px);
}

.button.primary {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--black);
}

.button.primary:hover {
  color: var(--lime);
}

.button.primary::before {
  background: var(--black);
}

.button.secondary {
  background: transparent;
  color: var(--white);
}

.button.secondary:hover {
  border-color: var(--lime);
  color: var(--black);
}

.button.secondary::before {
  background: var(--lime);
}

.section {
  border-top: 1px solid var(--ink);
  padding: clamp(76px, 11vw, 150px) clamp(16px, 3.2vw, 48px);
}

.section-heading {
  display: grid;
  max-width: 1320px;
  grid-template-columns: minmax(180px, 0.35fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  margin: 0 auto clamp(44px, 6vw, 82px);
  border-top: 1px solid var(--ink);
  padding-top: clamp(18px, 2vw, 28px);
}

.section-heading.compact {
  display: block;
}

h2 {
  margin: 0;
  font-size: clamp(40px, 7vw, 104px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-transform: uppercase;
}

h3 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hasu-story {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.hasu-story-inner {
  display: grid;
  width: min(100%, 1320px);
  gap: clamp(24px, 3.2vw, 50px);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 106px) clamp(16px, 3.2vw, 48px);
}

.hasu-story h2 {
  margin: 0;
  font-size: clamp(44px, 5.2vw, 84px);
  font-weight: 700;
  line-height: 0.96;
  text-transform: none;
}

.hasu-story-copy {
  display: grid;
  width: min(100%, 1120px);
  gap: clamp(12px, 1.1vw, 20px);
}

.hasu-story-copy p {
  margin: 0;
  font-size: clamp(18px, 1.16vw, 24px);
  font-weight: 500;
  line-height: 1.36;
}

.hasu-story-copy .hasu-story-lead {
  font-weight: 600;
}

.services {
  background: var(--paper);
  padding: 0;
}

.enerblock-style {
  --ener-x: -1px;
  --ener-y: -1px;
  --ener-right: 100%;
  --ener-bottom: 100%;
  --ener-img-scale: 2;
  --ener-inset: 0px;
  --ener-mask-pad: 0px;
  position: relative;
  border-top: 1px solid var(--ink);
  border-bottom: 0;
  background: #f4f4ef;
  color: #08090c;
}

.enerblock-pin {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 100vh;
  grid-template-columns: 50% 50%;
  align-items: stretch;
}

.enerblock-media {
  position: relative;
  align-self: start;
  height: 100vh;
  min-height: 720px;
  border-right: 1px solid var(--line);
  overflow: hidden;
}

.enerblock-crossimg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(
    var(--ener-inset) calc(var(--ener-right) + var(--ener-mask-pad))
      calc(var(--ener-bottom) + var(--ener-mask-pad)) var(--ener-inset)
  );
  will-change: clip-path;
}

.enerblock-crossimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(var(--ener-img-scale));
  transform-origin: center center;
  will-change: transform;
}

.enerblock-cross {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.enerblock-cross .line {
  position: absolute;
  z-index: 2;
  background: var(--line);
}

.enerblock-cross .vertical,
.enerblock-cross .vertical-fixed {
  top: 0;
  width: 1px;
  height: 100%;
  transform-origin: 0 0;
}

.enerblock-cross .horizontal,
.enerblock-cross .horizontal-fixed {
  left: 0;
  height: 1px;
  width: 100%;
  transform-origin: 0 0;
}

.enerblock-cross .vertical {
  left: 0;
  transform: translateX(var(--ener-x));
}

.enerblock-cross .horizontal {
  top: 0;
  transform: translateY(var(--ener-y));
}

.enerblock-cross .vertical-fixed {
  display: none;
}

.enerblock-cross .horizontal-fixed {
  display: none;
}

.enerblock-cross .horizontal-fixed::after {
  position: absolute;
  top: 0;
  left: var(--ener-inset);
  z-index: 1;
  width: 1px;
  height: 100%;
  background: var(--line);
  content: "";
}

.enerblock-axis {
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
  color: #85857e;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 800;
  line-height: 1;
  transform: translate(var(--ener-x), var(--ener-y));
  white-space: nowrap;
}

.enerblock-axis.x-axis {
  left: 1rem;
  top: -1.5rem;
}

.enerblock-axis.y-axis {
  left: -3rem;
  top: 1rem;
}

.enerblock-dot {
  position: absolute;
  left: -0.125rem;
  top: -0.125rem;
  z-index: 4;
  width: 0.3125rem;
  height: 0.3125rem;
  background: #08090c;
  transform: translate(var(--ener-x), var(--ener-y));
}

.enerblock-copy {
  display: grid;
  min-width: 0;
  min-height: 100%;
  grid-template-rows: minmax(58vh, auto) 1fr;
}

.enerblock-statement {
  display: grid;
  min-width: 0;
  align-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: clamp(30px, 3.4vw, 64px) clamp(28px, 4vw, 58px) clamp(28px, 3vw, 44px);
}

.enerblock-statement h2 {
  width: min(100%, 900px);
  font-size: clamp(52px, 4.6vw, 86px);
  font-weight: 500;
  line-height: 0.91;
  overflow-wrap: anywhere;
  text-transform: none;
}

.mobile-break {
  display: none;
}

.enerblock-statement p {
  max-width: 560px;
  margin: clamp(42px, 5.6vw, 86px) 0 0;
  font-size: clamp(24px, 1.65vw, 32px);
  font-weight: 700;
  line-height: 1.08;
}

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

.enerblock-cards article {
  display: grid;
  min-height: 360px;
  align-content: space-between;
  border-right: 1px solid var(--line);
  padding: 30px clamp(22px, 2.6vw, 40px);
}

.enerblock-cards article:last-child {
  border-right: 0;
}

.enerblock-cards header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.enerblock-cards h3 {
  font-size: clamp(20px, 1.4vw, 28px);
  line-height: 1;
  text-transform: uppercase;
}

.enerblock-cards header span {
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  margin-top: 4px;
  background: #08090c;
}

.enerblock-cards p {
  margin: clamp(70px, 7.6vw, 118px) 0 0;
  font-size: clamp(22px, 1.55vw, 31px);
  font-weight: 500;
  line-height: 1.12;
}

.hasu-about .enerblock-copy {
  display: block;
  min-height: 100%;
}

.hasu-about .enerblock-statement {
  min-height: 100%;
  align-content: start;
  border-bottom: 0;
  padding: clamp(42px, 4.4vw, 88px) clamp(34px, 5.2vw, 90px);
}

.hasu-about .hasu-about-text {
  display: grid;
  width: min(100%, 1120px);
  gap: clamp(18px, 1.6vw, 30px);
}

.hasu-about .hasu-about-title {
  margin: 0 0 clamp(4px, 0.8vw, 12px);
  font-size: clamp(42px, 4.6vw, 82px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0;
}

.hasu-about .enerblock-statement p {
  width: auto;
  max-width: none;
  margin: 0;
  font-size: clamp(18px, 1.16vw, 24px);
  font-weight: 500;
  line-height: 1.36;
}

.hasu-about .enerblock-statement .hasu-lead {
  font-size: clamp(18px, 1.16vw, 24px);
  line-height: 1.36;
}

.hasu-about {
  position: relative;
  z-index: 20;
  overflow: hidden;
  border-top: 1px solid #ff5949;
  background: #08090c;
  color: #ff5949;
}

.hasu-about .hasu-intro-inner {
  min-height: clamp(620px, 72svh, 880px);
}

.hasu-about .hasu-intro-copy {
  display: grid;
  min-width: 0;
  min-height: clamp(620px, 72svh, 880px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hasu-about .hasu-intro-title {
  display: grid;
  min-width: 0;
  align-content: start;
  border-right: 1px solid #ff5949;
  padding: clamp(42px, 4.6vw, 86px) clamp(28px, 3.1vw, 58px) clamp(58px, 6vw, 112px);
}

.hasu-about .hasu-intro-copy h2 {
  width: max-content;
  max-width: 100%;
  margin: 0;
  color: #ff5949;
  font-size: clamp(56px, 4.55vw, 92px);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0;
  white-space: nowrap;
  text-transform: none;
}

.hasu-about .hasu-intro-text {
  display: grid;
  width: auto;
  gap: clamp(16px, 1.25vw, 24px);
  align-content: start;
  padding: clamp(42px, 4.6vw, 86px) clamp(42px, 4.5vw, 88px) clamp(58px, 6vw, 112px);
}

.hasu-about .hasu-intro-text p {
  margin: 0;
  color: #ff5949;
  font-size: clamp(18px, 1.18vw, 24px);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 920px) {
  .hasu-about .hasu-intro-inner {
    min-height: auto;
  }

  .hasu-about .hasu-intro-copy {
    min-height: 70svh;
    grid-template-columns: 1fr;
  }

  .hasu-about .hasu-intro-title {
    border-right: 0;
    border-bottom: 1px solid #ff5949;
    padding: clamp(30px, 6vw, 58px) clamp(20px, 5vw, 44px);
  }

  .hasu-about .hasu-intro-copy h2 {
    font-size: clamp(48px, 9vw, 82px);
    line-height: 0.98;
  }

  .hasu-about .hasu-intro-text {
    padding: clamp(26px, 6vw, 54px) clamp(20px, 5vw, 44px) clamp(64px, 12vw, 110px);
  }

  .hasu-about .hasu-intro-text p {
    font-size: clamp(18px, 3.1vw, 24px);
  }
}

@media (max-width: 620px) {
  .hasu-about .hasu-intro-copy {
    min-height: 76svh;
  }

  .hasu-about .hasu-intro-title {
    padding: 28px 16px;
  }

  .hasu-about .hasu-intro-copy h2 {
    font-size: clamp(42px, 13vw, 58px);
    line-height: 1;
  }

  .hasu-about .hasu-intro-text {
    gap: 16px;
    padding: 28px 16px 58px;
  }

  .hasu-about .hasu-intro-text p {
    font-size: 17px;
    line-height: 1.24;
  }
}

.outline-link {
  display: grid;
  width: min(100%, 370px);
  min-height: 58px;
  align-items: center;
  border: 1px solid #08090c;
  margin-top: 34px;
  padding: 0 18px;
  font-size: 18px;
  font-weight: 800;
}

.outline-link::after {
  justify-self: end;
  margin-top: -24px;
  content: ">";
}

.news .section-heading {
  max-width: 1320px;
}

.solutions-header {
  display: none;
}

.solutions-title {
  max-width: 760px;
}

.solutions-cross {
  position: relative;
  min-height: 250px;
  border-left: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.solutions-cross span:first-child,
.solutions-cross span:nth-child(2) {
  position: absolute;
  background: var(--ink);
  content: "";
}

.solutions-cross span:first-child {
  top: 0;
  right: 30%;
  bottom: 0;
  width: 1px;
}

.solutions-cross span:nth-child(2) {
  top: 48%;
  right: 0;
  left: 0;
  height: 1px;
}

.solutions-cross i {
  position: absolute;
  top: calc(48% - 4px);
  right: calc(30% - 4px);
  width: 9px;
  height: 9px;
  background: var(--ink);
}

.solution-stack {
  border-top: 1px solid var(--line);
  border-bottom: 0;
  background: #f4f4ef;
  color: #08090c;
  font-family: "Neue Corp", Arial, Helvetica, ui-sans-serif, system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.solution-head {
  position: relative;
  display: grid;
  min-height: auto;
  grid-template-columns: 1fr;
}

.solution-head::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--line);
  content: "";
  pointer-events: none;
}

.solution-title {
  display: grid;
  align-content: start;
  gap: clamp(120px, 11vw, 210px);
  padding: clamp(44px, 3.6vw, 72px) clamp(20px, 3.2vw, 48px) clamp(56px, 6vw, 104px);
}

.solution-label {
  display: block;
  width: fit-content;
  margin: 0;
  color: #08090c;
  font-family: "Neue Corp", Arial, Helvetica, ui-sans-serif, system-ui, sans-serif;
  font-size: var(--site-title-size);
  font-stretch: normal;
  font-weight: var(--site-title-weight);
  line-height: var(--site-title-line);
  letter-spacing: var(--site-title-tracking);
  text-transform: none;
}

.solution-label::after {
  display: none;
}

.solution-title h2 {
  width: min(100%, 1820px);
  color: #08090c;
  font-size: clamp(86px, 7.4vw, 152px);
  font-weight: 500;
  line-height: 0.88;
}

.solution-title,
.solution-title.reveal,
.solution-title.is-visible {
  opacity: 1;
  transform: none;
}

.solution-title h2 {
  clip-path: none;
  transform: none;
  transition: none;
}

.solution-crosshair {
  position: relative;
  min-height: 100%;
  border-left: 1px solid var(--line);
  overflow: hidden;
}

.solution-crosshair::before,
.solution-crosshair::after {
  position: absolute;
  background: var(--line);
  content: "";
}

.solution-crosshair::before {
  top: 0;
  right: 30%;
  bottom: 0;
  width: 1px;
}

.solution-crosshair::after {
  top: 48%;
  right: 0;
  left: 0;
  height: 1px;
}

.solution-cross-line {
  position: absolute;
  background: var(--line);
}

.solution-cross-line-y {
  top: 0;
  left: 20px;
  width: 1px;
  height: 100%;
}

.solution-cross-line-x {
  right: 0;
  bottom: 20px;
  left: 0;
  height: 1px;
}

.solution-cross-dot {
  position: absolute;
  top: calc(48% - 5px);
  right: calc(30% - 5px);
  width: 10px;
  height: 10px;
  background: #08090c;
}

.solution-cross-data {
  position: absolute;
  color: #7c7c75;
  font-size: clamp(15px, 1.1vw, 20px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.solution-cross-data-top {
  top: clamp(24px, 3vw, 44px);
  left: clamp(22px, 3vw, 48px);
}

.solution-cross-data-bottom {
  right: clamp(20px, 2.8vw, 42px);
  bottom: clamp(22px, 3vw, 46px);
}

.solution-list {
  --solution-grid-margin: clamp(16px, 1.3889vw, 28.444px);
  --solution-grid-gap: clamp(16px, 1.3889vw, 28.444px);
  --solution-line-1: 12.75%;
  --solution-line-2: 50%;
  position: relative;
  border-bottom: 0;
}

.solution-row {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: min(76vh, 760px);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--solution-grid-gap);
  border-top: 1px solid var(--line);
  background: #f4f4ef;
  color: #08090c;
  overflow: hidden;
  padding: 0 var(--solution-grid-margin);
}

.solution-row:nth-child(1) {
  z-index: 1;
}

.solution-row:nth-child(2) {
  z-index: 2;
}

.solution-row:nth-child(3) {
  z-index: 3;
}

.solution-row:nth-child(4) {
  z-index: 4;
}

.solution-row:nth-child(5) {
  z-index: 5;
}

.solution-row:nth-child(6) {
  z-index: 6;
}

.solution-row.reveal {
  opacity: 1;
  transform: none;
}

.solution-order {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  grid-column: 1 / span 3;
  padding: var(--solution-grid-margin) 0;
  font-size: clamp(16px, 1.25vw, 24px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
}

.solution-order i {
  display: block;
  width: auto;
  height: auto;
  margin-top: -1px;
  background: none;
  font-style: normal;
}

.solution-order i::before {
  content: "/";
}

.solution-content {
  display: flex;
  min-width: 0;
  grid-column: 7 / span 6;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(36px, 2.7778vw, 56px);
  border-left: 1px solid var(--line);
  margin-left: calc(var(--solution-grid-gap) / -2);
  padding: var(--solution-grid-margin) var(--solution-grid-margin) var(--solution-grid-margin)
    calc(var(--solution-grid-margin) + (var(--solution-grid-gap) / 2));
}

.solution-item-head {
  width: 79.72%;
  max-width: 100%;
}

.solution-item-head p {
  margin: 0 0 clamp(28px, 2vw, 40px);
  font-size: clamp(16px, 1.1vw, 24px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.solution-item-head p:only-child {
  margin-bottom: 0;
  font-size: clamp(36px, 2.65vw, 56px);
  font-weight: 500;
  line-height: 1;
  text-transform: none;
}

.solution-item-head h3 {
  margin: 0;
  font-size: clamp(22px, 1.55vw, 30px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.solution-item-head h3:first-child {
  margin-top: 0;
}

.solution-info {
  display: grid;
  width: 79.72%;
  max-width: 100%;
  gap: clamp(28px, 2.2222vw, 45.5px);
  margin-top: 0;
}

.solution-info p {
  margin: 0;
  font-size: clamp(16px, 1.25vw, 24px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.014222em;
}

.solution-info ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 1.15em;
  font-size: clamp(16px, 1.25vw, 24px);
  font-weight: 500;
  line-height: 1.23;
  letter-spacing: -0.014222em;
}

.solution-info li {
  padding-left: 0.08em;
}

.solution-info li strong {
  font-weight: 600;
}

.solution-info li::marker {
  font-size: 0.8em;
}

.solution-info .solution-continuation {
  gap: clamp(3px, 0.35vw, 7px);
  margin: calc(clamp(28px, 2.2222vw, 45.5px) * -0.62) 0 0;
  padding-left: 1.1em;
  font-size: clamp(16px, 1.25vw, 24px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.014222em;
}

.solution-info .solution-continuation li {
  padding-left: 0.1em;
}

.solution-info .solution-continuation li::marker {
  font-size: 0.85em;
}

.solution-learn {
  display: grid;
  width: min(100%, 342px);
  min-height: clamp(48px, 2.735vw, 56px);
  grid-template-columns: 1fr clamp(48px, 2.735vw, 56px);
  align-items: stretch;
  border: 1px solid #08090c;
  color: #08090c;
  font-size: clamp(15px, 1.0417vw, 21.333px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.solution-learn span,
.solution-learn b {
  display: grid;
  align-items: center;
}

.solution-learn span {
  padding: 0 clamp(14px, 1.2vw, 24px);
}

.solution-learn b {
  place-items: center;
  border-left: 1px solid currentColor;
  font-size: clamp(24px, 1.6vw, 32px);
  font-weight: 400;
  line-height: 1;
}

.solution-learn:hover,
.solution-learn:focus-visible {
  background: #08090c;
  color: #f4f4ef;
}

.solution-image {
  display: block;
  min-width: 0;
  grid-column: 4 / span 3;
  grid-row: 1;
  margin: 0 calc(var(--solution-grid-gap) / -2) 0 0;
  border-left: 1px solid var(--line);
  padding: var(--solution-grid-margin);
}

.solution-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1.25;
  object-fit: cover;
  object-position: center;
  background: #d9ddd8;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.solution-row:hover .solution-image img {
  transform: scale(1.045);
}

.service-grid,
.news-grid,
.project-grid {
  display: grid;
  max-width: 1320px;
  margin: 0 auto;
}

.service-grid {
  align-items: stretch;
  width: 100%;
  max-width: none;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.service-card {
  position: relative;
  display: grid;
  min-height: min(100vh, 862px);
  grid-template-columns: 31.8% 18.4% 49.8%;
  grid-template-areas: "visual . copy";
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
  isolation: isolate;
}

.service-card::before,
.service-card::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 1px;
  background: var(--line);
  content: "";
  pointer-events: none;
}

.service-card::before {
  left: 31.8%;
}

.service-card::after {
  left: 50.2%;
}

.service-card:nth-child(1) {
  z-index: 1;
}

.service-card:nth-child(2) {
  z-index: 2;
}

.service-card:nth-child(3) {
  z-index: 3;
}

.service-card:nth-child(4) {
  z-index: 4;
}

.service-card.is-active {
  outline: 0;
}

.service-card.reveal {
  opacity: 1;
  transform: none;
}

.service-order {
  display: none;
}

.service-order b {
  display: inline-block;
  color: var(--lime-dark);
  font-size: 24px;
  font-weight: 900;
  line-height: 0.7;
  transform: skewX(-12deg);
}

.service-copy {
  display: grid;
  grid-area: copy;
  position: relative;
  z-index: 2;
  min-height: 100%;
  align-content: start;
  grid-template-rows: auto auto;
  gap: 36px;
  padding: 43px clamp(60px, 6.8vw, 138px) 36px clamp(180px, 17.8vw, 365px);
}

.service-head {
  align-self: start;
}

.service-name {
  display: none;
}

.service-card h3 {
  max-width: 610px;
  font-size: clamp(54px, 4.05vw, 82px);
  font-weight: 500;
  line-height: 0.93;
  text-transform: none;
}

.service-info {
  display: grid;
  max-width: 620px;
  gap: 48px;
}

.service-info p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(21px, 1.18vw, 24px);
  font-weight: 500;
  line-height: 1.28;
}

.stack-button {
  position: relative;
  display: grid;
  width: 342px;
  min-height: 57px;
  grid-template-columns: 1fr 54px;
  align-items: center;
  border: 1px solid var(--ink);
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  text-transform: none;
}

.stack-button::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--ink);
  content: "";
  transform: translateX(-102%);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.stack-button span,
.stack-button svg {
  position: relative;
  z-index: 1;
}

.stack-button span {
  padding: 0 19px;
}

.stack-button svg {
  width: 100%;
  height: 100%;
  border-left: 1px solid currentColor;
  padding: 20px;
  fill: currentColor;
}

.stack-button:hover {
  color: var(--paper);
}

.stack-button:hover::before {
  transform: translateX(0);
}

.service-visual {
  position: relative;
  grid-area: visual;
  z-index: 2;
  height: calc(100% - 96px);
  min-height: 0;
  margin: 37px 0 0 29px;
  overflow: hidden;
  background: #d9ddd8;
  --cross-x: -1px;
  --cross-y: -1px;
}

.service-crossimg {
  width: 100%;
  height: 100%;
  overflow: hidden;
  clip-path: inset(0 90% 90% 0);
  will-change: clip-path;
}

.service-crossimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(2);
  transform-origin: center center;
  will-change: transform;
}

.service-card.is-active .service-crossimg img,
.service-card:hover .service-crossimg img {
  transform: scale(var(--cross-scale, 1));
}

.service-cross {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.service-cross .line {
  position: absolute;
  z-index: 2;
  background: var(--line);
}

.service-cross .vertical,
.service-cross .vertical-fixed {
  top: 0;
  width: 1px;
  height: 100%;
  transform-origin: 0 0;
}

.service-cross .horizontal,
.service-cross .horizontal-fixed {
  left: 0;
  height: 1px;
  width: 100%;
  transform-origin: 0 0;
}

.service-cross .vertical {
  left: 0;
  transform: translateX(var(--cross-x));
  transition: transform 100ms ease;
}

.service-cross .horizontal {
  top: 0;
  transform: translateY(var(--cross-y));
  transition: transform 100ms ease;
}

.service-cross .vertical-fixed {
  left: 0;
  z-index: 1;
  width: 1.25rem;
  border-right: 1px solid var(--line);
  background: var(--paper);
  transform: none;
}

.service-cross .horizontal-fixed {
  top: 0;
  z-index: 1;
  height: 1.25rem;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transform: none;
}

.service-cross .horizontal-fixed::after {
  position: absolute;
  top: 0;
  left: 1.25rem;
  z-index: 1;
  width: 1px;
  height: 100%;
  background: var(--line);
  content: "";
}

.service-cross .number-right,
.service-cross .number-bottom,
.service-cross .cross-point {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(var(--cross-x), var(--cross-y));
  transition: transform 100ms ease;
}

.service-cross .number-right,
.service-cross .number-bottom {
  color: var(--muted);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.service-cross .number-right {
  top: -1.5rem;
  left: 1rem;
}

.service-cross .number-bottom {
  top: 1rem;
  left: -3rem;
}

.service-cross .cross-point {
  z-index: 3;
  top: -0.125rem;
  left: -0.125rem;
  width: 0.3125rem;
  height: 0.3125rem;
  background: var(--black);
}

.projects {
  position: relative;
  z-index: 20;
  border-top: 1px solid var(--line);
  padding: 0;
  overflow: hidden;
  background: #08090c;
}

.case-header.section-heading {
  display: grid;
  max-width: none;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 0;
  margin: 0;
  border-top: 0;
  border-bottom: 1px solid var(--line);
  background: #f4f4ef;
  padding: clamp(54px, 4.2vw, 82px) clamp(20px, 3.2vw, 48px) clamp(74px, 8vw, 138px);
}

.case-kicker {
  display: none;
}

.case-kicker .eyebrow {
  margin: 0;
}

.case-kicker span {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--ink);
}

.case-header.section-heading h2 {
  width: min(100%, 1820px);
  max-width: none;
  color: #08090c;
  font-size: clamp(58px, 5.9vw, 122px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
  clip-path: none;
  transform: none;
  text-transform: none;
  transition: none;
}

.zero-harm-band {
  --zero-harm-divider-height: clamp(64px, 5vw, 98px);
  --zero-harm-image-height: clamp(390px, 33vw, 660px);

  position: relative;
  z-index: 20;
  min-height: calc(var(--zero-harm-divider-height) + var(--zero-harm-image-height));
  overflow: hidden;
  border-top: 0;
  border-bottom: 1px solid var(--ink);
  background: #f4f4ef;
  color: var(--white);
  isolation: isolate;
  padding-top: var(--zero-harm-divider-height);
}

.zero-harm-band img {
  position: absolute;
  top: var(--zero-harm-divider-height);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: calc(100% - var(--zero-harm-divider-height));
  object-fit: cover;
  object-position: center;
}

.zero-harm-band::before {
  position: absolute;
  inset: var(--zero-harm-divider-height) 0 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.24) 38%, rgba(0, 0, 0, 0.06) 100%),
    linear-gradient(180deg, rgba(8, 9, 12, 0.08) 0%, rgba(8, 9, 12, 0.36) 100%);
  content: "";
}

.zero-harm-band::after {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: var(--zero-harm-divider-height);
  background:
    linear-gradient(var(--line), var(--line)) 50% 0 / 1px 100% no-repeat,
    linear-gradient(var(--line), var(--line)) 0 100% / 100% 1px no-repeat;
  content: "";
  pointer-events: none;
}

.zero-harm-content {
  position: absolute;
  top: var(--zero-harm-divider-height);
  bottom: 0;
  left: 0;
  z-index: 3;
  display: grid;
  width: min(100%, 1200px);
  min-height: 0;
  align-content: end;
  padding: 0 clamp(20px, 3.2vw, 48px) clamp(28px, 2.8vw, 54px);
}

.zero-harm-content h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(58px, 5.2vw, 132px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.case-header.reveal,
.case-card.reveal {
  opacity: 1;
  transform: none;
}

.case-carousel {
  display: flex;
  max-width: none;
  gap: 1px;
  margin: 0;
  padding: 0 clamp(18px, 1.35vw, 28px) clamp(38px, 2.8vw, 56px);
  overflow-x: auto;
  background: transparent;
  scroll-padding-inline: clamp(18px, 1.35vw, 28px);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

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

.case-card {
  position: relative;
  display: grid;
  flex: 0 0 clamp(560px, 38.45vw, 792px);
  height: clamp(420px, 30vw, 560px);
  min-height: 0;
  overflow: hidden;
  background: #d9ddd8;
  color: var(--white);
  scroll-snap-align: start;
  isolation: isolate;
}

.case-card figure {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  overflow: hidden;
}

.case-card figure::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 9, 12, 0.18) 0%, rgba(8, 9, 12, 0.1) 42%, rgba(8, 9, 12, 0.5) 100%),
    linear-gradient(0deg, rgba(8, 9, 12, 0.25), rgba(8, 9, 12, 0.25));
  content: "";
}

.case-card figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

.case-card:hover figure img {
  transform: scale(1.08);
}

.case-card-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  justify-content: space-between;
  gap: clamp(22px, 2.2vw, 42px);
  padding: clamp(18px, 1.35vw, 28px);
}

.case-card-copy span {
  display: inline-flex;
  width: fit-content;
  border: 0;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: clamp(13px, 0.8vw, 16px);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.case-card.project-card h3 {
  max-width: calc(100% - 84px);
  color: var(--white);
  font-size: clamp(24px, 1.55vw, 34px);
  font-weight: 600;
  line-height: 1.04;
  clip-path: none;
  transform: none;
  text-transform: none;
  text-wrap: balance;
}

#projects .case-card figure {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
}

#projects .case-carousel {
  padding-bottom: 0;
  background: #ffffff;
}

#projects .case-header.section-heading {
  border-bottom-color: #ffffff;
}

#projects .case-controls {
  border-top: 1px solid #ffffff;
}

#projects .case-card.project-card {
  border: 0;
}

#projects .case-card figure img {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  max-width: none !important;
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  object-position: center !important;
}

#projects .case-card-copy {
  position: absolute;
  inset: 0;
  min-height: 0;
  background: transparent;
}

#projects .case-controls {
  padding-top: clamp(18px, 1.4vw, 28px);
}

.case-card-arrow {
  --card-arrow-icon: url("data:image/svg+xml,%3Csvg width='42' height='42' viewBox='0 0 42 42' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 27L34 8M18 8H34V24' fill='none' stroke='black' stroke-width='3.5' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E");
  --card-arrow-inset: clamp(9px, 0.58vw, 12px);
  position: absolute;
  right: clamp(18px, 1.35vw, 28px);
  bottom: clamp(18px, 1.35vw, 28px);
  z-index: 2;
  display: grid;
  width: clamp(50px, 3vw, 62px);
  height: clamp(50px, 3vw, 62px);
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background-color: transparent;
  color: var(--white);
  font-size: 0;
  font-weight: 300;
  line-height: 1;
  transition:
    background-color 240ms ease,
    color 240ms ease,
    transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.case-card-arrow::before {
  display: block;
  position: absolute;
  top: var(--card-arrow-inset);
  right: var(--card-arrow-inset);
  width: clamp(22px, 1.42vw, 28px);
  height: clamp(22px, 1.42vw, 28px);
  background: currentColor;
  content: "";
  -webkit-mask: var(--card-arrow-icon) center / contain no-repeat;
  mask: var(--card-arrow-icon) center / contain no-repeat;
}

.case-card:first-child .case-card-arrow {
  border-color: #ff5949;
  background-color: #ff5949;
  color: var(--ink);
}

.case-card:hover .case-card-arrow {
  border-color: #ff5949;
  background-color: #ff5949;
  color: var(--ink);
}

.case-card.project-card::before,
.case-card.project-card::after {
  display: none;
}

.case-controls {
  display: flex;
  gap: 12px;
  align-items: stretch;
  justify-content: flex-start;
  background: #f4f4ef;
  padding: 0 clamp(18px, 1.35vw, 28px) clamp(58px, 5vw, 96px);
}

.case-control,
.case-cta {
  --case-arrow-icon: url("data:image/svg+xml,%3Csvg width='30' height='22' viewBox='0 0 30 22' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 11H27M19 3L27 11L19 19' fill='none' stroke='black' stroke-width='3' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E");
  --case-arrow-offset: 8px;
  display: inline-grid;
  min-height: 58px;
  place-items: center;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    background 240ms ease,
    color 240ms ease;
}

.case-control {
  width: 58px;
  font-size: 0;
}

.case-control::before,
.case-cta b::before {
  display: block;
  width: 24px;
  height: 18px;
  background: currentColor;
  content: "";
  transform: translateY(var(--case-arrow-offset));
  -webkit-mask: var(--case-arrow-icon) center / contain no-repeat;
  mask: var(--case-arrow-icon) center / contain no-repeat;
}

.case-control[data-project-control="prev"]::before,
.case-control[data-news-control="prev"]::before {
  transform: translateY(var(--case-arrow-offset)) scaleX(-1);
}

.case-control:disabled {
  border-color: #b9b9b2;
  color: #b9b9b2;
  cursor: default;
}

.case-control:hover,
.case-cta:hover {
  background: var(--ink);
  color: var(--paper);
}

.case-control:disabled:hover {
  background: transparent;
  color: #b9b9b2;
}

.case-cta {
  grid-template-columns: 1fr 58px;
  min-width: 340px;
  text-transform: none;
}

.case-cta span {
  justify-self: start;
  padding: 0 22px;
}

.case-cta b {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  border-left: 1px solid currentColor;
  font-size: 0;
}

.brochure-actions,
.brochure-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.brochure-button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  padding: 15px 20px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

.brochure-button:hover,
.brochure-button:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.brochure-button-primary {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--ink);
}

.brochure-button-primary:hover,
.brochure-button-primary:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.about-copy-block .brochure-inline-actions {
  width: min(100%, 780px);
  padding-left: clamp(42px, 6vw, 112px);
}

.pdf-viewer-page {
  background: #08090c;
}

.pdf-viewer-main {
  min-height: 100vh;
  padding-top: 82px;
  background: #08090c;
}

.pdf-viewer-shell {
  height: calc(100vh - 82px);
  min-height: 640px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: clamp(10px, 1.2vw, 18px);
  padding: clamp(10px, 1.2vw, 18px);
  background: #08090c;
  color: var(--paper);
}

.flip-viewer-shell {
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.flip-loading {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: grid;
  place-items: center;
  background: #08090c;
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    opacity 280ms ease,
    visibility 0s linear 280ms;
}

.flip-viewer-shell.is-ready .flip-loading {
  visibility: hidden;
  opacity: 0;
}

.flip-book-stage {
  position: relative;
  display: grid;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 0;
  place-items: center;
}

.flip-book {
  width: min(
    calc(100vw - (2 * clamp(10px, 1.2vw, 18px))),
    1600px,
    calc((100svh - 145px) * var(--flip-spread-ratio, 1.414))
  );
  max-width: 100%;
  min-width: min(100%, 320px);
  perspective: 2600px;
  cursor: grab;
  user-select: none;
}

.flip-book.is-dragging {
  cursor: grabbing;
}

.flip-spread {
  position: relative;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  aspect-ratio: var(--flip-spread-ratio, 1.414) / 1;
  overflow: hidden;
  background: #fff;
  transform-style: preserve-3d;
}

.flip-book.is-single-page {
  width: min(70vw, 860px, calc((100svh - 300px) * var(--flip-page-ratio, 1.333)));
}

.flip-book.is-single-page .flip-spread {
  grid-template-columns: minmax(0, 1fr);
  aspect-ratio: var(--flip-page-ratio, 1.333) / 1;
}

.flip-book.is-single-page .flip-page-left {
  display: none;
}

.flip-book.is-single-page .flip-page-right {
  border-radius: 3px;
}

.flip-page,
.flip-face {
  overflow: hidden;
  background: #f8f8f4;
}

.flip-page {
  position: relative;
  display: grid;
  min-width: 0;
  place-items: center;
  border: 0;
  box-shadow: none;
}

.flip-page-left {
  z-index: 1;
  border-right: 0;
  border-radius: 3px 0 0 3px;
}

.flip-page-right {
  z-index: 2;
  width: calc(100% + 3px);
  margin-left: -3px;
  border-left: 0;
  border-radius: 0 3px 3px 0;
}

.flip-page.is-blank {
  background: #efefe8;
}

.flip-page img,
.flip-face img {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  object-fit: contain;
  pointer-events: none;
}

.flip-page.is-blank img {
  display: none;
}

.flip-page-turn {
  position: absolute;
  top: 0;
  z-index: 6;
  display: none;
  width: 50%;
  height: 100%;
  border: 0;
  background: transparent;
  box-shadow: none;
  pointer-events: none;
  transform-style: preserve-3d;
}

.flip-book.is-single-page .flip-page-turn {
  width: 100%;
}

.flip-page-turn.is-active {
  display: block;
}

.flip-page-turn.is-next {
  right: 0;
  transform-origin: left center;
}

.flip-page-turn.is-prev {
  left: 0;
  transform-origin: right center;
}

.flip-page-turn.is-next.is-animating {
  animation: brochureFlipNext 600ms cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.flip-page-turn.is-prev.is-animating {
  animation: brochureFlipPrev 600ms cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.flip-face {
  position: absolute;
  inset: 0;
  border: 0;
  backface-visibility: hidden;
}

.flip-face-back {
  transform: rotateY(180deg);
}

@keyframes brochureFlipNext {
  0% {
    transform: rotateY(0deg);
  }

  42% {
    box-shadow: none;
  }

  100% {
    transform: rotateY(-180deg);
  }
}

@keyframes brochureFlipPrev {
  0% {
    transform: rotateY(0deg);
  }

  42% {
    box-shadow: none;
  }

  100% {
    transform: rotateY(180deg);
  }
}

.flip-edge {
  position: absolute;
  top: 50%;
  z-index: 7;
  display: grid;
  width: clamp(42px, 4.4vw, 64px);
  height: clamp(42px, 4.4vw, 64px);
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  background: rgba(8, 9, 12, 0.36);
  color: var(--paper);
  cursor: pointer;
  opacity: 0.84;
  transform: translateY(-50%);
  transition:
    background 200ms ease,
    color 200ms ease,
    opacity 200ms ease;
}

.flip-edge:hover,
.flip-edge:focus-visible {
  background: var(--lime);
  color: var(--black);
  opacity: 1;
}

.flip-edge:disabled {
  cursor: default;
  opacity: 0.24;
}

.flip-edge span {
  width: 14px;
  height: 14px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.flip-edge-prev {
  left: clamp(12px, 2vw, 32px);
}

.flip-edge-prev span {
  transform: rotate(-135deg);
}

.flip-edge-next {
  right: clamp(12px, 2vw, 32px);
}

.flip-edge-next span {
  transform: rotate(45deg);
}

.flip-toolbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.flip-toolbar-link,
.flip-controls button {
  display: inline-grid;
  min-height: 46px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  padding: 0 18px;
  background: transparent;
  color: var(--paper);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.flip-toolbar-link:hover,
.flip-toolbar-link:focus-visible,
.flip-controls button:hover,
.flip-controls button:focus-visible {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--black);
}

.flip-toolbar-primary {
  justify-self: end;
  border-color: var(--lime);
  background: var(--lime);
  color: var(--black);
}

.flip-controls {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.flip-controls span {
  min-width: 116px;
  color: #d0d0c8;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.flip-controls button:disabled {
  cursor: default;
  opacity: 0.35;
}

.partners {
  --partners-title-line: clamp(210px, 13.7vw, 280px);

  position: relative;
  border-block: 1px solid var(--line);
  padding: clamp(76px, 8vw, 132px) clamp(22px, 4vw, 70px) clamp(92px, 9vw, 152px);
  background:
    linear-gradient(var(--line), var(--line)) 50% 0 / 1px var(--partners-title-line) no-repeat,
    linear-gradient(var(--line), var(--line)) 0 var(--partners-title-line) / 100% 1px no-repeat,
    #f4f4ef;
  color: #08090c;
  text-align: left;
}

.partners h2 {
  position: relative;
  z-index: 1;
  width: min(50%, 860px);
  margin: 0 0 clamp(86px, 9vw, 156px);
  color: #08090c;
  font-size: clamp(40px, 3.6vw, 68px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.footer .eyebrow {
  color: var(--lime);
}

.partner-marquee {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
}

.partner-row {
  display: flex;
  width: max-content;
  align-items: center;
  background: transparent;
  animation: partnerMarquee 48s linear infinite;
  will-change: transform;
}

.partner-row:not(.is-ready) {
  animation: none;
}

.partner-marquee:hover .partner-row {
  animation-play-state: paused;
}

.partner-set {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(44px, 5vw, 96px);
  padding-right: clamp(44px, 5vw, 96px);
}

.partner-link {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
}

.partner-row img {
  display: block;
  width: auto;
  max-width: clamp(210px, 17vw, 380px);
  max-height: clamp(100px, 8.4vw, 176px);
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
  padding: clamp(8px, 0.8vw, 16px);
  background: transparent;
}

.partner-set > img,
.partner-set > .partner-link {
  width: clamp(210px, 17vw, 380px);
  height: clamp(100px, 8.4vw, 176px);
}

.partner-set > .partner-link img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
}

@keyframes partnerMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .partner-marquee {
    overflow-x: auto;
  }

  .partner-row {
    animation: none;
  }
}

.news {
  position: relative;
  z-index: 20;
  padding: 0;
  overflow: hidden;
  background: #f4f4ef;
}

.news-accordion .subpage-list-copy h2 {
  width: min(100%, 860px);
  font-size: clamp(28px, 2.3vw, 46px);
  font-weight: 600;
  line-height: 1.03;
  text-transform: none;
}

.news-grid.case-carousel {
  display: flex;
  grid-template-columns: none;
  gap: 1px;
  max-width: none;
  margin: 0;
  background: transparent;
}

.news-card.case-card,
.news-card.case-card.reveal {
  overflow: hidden;
  background: #d9ddd8;
  opacity: 1;
  transform: none;
}

.news-card.case-card figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.news-card.case-card h3 {
  max-width: calc(100% - 84px);
  min-height: 0;
  padding: 0;
  color: var(--white);
  font-size: clamp(30px, 2vw, 44px);
  font-weight: 600;
  line-height: 1;
  clip-path: none;
  transform: none;
  text-transform: none;
  text-wrap: balance;
}

.news-card.case-card::before,
.news-card.case-card::after {
  display: none;
}

.news-card.case-card:first-child .case-card-arrow {
  border-color: #ff5949;
  background-color: #ff5949;
  color: var(--ink);
}

.news-card-accordion {
  border: 0;
  padding: 0;
  text-align: left;
  cursor: pointer;
}

.news-card-accordion .case-card-copy > div {
  width: calc(100% - 84px);
  max-width: 100%;
}

.news-card-accordion .case-card-copy h3 {
  max-width: 100%;
}

.news-card-accordion .news-accordion-panel {
  display: grid;
  max-height: 0;
  gap: 12px;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 320ms cubic-bezier(0.22, 1, 0.36, 1),
    margin-top 320ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease;
}

.news-card-accordion.is-open .news-accordion-panel {
  max-height: 190px;
  margin-top: 16px;
  opacity: 1;
}

.news-card-accordion .news-accordion-panel p {
  width: min(100%, 620px);
  margin: 0;
  color: rgb(255 255 255 / 0.86);
  font-size: clamp(15px, 0.9vw, 18px);
  font-weight: 500;
  line-height: 1.25;
}

.news-card-accordion .news-accordion-link {
  width: fit-content;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-decoration: underline;
  text-transform: uppercase;
  text-underline-offset: 4px;
}

.news-card-toggle {
  appearance: none;
  padding: 0;
}

.news-card-toggle::before {
  content: "+";
  font-size: clamp(30px, 1.8vw, 40px);
  font-weight: 400;
}

.news-card-accordion.is-open .news-card-toggle::before {
  content: "-";
}

.subpage-main {
  padding-top: 72px;
  background: #f4f4ef;
  color: #08090c;
}

body.about-page .subpage-main {
  padding-top: 0;
}

.subpage-hero {
  display: grid;
  min-height: clamp(520px, 66vh, 760px);
  grid-template-columns: 34% 66%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.subpage-hero-copy {
  display: grid;
  align-content: space-between;
  border-right: 1px solid var(--line);
  padding: clamp(32px, 4vw, 70px) clamp(22px, 3.2vw, 56px);
}

.operations-hero-minimal {
  min-height: clamp(180px, 24vh, 290px);
  grid-template-columns: 1fr;
  border-top: 0;
}

.operations-hero-minimal .subpage-hero-copy {
  align-content: end;
  border-right: 0 !important;
  padding: clamp(24px, 2.6vw, 46px) clamp(28px, 3.2vw, 64px);
}

.operations-hero-minimal .subpage-hero-media {
  display: none;
}

.operation-sort {
  display: grid;
  grid-template-columns: clamp(70px, 4.2vw, 92px) minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
  background: #f4f4ef;
  color: #08090c;
}

.operation-sort[hidden] {
  display: none;
}

.operation-sort-label {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  padding: clamp(14px, 1.4vw, 24px) clamp(6px, 0.8vw, 14px);
  color: #676760;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.operation-sort-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: clamp(16px, 1.45vw, 28px) clamp(22px, 2.4vw, 46px);
}

.operation-sort-controls button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid var(--line);
  background: transparent;
  padding: 0 clamp(14px, 1.15vw, 24px);
  color: #08090c;
  cursor: pointer;
  font: inherit;
  font-size: clamp(13px, 0.82vw, 16px);
  font-weight: 800;
  line-height: 1;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.operation-sort-controls button:hover,
.operation-sort-controls button:focus-visible,
.operation-sort-controls button[aria-pressed="true"] {
  border-color: #08090c;
  background: #08090c;
  color: #f4f4ef;
  outline: none;
}

.operation-sort.is-empty::after {
  grid-column: 2;
  padding: 0 clamp(22px, 2.4vw, 46px) clamp(16px, 1.45vw, 28px);
  color: #676760;
  content: "No operations for this service.";
  font-size: clamp(14px, 0.9vw, 18px);
  font-weight: 500;
}

.operation-manufacturing-showcase {
  border-bottom: 0;
  background: #f4f4ef;
  color: #08090c;
}

.operation-manufacturing-showcase[hidden] {
  display: none;
}

.operation-manufacturing-inner {
  display: grid;
  width: 100%;
  grid-template-columns: 34% 66%;
}

.operation-manufacturing-showcase h2 {
  display: grid;
  min-width: 0;
  align-content: start;
  border-right: 1px solid var(--line);
  margin: 0;
  background: #f4f4ef;
  padding: clamp(24px, 2.5vw, 42px) clamp(22px, 3.2vw, 56px);
  color: #08090c;
  font-size: clamp(34px, 2.65vw, 52px);
  font-weight: 500;
  line-height: 1;
  text-align: left;
  text-transform: none;
  text-wrap: balance;
}

.operation-manufacturing-copy {
  display: grid;
  min-width: 0;
  align-content: start;
  gap: clamp(16px, 1.3vw, 22px);
  margin: 0;
  background: #f4f4ef;
  padding: clamp(24px, 2.5vw, 42px) clamp(42px, 6vw, 112px);
  text-align: left;
}

.operation-manufacturing-copy p {
  width: min(100%, 960px);
  margin: 0;
  color: #4d4d47;
  font-size: clamp(18px, 1.18vw, 24px);
  font-weight: 500;
  line-height: 1.34;
}

.operation-manufacturing-copy .rich-text {
  display: grid;
  gap: clamp(16px, 1.3vw, 22px);
}

.operation-manufacturing-gallery {
  width: 100%;
  max-width: none;
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  margin: 0;
  overflow: hidden;
}

.operation-image-footer-divider {
  display: grid;
  height: clamp(84px, 6vw, 118px);
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f4f4ef;
}

.operation-image-footer-divider span {
  border-right: 1px solid var(--line);
}

.operation-image-footer-divider span:last-child {
  border-right: 0;
}

body.operations-page:has(.operation-manufacturing-showcase:not([hidden])) .footer {
  border-top: 0;
}

.operation-manufacturing-gallery img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3012 / 1195;
  object-fit: cover;
  object-position: center;
}

.subpage-list-card.is-filtered-out {
  display: none;
}

.operations-hero-minimal + .subpage-list .subpage-list-copy h2,
.operation-sort + .subpage-list .subpage-list-copy h2 {
  width: min(100%, 760px);
  font-size: clamp(30px, 2.65vw, 52px);
  line-height: 1.02;
}

.operations-hero-minimal + .subpage-list .subpage-list-copy,
.operation-sort + .subpage-list .subpage-list-copy {
  align-content: start;
  gap: clamp(22px, 2.4vw, 42px);
}

.operations-hero-minimal + .subpage-list .subpage-list-card,
.operation-sort + .subpage-list .subpage-list-card {
  grid-template-columns: clamp(70px, 4.2vw, 92px) minmax(0, 1fr) minmax(260px, 35%);
}

.operations-hero-minimal + .subpage-list .subpage-list-card.reveal,
.operation-sort + .subpage-list .subpage-list-card.reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none;
}

body.operations-page .subpage-list-card,
body.operations-page .subpage-list-card.reveal,
body.operations-page .subpage-list-card.is-visible,
body.operations-page .subpage-list-number,
body.operations-page .subpage-list-copy,
body.operations-page .subpage-list-media {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

.operations-hero-minimal + .subpage-list .subpage-list-card[id],
.operation-sort + .subpage-list .subpage-list-card[id] {
  scroll-margin-top: 78px;
}

.operations-hero-minimal + .subpage-list .subpage-list-number,
.operation-sort + .subpage-list .subpage-list-number {
  justify-content: center;
  padding-inline: clamp(4px, 0.5vw, 10px);
}

.operations-hero-minimal + .subpage-list .subpage-list-number i,
.operation-sort + .subpage-list .subpage-list-number i {
  display: none;
}

.operations-hero-minimal + .subpage-list .subpage-list-copy small,
.operation-sort + .subpage-list .subpage-list-copy small {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  border: 1px solid var(--lime-dark);
  border-radius: 4px;
  padding: 0 12px;
  background: rgb(148 197 38 / 0.12);
  color: var(--lime-dark);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.subpage-hero-title {
  margin: 0;
  font-size: clamp(46px, 4.4vw, 92px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-transform: uppercase;
}

.subpage-hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--lime-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.subpage-hero-kicker::after {
  width: 9px;
  height: 9px;
  background: #08090c;
  content: "";
}

.subpage-hero p:not(.subpage-hero-kicker) {
  width: min(100%, 560px);
  margin: clamp(48px, 8vw, 130px) 0 0;
  color: #55554f;
  font-size: clamp(22px, 1.7vw, 32px);
  font-weight: 600;
  line-height: 1.1;
}

.subpage-hero-media {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: #d9ddd8;
}

.subpage-hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 9, 12, 0.06), rgba(8, 9, 12, 0.26));
  content: "";
}

.subpage-hero-media img {
  width: 100%;
  height: 100%;
  min-height: clamp(520px, 66vh, 760px);
  object-fit: cover;
}

.about-image-hero {
  height: clamp(420px, 56vh, 640px);
  min-height: 0;
  grid-template-columns: 1fr;
  border-top: 0;
}

.about-image-hero .subpage-hero-media,
.about-image-hero .subpage-hero-media img {
  height: 100%;
  min-height: 0;
}

.subpage-intro {
  display: grid;
  grid-template-columns: 34% 33% 33%;
  border-bottom: 1px solid var(--line);
}

.subpage-intro > * {
  min-width: 0;
  border-right: 1px solid var(--line);
  padding: clamp(34px, 4vw, 70px) clamp(22px, 3.2vw, 56px);
}

.subpage-intro > *:last-child {
  border-right: 0;
}

.about-copy-block {
  position: relative;
  display: block;
  border-bottom: 0;
}

.about-copy-block::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 34%;
  width: 1px;
  background: var(--line);
  content: "";
}

.about-copy-block > * {
  position: relative;
  display: grid;
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(220px, 34%) minmax(0, 66%);
  column-gap: 0;
  row-gap: clamp(22px, 2.6vw, 42px);
  margin: 0;
  border-right: 0;
}

.about-copy-block h2 {
  grid-row: 1 / span 6;
  padding-right: clamp(24px, 4vw, 70px);
}

.about-copy-block p {
  width: min(100%, 780px);
  padding-left: clamp(42px, 6vw, 112px);
}

.about-copy-block .rich-text {
  width: min(100%, 780px);
  padding-left: clamp(42px, 6vw, 112px);
}

.about-copy-block .rich-text p {
  width: auto;
  padding-left: 0;
}

.subpage-intro h2,
.detail-copy h2,
.career-card h2 {
  margin: 0;
  font-size: clamp(28px, 2.2vw, 44px);
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
}

.subpage-intro p,
.subpage-intro li {
  margin: 0;
  color: #4d4d47;
  font-size: clamp(18px, 1.18vw, 24px);
  font-weight: 500;
  line-height: 1.34;
}

.subpage-intro p + p {
  margin-top: 16px;
}

.subpage-intro a {
  color: #08090c;
  font-weight: 800;
  text-decoration: underline;
}

.subpage-intro ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 1.1em;
}

.about-principles {
  grid-template-columns: 1fr;
}

.about-principles > div {
  display: grid;
  min-height: 0;
  grid-template-columns: 34% 66%;
  border-right: 0;
  border-bottom: 0;
  padding: 0;
}

.about-principle-inner {
  display: grid;
  min-width: 0;
  grid-column: 2;
  align-content: start;
  gap: clamp(14px, 1.3vw, 22px);
  border-left: 1px solid var(--line);
  padding: clamp(24px, 2.2vw, 36px) clamp(22px, 3.2vw, 56px);
}

.about-principles > div:first-child .about-principle-inner {
  border-top: 1px solid var(--line);
}

.about-principle-copy {
  display: grid;
  width: min(100%, 900px);
  align-content: start;
  gap: 12px;
}

.joint-venture-section {
  display: grid;
  grid-template-columns: 34% 66%;
  border-bottom: 1px solid var(--line);
  background: #f4f4ef;
}

.joint-venture-title {
  display: grid;
  align-content: start;
  min-height: clamp(215px, 16vw, 250px);
  border-right: 1px solid var(--line);
  padding: clamp(16px, 1.4vw, 24px) clamp(22px, 3.2vw, 56px);
}

.joint-venture-title h2 {
  max-width: 100%;
  margin: 0;
  color: #08090c;
  font-size: clamp(42px, 4.6vw, 78px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.92;
  overflow-wrap: normal;
  word-break: normal;
  text-transform: uppercase;
}

.joint-venture-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.joint-venture-card {
  position: relative;
  display: grid;
  min-height: clamp(215px, 16vw, 250px);
  align-content: center;
  gap: 24px;
  border-right: 1px solid var(--line);
  padding: clamp(16px, 1.4vw, 24px) clamp(22px, 3.2vw, 56px);
  color: #08090c;
  text-decoration: none;
}

.joint-venture-card:last-child {
  border-right: 0;
}

.joint-venture-card::before {
  position: absolute;
  inset: 0;
  background: #08090c;
  content: "";
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.joint-venture-card > * {
  position: relative;
  z-index: 1;
}

.joint-venture-card:hover::before {
  transform: scaleY(1);
}

.joint-venture-logo {
  position: relative;
  display: flex;
  width: 100%;
  height: clamp(72px, 7vw, 126px);
  align-items: center;
  margin: 0;
}

.joint-venture-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: left center;
}

.joint-venture-logo--dayan img {
  max-width: 74%;
  max-height: 74%;
}

.joint-venture-logo--hover-swap img {
  transition: opacity 220ms ease;
}

.joint-venture-logo-hover {
  position: absolute;
  top: 50%;
  left: 0;
  opacity: 0;
  transform: translateY(-50%);
}

.joint-venture-card:hover .joint-venture-logo--hover-swap .joint-venture-logo-primary {
  opacity: 0;
}

.joint-venture-card:hover .joint-venture-logo--hover-swap .joint-venture-logo-hover {
  opacity: 1;
}

.joint-venture-copy {
  color: #55554f;
  line-height: 1.24;
}

.joint-venture-card:hover .joint-venture-copy {
  color: rgb(244 244 239 / 0.72);
}

.joint-venture-card span {
  color: #55554f;
  font-size: clamp(17px, 1.15vw, 22px);
  font-weight: 500;
}

.joint-venture-card i {
  position: absolute;
  right: clamp(22px, 3.2vw, 56px);
  bottom: clamp(16px, 1.4vw, 24px);
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  font-style: normal;
  font-size: 22px;
  line-height: 1;
}

.joint-venture-card:hover {
  color: #f4f4ef;
}

.joint-venture-card:hover span {
  color: rgb(244 244 239 / 0.72);
}

.subpage-list {
  border-bottom: 1px solid var(--line);
}

.subpage-list-card {
  display: grid;
  min-height: clamp(360px, 46vw, 660px);
  grid-template-columns: clamp(70px, 4.2vw, 92px) minmax(0, 1fr) minmax(260px, 35%);
  border-top: 1px solid var(--line);
  background: #f4f4ef;
  color: #08090c;
}

body.operations-page .subpage-list {
  border-bottom: 0;
}

body.operations-page .subpage-list-card {
  border-top: 0;
  border-bottom: 1px solid var(--line);
}

.subpage-list-card:hover .subpage-list-media img {
  transform: scale(1.045);
}

.news-accordion .subpage-list-card {
  position: relative;
  min-height: clamp(128px, 11vw, 180px);
  grid-template-columns: 10% minmax(0, 80%) minmax(76px, 10%);
  cursor: pointer;
  overflow: hidden;
  transition:
    min-height 420ms cubic-bezier(0.22, 1, 0.36, 1),
    grid-template-columns 420ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 220ms ease;
}

.news-accordion .subpage-list-card:focus-visible {
  outline: 2px solid var(--lime-dark);
  outline-offset: -2px;
}

.news-accordion .subpage-list-card.is-open {
  min-height: clamp(420px, 42vw, 640px);
  grid-template-columns: 10% minmax(0, 55%) minmax(260px, 35%);
}

.news-accordion .subpage-list-copy {
  align-content: center;
  gap: clamp(18px, 2vw, 34px);
}

.news-accordion .subpage-list-card.is-open .subpage-list-copy {
  align-content: space-between;
}

.news-accordion-panel {
  display: grid;
  max-height: 0;
  gap: clamp(14px, 1.3vw, 24px);
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 360ms cubic-bezier(0.22, 1, 0.36, 1),
    margin-top 360ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease;
}

.news-accordion .subpage-list-card.is-open .news-accordion-panel {
  max-height: 280px;
  margin-top: clamp(18px, 2vw, 34px);
  opacity: 1;
}

.news-accordion-panel p {
  width: min(100%, 680px);
  margin: 0;
  color: #4d4d47;
  font-size: clamp(17px, 1.15vw, 23px);
  font-weight: 500;
  line-height: 1.25;
}

.news-accordion-link {
  width: fit-content;
  color: #08090c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: underline;
  text-transform: uppercase;
  text-underline-offset: 4px;
}

.news-accordion .subpage-list-media {
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px) scale(0.985);
  transition:
    opacity 260ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  visibility: hidden;
}

.news-accordion .subpage-list-card.is-open .subpage-list-media {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
  visibility: visible;
}

.news-accordion-action {
  position: relative;
  z-index: 3;
  display: grid;
  width: clamp(48px, 3.2vw, 64px);
  height: clamp(48px, 3.2vw, 64px);
  align-self: start;
  justify-self: end;
  margin: clamp(22px, 2.4vw, 38px) clamp(18px, 2.4vw, 40px);
  place-items: center;
  border: 1px solid var(--line);
  background: transparent;
  color: #08090c;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.news-accordion-action span {
  position: absolute;
  width: 34%;
  height: 2px;
  background: currentColor;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.news-accordion-action span:last-child {
  transform: rotate(90deg);
}

.news-accordion .subpage-list-card.is-open .news-accordion-action,
.news-accordion-action:hover,
.news-accordion-action:focus-visible {
  border-color: var(--lime);
  background: var(--lime);
  outline: none;
}

.news-accordion .subpage-list-card.is-open .news-accordion-action span:last-child {
  opacity: 0;
  transform: rotate(0deg);
}

body.news-page {
  background: #08090c;
}

body.news-page .site-header {
  border-color: rgb(255 89 73 / 0.55);
  background: #08090c;
  color: #f4f4ef;
}

body.news-page .site-header .brand-mark img {
  filter: none;
}

body.news-page .subpage-main {
  min-height: calc(100vh - 72px);
  background: #08090c;
  color: #f4f4ef;
}

body.news-page .operations-hero-minimal {
  border-bottom-color: rgb(255 89 73 / 0.58);
  background: #08090c;
}

body.news-page .operations-hero-minimal .subpage-hero-copy {
  min-height: clamp(210px, 25vh, 320px);
  border-bottom: 0;
}

body.news-page .subpage-hero-title {
  color: #ff5949;
}

body.news-page .subpage-list.news-accordion {
  border-top: 0;
  border-bottom: 1px solid rgb(255 89 73 / 0.55);
  padding: 0;
  background: #08090c;
}

body.news-page .news-accordion .subpage-list-card,
body.news-page .news-accordion .subpage-list-card.reveal,
body.news-page .news-accordion .subpage-list-card.is-visible,
body.news-page .operations-hero-minimal + .subpage-list .subpage-list-card {
  display: grid;
  min-height: clamp(88px, 6.1vw, 124px);
  grid-template-columns: minmax(120px, 15%) minmax(0, 1fr) clamp(72px, 7.6vw, 130px);
  align-items: center;
  border-top: 0;
  border-bottom: 1px solid rgb(255 89 73 / 0.55);
  background: #08090c;
  color: #ff5949;
  opacity: 1 !important;
  overflow: visible;
  transform: none !important;
  transition:
    background-color 180ms ease,
    color 180ms ease;
  visibility: visible !important;
}

body.news-page .news-accordion .subpage-list-card:hover,
body.news-page .news-accordion .subpage-list-card.is-open {
  background: #101114;
}

body.news-page .news-accordion .subpage-list-card:first-child {
  border-top: 1px solid rgb(255 89 73 / 0.55);
}

body.news-page .news-accordion .subpage-list-card.is-open {
  grid-template-columns: minmax(120px, 15%) minmax(0, 49%) minmax(240px, 28%) clamp(72px, 7.6vw, 130px);
}

body.news-page .news-accordion .subpage-list-number {
  display: flex;
  grid-column: 1;
  grid-row: 1;
  align-items: center;
  align-self: stretch;
  border-right: 0;
  padding: 0 clamp(18px, 1.6vw, 34px);
  color: #ff5949;
  font-size: clamp(24px, 2vw, 38px);
  font-weight: 900;
  line-height: 1;
}

body.news-page .news-accordion .subpage-list-number i {
  display: block;
  width: auto;
  height: auto;
  margin: 0 0 0 clamp(10px, 0.9vw, 18px);
  background: none;
  font-style: normal;
}

body.news-page .news-accordion .subpage-list-number i::before {
  content: "/";
}

body.news-page .news-accordion .subpage-list-copy small {
  display: none;
}

body.news-page .news-accordion .subpage-list-copy,
body.news-page .operations-hero-minimal + .subpage-list .subpage-list-copy {
  display: grid;
  grid-column: 2;
  grid-row: 1;
  align-content: center;
  gap: 0;
  border-right: 0;
  padding: clamp(14px, 1vw, 22px) clamp(16px, 2.4vw, 46px);
}

body.news-page .news-accordion .subpage-list-copy h2,
body.news-page .operations-hero-minimal + .subpage-list .subpage-list-copy h2 {
  width: min(100%, 1200px);
  margin: 0;
  color: #ff5949;
  font-size: clamp(18px, 1.34vw, 28px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
}

body.news-page .news-accordion .news-accordion-panel {
  max-height: 0;
  gap: clamp(12px, 1.2vw, 22px);
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
}

body.news-page .news-accordion .subpage-list-card.is-open .news-accordion-panel {
  max-height: 320px;
  margin-top: clamp(16px, 1.6vw, 28px);
  opacity: 1;
}

body.news-page .news-accordion-panel p {
  width: min(100%, 740px);
  color: #c9c9c1;
  font-size: clamp(14px, 0.84vw, 17px);
  font-weight: 500;
  line-height: 1.32;
}

body.news-page .news-accordion-link {
  color: #f4f4ef;
  font-size: 12px;
  font-weight: 900;
}

body.news-page .news-accordion .subpage-list-media {
  display: none;
  grid-column: 3;
  grid-row: 1;
  width: 100%;
  margin: 0;
  padding: clamp(18px, 1.5vw, 30px) 0;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  visibility: visible;
}

body.news-page .news-accordion .subpage-list-card.is-open .subpage-list-media {
  display: block;
  opacity: 1;
  transform: none;
  visibility: visible;
}

body.news-page .news-accordion .subpage-list-media img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  max-height: 290px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: none;
}

body.news-page .news-accordion-action {
  grid-column: 3;
  grid-row: 1;
  width: clamp(44px, 4vw, 78px);
  height: clamp(44px, 4vw, 78px);
  min-height: 0;
  align-self: center;
  justify-self: center;
  border: 0;
  margin: 0;
  background: #3f3f43 !important;
  color: #ff5949;
}

body.news-page .news-accordion .subpage-list-card.is-open .news-accordion-action {
  grid-column: 4;
}

body.news-page .news-accordion-action span {
  width: clamp(14px, 1.2vw, 24px);
  height: 2px;
  background: currentColor;
}

body.news-page .news-accordion .subpage-list-card.is-open .news-accordion-action,
body.news-page .news-accordion-action:hover,
body.news-page .news-accordion-action:focus-visible {
  border: 0;
  background: #ff5949 !important;
  color: #08090c;
}

.subpage-list-number {
  display: flex;
  gap: 0;
  align-items: flex-start;
  border-right: 1px solid var(--line);
  padding: clamp(22px, 2.4vw, 38px) clamp(8px, 1vw, 18px);
  font-size: clamp(16px, 1.25vw, 24px);
  font-weight: 900;
  line-height: 1;
}

.subpage-list-number i {
  display: none;
  width: 8px;
  height: 14px;
  margin-top: -1px;
  background:
    linear-gradient(45deg, transparent 0 45%, currentColor 45% 55%, transparent 55% 100%),
    linear-gradient(-45deg, transparent 0 45%, currentColor 45% 55%, transparent 55% 100%);
}

.subpage-list-copy {
  display: grid;
  align-content: space-between;
  gap: clamp(64px, 9vw, 150px);
  border-right: 1px solid var(--line);
  padding: clamp(22px, 2.4vw, 38px) clamp(24px, 4vw, 68px);
}

.subpage-list-copy small {
  color: var(--lime-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.subpage-list-copy h2 {
  width: min(100%, 900px);
  margin: 0;
  font-size: clamp(42px, 4.4vw, 84px);
  font-weight: 500;
  line-height: 0.94;
  text-transform: none;
}

.subpage-list-copy p {
  width: min(100%, 680px);
  margin: clamp(20px, 2vw, 34px) 0 0;
  color: #4d4d47;
  font-size: clamp(18px, 1.24vw, 25px);
  font-weight: 500;
  line-height: 1.3;
}

.operation-details {
  display: grid;
  gap: clamp(16px, 1.5vw, 28px);
  width: min(100%, 760px);
  margin-top: clamp(22px, 2vw, 38px);
  color: #41413c;
  font-size: clamp(17px, 1.12vw, 23px);
  font-weight: 500;
  line-height: 1.12;
}

.operation-details p,
.operation-details ul {
  width: auto;
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.operation-details strong,
.operation-details h3 {
  color: #30302c;
  font-weight: 900;
}

.operation-detail-block {
  display: grid;
  gap: 2px;
}

.operation-detail-block h3 {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
}

.operation-detail-block ul {
  display: grid;
  gap: 3px;
  padding-left: 1.2em;
}

.services-detail-list {
  background: #f4f4ef;
}

.service-detail-card {
  scroll-margin-top: 86px;
}

.services-detail-list .subpage-list-card {
  min-height: auto;
  grid-template-columns: clamp(70px, 4.2vw, 92px) minmax(0, 57%) minmax(260px, 38%);
}

.service-detail-copy {
  align-content: start;
  gap: clamp(22px, 2.2vw, 40px);
}

.service-detail-copy h2 {
  width: min(100%, 760px);
  font-size: clamp(34px, 3.4vw, 64px);
}

.service-detail-body {
  display: grid;
  width: min(100%, 860px);
  gap: clamp(16px, 1.5vw, 28px);
  margin-top: clamp(20px, 2vw, 36px);
  color: #242421;
  font-size: clamp(17px, 1.12vw, 23px);
  font-weight: 500;
  line-height: 1.28;
}

.service-detail-body p,
.service-detail-body ul {
  width: auto;
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.service-detail-body ul {
  display: grid;
  gap: clamp(10px, 0.8vw, 16px);
  padding-left: 1.15em;
}

.service-detail-body strong {
  font-weight: 800;
}

.subpage-list-media {
  margin: 0;
  padding: clamp(18px, 1.55vw, 28px);
}

.subpage-list-media[data-gallery-href],
.detail-hero-media[data-gallery-href],
.case-card figure[data-gallery-href] {
  position: relative;
  cursor: pointer;
  outline: none;
  overflow: hidden;
}

.subpage-list-media[data-gallery-href]::after,
.detail-hero-media[data-gallery-href]::after {
  --gallery-arrow-icon: url("data:image/svg+xml,%3Csvg width='42' height='42' viewBox='0 0 42 42' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 27L34 8M18 8H34V24' fill='none' stroke='black' stroke-width='3.5' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E");
  --gallery-arrow-inset: clamp(9px, 0.58vw, 12px);
  position: absolute;
  right: clamp(18px, 1.35vw, 28px);
  bottom: clamp(18px, 1.35vw, 28px);
  z-index: 1;
  width: clamp(50px, 3vw, 62px);
  height: clamp(50px, 3vw, 62px);
  border: 1px solid #ff5949;
  background-color: #ff5949;
  background-image: var(--gallery-arrow-icon);
  background-repeat: no-repeat;
  background-position: right var(--gallery-arrow-inset) top var(--gallery-arrow-inset);
  background-size: clamp(22px, 1.42vw, 28px) clamp(22px, 1.42vw, 28px);
  color: #08090c;
  content: "";
  font-size: 0;
  line-height: 1;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.subpage-list-media[data-gallery-href]:hover::after,
.subpage-list-media[data-gallery-href]:focus-visible::after,
.detail-hero-media[data-gallery-href]:hover::after,
.detail-hero-media[data-gallery-href]:focus-visible::after {
  border-color: #ff5949;
  background-color: #ff5949;
  color: #08090c;
  transform: scale(1.04);
}

.subpage-list-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  background: #d9ddd8;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.detail-hero {
  display: grid;
  grid-template-columns: 46% 54%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.detail-hero-copy {
  display: grid;
  align-content: space-between;
  min-height: clamp(580px, 78vh, 860px);
  border-right: 1px solid var(--line);
  padding: clamp(34px, 4vw, 72px) clamp(22px, 3.2vw, 58px);
}

.detail-hero-copy h1 {
  margin: 0;
  font-size: clamp(46px, 5.5vw, 112px);
  font-weight: 500;
  line-height: 0.92;
  text-transform: uppercase;
}

.detail-hero-copy p {
  width: min(100%, 620px);
  margin: clamp(42px, 5vw, 84px) 0 0;
  color: #4d4d47;
  font-size: clamp(20px, 1.5vw, 30px);
  font-weight: 600;
  line-height: 1.14;
}

.detail-hero-media {
  margin: 0;
  min-height: clamp(580px, 78vh, 860px);
  background: #d9ddd8;
}

.detail-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-hero {
  display: grid;
  min-height: clamp(380px, 48vh, 620px);
  align-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: clamp(30px, 3.2vw, 58px) clamp(28px, 3.2vw, 64px);
}

.gallery-hero-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.gallery-hero h1 {
  width: min(100%, 1220px);
  margin: 0;
  font-size: clamp(44px, 6.8vw, 126px);
  font-weight: 500;
  line-height: 0.92;
  text-transform: uppercase;
}

.gallery-hero small {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  border: 1px solid var(--lime-dark);
  border-radius: 4px;
  padding: 0 12px;
  background: rgb(148 197 38 / 0.12);
  color: var(--lime-dark);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.project-gallery-grid figure {
  display: grid;
  min-height: clamp(360px, 40vw, 680px);
  margin: 0;
  border-right: 1px solid var(--line);
  padding: clamp(16px, 1.55vw, 28px);
}

.project-gallery-grid figure:nth-child(3n) {
  border-right: 0;
}

.project-gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  background: #d9ddd8;
}

.project-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 115;
  display: grid;
  padding: clamp(8px, 1vw, 18px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 240ms ease,
    visibility 0s linear 240ms;
  visibility: hidden;
}

.project-gallery-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  transition:
    opacity 240ms ease,
    visibility 0s linear 0s;
  visibility: visible;
}

.project-gallery-backdrop {
  position: absolute;
  inset: 0;
  background: rgb(8 9 12 / 0.74);
}

.project-gallery-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 1840px);
  max-height: calc(100vh - clamp(16px, 2vw, 36px));
  align-self: center;
  justify-self: center;
  grid-template-rows: auto minmax(0, 1fr);
  border: 1px solid var(--line);
  background: #f4f4ef;
  box-shadow: 0 30px 80px rgb(0 0 0 / 0.34);
  overflow: hidden;
  transform: translateY(18px) scale(0.985);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-gallery-modal.is-open .project-gallery-dialog {
  transform: translateY(0) scale(1);
}

.project-gallery-bar {
  display: flex;
  min-height: clamp(54px, 4.2vw, 76px);
  align-items: stretch;
  justify-content: flex-end;
  border-bottom: 1px solid var(--line);
  background: #f4f4ef;
}

.project-gallery-close {
  position: relative;
  display: grid;
  width: clamp(54px, 4.2vw, 76px);
  min-height: clamp(54px, 4.2vw, 76px);
  place-items: center;
  border: 0;
  border-left: 1px solid var(--line);
  background: transparent;
  color: #08090c;
  cursor: pointer;
}

.project-gallery-close span {
  position: absolute;
  width: 34%;
  height: 2px;
  background: currentColor;
}

.project-gallery-close span:first-child {
  transform: rotate(45deg);
}

.project-gallery-close span:last-child {
  transform: rotate(-45deg);
}

.project-gallery-close:hover,
.project-gallery-close:focus-visible {
  background: var(--lime);
  outline: none;
}

.project-gallery-modal-grid {
  position: relative;
  display: grid;
  min-height: 0;
  overflow: hidden;
  padding: clamp(8px, 1vw, 18px);
}

.project-gallery-frame {
  display: grid;
  min-height: min(78vh, 860px);
  margin: 0;
  place-items: center;
  background: #e4e4df;
}

.project-gallery-frame img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: min(78vh, 860px);
  object-fit: cover;
  object-position: center;
}

.project-gallery-next {
  position: absolute;
  top: 50%;
  right: clamp(22px, 2.2vw, 42px);
  display: grid;
  width: clamp(58px, 5vw, 86px);
  height: clamp(58px, 5vw, 86px);
  place-items: center;
  border: 1px solid var(--line);
  background: rgb(244 244 239 / 0.86);
  color: #08090c;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.project-gallery-next span {
  display: block;
  width: 30%;
  height: 30%;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateX(-12%) rotate(45deg);
}

.project-gallery-next:hover,
.project-gallery-next:focus-visible {
  background: var(--lime);
  outline: none;
  transform: translateY(-50%) translateX(3px);
}

.project-gallery-count {
  position: absolute;
  left: clamp(22px, 2.2vw, 42px);
  bottom: clamp(20px, 2vw, 38px);
  margin: 0;
  color: #08090c;
  font-size: clamp(12px, 0.9vw, 15px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: 34% 66%;
  border-bottom: 1px solid var(--line);
}

.detail-meta,
.detail-copy {
  padding: clamp(34px, 4vw, 70px) clamp(22px, 3.2vw, 58px);
}

.detail-meta {
  display: grid;
  align-content: start;
  gap: 22px;
  border-right: 1px solid var(--line);
}

.detail-meta h2 {
  font-size: clamp(42px, 4.8vw, 82px);
}

.detail-meta dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.detail-meta dt {
  color: var(--lime-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-meta dd {
  margin: 4px 0 0;
  color: #08090c;
  font-size: clamp(20px, 1.5vw, 30px);
  font-weight: 700;
  line-height: 1.12;
}

.detail-copy {
  display: grid;
  gap: clamp(28px, 3vw, 46px);
}

.detail-copy p,
.detail-copy li {
  margin: 0;
  color: #3d3d38;
  font-size: clamp(19px, 1.34vw, 27px);
  font-weight: 500;
  line-height: 1.34;
}

.detail-copy ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.2em;
}

.about-timeline {
  margin: 0;
}

.about-timeline img {
  width: min(100%, 820px);
  height: auto;
  object-fit: contain;
  background: #ffffff;
}

.timeline-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f4f4ef;
}

.timeline-section-head {
  display: grid;
  grid-template-columns: 34% 66%;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}

.timeline-section-head .back-link {
  margin: clamp(22px, 2.8vw, 44px) clamp(22px, 3.2vw, 58px);
}

.timeline-section-head h2 {
  display: flex;
  align-items: center;
  margin: 0;
  border-left: 1px solid var(--line);
  padding: clamp(22px, 2.8vw, 44px) clamp(22px, 3.2vw, 58px);
  font-size: clamp(42px, 5vw, 96px);
}

.web-timeline {
  --timeline-bg: #08090c;
  --timeline-ink: var(--paper);
  --timeline-accent: var(--lime);
  --timeline-line: #3a3a36;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 96px;
  margin: 0;
  padding: clamp(48px, 5.5vw, 96px) 0 clamp(54px, 6vw, 104px);
  background: var(--timeline-bg);
  color: var(--timeline-ink);
}

.web-timeline::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent calc(34% - 1px), rgb(255 255 255 / 0.12) 34%, transparent calc(34% + 1px)),
    linear-gradient(0deg, transparent calc(50% - 1px), rgb(255 255 255 / 0.06) 50%, transparent calc(50% + 1px));
  content: "";
  pointer-events: none;
}

.timeline-years {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0;
  max-width: 1360px;
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  padding: 0 clamp(24px, 4vw, 72px) clamp(54px, 5vw, 86px);
  scroll-padding-inline: clamp(24px, 4vw, 72px);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

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

.timeline-years::before {
  position: absolute;
  right: clamp(24px, 4vw, 72px);
  bottom: clamp(28px, 2.9vw, 50px);
  left: clamp(24px, 4vw, 72px);
  height: 1px;
  background: rgb(244 244 239 / 0.22);
  content: "";
}

.timeline-years::after {
  position: absolute;
  bottom: clamp(28px, 2.9vw, 50px);
  left: clamp(24px, 4vw, 72px);
  width: calc((100% - (clamp(24px, 4vw, 72px) * 2)) * var(--timeline-progress, 1));
  height: 1px;
  background: var(--timeline-accent);
  content: "";
  transition: width 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.timeline-year {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: clamp(128px, 12.5vw, 220px);
  place-items: start center;
  border: 0;
  padding: 0 0 clamp(34px, 3.8vw, 64px);
  background: transparent;
  color: var(--timeline-ink);
  font: inherit;
  cursor: pointer;
  scroll-snap-align: center;
}

.timeline-year span {
  display: block;
  color: rgb(244 244 239 / 0.45);
  font-size: clamp(18px, 1.35vw, 26px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  transition:
    color 220ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.timeline-year i {
  position: absolute;
  bottom: calc(clamp(28px, 2.9vw, 50px) - 5px);
  left: 50%;
  display: block;
  width: 10px;
  height: 10px;
  border: 1px solid rgb(244 244 239 / 0.52);
  border-radius: 999px;
  background: var(--timeline-bg);
  transform: translateX(-50%);
  transition:
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.timeline-year i::after {
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: transparent;
  content: "";
  transition: background 220ms ease;
}

.timeline-year.is-active span {
  color: var(--timeline-ink);
  transform: translateY(-4px);
}

.timeline-year.is-active i {
  border-color: var(--timeline-accent);
  background: var(--timeline-bg);
  box-shadow: 0 0 0 8px rgb(155 196 58 / 0.12);
}

.timeline-year.is-active i::after {
  background: var(--lime);
}

.timeline-card {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100% - clamp(32px, 7vw, 128px), 1280px);
  min-height: clamp(330px, 32vw, 520px);
  margin: 0 auto;
  border: 1px solid rgb(244 244 239 / 0.16);
  border-radius: 0;
  padding: 0;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 0.055), transparent 46%),
    #0d0d0b;
  box-shadow: none;
}

.timeline-panel {
  display: grid;
  grid-template-columns: minmax(220px, 34%) minmax(0, 66%);
  align-content: start;
  justify-items: stretch;
  gap: 0;
  min-height: inherit;
  text-align: left;
}

.timeline-panel[hidden] {
  display: none;
}

.timeline-card-year {
  display: grid;
  align-items: end;
  align-self: stretch;
  grid-row: 1 / span 3;
  margin: 0;
  border-right: 1px solid rgb(244 244 239 / 0.16);
  padding: clamp(28px, 3.6vw, 64px) clamp(22px, 3.2vw, 58px);
  color: rgb(244 244 239 / 0.92);
  font-size: clamp(58px, 8.5vw, 150px);
  font-weight: 900;
  line-height: 0.78;
}

.timeline-card-year::before {
  display: block;
  align-self: start;
  margin-bottom: auto;
  color: var(--timeline-accent);
  content: "Itinerary / milestone";
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.timeline-panel h3 {
  max-width: 760px;
  margin: 0;
  padding: clamp(42px, 5vw, 86px) clamp(28px, 5vw, 86px) 0;
  color: var(--timeline-ink);
  font-size: clamp(32px, 3.15vw, 62px);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
}

.timeline-section .timeline-panel p:not(.timeline-card-year),
.timeline-section .timeline-panel li {
  max-width: 780px;
  margin: 0;
  padding: clamp(18px, 2vw, 34px) clamp(28px, 5vw, 86px) 0;
  color: rgb(244 244 239 / 0.72);
  font-size: clamp(17px, 1.18vw, 23px);
  font-weight: 600;
  line-height: 1.32;
}

.timeline-section .timeline-panel ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: clamp(18px, 2vw, 34px) clamp(28px, 5vw, 86px) 0 1.15em;
  list-style: disc;
}

.timeline-controls {
  position: absolute;
  right: clamp(28px, 5vw, 86px);
  bottom: clamp(28px, 3.4vw, 58px);
  left: auto;
  display: flex;
  gap: 0;
  transform: none;
}

.timeline-controls button {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgb(244 244 239 / 0.52);
  border-radius: 0;
  background: transparent;
  color: var(--timeline-ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    background 220ms ease,
    color 220ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.timeline-controls button:hover {
  border-color: var(--timeline-accent);
  background: var(--timeline-accent);
  color: var(--black);
  transform: none;
}

.timeline-controls button:disabled {
  border-color: rgb(244 244 239 / 0.2);
  color: rgb(244 244 239 / 0.24);
  cursor: default;
}

.timeline-controls button:disabled:hover {
  background: transparent;
  color: rgb(244 244 239 / 0.24);
  transform: none;
}

@media (max-width: 640px) {
  .timeline-section-head {
    grid-template-columns: 1fr;
  }

  .timeline-section-head h2 {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .web-timeline {
    margin-right: 0;
    margin-left: 0;
  }

  .timeline-years {
    padding-inline: 22px;
    scroll-padding-inline: 22px;
  }

  .timeline-year {
    min-width: 132px;
  }

  .timeline-card {
    width: calc(100% - 32px);
  }

  .timeline-panel {
    grid-template-columns: 1fr;
  }

  .timeline-card-year {
    grid-row: auto;
    border-right: 0;
    border-bottom: 1px solid rgb(244 244 239 / 0.16);
    font-size: clamp(52px, 15vw, 88px);
  }
}

@media (max-width: 560px) {
  .web-timeline {
    padding-top: 38px;
  }

  .timeline-year {
    min-width: 118px;
  }

  .timeline-year span {
    font-size: 22px;
  }

  .timeline-card {
    min-height: 380px;
    padding: 0 0 92px;
  }

  .timeline-panel h3 {
    padding: 26px 24px 0;
  }

  .timeline-section .timeline-panel p:not(.timeline-card-year),
  .timeline-section .timeline-panel li {
    padding-right: 24px;
    padding-left: 24px;
  }

  .timeline-controls {
    right: 24px;
    bottom: 24px;
  }
}

/* Awwwards-style itinerary timeline */
.timeline-section {
  border-color: rgb(244 244 239 / 0.16);
  background: #030706;
}

.timeline-section-head {
  display: none;
}

.web-timeline {
  --timeline-bg: #04100f;
  --timeline-ink: #f4f4ef;
  --timeline-accent: var(--lime);
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: clamp(48px, 5vw, 88px) clamp(18px, 4vw, 72px);
  background:
    linear-gradient(90deg, rgb(3 7 6 / 0.92), rgb(3 7 6 / 0.54), rgb(3 7 6 / 0.9)),
    radial-gradient(circle at 12% 82%, rgb(155 196 58 / 0.12), transparent 28%),
    url("https://static.wixstatic.com/media/c249fd_57ac942cbb714f8ca172413603169d14~mv2.webp/v1/fill/w_1800,h_1000,q_70,enc_avif,quality_auto/The-Gobi-Desert-Tours-Travel.webp")
      center / cover;
  color: var(--timeline-ink);
  scroll-margin-top: 80px;
}

.web-timeline.is-dragging {
  cursor: grabbing;
}

.web-timeline::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgb(0 0 0 / 0.36), rgb(0 0 0 / 0.08) 44%, rgb(0 0 0 / 0.46)),
    radial-gradient(circle at 22% 78%, rgb(155 196 58 / 0.14), transparent 30%);
  content: "";
  pointer-events: none;
}

.timeline-map-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1560px);
  min-height: clamp(520px, 48vw, 760px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgb(244 244 239 / 0.72);
  background: #06100e;
  box-shadow: 0 46px 100px rgb(0 0 0 / 0.42);
  cursor: grab;
}

.web-timeline.is-dragging .timeline-map-shell {
  cursor: grabbing;
}

.timeline-map-shell::before,
.timeline-map-shell::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
}

.timeline-map-shell::before {
  background:
    linear-gradient(90deg, rgb(3 7 6 / 0.16), transparent 18%, transparent calc(100% - 58px), #030706 calc(100% - 50px), #030706 100%),
    linear-gradient(0deg, rgb(3 7 6 / 0.68), transparent 35%),
    radial-gradient(circle at 80% 14%, rgb(244 244 239 / 0.12), transparent 26%),
    linear-gradient(90deg, rgb(3 7 6 / 0.2), transparent 28%, rgb(3 7 6 / 0.16));
}

.timeline-map-shell::after {
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(0deg, rgb(3 7 6 / 0.92), rgb(3 7 6 / 0.14));
}

.timeline-map-media {
  position: absolute;
  inset: 0;
  margin: 0;
}

.timeline-map-media::before,
.timeline-map-media::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
}

.timeline-map-media::before {
  background:
    linear-gradient(90deg, rgb(3 7 6 / 0.3), transparent 18%, transparent 82%, rgb(3 7 6 / 0.22)),
    repeating-linear-gradient(90deg, rgb(244 244 239 / 0.04) 0 1px, transparent 1px 112px),
    repeating-linear-gradient(0deg, rgb(244 244 239 / 0.035) 0 1px, transparent 1px 94px);
  mix-blend-mode: overlay;
}

.timeline-map-media::after {
  background:
    linear-gradient(90deg, transparent 0 92%, rgb(3 7 6 / 0.08) 100%),
    linear-gradient(0deg, rgb(3 7 6 / 0.58), transparent 28%, transparent 76%, rgb(3 7 6 / 0.1)),
    radial-gradient(circle at 50% 54%, transparent 0 38%, rgb(3 7 6 / 0.24) 76%);
}

.timeline-map-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.7) contrast(1.23) brightness(0.72);
  transform: scale(1.2) translate3d(var(--timeline-pan-x, -4%), var(--timeline-pan-y, -1%), 0);
  transform-origin: center;
  transition:
    filter 520ms ease,
    transform 1050ms cubic-bezier(0.2, 0.72, 0, 1);
  will-change: transform;
}

.timeline-route {
  position: absolute;
  inset: clamp(62px, 5vw, 92px) clamp(32px, 4vw, 72px) 180px;
  z-index: 2;
  width: auto;
  height: auto;
  overflow: visible;
  transform: translate3d(var(--timeline-route-x, -2.5%), var(--timeline-route-y, 0.75%), 0);
  transition: transform 1050ms cubic-bezier(0.2, 0.72, 0, 1);
  will-change: transform;
}

.timeline-route path {
  fill: none;
  stroke: rgb(244 244 239 / 0.72);
  stroke-dasharray: 0.018 0.018;
  stroke-linecap: round;
  stroke-width: 3;
  transition:
    stroke 260ms ease,
    stroke-width 260ms ease;
}

.timeline-route-points circle {
  fill: rgb(244 244 239 / 0.92);
  stroke: #06100e;
  stroke-width: 4;
  transition:
    fill 260ms ease,
    transform 520ms cubic-bezier(0.2, 0.72, 0, 1);
  transform-origin: center;
}

.web-timeline.is-moving .timeline-route path {
  animation: itineraryRoutePulse 1050ms cubic-bezier(0.2, 0.72, 0, 1);
  stroke: rgb(244 244 239 / 0.92);
  stroke-width: 3.4;
}

.web-timeline.is-moving .timeline-route-points circle {
  transform: scale(1.12);
}

.timeline-map-label {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border: 1px solid rgb(244 244 239 / 0.38);
  padding: 0 10px;
  background: rgb(244 244 239 / 0.86);
  color: #070806;
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  transform: translate3d(var(--timeline-route-x, -2.5%), var(--timeline-route-y, 0.75%), 0);
  transition:
    transform 950ms cubic-bezier(0.2, 0.72, 0, 1),
    background 220ms ease;
  will-change: transform;
}

.timeline-map-label::after {
  width: 26px;
  height: 26px;
  margin-right: -10px;
  margin-left: 10px;
  border-left: 1px solid rgb(7 8 6 / 0.18);
  background:
    linear-gradient(45deg, transparent 42%, #070806 42% 58%, transparent 58%),
    linear-gradient(-45deg, transparent 42%, #070806 42% 58%, transparent 58%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px 10px;
  content: "";
}

.timeline-live-pin {
  position: absolute;
  top: var(--timeline-pin-top, 60%);
  left: var(--timeline-pin-left, 86%);
  z-index: 4;
  width: 18px;
  height: 18px;
  border: 4px solid #06100e;
  border-radius: 999px;
  background: var(--timeline-accent);
  box-shadow:
    0 0 0 2px rgb(244 244 239 / 0.94),
    0 0 0 12px rgb(155 196 58 / 0.18);
  transform: translate(-50%, -50%);
  transition:
    top 1050ms cubic-bezier(0.2, 0.72, 0, 1),
    left 1050ms cubic-bezier(0.2, 0.72, 0, 1),
    box-shadow 260ms ease;
  will-change: top, left;
}

.web-timeline.is-moving .timeline-live-pin {
  box-shadow:
    0 0 0 2px rgb(244 244 239 / 0.96),
    0 0 0 20px rgb(155 196 58 / 0.12);
}

.timeline-map-label--one {
  top: 62%;
  left: 13%;
}

.timeline-map-label--two {
  top: 44%;
  left: 38%;
}

.timeline-map-label--three {
  top: 52%;
  left: 58%;
}

.timeline-map-label--four {
  top: 34%;
  right: 10%;
}

.timeline-map-tools {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 5;
  display: grid;
  border: 1px solid rgb(244 244 239 / 0.26);
  background: rgb(224 224 211 / 0.72);
  color: #070806;
}

.timeline-map-tools::before {
  position: absolute;
  top: -20px;
  right: -34px;
  z-index: 0;
  width: 86px;
  height: 700px;
  background: #030706;
  content: "";
}

.timeline-map-tools span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-bottom: 1px solid rgb(7 8 6 / 0.2);
  font-size: 22px;
  line-height: 1;
}

.timeline-map-tools span:last-child {
  border-bottom: 0;
}

.timeline-scrollbar {
  position: absolute;
  top: clamp(42px, 5vw, 80px);
  right: 12px;
  bottom: 30px;
  z-index: 5;
  width: 4px;
  background: rgb(244 244 239 / 0.66);
}

.timeline-scrollbar::before {
  position: absolute;
  top: -72px;
  right: -16px;
  bottom: -30px;
  z-index: -1;
  width: 52px;
  background: #030706;
  content: "";
}

.timeline-card {
  position: absolute;
  bottom: clamp(78px, 7vw, 108px);
  left: clamp(68px, 5vw, 96px);
  z-index: 6;
  display: grid;
  width: clamp(228px, 17.4vw, 282px);
  min-height: clamp(252px, 20.5vw, 335px);
  margin: 0;
  border: 1px solid rgb(7 8 6 / 0.16);
  background: rgb(224 224 211 / 0.94);
  color: #070806;
  box-shadow: 0 24px 60px rgb(3 7 6 / 0.14);
  transform: translateX(0);
  transform-origin: left center;
  will-change: transform, opacity;
}

.web-timeline.is-moving .timeline-card {
  animation: itineraryCardShift 1050ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.web-timeline.is-moving.is-reversing .timeline-card {
  animation-name: itineraryCardShiftReverse;
}

.timeline-panel {
  display: grid;
  grid-area: 1 / 1;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 0;
  min-height: 100%;
  padding: clamp(14px, 1.35vw, 20px);
  text-align: left;
  animation: none;
}

.timeline-panel[hidden] {
  display: none;
}

.timeline-panel.is-entering {
  animation: itineraryPanelIn 520ms 330ms cubic-bezier(0.2, 0.72, 0, 1) both;
}

.timeline-panel.is-leaving {
  animation: itineraryPanelOut 250ms ease both;
}

.timeline-card-year {
  display: flex;
  align-items: center;
  gap: 12px;
  grid-row: auto;
  margin: 0 0 clamp(9px, 0.8vw, 12px);
  border: 0;
  padding: 0;
  color: #070806;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.timeline-card-year::before {
  display: inline;
  margin: 0;
  color: rgb(7 8 6 / 0.58);
  content: "Milestone /";
  font-size: inherit;
  font-weight: inherit;
}

.timeline-panel h3 {
  max-width: 100%;
  margin: 0;
  padding: 0;
  color: #070806;
  font-size: clamp(15px, 1.02vw, 19px);
  font-weight: 900;
  line-height: 1.04;
  text-transform: uppercase;
}

.timeline-panel h3::after {
  display: block;
  width: 100%;
  aspect-ratio: 1.42;
  margin: clamp(10px, 1vw, 15px) 0 0;
  background:
    linear-gradient(0deg, rgb(3 7 6 / 0.12), transparent),
    url("https://static.wixstatic.com/media/c249fd_57ac942cbb714f8ca172413603169d14~mv2.webp/v1/fill/w_620,h_430,q_80,enc_avif,quality_auto/The-Gobi-Desert-Tours-Travel.webp")
      center / cover;
  content: "";
}

.timeline-section .timeline-panel p:not(.timeline-card-year),
.timeline-section .timeline-panel li {
  max-width: 100%;
  margin: 0;
  padding: clamp(9px, 0.85vw, 13px) 0 0;
  color: rgb(7 8 6 / 0.78);
  font-size: clamp(9px, 0.7vw, 12px);
  font-weight: 700;
  line-height: 1.35;
}

.timeline-section .timeline-panel ul {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 14px 0 0 1.1em;
  color: rgb(244 244 239 / 0.76);
}

.timeline-years {
  position: absolute;
  right: clamp(28px, 4vw, 72px);
  bottom: clamp(28px, 3.2vw, 54px);
  left: clamp(26px, 2.8vw, 48px);
  z-index: 6;
  display: flex;
  max-width: none;
  margin: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 28px;
  scroll-padding-inline: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

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

.timeline-years::before {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    rgb(244 244 239 / 0.42) 0 1px,
    transparent 1px 24px
  );
  content: "";
}

.timeline-years::after {
  position: absolute;
  bottom: 6px;
  left: 0;
  width: calc(100% * var(--timeline-progress, 1));
  height: 3px;
  border-radius: 999px;
  background: rgb(155 196 58 / 0.82);
  content: "";
  transition: width 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.timeline-year {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: clamp(142px, 13vw, 230px);
  min-height: 44px;
  place-items: center start;
  border: 1px solid rgb(244 244 239 / 0.16);
  border-right: 0;
  padding: 0 clamp(14px, 1.4vw, 22px);
  background: rgb(224 224 211 / 0.74);
  color: #070806;
  cursor: pointer;
  font: inherit;
  scroll-snap-align: start;
  transition:
    background 220ms ease,
    color 220ms ease,
    transform 520ms cubic-bezier(0.2, 0.72, 0, 1);
}

.timeline-year:last-child {
  border-right: 1px solid rgb(244 244 239 / 0.16);
}

.timeline-year::after {
  display: none;
  content: "";
}

.timeline-year span {
  display: block;
  color: currentColor;
  font-size: clamp(12px, 0.85vw, 15px);
  font-weight: 900;
  line-height: 1;
  transform: none;
  transition: none;
}

.timeline-year i {
  position: absolute;
  right: auto;
  bottom: -24px;
  left: clamp(14px, 1.4vw, 22px);
  display: block;
  width: 6px;
  height: 6px;
  border: 1px solid rgb(244 244 239 / 0.55);
  border-radius: 999px;
  background: rgb(244 244 239 / 0.68);
  transform: none;
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
}

.timeline-year i::after {
  display: none;
}

.timeline-year.is-active {
  background: rgb(244 244 239 / 0.98);
  color: #070806;
  transform: translateY(-2px);
}

.timeline-year.is-active span {
  color: currentColor;
  transform: none;
}

.timeline-year.is-active i {
  border-color: rgb(244 244 239 / 0.94);
  background: var(--timeline-accent);
  box-shadow: 0 0 0 6px rgb(155 196 58 / 0.16);
}

@keyframes itineraryPanelIn {
  from {
    opacity: 0;
    transform: translateX(14px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes itineraryPanelOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(-10px);
  }
}

@keyframes itineraryCardShift {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  38% {
    opacity: 0.98;
    transform: translateX(-20%);
  }

  44% {
    opacity: 0;
    transform: translateX(-20%);
  }

  54% {
    opacity: 0;
    transform: translateX(-20%);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes itineraryCardShiftReverse {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  38% {
    opacity: 0.98;
    transform: translateX(20%);
  }

  44% {
    opacity: 0;
    transform: translateX(20%);
  }

  54% {
    opacity: 0;
    transform: translateX(20%);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes itineraryRoutePulse {
  0% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -0.12;
  }
}

.timeline-controls {
  position: absolute;
  right: clamp(32px, 4vw, 72px);
  bottom: clamp(152px, 12vw, 202px);
  left: auto;
  z-index: 7;
  display: none;
  gap: 8px;
  transform: none;
}

.timeline-controls button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgb(244 244 239 / 0.7);
  border-radius: 0;
  background: rgb(3 7 6 / 0.42);
  color: var(--timeline-ink);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.timeline-controls button:hover {
  border-color: var(--timeline-accent);
  background: var(--timeline-accent);
  color: #070806;
  transform: none;
}

.timeline-controls button:disabled,
.timeline-controls button:disabled:hover {
  border-color: rgb(244 244 239 / 0.28);
  background: rgb(3 7 6 / 0.22);
  color: rgb(244 244 239 / 0.34);
  cursor: default;
}

@media (max-width: 920px) {
  .web-timeline {
    padding: 22px;
  }

  .timeline-map-shell {
    min-height: 700px;
  }

  .timeline-route,
  .timeline-map-label,
  .timeline-scrollbar {
    display: none;
  }

  .timeline-card {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    width: auto;
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid rgb(244 244 239 / 0.22);
  }

  .timeline-years {
    right: 22px;
    bottom: 42px;
    left: 22px;
  }
}

@media (max-width: 560px) {
  .web-timeline {
    padding: 16px;
  }

  .timeline-map-shell {
    min-height: 640px;
  }

  .timeline-panel {
    padding: 22px;
  }

  .timeline-panel h3 {
    font-size: 24px;
  }

  .timeline-controls {
    right: 22px;
    bottom: 140px;
  }

  .timeline-year {
    min-width: 148px;
  }
}

/* SomaSoul-inspired sticky horizontal timeline */
.timeline-section {
  min-height: auto;
  border-top: 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.timeline-section-head,
.timeline-map-shell,
.timeline-map-media,
.timeline-route,
.timeline-live-pin,
.timeline-map-label,
.timeline-map-tools,
.timeline-scrollbar,
.timeline-years,
.timeline-card,
.timeline-controls {
  display: none;
}

.web-timeline {
  --timeline-bg: var(--paper);
  --timeline-ink: var(--ink);
  --timeline-muted: var(--muted);
  --timeline-line: var(--line);
  --timeline-accent: var(--lime-dark);
  position: relative;
  min-height: 100vh;
  margin: 0;
  overflow: visible;
  padding: 0;
  background: linear-gradient(180deg, #f4f4ef, var(--paper));
  color: var(--timeline-ink);
  cursor: grab;
  opacity: 1;
  scroll-margin-top: 0;
  touch-action: pan-y;
  transform: none;
}

.web-timeline.is-dragging {
  cursor: grabbing;
}

.web-timeline.is-dragging * {
  cursor: grabbing;
  user-select: none;
}

.web-timeline::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgb(241 241 236 / 0.88),
    transparent 18%,
    transparent 82%,
    rgb(241 241 236 / 0.92)
  );
  content: "";
  pointer-events: none;
}

.timeline-sticky {
  position: sticky;
  top: var(--timeline-header-offset, 82px);
  display: grid;
  min-height: calc(100vh - var(--timeline-header-offset, 82px));
  height: calc(100vh - var(--timeline-header-offset, 82px));
  overflow: hidden;
  padding: clamp(88px, 9vw, 136px) 0 clamp(36px, 5vw, 78px);
}

.timeline-intro {
  position: absolute;
  top: clamp(28px, 5.5vh, 56px);
  left: clamp(24px, 4vw, 80px);
  z-index: 2;
  display: grid;
  width: auto;
  margin: 0 auto;
  gap: clamp(12px, 1.4vw, 22px);
  pointer-events: none;
  transform: none;
}

.timeline-intro .eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: var(--timeline-accent);
  font-size: clamp(12px, 0.95vw, 16px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.timeline-intro .eyebrow span {
  width: 10px;
  height: 10px;
  background: var(--timeline-accent);
}

.timeline-intro h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--timeline-ink);
  font-size: clamp(54px, 7.6vw, 132px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.86;
  text-transform: uppercase;
}

.timeline-intro > p:not(.eyebrow) {
  position: absolute;
  top: clamp(132px, 10vw, 172px);
  right: 0;
  max-width: 620px;
  margin: 0;
  color: var(--timeline-muted);
  font-size: clamp(16px, 1.18vw, 22px);
  font-weight: 650;
  line-height: 1.25;
}

.timeline-track {
  position: absolute;
  top: calc(50% - clamp(260px, 34vh, 340px));
  left: 0;
  z-index: 3;
  width: max-content;
  height: clamp(520px, 68vh, 680px);
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.timeline-rail,
.timeline-rail-progress {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  transform-origin: left center;
  pointer-events: none;
}

.timeline-rail {
  background: var(--timeline-line);
}

.timeline-rail-progress {
  background: var(--timeline-accent);
  transform: scaleX(0);
  box-shadow: none;
}

.timeline-track-flex {
  position: relative;
  display: flex;
  width: max-content;
  height: 100%;
  gap: clamp(120px, 10vw, 220px);
  align-items: stretch;
  padding: 0 max(10vw, 160px) 0 max(12vw, 210px);
}

.timeline-section .timeline-panel {
  position: relative;
  display: block;
  flex: 0 0 clamp(500px, 32vw, 760px);
  min-height: 0;
  height: 100%;
  padding: 0;
  color: var(--timeline-ink);
  opacity: 1;
  text-align: center;
  transition:
    opacity 260ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.timeline-section .timeline-panel--wide {
  flex-basis: clamp(700px, 46vw, 1040px);
}

.timeline-section .timeline-panel.is-active {
  opacity: 1;
}

.timeline-section .timeline-panel[hidden] {
  display: block;
}

.timeline-card-year {
  position: absolute;
  left: 50%;
  display: block;
  margin: 0;
  border: 0;
  padding: 0;
  color: rgb(23 23 23 / 0.34);
  font-size: clamp(54px, 6vw, 112px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.78;
  transform: translateX(-50%);
  transition:
    color 260ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}

.timeline-card-year::before {
  display: none;
}

.timeline-panel--top .timeline-card-year {
  bottom: calc(50% + clamp(26px, 3vw, 48px));
}

.timeline-panel--bottom .timeline-card-year {
  top: calc(50% + clamp(26px, 3vw, 48px));
}

.timeline-section .timeline-panel.is-active .timeline-card-year {
  color: var(--timeline-accent);
  transform: translateX(-50%) translateY(-3px);
}

.timeline-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 14px;
  height: 38px;
  background: var(--timeline-bg);
  color: rgb(23 23 23 / 0.48);
  transform: translate(-50%, -50%);
}

.timeline-marker::before {
  position: absolute;
  inset: 0;
  background: currentColor;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  content: "";
}

.timeline-marker::after {
  position: absolute;
  inset: 6px 3px;
  background: var(--timeline-bg);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  content: "";
}

.timeline-section .timeline-panel.is-active .timeline-marker {
  color: var(--timeline-accent);
}

.timeline-pointer {
  position: absolute;
  left: 50%;
  display: block;
  width: 1px;
  height: clamp(30px, 2.8vw, 48px);
  background: rgb(23 23 23 / 0.28);
  transform: translateX(-50%);
}

.timeline-pointer::after {
  position: absolute;
  left: 50%;
  width: 9px;
  height: 9px;
  border: 1px solid rgb(23 23 23 / 0.42);
  border-radius: 50%;
  background: var(--timeline-bg);
  content: "";
  transform: translateX(-50%);
}

.timeline-panel--top .timeline-pointer {
  top: calc(50% + 16px);
}

.timeline-panel--top .timeline-pointer::after {
  bottom: -4px;
}

.timeline-panel--bottom .timeline-pointer {
  bottom: calc(50% + 16px);
}

.timeline-panel--bottom .timeline-pointer::after {
  top: -4px;
}

.timeline-section .timeline-panel.is-active .timeline-pointer {
  background: rgb(111 152 37 / 0.82);
}

.timeline-section .timeline-panel.is-active .timeline-pointer::after {
  border-color: var(--timeline-accent);
  background: var(--timeline-accent);
  box-shadow: 0 0 0 8px rgb(111 152 37 / 0.12);
}

.timeline-copy {
  position: absolute;
  left: 50%;
  width: min(100%, 760px);
  transform: translateX(-50%);
}

.timeline-section .timeline-panel--wide .timeline-copy {
  width: min(100%, 980px);
}

.timeline-panel--top .timeline-copy {
  top: calc(50% + clamp(86px, 6vw, 110px));
}

.timeline-panel--bottom .timeline-copy {
  bottom: calc(50% + clamp(86px, 6vw, 110px));
}

.timeline-copy h3 {
  max-width: none;
  margin: 0;
  padding: 0;
  color: rgb(23 23 23 / 0.82);
  font-size: clamp(26px, 1.85vw, 38px);
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
}

.timeline-section .timeline-panel.is-active .timeline-copy h3 {
  color: var(--timeline-ink);
}

.timeline-copy h3::after {
  display: none;
}

.timeline-section .timeline-copy strong {
  color: var(--timeline-ink);
  font-weight: 400 !important;
}

.timeline-section .timeline-copy ul {
  display: grid;
  gap: clamp(8px, 0.7vw, 14px);
  margin: 0;
  padding: clamp(12px, 0.9vw, 18px) 0 0;
  text-align: center;
  list-style-position: inside;
}

.timeline-section .timeline-copy p,
.timeline-section .timeline-copy li {
  max-width: none;
  margin: 0;
  padding: clamp(10px, 0.7vw, 14px) 0 0;
  color: rgb(23 23 23 / 0.68);
  font-size: clamp(22px, 1.2vw, 28px) !important;
  font-weight: 400 !important;
  line-height: 1.1;
  text-align: center;
}

.timeline-section .timeline-copy p:first-child,
.timeline-section .timeline-copy li {
  padding-top: 0;
}

.timeline-section .timeline-panel--dense .timeline-copy p,
.timeline-section .timeline-panel--dense .timeline-copy li {
  font-size: clamp(22px, 1.2vw, 28px) !important;
  line-height: 1.1;
}

.timeline-section .timeline-panel.is-active .timeline-copy p,
.timeline-section .timeline-panel.is-active .timeline-copy li {
  color: var(--timeline-ink);
}

@media (max-width: 920px) {
  .web-timeline {
    height: auto !important;
    min-height: 0;
  }

  .web-timeline::before {
    background: linear-gradient(90deg, rgb(241 241 236 / 0.92), transparent 72%);
  }

  .timeline-sticky {
    position: relative;
    min-height: 0;
    height: auto;
    overflow: hidden;
    padding: clamp(64px, 12vw, 96px) 22px;
  }

  .timeline-intro {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    transform: none;
  }

  .timeline-intro > p:not(.eyebrow) {
    position: static;
    max-width: 640px;
  }

  .timeline-intro h2 {
    font-size: clamp(56px, 17vw, 112px);
  }

  .timeline-track {
    position: relative;
    top: auto;
    left: auto;
    width: 100% !important;
    height: auto;
    margin-top: 54px;
    transform: none !important;
  }

  .timeline-rail,
  .timeline-rail-progress {
    display: none;
  }

  .timeline-track-flex {
    display: grid;
    width: 100%;
    height: auto;
    gap: 0;
    padding: 0 0 0 32px;
  }

  .timeline-section .timeline-panel {
    display: grid;
    min-height: 0;
    height: auto;
    grid-template-columns: minmax(76px, 22vw) minmax(0, 1fr);
    gap: 22px;
    align-items: start;
    border-left: 1px solid rgb(23 23 23 / 0.16);
    padding: 0 0 44px 24px;
    opacity: 1;
    text-align: left;
  }

  .timeline-section .timeline-panel:last-child {
    padding-bottom: 0;
  }

  .timeline-card-year,
  .timeline-panel--top .timeline-card-year,
  .timeline-panel--bottom .timeline-card-year,
  .timeline-copy,
  .timeline-panel--top .timeline-copy,
  .timeline-panel--bottom .timeline-copy {
    position: static;
    width: auto;
    transform: none;
  }

  .timeline-card-year {
    grid-column: 1;
    color: var(--timeline-accent);
    font-size: clamp(34px, 10vw, 56px);
  }

  .timeline-copy {
    grid-column: 2;
  }

  .timeline-marker {
    top: 0.15em;
    left: -24px;
    width: 10px;
    height: 28px;
  }

  .timeline-pointer {
    display: none;
  }
}

@media (max-width: 560px) {
  .timeline-sticky {
    padding-inline: 16px;
  }

  .timeline-track-flex {
    padding-left: 24px;
  }

  .timeline-section .timeline-panel {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-left: 20px;
  }

  .timeline-card-year,
  .timeline-copy {
    grid-column: 1;
  }

  .timeline-copy h3 {
    font-size: 18px;
  }
}

.back-link {
  display: inline-grid;
  width: fit-content;
  min-height: 54px;
  grid-template-columns: 54px 1fr;
  align-items: center;
  border: 1px solid currentColor;
  color: #08090c;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.back-link b {
  display: grid;
  height: 100%;
  place-items: center;
  border-right: 1px solid currentColor;
  font-size: 22px;
  font-weight: 500;
}

.back-link span {
  padding: 0 18px;
}

.career-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.career-card {
  display: grid;
  min-height: 460px;
  align-content: start;
  gap: clamp(24px, 3vw, 44px);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding: clamp(34px, 4vw, 70px) clamp(22px, 3.2vw, 58px);
}

.career-card:nth-child(2n) {
  border-right: 0;
}

.career-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 1.15em;
  color: #3d3d38;
  font-size: clamp(18px, 1.24vw, 25px);
  font-weight: 500;
  line-height: 1.3;
}

.career-card h3 {
  margin: 0;
  font-size: clamp(17px, 1.1vw, 22px);
  font-weight: 900;
  line-height: 1.08;
  text-transform: none;
}

.career-card p {
  margin: 0;
  color: #3d3d38;
  font-size: clamp(18px, 1.24vw, 25px);
  font-weight: 500;
  line-height: 1.3;
}

.career-card a {
  text-decoration: underline;
}

body.careers-page .career-list {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

body.careers-page .career-card.job-posting,
body.careers-page .career-card.job-posting:nth-child(2n) {
  display: grid;
  min-height: 0;
  grid-template-columns: clamp(120px, 14vw, 230px) minmax(0, 1fr) minmax(260px, 28vw, 430px);
  gap: 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid var(--line);
  padding: 0;
  background: #f4f4ef;
  color: #08090c;
  cursor: pointer;
  outline: none;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

body.careers-page .career-card.job-posting:last-child {
  border-bottom: 0;
}

.job-posting-top,
.job-posting-main,
.job-posting-meta,
.job-posting-sections,
.job-apply-link {
  min-width: 0;
}

.job-posting-top {
  display: flex;
  min-height: clamp(230px, 18vw, 330px);
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  padding: clamp(22px, 2vw, 38px);
}

.job-posting-number,
.job-posting-status,
.job-posting-kicker {
  color: currentColor;
  font-size: clamp(13px, 0.95vw, 18px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.job-posting-status {
  display: inline-flex;
  width: max-content;
  min-height: 34px;
  align-items: center;
  border: 1px solid currentColor;
  padding: 0 14px;
}

.job-posting-main {
  display: grid;
  align-content: space-between;
  gap: clamp(28px, 4vw, 76px);
  padding: clamp(28px, 3.5vw, 64px) clamp(26px, 4vw, 76px);
}

body.careers-page .career-card.job-posting h2 {
  max-width: min(100%, 900px);
  margin: 0;
  color: currentColor;
  font-size: clamp(38px, 4.7vw, 92px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.job-posting-summary {
  max-width: 760px;
  margin: 0;
  color: currentColor;
  font-size: clamp(18px, 1.35vw, 27px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
}

.job-posting-meta {
  display: grid;
  align-content: start;
  gap: clamp(22px, 2.1vw, 38px);
  margin: 0;
  border-left: 1px solid var(--line);
  padding: clamp(28px, 3.5vw, 64px) clamp(24px, 3vw, 58px);
}

.job-posting-meta div {
  display: grid;
  gap: 8px;
}

.job-posting-meta dt {
  color: currentColor;
  font-size: clamp(13px, 0.9vw, 17px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.job-posting-meta dd {
  margin: 0;
  color: currentColor;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 400;
  line-height: 1.15;
}

.job-posting-sections {
  display: grid;
  grid-column: 2 / 4;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.job-posting-sections[hidden],
.job-apply-link[hidden] {
  display: none !important;
}

.job-posting-sections section {
  display: grid;
  align-content: start;
  gap: clamp(16px, 1.4vw, 28px);
  padding: clamp(26px, 3vw, 56px) clamp(26px, 4vw, 76px);
}

.job-posting-sections section + section {
  border-left: 1px solid var(--line);
}

body.careers-page .career-card.job-posting h3 {
  margin: 0;
  color: currentColor;
  font-size: clamp(18px, 1.2vw, 24px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

body.careers-page .career-card.job-posting ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.1em;
  color: currentColor;
  font-size: clamp(16px, 1.1vw, 21px);
  font-weight: 400;
  line-height: 1.24;
}

.job-apply-link {
  display: grid;
  width: min(100%, 470px);
  height: clamp(58px, 4.8vw, 84px);
  grid-column: 2 / 4;
  grid-template-columns: minmax(0, 1fr) clamp(62px, 5vw, 90px);
  align-items: center;
  margin: 0 clamp(26px, 4vw, 76px) clamp(28px, 3vw, 56px);
  border: 1px solid currentColor;
  color: currentColor;
  text-decoration: none;
}

.job-apply-link span {
  padding: 0 clamp(18px, 2vw, 32px);
  font-size: clamp(18px, 1.2vw, 24px);
  font-weight: 700;
  line-height: 1;
}

.job-apply-link b {
  display: grid;
  height: 100%;
  place-items: center;
  border-left: 1px solid currentColor;
  font-size: clamp(24px, 1.7vw, 34px);
  font-weight: 400;
  line-height: 1;
}

body.careers-page .career-card.job-posting:hover,
body.careers-page .career-card.job-posting:focus-visible,
body.careers-page .career-card.job-posting.is-open {
  background: #08090c;
  color: #ff5949;
}

body.careers-page .career-card.job-posting:hover .job-posting-top,
body.careers-page .career-card.job-posting:focus-visible .job-posting-top,
body.careers-page .career-card.job-posting.is-open .job-posting-top,
body.careers-page .career-card.job-posting:hover .job-posting-meta,
body.careers-page .career-card.job-posting:focus-visible .job-posting-meta,
body.careers-page .career-card.job-posting.is-open .job-posting-meta,
body.careers-page .career-card.job-posting:hover .job-posting-sections,
body.careers-page .career-card.job-posting:focus-visible .job-posting-sections,
body.careers-page .career-card.job-posting.is-open .job-posting-sections,
body.careers-page .career-card.job-posting:hover .job-posting-sections section + section,
body.careers-page .career-card.job-posting:focus-visible .job-posting-sections section + section,
body.careers-page .career-card.job-posting.is-open .job-posting-sections section + section {
  border-color: rgb(255 89 73 / 0.55);
}

.backend-form-panel {
  display: grid;
  grid-template-columns: 34% minmax(0, 66%);
  border-bottom: 1px solid var(--line);
  background: #f4f4ef;
}

.backend-form-panel > div,
.backend-form-panel > form {
  padding: clamp(34px, 4vw, 72px) clamp(22px, 3.2vw, 58px);
}

.backend-form-panel > div {
  border-right: 1px solid var(--line);
}

.backend-form-panel h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 88px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.backend-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.backend-form label {
  display: grid;
  gap: 8px;
  color: #08090c;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.backend-form input,
.backend-form select,
.backend-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: #08090c;
  font: inherit;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
  padding: 14px 16px;
  outline: 0;
}

.backend-form textarea {
  min-height: 138px;
  resize: vertical;
}

.backend-form input:focus,
.backend-form select:focus,
.backend-form textarea:focus {
  border-color: #08090c;
}

.backend-form-wide,
.backend-form button,
.backend-form .form-status {
  grid-column: 1 / -1;
}

.backend-form button {
  min-height: 54px;
  width: fit-content;
  border: 1px solid #08090c;
  background: #08090c;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  padding: 0 22px;
  text-transform: uppercase;
}

.backend-form button:disabled {
  cursor: wait;
  opacity: 0.5;
}

.form-status {
  min-height: 1.2em;
  margin: 0;
  color: #5b5d57;
  font-size: 15px;
  font-weight: 700;
}

.contact-panel {
  display: grid;
  min-height: calc(100vh - 72px);
  grid-template-columns: 42% 58%;
  border-top: 1px solid var(--line);
}

.contact-panel h1 {
  margin: 0;
  font-size: clamp(64px, 9vw, 176px);
  font-weight: 500;
  line-height: 0.86;
  text-transform: uppercase;
}

.contact-panel > div {
  padding: clamp(24px, 3vw, 48px) clamp(22px, 3.2vw, 58px);
}

.contact-panel > div:first-child {
  display: grid;
  align-content: start;
  gap: clamp(20px, 2vw, 36px);
  padding-top: clamp(18px, 2vw, 34px);
  border-right: 1px solid var(--line);
}

.contact-panel .contact-list {
  border-color: var(--line);
}

.contact-panel .contact-list a,
.contact-panel .contact-list .footer-label,
.contact-panel address {
  color: #08090c;
}

.contact-panel address {
  margin: 0 0 clamp(16px, 1.6vw, 26px);
  font-size: clamp(18px, 1.35vw, 26px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.12;
}

.contact-panel .contact-list a {
  padding: clamp(12px, 1vw, 20px) 0;
  font-size: clamp(20px, 1.45vw, 28px);
  font-weight: 600;
  line-height: 1.05;
}

.contact-panel .contact-list a::before {
  display: none;
}

.contact-panel .contact-list a:hover {
  color: #08090c;
  padding-left: 0;
}

.contact-panel .contact-list .footer-label {
  padding: clamp(16px, 1.2vw, 24px) 0 6px;
  font-size: clamp(14px, 0.95vw, 18px);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.contact-panel .contact-list .footer-label:first-child {
  padding-top: 0;
}

.contact-panel address strong {
  display: block;
  margin-bottom: clamp(12px, 1.2vw, 20px);
  color: #08090c;
  font-size: clamp(14px, 0.95vw, 18px);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.footer {
  --footer-background: #20294c;
  --footer-foreground: #f4f4f4;
  --footer-logo-y: -50%;
  --footer-rule: rgb(255 255 255 / 68%);
  --footer-rule-width: 0.35px;
  --footer-window-over: 1;
  border-top: var(--footer-rule-width) solid var(--footer-rule);
  background: var(--footer-background);
  color: var(--footer-foreground);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-height: 100svh;
  overflow: hidden;
}

.footer-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: var(--footer-rule-width) solid var(--footer-rule);
}

.footer-block {
  display: grid;
  min-height: clamp(320px, 19.5vw, 400px);
  grid-template-rows: 74px 1fr;
  border-right: var(--footer-rule-width) solid var(--footer-rule);
}

.footer-block:last-child {
  border-right: 0;
}

.footer-block-head {
  display: flex;
  height: 74px;
  align-items: center;
  justify-content: space-between;
  border-bottom: var(--footer-rule-width) solid var(--footer-rule);
  padding: 0 clamp(20px, 1.36vw, 28px);
  font-size: clamp(17px, 1.15vw, 24px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.footer-block-head i {
  width: 10px;
  height: 10px;
  background: var(--footer-foreground);
}

.footer-block-body {
  display: grid;
  align-content: start;
  align-items: start;
  gap: clamp(18px, 1.35vw, 28px);
  padding: clamp(34px, 3.8vw, 78px) clamp(20px, 1.36vw, 28px);
  font-size: clamp(18px, 1.1vw, 23px);
  font-weight: 500;
  line-height: 1.45;
}

.footer-block-columns {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  column-gap: clamp(34px, 4vw, 88px);
}

.footer-link-list {
  display: grid;
  align-content: start;
  align-self: start;
  gap: 6px;
  font-weight: 300;
}

.footer-word-window {
  position: relative;
  overflow: hidden;
}

.footer-word-parallax {
  position: relative;
  z-index: 1;
  transform: translate3d(0, var(--footer-logo-y), 0);
  will-change: transform;
}

.footer-word-over {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: var(--footer-background);
  content: "";
  opacity: var(--footer-window-over);
  pointer-events: none;
  will-change: opacity;
}

.footer-brand-word {
  display: flex;
  min-height: clamp(260px, 26vw, 500px);
  align-items: flex-end;
  border-bottom: var(--footer-rule-width) solid var(--footer-rule);
  padding: 0 clamp(22px, 2.6vw, 56px);
  overflow: hidden;
  font-size: var(--footer-word-size, clamp(118px, 15.4vw, 330px));
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-brand-word span {
  display: block;
}

address {
  color: inherit;
  font-style: normal;
}

address strong {
  display: block;
  margin-bottom: 8px;
  color: inherit;
  font-size: 0.72em;
  font-weight: 300;
  text-transform: uppercase;
}

.footer-label {
  display: block;
  margin: 0 0 6px;
  color: inherit;
  font-size: 0.72em;
  font-weight: 300;
  text-transform: uppercase;
}

.footer p {
  margin: 0;
}

.footer-contact {
  display: grid;
  align-self: start;
  gap: 14px;
  color: inherit;
  font-size: inherit;
  font-weight: 300;
  line-height: 1.35;
}

.footer-certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

.footer-certifications img {
  width: 74px;
  height: auto;
  padding: 0;
  background: transparent;
  object-fit: contain;
}

.contact-list {
  display: grid;
  align-content: start;
  gap: 0;
  border-top: 1px solid var(--dark-line);
}

.contact-list a {
  position: relative;
  border-bottom: 1px solid var(--dark-line);
  padding: 13px 0;
  overflow: hidden;
  color: #deded6;
  font-weight: 900;
  transition:
    color 260ms ease,
    padding-left 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-list a::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--lime);
  content: "";
  opacity: 0;
  transform: translate(-16px, -50%) rotate(45deg);
  transition:
    opacity 260ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-list a:hover {
  color: var(--lime);
  padding-left: 22px;
}

.contact-list a:hover::before {
  opacity: 1;
  transform: translate(0, -50%) rotate(45deg);
}

.footer-bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 26px clamp(22px, 2.6vw, 56px);
  color: var(--footer-foreground);
  font-size: clamp(12px, 0.78vw, 16px);
  font-weight: 800;
  text-transform: uppercase;
}

body.footer--in .site-header:not(.menu-open) {
  transform: translate3d(0, -100%, 0);
}

@media (max-width: 920px) {
  .footer-blocks {
    grid-template-columns: 1fr;
  }

  .footer-block {
    min-height: auto;
    border-right: 0;
    border-bottom: var(--footer-rule-width) solid var(--footer-rule);
  }

  .footer-block:last-child {
    border-bottom: 0;
  }

  .footer-block-body {
    min-height: 260px;
  }

  .footer-brand-word {
    min-height: clamp(170px, 31vw, 280px);
    white-space: nowrap;
  }

  .footer-bottom {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .footer-block-columns {
    grid-template-columns: 1fr;
  }

  .footer-block-body {
    min-height: 220px;
    align-content: start;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.section-heading h2,
.solutions-title h2,
.project-card h3,
.news h3,
.footer h2 {
  clip-path: inset(0 0 100% 0);
  transform: translateY(28px);
  transition:
    clip-path 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.section-heading.is-visible h2,
.solutions-header.is-visible .solutions-title h2,
.project-card.is-visible h3,
.news article.is-visible h3,
.footer-grid.is-visible h2 {
  clip-path: inset(0);
  transform: translateY(0);
}

.project-card,
.news article {
  position: relative;
}

.project-card::before,
.news article::before {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: var(--paper);
  content: "";
  pointer-events: none;
  transform: translateY(0);
  transition: transform 850ms cubic-bezier(0.76, 0, 0.24, 1);
}

.project-card::after,
.news article::after {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 4;
  width: 38%;
  height: 38%;
  border-bottom: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translate(10px, -10px);
  transition:
    opacity 500ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card.is-visible::before,
.news article.is-visible::before {
  transform: translateY(-101%);
}

.project-card:hover::after,
.news article:hover::after {
  opacity: 1;
  transform: translate(0);
}

.reveal:nth-child(2) {
  transition-delay: 80ms;
}

.reveal:nth-child(3) {
  transition-delay: 140ms;
}

.reveal:nth-child(4) {
  transition-delay: 200ms;
}

@media (min-width: 921px) {
  .solution-list {
    --solution-rail: clamp(52px, 3.4vw, 64px);
    padding-bottom: 0;
  }

  .solution-list::before,
  .solution-list::after {
    position: absolute;
    bottom: 0;
    height: var(--solution-rail);
    z-index: 30;
    width: 1px;
    background: var(--line);
    content: "";
    pointer-events: none;
  }

  .solution-list::before {
    left: var(--solution-line-1);
    content: none;
  }

  .solution-list::after {
    position: relative;
    inset: auto;
    display: block;
    margin-left: var(--solution-line-2);
  }

  .solution-row {
    --solution-offset: 0px;
    --solution-stack-top: var(--landing-header-height);
    position: sticky;
    top: calc(var(--solution-stack-top) + var(--solution-offset));
    height: clamp(390px, 29.2vw, 598px);
    min-height: 0;
  }

  .solution-order {
    align-items: flex-start;
    min-height: var(--solution-rail);
    grid-column: 1;
    padding-top: var(--solution-grid-margin);
  }

  .solution-image {
    position: relative;
    grid-column: 2 / span 5;
    border-left: 0;
    padding-left: calc(var(--solution-grid-margin) * 2.25);
  }

  .solution-image img {
    position: absolute;
    inset: var(--solution-grid-margin) var(--solution-grid-margin)
      var(--solution-grid-margin) calc(var(--solution-grid-margin) * 2.25);
    width: calc(100% - (var(--solution-grid-margin) * 3.25));
    height: calc(100% - (var(--solution-grid-margin) * 2));
    aspect-ratio: auto;
  }

  .solution-item-head {
    position: static;
    display: block;
    width: 79.72%;
    max-width: 100%;
    min-height: 0;
    padding: 0;
  }

  .solution-item-head p {
    width: 100%;
    text-align: left;
    transform: none;
  }

  .solution-row:nth-child(1) {
    --solution-offset: 0px;
  }

  .solution-row:nth-child(2) {
    --solution-offset: var(--solution-rail);
  }

  .solution-row:nth-child(3) {
    --solution-offset: calc(var(--solution-rail) + var(--solution-rail));
  }

  .solution-row:nth-child(4) {
    --solution-offset: calc(var(--solution-rail) + var(--solution-rail) + var(--solution-rail));
  }

  .solution-row:nth-child(5) {
    --solution-offset: calc(var(--solution-rail) + var(--solution-rail) + var(--solution-rail) + var(--solution-rail));
  }

  .solution-row:nth-child(6) {
    --solution-offset: calc(var(--solution-rail) + var(--solution-rail) + var(--solution-rail) + var(--solution-rail) + var(--solution-rail));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 12px 16px;
  }

  .site-header::before {
    display: none;
  }

  .brand {
    justify-self: start;
  }

  .menu-toggle {
    position: fixed;
    top: 12px;
    right: auto;
    left: 78px;
    z-index: 140;
    width: 52px;
    height: 44px;
    background: rgb(11 11 11 / 72%);
    color: var(--white);
  }

  .menu-toggle::before {
    display: none;
  }

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

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

  .nav {
    inset: 0;
    gap: 10px;
    padding: 96px 16px 34px;
    border-bottom: 0;
    background: var(--black);
    color: var(--paper);
  }

  .nav a {
    border-top: 0;
    padding: 0;
    font-size: clamp(30px, 9vw, 58px);
  }

  .hero {
    min-height: 860px;
  }

  .hero-content {
    padding-top: 126px;
  }

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

  .subpage-main {
    padding-top: 68px;
  }

  .subpage-hero,
  .detail-hero,
  .detail-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .backend-form-panel,
  .backend-form {
    grid-template-columns: 1fr;
  }

  .backend-form-panel > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .subpage-hero-copy,
  .detail-hero-copy,
  .contact-panel > div:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .subpage-hero-copy,
  .detail-hero-copy {
    min-height: 420px;
  }

  .subpage-hero-media,
  .subpage-hero-media img,
  .detail-hero-media {
    min-height: 460px;
  }

  .about-image-hero,
  .about-image-hero .subpage-hero-media,
  .about-image-hero .subpage-hero-media img {
    height: 52vh;
    min-height: 0;
  }

  .subpage-intro {
    grid-template-columns: 1fr;
  }

  .subpage-intro > * {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .subpage-intro > *:last-child {
    border-bottom: 0;
  }

  .about-principles > div {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .about-principle-inner {
    grid-column: 1;
    gap: 14px;
    border-left: 0;
    padding: 22px 18px;
  }

  .about-principle-copy {
    padding: 0;
  }

  .operation-sort {
    grid-template-columns: 1fr;
  }

  .operation-sort-label {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 14px 18px;
  }

  .operation-sort-controls {
    padding: 14px 18px;
  }

  .operation-sort-controls button {
    min-height: 38px;
    font-size: 12px;
  }

  .operation-manufacturing-showcase {
    padding: 0;
  }

  .operation-manufacturing-inner {
    grid-template-columns: 1fr;
  }

  .operation-manufacturing-showcase h2 {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 22px 18px;
    font-size: clamp(34px, 9vw, 42px);
  }

  .operation-manufacturing-copy {
    gap: 14px;
    padding: 22px 18px;
  }

  .operation-manufacturing-copy p {
    font-size: 18px;
    line-height: 1.34;
  }

  .operation-manufacturing-gallery {
    width: 100%;
    margin: 0;
  }

  .operation-image-footer-divider {
    height: 56px;
    grid-template-columns: 1fr;
  }

  .operation-image-footer-divider span {
    display: none;
  }

  .joint-venture-section,
  .joint-venture-list {
    grid-template-columns: 1fr;
  }

  .joint-venture-title,
  .joint-venture-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .joint-venture-title {
    min-height: 100px;
  }

  .joint-venture-card {
    min-height: 160px;
  }

  .joint-venture-card:last-child {
    border-bottom: 0;
  }

  .about-copy-block > * {
    grid-template-columns: 1fr;
  }

  .about-copy-block::before {
    display: none;
  }

  .about-copy-block h2 {
    grid-row: auto;
    padding-right: 0;
  }

  .about-copy-block p {
    margin-left: 0;
    padding-left: 0;
  }

  .about-copy-block .rich-text {
    padding-left: 0;
  }

  .about-copy-block .brochure-inline-actions {
    padding-left: 0;
  }

  .pdf-viewer-shell {
    height: calc(100vh - 82px);
    min-height: 520px;
  }

  .subpage-list-card {
    grid-template-columns: 1fr;
  }

  .operations-hero-minimal + .subpage-list .subpage-list-card,
  .project-gallery-grid {
    grid-template-columns: 1fr;
  }

  .news-accordion .subpage-list-card,
  .news-accordion .subpage-list-card.is-open {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .news-accordion .subpage-list-media {
    display: none;
  }

  .news-accordion .subpage-list-card.is-open .subpage-list-media {
    display: block;
  }

  .news-accordion-action {
    position: absolute;
    top: 0;
    right: 0;
    margin: 18px 16px;
  }

  .news-accordion .subpage-list-copy {
    padding-right: 82px;
  }

  .subpage-list-number,
  .subpage-list-copy,
  .detail-meta {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .subpage-list-media img {
    aspect-ratio: 16 / 10;
  }

  .gallery-hero {
    min-height: 420px;
  }

  .gallery-hero-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-gallery-grid figure {
    min-height: 360px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .project-gallery-modal {
    padding: 10px;
  }

  .project-gallery-dialog {
    max-height: calc(100vh - 20px);
  }

  .project-gallery-bar {
    min-height: 56px;
  }

  .project-gallery-close {
    width: 56px;
    min-height: 56px;
  }

  .project-gallery-modal-grid {
    padding: 10px;
  }

  .project-gallery-frame {
    min-height: calc(100vh - 96px);
  }

  .project-gallery-frame img {
    max-height: calc(100vh - 96px);
  }

  .project-gallery-next {
    right: 18px;
    width: 56px;
    height: 56px;
  }

  .project-gallery-count {
    left: 18px;
    bottom: 18px;
  }

  .career-list {
    grid-template-columns: 1fr;
  }

  .career-card,
  .career-card:nth-child(2n) {
    border-right: 0;
  }

  body.careers-page .career-card.job-posting,
  body.careers-page .career-card.job-posting:nth-child(2n) {
    grid-template-columns: minmax(92px, 18vw) minmax(0, 1fr);
  }

  .job-posting-top {
    grid-row: 1 / 3;
    min-height: 0;
  }

  .job-posting-meta {
    grid-column: 2;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .job-posting-sections,
  .job-apply-link {
    grid-column: 2;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .solutions-header {
    grid-template-columns: 1fr;
  }

  .solutions-cross {
    min-height: 190px;
  }

  .hasu-story-inner {
    gap: clamp(22px, 5vw, 40px);
    padding: clamp(40px, 8vw, 72px) clamp(24px, 5vw, 44px);
  }

  .hasu-story h2 {
    font-size: clamp(40px, 7vw, 68px);
  }

  .hasu-story-copy {
    gap: clamp(12px, 2.2vw, 18px);
  }

  .hasu-story-copy p {
    font-size: clamp(17px, 2.5vw, 21px);
    line-height: 1.36;
  }

  .solution-head {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .solution-head::before {
    display: none;
  }

  .solution-title {
    gap: clamp(36px, 8vw, 70px);
    padding: clamp(34px, 7vw, 64px) clamp(24px, 5vw, 44px);
  }

  .solution-title h2 {
    width: min(100%, 760px);
    font-size: clamp(44px, 8vw, 76px);
  }

  .solution-crosshair {
    min-height: 240px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .solution-row {
    min-height: auto;
    grid-template-columns: 1fr;
    column-gap: 0;
    padding: 0;
  }

  .solution-order {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: clamp(18px, 4vw, 28px) clamp(24px, 5vw, 44px);
  }

  .solution-content {
    min-height: auto;
    grid-column: auto;
    margin-left: 0;
    gap: clamp(30px, 7vw, 54px);
    border-left: 0;
    border-right: 0;
    padding: clamp(34px, 7vw, 64px) clamp(24px, 5vw, 44px);
  }

  .solution-item-head,
  .solution-info {
    width: min(100%, 680px);
  }

  .solution-item-head h3 {
    font-size: clamp(21px, 4.4vw, 30px);
    line-height: 1;
  }

  .solution-item-head h3:first-child {
    margin-top: 0;
  }

  .solution-image {
    grid-column: auto;
    grid-row: auto;
    margin-right: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: clamp(18px, 4vw, 30px) clamp(24px, 5vw, 44px) clamp(28px, 6vw, 46px);
  }

  .solution-image img {
    aspect-ratio: 16 / 10;
  }

  .enerblock-style {
    --ener-x: -1px;
    --ener-y: -1px;
    --ener-right: 0%;
    --ener-bottom: 0%;
    --ener-img-scale: 1;
    --ener-inset: 0px;
    --ener-mask-pad: 0px;
    min-height: auto;
  }

  .enerblock-pin {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .enerblock-media {
    position: relative;
    top: auto;
    height: auto;
    min-height: 640px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .enerblock-crossimg {
    clip-path: none;
  }

  .enerblock-copy {
    position: relative;
    top: auto;
    height: auto;
    min-height: auto;
    grid-template-rows: auto auto;
  }

  .enerblock-statement {
    min-height: 540px;
  }

  .enerblock-statement h2 {
    font-size: clamp(48px, 10vw, 82px);
  }

  .hasu-about .enerblock-statement {
    min-height: 0;
    padding: clamp(34px, 7vw, 64px) clamp(24px, 5vw, 44px);
  }

  .hasu-about .hasu-about-text {
    gap: clamp(18px, 4vw, 30px);
  }

  .hasu-about .hasu-about-title {
    font-size: clamp(38px, 7vw, 64px);
  }

  .hasu-about .enerblock-statement p {
    font-size: clamp(17px, 2.5vw, 21px);
    line-height: 1.34;
  }

  .hasu-about .enerblock-statement .hasu-lead {
    font-size: clamp(17px, 2.5vw, 21px);
    line-height: 1.34;
  }

  .hasu-about .enerblock-cards article {
    min-height: auto;
    padding: clamp(34px, 7vw, 64px) clamp(24px, 5vw, 44px);
  }

  .hasu-about .enerblock-card-body {
    margin-top: clamp(78px, 13vw, 140px);
  }

  .hasu-about .enerblock-card-body p {
    font-size: clamp(22px, 4.2vw, 34px);
    line-height: 1.22;
  }

  .enerblock-cards p {
    margin-top: 120px;
  }

  .service-card {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "copy";
  }

  .service-card::before,
  .service-card::after {
    display: none;
  }

  .service-card + .service-card {
    margin-top: 0;
  }

  .service-grid {
    padding-bottom: 0;
  }

  .service-order {
    display: none;
  }

  .service-copy {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: clamp(34px, 8vw, 70px) 16px;
  }

  .service-visual {
    height: auto;
    min-height: 430px;
    margin: 0;
  }

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

  .partner-row {
    animation-duration: 42s;
  }
}

@media (max-width: 640px) {
  .brand-name {
    display: none;
  }

  .hero {
    min-height: 800px;
  }

  .hero h1 {
    font-size: 56px;
  }

  .hero-content {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero p:not(.eyebrow) {
    max-width: min(330px, 100%);
    font-size: 18px;
    line-height: 1.34;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .footer-bottom {
    flex-direction: column;
  }

  .subpage-hero-title,
  .contact-panel h1 {
    font-size: 56px;
    line-height: 0.92;
  }

  .detail-hero-copy h1 {
    font-size: 42px;
    line-height: 0.96;
  }

  .subpage-hero-copy,
  .detail-hero-copy,
  .detail-meta,
  .detail-copy,
  .contact-panel > div,
  .career-card {
    padding: 30px 16px 34px;
  }

  .subpage-hero-copy,
  .detail-hero-copy {
    min-height: 360px;
  }

  .subpage-hero-media,
  .subpage-hero-media img,
  .detail-hero-media {
    min-height: 360px;
  }

  .subpage-list-number {
    padding: 18px 16px;
  }

  .subpage-list-copy {
    gap: 72px;
    padding: 30px 16px 34px;
  }

  .subpage-list-copy h2 {
    font-size: 38px;
    line-height: 0.98;
  }

  .subpage-list-media {
    padding: 16px 16px 30px;
  }

  .subpage-list-media img {
    aspect-ratio: 1 / 1;
  }

  .button {
    width: 100%;
  }

  .hasu-story-inner {
    gap: 20px;
    padding: 34px 16px 40px;
  }

  .hasu-story h2 {
    font-size: 40px;
    line-height: 0.98;
  }

  .hasu-story-copy {
    gap: 12px;
  }

  .hasu-story-copy p {
    font-size: 16px;
    line-height: 1.36;
  }

  .solution-title {
    gap: 74px;
    padding: 34px 16px 48px;
  }

  .solution-label {
    font-size: 40px;
  }

  .solution-title h2 {
    font-size: 56px;
    line-height: 0.9;
  }

  .solution-crosshair {
    min-height: 180px;
  }

  .solution-cross-data {
    font-size: 13px;
  }

  .solution-order {
    padding: 18px 16px;
    font-size: 16px;
  }

  .solution-content {
    margin-left: 0;
    gap: 28px;
    padding: 30px 16px 34px;
  }

  .solution-item-head p {
    margin-bottom: 18px;
    font-size: 16px;
  }

  .solution-item-head h3 {
    font-size: 20px;
    line-height: 1.02;
  }

  .solution-info {
    gap: 26px;
  }

  .solution-info p {
    font-size: 21px;
    line-height: 1.34;
  }

  .solution-image {
    padding: 16px 16px 30px;
  }

  .solution-image img {
    aspect-ratio: 1 / 1.05;
  }

  .enerblock-media {
    min-height: 520px;
  }

  .enerblock-crossimg img {
    width: 100%;
    height: 100%;
  }

  .enerblock-axis,
  .enerblock-cross .line {
    display: none;
  }

  .enerblock-dot {
    display: none;
  }

  .enerblock-statement {
    min-height: 470px;
    padding: 26px 16px 30px;
  }

  .enerblock-statement h2 {
    max-width: 100%;
    font-size: 28px;
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .hasu-about .enerblock-statement {
    min-height: auto;
    padding: 30px 16px 34px;
  }

  .hasu-about .hasu-about-text {
    gap: 18px;
  }

  .hasu-about .hasu-about-title {
    font-size: 40px;
    line-height: 0.96;
  }

  .hasu-about .enerblock-statement p {
    margin-top: 0;
    font-size: 16px;
    line-height: 1.35;
  }

  .hasu-about .enerblock-statement .hasu-lead {
    font-size: 16px;
    line-height: 1.35;
  }

  .mobile-break {
    display: block;
  }

  .enerblock-statement p {
    margin-top: 86px;
    font-size: 26px;
  }

  .enerblock-cards {
    grid-template-columns: 1fr;
  }

  .enerblock-cards article {
    min-height: 350px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 26px 16px;
  }

  .enerblock-cards p {
    margin-top: 72px;
    font-size: 22px;
  }

  .hasu-about .enerblock-card-body {
    margin-top: 78px;
  }

  .hasu-about .enerblock-card-body p {
    font-size: 22px;
    line-height: 1.25;
  }

  .hasu-about .enerblock-card-body p + p {
    margin-top: 54px;
  }

  .outline-link {
    width: 100%;
  }

  .service-grid,
  .project-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .partner-set {
    gap: 42px;
    padding-right: 42px;
  }

  .partners {
    background:
      linear-gradient(var(--line), var(--line)) 0 var(--partners-title-line) / 100% 1px no-repeat,
      #f4f4ef;
  }

  .partners h2 {
    width: 100%;
  }

  .service-card {
    min-height: auto;
  }

  .service-copy {
    min-height: auto;
  }

  .service-card h3 {
    font-size: 40px;
  }

  .service-visual {
    min-height: 320px;
  }

  .project-card img,
  .news img {
    aspect-ratio: 1.25 / 1;
  }

  .case-carousel {
    padding-right: 16px;
    padding-left: 16px;
    scroll-padding-inline: 16px;
  }

  .case-card {
    flex-basis: calc(100vw - 32px);
    height: 460px;
  }

  .case-card.project-card h3,
  .news-card.case-card h3 {
    max-width: calc(100% - 62px);
    font-size: 25px;
    line-height: 1.05;
  }

  .case-card-arrow {
    width: 52px;
    height: 52px;
  }

  .case-controls {
    padding-right: 16px;
    padding-left: 16px;
  }

  .case-cta {
    min-width: 0;
    flex: 1;
  }

  .brochure-actions,
  .brochure-inline-actions {
    gap: 10px;
  }

  .brochure-button {
    width: 100%;
  }

  .pdf-viewer-main {
    padding-top: 68px;
  }

  .pdf-viewer-shell {
    height: calc(100vh - 68px);
    min-height: 500px;
    padding: 8px;
  }

  .flip-book {
    width: min(calc(100vw + 38px), calc((100svh - 150px) * var(--flip-spread-ratio, 1.414)));
  }

  .flip-book.is-single-page {
    width: min(88vw, calc((100svh - 230px) * var(--flip-page-ratio, 1.333)));
  }

  .flip-edge {
    width: 48px;
    height: 48px;
  }

  .flip-edge span {
    width: 15px;
    height: 15px;
    border-width: 2px;
  }

  .flip-toolbar {
    grid-template-columns: 1fr;
  }

  .flip-toolbar-link,
  .flip-toolbar-primary,
  .flip-controls {
    width: 100%;
    justify-self: stretch;
  }

  .flip-toolbar-link,
  .flip-controls button {
    justify-content: center;
  }

  .flip-controls {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
  }
}

/* Landing news: operations-style horizontal carousel */
#news.news {
  position: relative;
  z-index: 20;
  overflow: hidden;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  background: #f4f4ef;
  color: #171717;
}

#news .case-header {
  display: grid;
  gap: clamp(40px, 3.8vw, 72px);
  border-bottom: 1px solid #ffffff;
  padding: clamp(78px, 7vw, 136px) clamp(18px, 1.35vw, 28px) clamp(58px, 5vw, 96px);
  background: #f4f4ef;
}

#news .case-header h2 {
  width: min(100%, 1820px);
  color: #171717;
  font-size: clamp(58px, 5.9vw, 122px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: none;
}

#news .case-controls {
  display: flex;
  border-top: 1px solid #ffffff;
  padding-top: clamp(18px, 1.4vw, 28px);
}

#news .news-grid.case-carousel,
#news .news-grid.case-carousel.news-articles-list {
  display: flex;
  max-width: none;
  grid-template-columns: none;
  gap: 1px;
  margin: 0;
  padding: 0 clamp(18px, 1.35vw, 28px) 0;
  overflow-x: auto;
  background: #ffffff;
  scroll-snap-type: x mandatory;
}

#news .news-card.case-card {
  position: relative;
  display: block;
  flex: 0 0 clamp(560px, 38.45vw, 792px);
  height: clamp(420px, 30vw, 560px);
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 0;
  background: #d9ddd8;
  color: var(--white);
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  scroll-snap-align: start;
}

#news .news-card.case-card figure {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

#news .news-card.case-card figure img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}

#news .news-card.case-card figure::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.56) 42%, rgba(0, 0, 0, 0.2) 72%, rgba(0, 0, 0, 0.12) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.26) 48%, rgba(0, 0, 0, 0.82) 100%);
  content: "";
}

#news .news-card.case-card .case-card-copy {
  position: absolute;
  inset: 0;
  min-height: 0;
  background: transparent;
}

#news .news-card.case-card h3 {
  max-width: calc(100% - 84px);
  margin: 0;
  padding: 0;
  color: var(--white);
  font-size: clamp(24px, 1.55vw, 34px);
  font-weight: 600;
  line-height: 1.04;
  text-transform: none;
  text-wrap: balance;
  opacity: 1 !important;
  visibility: visible !important;
  clip-path: none !important;
  transform: none !important;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.52);
}

#news .news-card.case-card::before,
#news .news-card.case-card::after {
  display: none;
  content: none;
}

@media (max-width: 1100px) {
  .zero-harm-content {
    width: 100%;
    padding-right: clamp(22px, 6vw, 72px);
    padding-left: clamp(22px, 6vw, 72px);
  }

  #news .news-grid.case-carousel,
  #news .news-grid.case-carousel.news-articles-list {
    padding-right: 18px;
    padding-left: 18px;
  }
}

@media (max-width: 720px) {
  .zero-harm-band {
    min-height: 420px;
  }

  .zero-harm-content {
    min-height: 0;
    padding: 0 18px 32px;
  }

  .zero-harm-content h2 {
    font-size: clamp(48px, 17vw, 76px);
  }

  #news .case-header {
    padding: 58px 18px 42px;
  }

  #news .case-header h2 {
    font-size: clamp(38px, 10.5vw, 62px);
    line-height: 0.94;
  }

  #news .news-grid.case-carousel,
  #news .news-grid.case-carousel.news-articles-list {
    display: flex;
    gap: 1px;
    padding: 0 18px;
  }

  #news .news-card.case-card {
    flex-basis: min(86vw, 460px);
    height: 420px;
  }
}

/* News page: Redpath-style recent articles */
body.news-page .subpage-main {
  min-height: calc(100vh - 72px);
  background: #f4f4ef;
  color: #171717;
}

body.news-page .operations-hero-minimal {
  border-bottom: 1px solid var(--line);
  background: #f4f4ef;
}

body.news-page .operations-hero-minimal .subpage-hero-copy {
  min-height: clamp(190px, 22vh, 300px);
  border-bottom: 0;
}

body.news-page .subpage-hero-title {
  color: #08090c;
  font-size: clamp(58px, 8vw, 148px);
  font-weight: 500;
  line-height: 0.9;
}

body.news-page .news-articles-page-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 2.2vw, 42px);
  border: 0;
  padding: clamp(42px, 4.4vw, 82px) clamp(22px, 4.6vw, 92px) clamp(64px, 5vw, 108px);
  background: #f4f4ef;
}

body.news-page .news-page-card {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 100%;
  border: 1px solid #d2d2ca;
  background: #ffffff;
  color: #31312f;
  opacity: 1 !important;
  overflow: hidden;
  transform: none !important;
  visibility: visible !important;
  transition:
    border-color 240ms ease,
    transform 240ms ease,
    box-shadow 240ms ease;
}

body.news-page .news-page-card::before,
body.news-page .news-page-card::after {
  display: none !important;
  content: none !important;
}

body.news-page .news-page-card:hover {
  border-color: var(--lime-dark);
  box-shadow: 0 18px 42px rgb(8 9 12 / 0.08);
  transform: translateY(-3px) !important;
}

body.news-page .news-page-card .news-redpath-link {
  display: grid;
  min-height: 100%;
  grid-template-rows: auto 1fr auto;
  color: inherit;
  text-decoration: none;
  opacity: 1 !important;
  visibility: visible !important;
}

body.news-page .news-page-card .news-redpath-image {
  display: block;
  width: 100%;
  aspect-ratio: 1.54 / 1;
  object-fit: cover;
  background: #d9ddd8;
  opacity: 1 !important;
  filter: none;
  visibility: visible !important;
}

body.news-page .news-page-card .news-redpath-body {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(20px, 1.65vw, 32px);
}

body.news-page .news-page-card .news-redpath-date {
  color: #777872;
  font-size: clamp(12px, 0.8vw, 15px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

body.news-page .news-page-card h3 {
  margin: 0;
  padding: 0;
  color: #1b1b1b;
  font-size: clamp(23px, 1.65vw, 36px);
  font-weight: 600;
  line-height: 1.08;
  text-transform: none;
  text-wrap: balance;
  opacity: 1 !important;
  clip-path: none !important;
  transform: none !important;
  visibility: visible !important;
}

body.news-page .news-page-card p {
  margin: 0;
  color: #4f514d;
  font-size: clamp(16px, 0.95vw, 19px);
  font-weight: 500;
  line-height: 1.38;
}

body.news-page .news-page-card .news-redpath-footer {
  display: grid;
  justify-items: center;
  border-top: 1px solid #d2d2ca;
  padding: clamp(16px, 1.2vw, 22px);
  background: #fbfbf7;
}

body.news-page .news-page-card .news-redpath-footer span {
  display: inline-grid;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--lime-dark);
  background: var(--lime);
  padding: 0 24px;
  color: #08090c;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  body.news-page .news-articles-page-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body.news-page .operations-hero-minimal .subpage-hero-copy {
    min-height: 180px;
  }

  body.news-page .subpage-hero-title {
    font-size: clamp(48px, 18vw, 82px);
  }

  body.news-page .news-articles-page-list {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 36px 18px 52px;
  }
}

/* News page: expandable article rows */
body.news-page,
body.news-page .subpage-main,
body.news-page .operations-hero-minimal,
body.news-page .news-accordion {
  background: #f4f4ef;
  color: #08090c;
}

body.news-page .site-header {
  border-color: var(--line);
  background: #f4f4ef;
  color: #08090c;
}

body.news-page .operations-hero-minimal {
  border-bottom: 1px solid var(--line);
}

body.news-page .news-accordion {
  display: block;
  border-top: 0;
  border-bottom: 1px solid var(--line);
  padding: 0;
}

body.news-page .news-accordion .subpage-list-card,
body.news-page .news-accordion .subpage-list-card.reveal,
body.news-page .news-accordion .subpage-list-card.is-visible {
  display: grid;
  min-height: clamp(116px, 8.4vw, 168px);
  grid-template-columns: minmax(108px, 12%) minmax(0, 1fr) clamp(64px, 7vw, 112px);
  align-items: stretch;
  border-top: 1px solid var(--line);
  border-bottom: 0;
  background: #f4f4ef;
  color: #08090c;
  opacity: 1 !important;
  overflow: hidden;
  transform: none !important;
  transition:
    background-color 180ms ease,
    grid-template-columns 320ms cubic-bezier(0.22, 1, 0.36, 1);
  visibility: visible !important;
}

body.news-page .news-accordion .subpage-list-card:hover,
body.news-page .news-accordion .subpage-list-card.is-open {
  background: #fbfbf7;
}

body.news-page .news-accordion .subpage-list-card.is-open {
  grid-template-columns: minmax(108px, 12%) minmax(0, 52%) minmax(220px, 28%) clamp(64px, 7vw, 112px);
}

body.news-page .news-accordion .subpage-list-number {
  display: flex;
  grid-column: 1;
  grid-row: 1;
  gap: clamp(7px, 0.7vw, 14px);
  align-items: center;
  align-self: stretch;
  border-right: 1px solid var(--line);
  border-bottom: 0;
  padding: clamp(18px, 1.8vw, 32px);
  color: #08090c;
  font-size: clamp(18px, 1.35vw, 28px);
  font-weight: 900;
  line-height: 1;
}

body.news-page .news-accordion .subpage-list-number i {
  display: block;
  width: auto;
  height: auto;
  margin: 0;
  background: none;
  color: #6a6d64;
  font-style: normal;
}

body.news-page .news-accordion .subpage-list-number i::before {
  content: "/";
  margin-right: clamp(7px, 0.7vw, 14px);
}

body.news-page .news-accordion .subpage-list-copy {
  display: grid;
  grid-column: 2;
  grid-row: 1;
  align-content: center;
  gap: clamp(10px, 1vw, 18px);
  border-right: 1px solid var(--line);
  border-bottom: 0;
  padding: clamp(20px, 2vw, 42px) clamp(18px, 3vw, 58px);
}

body.news-page .news-accordion .subpage-list-copy small {
  display: block;
  color: #777872;
  font-size: clamp(11px, 0.72vw, 14px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

body.news-page .news-accordion .subpage-list-copy h2 {
  width: min(100%, 1120px);
  margin: 0;
  color: #08090c;
  font-size: clamp(22px, 1.75vw, 38px);
  font-weight: 560;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
}

body.news-page .news-accordion .news-accordion-panel {
  display: grid;
  max-height: 0;
  gap: clamp(12px, 1vw, 20px);
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 300ms cubic-bezier(0.22, 1, 0.36, 1),
    margin-top 300ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease;
}

body.news-page .news-accordion .subpage-list-card.is-open .news-accordion-panel {
  max-height: 260px;
  margin-top: clamp(8px, 0.9vw, 16px);
  opacity: 1;
}

body.news-page .news-accordion-panel p {
  width: min(100%, 720px);
  margin: 0;
  color: #4f514d;
  font-size: clamp(15px, 0.95vw, 18px);
  font-weight: 500;
  line-height: 1.38;
}

body.news-page .news-accordion-link {
  width: fit-content;
  color: #08090c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: underline;
  text-transform: uppercase;
  text-underline-offset: 4px;
}

body.news-page .news-accordion .subpage-list-media {
  display: none;
  grid-column: 3;
  grid-row: 1;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: clamp(16px, 1.35vw, 26px);
  opacity: 1;
  pointer-events: auto;
  transform: none;
  visibility: visible;
}

body.news-page .news-accordion .subpage-list-card.is-open .subpage-list-media {
  display: block;
}

body.news-page .news-accordion .subpage-list-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 170px;
  max-height: 280px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: none;
}

body.news-page .news-accordion-action {
  display: grid;
  grid-column: 3;
  grid-row: 1;
  width: clamp(42px, 3.8vw, 70px);
  height: clamp(42px, 3.8vw, 70px);
  align-self: center;
  justify-self: center;
  border: 1px solid var(--line);
  margin: 0;
  background: transparent !important;
  color: #08090c;
  place-items: center;
}

body.news-page .news-accordion .subpage-list-card.is-open .news-accordion-action {
  grid-column: 4;
}

body.news-page .news-accordion-action span {
  position: absolute;
  width: clamp(14px, 1.1vw, 22px);
  height: 2px;
  background: currentColor;
}

body.news-page .news-accordion .subpage-list-card.is-open .news-accordion-action,
body.news-page .news-accordion-action:hover,
body.news-page .news-accordion-action:focus-visible {
  border-color: var(--lime-dark);
  background: var(--lime) !important;
  color: #08090c;
  outline: none;
}

@media (max-width: 900px) {
  body.news-page .news-accordion .subpage-list-card,
  body.news-page .news-accordion .subpage-list-card.is-open,
  body.news-page .news-accordion .subpage-list-card.reveal,
  body.news-page .news-accordion .subpage-list-card.is-visible {
    grid-template-columns: minmax(74px, 18%) minmax(0, 1fr) 64px;
  }

  body.news-page .news-accordion .subpage-list-card.is-open {
    grid-template-rows: auto auto;
  }

  body.news-page .news-accordion .subpage-list-number {
    padding: 18px 14px;
  }

  body.news-page .news-accordion .subpage-list-copy {
    padding: 20px 16px;
  }

  body.news-page .news-accordion .subpage-list-card.is-open .subpage-list-media {
    display: block;
    grid-column: 2 / 4;
    grid-row: 2;
    padding: 0 16px 20px;
  }

  body.news-page .news-accordion .subpage-list-card.is-open .news-accordion-action,
  body.news-page .news-accordion-action {
    grid-column: 3;
  }
}

@media (max-width: 620px) {
  body.news-page .news-accordion .subpage-list-card,
  body.news-page .news-accordion .subpage-list-card.is-open,
  body.news-page .news-accordion .subpage-list-card.reveal,
  body.news-page .news-accordion .subpage-list-card.is-visible {
    grid-template-columns: 1fr 54px;
  }

  body.news-page .news-accordion .subpage-list-number {
    display: none;
  }

  body.news-page .news-accordion .subpage-list-copy {
    grid-column: 1;
    border-right: 1px solid var(--line);
    padding: 18px 14px 18px 18px;
  }

  body.news-page .news-accordion-action,
  body.news-page .news-accordion .subpage-list-card.is-open .news-accordion-action {
    grid-column: 2;
    width: 38px;
    height: 38px;
  }

  body.news-page .news-accordion .subpage-list-card.is-open .subpage-list-media {
    grid-column: 1 / 3;
    padding: 0 18px 20px;
  }
}

/* Landing hero: Enerblock-style full-screen opener */
body:not(.subpage) .site-header {
  grid-template-columns: minmax(180px, 1fr) minmax(188px, clamp(220px, 14.65vw, 300px)) minmax(188px, clamp(220px, 14.65vw, 300px));
  gap: clamp(10px, 0.83vw, 16px);
  border-bottom: 0;
  padding: clamp(12px, 0.84vw, 17px) clamp(20px, 1.4vw, 29px);
  background: transparent;
  color: #ffffff;
}

body:not(.subpage) .site-header::before {
  display: none;
}

body:not(.subpage) .site-header.is-scrolled {
  border-bottom: 0;
  background: transparent;
  color: #ffffff;
  backdrop-filter: none;
}

body:not(.subpage) .site-header.is-scrolled .brand-mark img {
  filter: none;
}

body:not(.subpage) .brand {
  justify-self: start;
  color: #ffffff;
  text-transform: none;
}

body:not(.subpage) .brand-mark {
  width: auto;
  height: clamp(23px, 1.64vw, 34px);
  aspect-ratio: auto;
}

body:not(.subpage) .brand-mark img {
  max-width: none;
  width: auto;
  height: clamp(23px, 1.64vw, 34px);
  filter: none;
}

body:not(.subpage) .brand-name {
  display: none;
}

body:not(.subpage) .menu-toggle {
  box-sizing: border-box;
  display: grid;
  width: 100%;
  min-width: 0;
  height: clamp(38px, 2.74vw, 56px);
  grid-template-columns: 1fr clamp(54px, 3.75vw, 77px);
  justify-self: end;
  border-color: rgb(255 255 255 / 0.74);
  background: transparent;
  color: #ffffff;
  backdrop-filter: blur(12px);
}

body:not(.subpage) .menu-toggle::before {
  position: static;
  display: flex;
  box-sizing: border-box;
  height: 100%;
  align-items: center;
  justify-content: flex-start;
  justify-self: stretch;
  min-width: 0;
  border-right: 1px solid rgb(255 255 255 / 0.74);
  padding: 0 clamp(11px, 0.84vw, 18px);
  color: currentColor;
  content: var(--menu-label, "Menu");
  font-size: clamp(15px, 1.05vw, 21px);
  font-weight: 600;
  line-height: 1;
  text-transform: none;
  transform: none;
}

body:not(.subpage) .menu-toggle[aria-expanded="true"]::before {
  content: var(--menu-close-label, "Close");
}

body:not(.subpage) .menu-toggle span {
  left: auto;
  right: clamp(13px, 1.24vw, 25px);
  width: clamp(28px, 1.95vw, 40px);
  height: clamp(1.5px, 0.1vw, 2px);
}

body:not(.subpage) .menu-toggle span:first-child {
  transform: translateY(-5px);
}

body:not(.subpage) .menu-toggle span:last-child {
  transform: translateY(5px);
}

body:not(.subpage) .header-contact {
  box-sizing: border-box;
  display: inline-flex;
  width: 100%;
  min-width: 0;
  height: clamp(38px, 2.74vw, 56px);
  align-items: center;
  justify-content: space-between;
  justify-self: end;
  border: 1px solid #ffffff;
  background: #ffffff;
  padding: 0 clamp(11px, 0.84vw, 18px);
  color: #08090c;
  font-size: clamp(15px, 1.05vw, 21px);
  font-weight: 600;
  line-height: 1;
}

body:not(.subpage) .header-contact::after {
  display: block;
  width: clamp(22px, 1.45vw, 30px);
  height: clamp(16px, 1.05vw, 22px);
  background: currentColor;
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='30' height='22' viewBox='0 0 30 22' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 11H27M19 3L27 11L19 19' fill='none' stroke='black' stroke-width='3' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg width='30' height='22' viewBox='0 0 30 22' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 11H27M19 3L27 11L19 19' fill='none' stroke='black' stroke-width='3' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E") center / contain no-repeat;
}

body:not(.subpage) .site-header.is-over-light:not(.menu-open) {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: #08090c;
}

body:not(.subpage) .site-header.is-over-light:not(.menu-open) .brand {
  color: #08090c;
}

body:not(.subpage) .site-header.is-over-light:not(.menu-open) .brand-mark img {
  filter: invert(1);
}

body:not(.subpage) .site-header.is-over-light:not(.menu-open) .menu-toggle {
  border-color: rgb(8 9 12 / 0.74);
  background: transparent;
  color: #08090c;
  backdrop-filter: none;
}

body:not(.subpage) .site-header.is-over-light:not(.menu-open) .menu-toggle::before {
  border-right-color: rgb(8 9 12 / 0.74);
}

body:not(.subpage) .site-header.is-over-light:not(.menu-open) .header-contact {
  border-color: rgb(8 9 12 / 0.74);
  background: #ffffff;
  color: #08090c;
}

body.subpage .site-header {
  grid-template-columns: minmax(180px, 1fr) minmax(188px, clamp(220px, 14.65vw, 300px)) minmax(188px, clamp(220px, 14.65vw, 300px));
  gap: clamp(10px, 0.83vw, 16px);
  border-bottom: 1px solid var(--line);
  padding: clamp(12px, 0.84vw, 17px) clamp(20px, 1.4vw, 29px);
  background: var(--paper);
  color: #08090c;
}

body.subpage .site-header::before {
  display: none;
}

body.subpage .site-header.menu-open {
  border-color: var(--dark-line);
  background: var(--black);
  color: var(--paper);
}

body.subpage .brand {
  justify-self: start;
  color: #08090c;
  text-transform: none;
}

body.subpage .site-header.menu-open .brand {
  color: #ffffff;
}

body.subpage .brand-mark {
  width: auto;
  height: clamp(23px, 1.64vw, 34px);
  aspect-ratio: auto;
}

body.subpage .brand-mark img {
  max-width: none;
  width: auto;
  height: clamp(23px, 1.64vw, 34px);
  filter: none;
}

body.subpage .site-header.menu-open .brand-mark img {
  filter: invert(1);
}

body.subpage .brand-name {
  display: none;
}

body.subpage .menu-toggle {
  box-sizing: border-box;
  display: grid;
  width: 100%;
  min-width: 0;
  height: clamp(38px, 2.74vw, 56px);
  grid-template-columns: 1fr clamp(54px, 3.75vw, 77px);
  justify-self: end;
  border-color: rgb(8 9 12 / 0.74);
  background: transparent;
  color: #08090c;
  backdrop-filter: none;
}

body.subpage .site-header.menu-open .menu-toggle {
  border-color: rgb(255 255 255 / 0.74);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

body.subpage .menu-toggle::before {
  position: static;
  display: flex;
  box-sizing: border-box;
  height: 100%;
  align-items: center;
  justify-content: flex-start;
  justify-self: stretch;
  min-width: 0;
  border-right: 1px solid rgb(8 9 12 / 0.74);
  padding: 0 clamp(11px, 0.84vw, 18px);
  color: currentColor;
  content: var(--menu-label, "Menu");
  font-size: clamp(15px, 1.05vw, 21px);
  font-weight: 600;
  line-height: 1;
  text-transform: none;
  transform: none;
}

body.subpage .site-header.menu-open .menu-toggle::before {
  border-right-color: rgb(255 255 255 / 0.74);
}

body.subpage .menu-toggle[aria-expanded="true"]::before {
  content: var(--menu-close-label, "Close");
}

body.subpage .menu-toggle span {
  left: auto;
  right: clamp(13px, 1.24vw, 25px);
  width: clamp(28px, 1.95vw, 40px);
  height: clamp(1.5px, 0.1vw, 2px);
}

body.subpage .header-contact {
  box-sizing: border-box;
  display: inline-flex;
  width: 100%;
  min-width: 0;
  height: clamp(38px, 2.74vw, 56px);
  align-items: center;
  justify-content: space-between;
  justify-self: end;
  border: 1px solid rgb(8 9 12 / 0.74);
  background: #ffffff;
  padding: 0 clamp(11px, 0.84vw, 18px);
  color: #08090c;
  font-size: clamp(15px, 1.05vw, 21px);
  font-weight: 600;
  line-height: 1;
}

body.subpage .site-header.menu-open .header-contact {
  border-color: #ffffff;
  background: #ffffff;
  color: #08090c;
}

body.subpage .header-contact::after {
  display: block;
  width: clamp(22px, 1.45vw, 30px);
  height: clamp(16px, 1.05vw, 22px);
  background: currentColor;
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='30' height='22' viewBox='0 0 30 22' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 11H27M19 3L27 11L19 19' fill='none' stroke='black' stroke-width='3' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg width='30' height='22' viewBox='0 0 30 22' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 11H27M19 3L27 11L19 19' fill='none' stroke='black' stroke-width='3' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E") center / contain no-repeat;
}

body:not(.subpage) .hero {
  min-height: 100svh;
  grid-template-rows: 1fr;
  background: #08090c;
}

body:not(.subpage) .hero::before {
  content: none;
}

body:not(.subpage) .hero-media img,
body:not(.subpage) .hero-media video {
  height: 112%;
  filter: none;
  object-position: center 52%;
  transform: scale(1.028) translateY(calc(var(--hero-shift, 0) * 1px));
}

body:not(.subpage) .hero-content {
  display: grid;
  align-self: stretch;
  width: 100%;
  max-width: none;
  align-content: end;
  margin: 0;
  padding: clamp(132px, 14vh, 210px) clamp(20px, 2.7vw, 42px) clamp(30px, 3.8vw, 60px);
}

body:not(.subpage) .hero .eyebrow {
  margin: 0 0 clamp(42px, 5.5vw, 80px);
  color: #ffffff;
  font-size: clamp(18px, 1.28vw, 28px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

body:not(.subpage) .hero h1 {
  max-width: min(820px, 64vw);
  color: #ffffff;
  font-size: clamp(82px, 8.1vw, 164px);
  font-weight: 900;
  line-height: 0.9;
  text-transform: none;
}

body:not(.subpage) .hero-feature {
  display: grid;
  width: min(880px, calc(100vw - clamp(40px, 5.4vw, 84px)));
  min-height: clamp(238px, 18.5vw, 400px);
  grid-template-columns: minmax(0, 1fr);
  margin-top: 0;
  background: #ff5949;
  color: #08090c;
}

body:not(.subpage) .hero-feature-copy {
  --hero-feature-pad-x: clamp(24px, 2.4vw, 48px);

  display: flex;
  min-width: 0;
  flex-direction: column;
  border-right: 0;
  padding: clamp(22px, 2vw, 36px) var(--hero-feature-pad-x);
}

body:not(.subpage) .hero-feature h2 {
  max-width: 620px;
  margin: 0;
  color: #08090c;
  font-size: clamp(28px, 2.35vw, 48px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: none;
}

body:not(.subpage) .hero-feature-body {
  position: relative;
  display: flex;
  width: 100%;
  max-width: none;
  flex-direction: column;
  margin: auto 0 0;
  padding-top: clamp(18px, 1.55vw, 32px);
}

body:not(.subpage) .hero-feature-body::before {
  position: absolute;
  top: 0;
  right: calc(var(--hero-feature-pad-x) * -1);
  left: calc(var(--hero-feature-pad-x) * -1);
  height: 1px;
  background: #08090c;
  content: "";
}

body:not(.subpage) .hero-feature p {
  width: 100%;
  max-width: none;
  margin: 0;
  color: #08090c;
  font-size: clamp(16px, 1.02vw, 22px);
  font-weight: 500;
  line-height: 1.28;
}

body:not(.subpage) .hero-feature-cta {
  display: inline-grid;
  width: min(260px, 100%);
  min-height: clamp(44px, 3vw, 58px);
  grid-template-columns: minmax(0, 1fr) clamp(48px, 3.4vw, 64px);
  align-items: center;
  margin-top: clamp(18px, 1.55vw, 30px);
  border: 1px solid #08090c;
  background: #08090c;
  color: #ff5949;
  font-size: clamp(15px, 1vw, 20px);
  font-weight: 600;
  line-height: 1;
}

body:not(.subpage) .hero-feature-cta span {
  min-width: 0;
  padding: 0 clamp(14px, 1.05vw, 20px);
}

body:not(.subpage) .hero-feature-cta b {
  display: grid;
  height: 100%;
  place-items: center;
  border-left: 1px solid #ff5949;
}

body:not(.subpage) .hero-feature-cta b::before {
  display: block;
  width: clamp(22px, 1.45vw, 30px);
  height: clamp(16px, 1.05vw, 22px);
  background: currentColor;
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='30' height='22' viewBox='0 0 30 22' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 11H27M19 3L27 11L19 19' fill='none' stroke='black' stroke-width='3' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg width='30' height='22' viewBox='0 0 30 22' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 11H27M19 3L27 11L19 19' fill='none' stroke='black' stroke-width='3' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E") center / contain no-repeat;
}

body:not(.subpage) .hero-feature-mark {
  display: none;
}

body:not(.subpage) .hero-feature-mark::before {
  display: grid;
  width: clamp(94px, 6.85vw, 140px);
  aspect-ratio: 1;
  place-items: center;
  background: #08090c;
  content: "";
  grid-area: 1 / 1;
}

body:not(.subpage) .hero-feature-mark span {
  z-index: 1;
  display: block;
  width: clamp(12px, 0.8vw, 16px);
  height: clamp(36px, 2.35vw, 48px);
  align-self: center;
  background: #ff5949;
  grid-area: 1 / 1;
  transform: skewY(-28deg);
}

body:not(.subpage) .hero-feature-mark span:first-child {
  justify-self: center;
  margin-left: clamp(-42px, -2.5vw, -28px);
}

body:not(.subpage) .hero-feature-mark span:nth-child(2) {
  justify-self: center;
}

body:not(.subpage) .hero-feature-mark span:last-child {
  justify-self: center;
  margin-left: clamp(28px, 2.5vw, 42px);
}

@media (max-width: 920px) {
  .hero-video-controls {
    top: auto;
    right: max(16px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
  }

  body:not(.subpage) .site-header {
    grid-template-columns: auto minmax(148px, calc(50vw - 16px));
    gap: 12px;
    padding: 14px 16px;
    justify-content: space-between;
  }

  body:not(.subpage) .brand-mark {
    width: auto;
    height: 32px;
  }

  body:not(.subpage) .brand-mark img {
    height: 32px;
  }

  body:not(.subpage) .menu-toggle {
    position: relative;
    top: auto;
    left: auto;
    z-index: 110;
    width: 100%;
    min-width: 0;
    height: 44px;
    grid-template-columns: 1fr 54px;
    background: transparent;
  }

  body:not(.subpage) .header-contact {
    display: none;
  }

  body.subpage .site-header {
    grid-template-columns: auto minmax(148px, calc(50vw - 16px));
    gap: 12px;
    padding: 14px 16px;
    justify-content: space-between;
  }

  body.subpage .brand-mark {
    width: auto;
    height: 32px;
  }

  body.subpage .brand-mark img {
    height: 32px;
  }

  body.subpage .menu-toggle {
    position: relative;
    top: auto;
    left: auto;
    z-index: 110;
    width: 100%;
    min-width: 0;
    height: 44px;
    grid-template-columns: 1fr 54px;
    background: transparent;
  }

  body.subpage .header-contact {
    display: none;
  }

  body.subpage .menu-toggle::before {
    display: flex;
    padding: 0 12px;
    font-size: 15px;
  }

  body.subpage .menu-toggle span {
    right: 14px;
    width: 26px;
  }

  body:not(.subpage) .menu-toggle::before {
    display: flex;
    padding: 0 12px;
    font-size: 15px;
  }

  body:not(.subpage) .menu-toggle span {
    right: 14px;
    width: 26px;
  }

  body:not(.subpage) .hero-content {
    padding: 120px 18px 84px;
  }

  body:not(.subpage) .hero h1 {
    max-width: 100%;
    font-size: clamp(72px, 18vw, 132px);
  }

  body:not(.subpage) .hero-feature {
    display: grid;
    width: 100%;
    min-height: 232px;
    grid-template-columns: minmax(0, 1fr);
    margin-top: 48px;
  }
}

@media (max-width: 620px) {
  .hero-video-control {
    width: 48px;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .hero-video-control-label {
    display: none;
  }

  body:not(.subpage) .brand-name {
    display: none;
  }

  body:not(.subpage) .hero {
    min-height: 100svh;
  }

  body:not(.subpage) .hero .eyebrow {
    margin-bottom: 34px;
    font-size: 16px;
  }

  body:not(.subpage) .hero h1 {
    font-size: clamp(64px, 19vw, 98px);
  }

  body:not(.subpage) .hero-feature {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    margin-top: 42px;
  }

  body:not(.subpage) .hero-feature-copy {
    --hero-feature-pad-x: 20px;

    border-right: 0;
    padding: 22px 20px;
  }

  body:not(.subpage) .hero-feature h2 {
    font-size: clamp(24px, 7.4vw, 36px);
  }

  body:not(.subpage) .hero-feature p {
    font-size: 15px;
  }

  body:not(.subpage) .hero-feature-body {
    margin-top: 34px;
    padding-top: 18px;
  }

  body:not(.subpage) .hero-feature-cta {
    width: 100%;
    min-height: 46px;
    grid-template-columns: minmax(0, 1fr) 52px;
    font-size: 15px;
  }

  body:not(.subpage) .hero-feature-mark {
    min-height: 122px;
    align-content: center;
    padding: 0;
  }
}

.section-heading h2,
.case-header.section-heading h2,
#news .case-header h2,
.solution-label,
.hasu-story h2,
.hasu-about .hasu-about-title,
.hasu-about .hasu-intro-copy h2,
.enerblock-statement h2,
.zero-harm-content h2,
.partners h2,
.subpage-hero-title,
body.news-page .subpage-hero-title,
.about-copy-block h2,
.joint-venture-title h2,
.timeline-section-head h2,
.timeline-intro h2,
.detail-hero-copy h1,
.gallery-hero h1,
.detail-meta h2,
.contact-panel h1,
.backend-form-panel h2 {
  font-family: "Neue Corp", Arial, Helvetica, ui-sans-serif, system-ui, sans-serif;
  font-size: var(--site-title-size);
  font-weight: var(--site-title-weight);
  line-height: var(--site-title-line);
  letter-spacing: var(--site-title-tracking);
  text-transform: none;
}

@media (max-width: 640px) {
  :root {
    --site-title-size: 40px;
  }

  body.careers-page .career-card.job-posting,
  body.careers-page .career-card.job-posting:nth-child(2n) {
    grid-template-columns: 1fr;
  }

  .job-posting-top,
  .job-posting-main,
  .job-posting-meta,
  .job-posting-sections,
  .job-apply-link {
    grid-column: 1;
  }

  .job-posting-top {
    min-height: 96px;
    flex-direction: row;
    align-items: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 20px 18px;
  }

  .job-posting-main,
  .job-posting-meta,
  .job-posting-sections section {
    padding: 24px 18px;
  }

  .job-posting-meta {
    grid-template-columns: 1fr;
  }

  .job-posting-sections {
    grid-template-columns: 1fr;
  }

  .job-posting-sections section + section {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  body.careers-page .career-card.job-posting h2 {
    font-size: clamp(34px, 12vw, 58px);
  }

  .job-apply-link {
    width: auto;
    margin: 0 18px 24px;
  }
}

/* News page: Enerblock-style project listing */
body.news-page .news-project-list {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f4f4ef;
}

body.news-page .news-project-row {
  display: grid;
  height: clamp(330px, 18vw, 370px);
  min-height: 0;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  border-top: 0;
  border-bottom: 1px solid var(--line);
  background: #f4f4ef;
  color: #08090c;
  text-decoration: none;
  opacity: 1 !important;
  overflow: hidden;
  transform: none !important;
  transition:
    background-color 180ms ease,
    color 180ms ease;
  visibility: visible !important;
}

body.news-page .news-project-row:hover,
body.news-page .news-project-row:focus-visible {
  border-color: rgb(255 89 73 / 0.55);
  background: #08090c;
  color: #ff5949;
  outline: none;
}

body.news-page .news-project-row:last-child {
  border-bottom: 0;
}

body.news-page .news-project-title,
body.news-page .news-project-info {
  min-width: 0;
}

body.news-page .news-project-title {
  display: grid;
  align-content: space-between;
  border-right: 1px solid var(--line);
  padding: clamp(22px, 2vw, 38px);
}

body.news-page .news-project-title h2 {
  max-width: min(100%, 980px);
  align-self: end;
  margin: 0;
  color: currentColor;
  font-size: clamp(30px, 1.75vw, 36px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: none;
}

body.news-page .news-project-info {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(150px, 17vw, 300px);
  grid-template-rows: auto 1fr auto;
  gap: clamp(20px, 2.4vw, 44px);
  padding: clamp(22px, 2vw, 38px);
}

body.news-page .news-project-type {
  display: grid;
  grid-column: 1;
  grid-row: 1;
  justify-items: start;
  gap: clamp(12px, 1vw, 18px);
}

body.news-page .news-project-summary {
  display: grid;
  max-width: 640px;
  grid-column: 1;
  grid-row: 3;
  align-self: end;
  gap: clamp(12px, 1vw, 18px);
}

body.news-page .news-project-media {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  grid-column: 2;
  grid-row: 1 / 3;
  justify-self: end;
  align-self: start;
  margin: 0;
  overflow: hidden;
  background: #deded6;
}

body.news-page .news-project-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.news-page .news-project-row:hover .news-project-media img,
body.news-page .news-project-row:focus-visible .news-project-media img {
  transform: scale(1.035);
}

body.news-page .news-project-number,
body.news-page .news-project-badge {
  color: currentColor;
  font-size: clamp(14px, 1vw, 20px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.news-page .news-project-badge {
  display: inline-flex;
  width: max-content;
  min-height: 34px;
  align-items: center;
  border: 1px solid currentColor;
  padding: 0 14px;
}

body.news-page .news-project-type .news-project-badge {
  display: inline-flex;
  margin: 0;
}

body.news-page .news-project-date,
body.news-page .news-project-summary p {
  margin: 0;
  color: currentColor;
  font-size: clamp(18px, 1.3vw, 25px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
}

body.news-page .news-project-summary strong {
  color: currentColor;
  font-size: clamp(14px, 1vw, 20px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.news-page .news-project-row:hover .news-project-title,
body.news-page .news-project-row:focus-visible .news-project-title {
  border-right-color: rgb(255 89 73 / 0.55);
}

@media (max-width: 1100px) {
  body.news-page .news-project-row {
    grid-template-columns: 1fr;
  }

  body.news-page .news-project-title {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  body.news-page .news-project-row:hover .news-project-title,
  body.news-page .news-project-row:focus-visible .news-project-title {
    border-bottom-color: rgb(255 89 73 / 0.55);
  }

  body.news-page .news-project-title h2 {
    margin-top: 0;
    font-size: clamp(22px, 3.6vw, 36px);
  }

  body.news-page .news-project-info {
    grid-template-columns: minmax(0, 1fr) clamp(130px, 24vw, 240px);
  }
}

@media (max-width: 760px) {
  body.news-page .news-project-row {
    min-height: 0;
  }

  body.news-page .news-project-title,
  body.news-page .news-project-info {
    padding: 22px 18px;
  }

  body.news-page .news-project-title h2 {
    margin-top: 0;
    font-size: clamp(21px, 6.4vw, 32px);
  }

  body.news-page .news-project-info {
    grid-template-columns: 1fr clamp(112px, 34vw, 160px);
    gap: 22px 18px;
  }
}

body.news-page .news-project-type .news-project-badge {
  display: inline-flex;
  margin: 0;
  width: max-content;
  min-height: 34px;
  align-items: center;
  border: 1px solid currentColor;
  padding: 0 14px;
}

/* Final news card visibility override. Keep after all duplicate news rules. */
body.news-page .news-project-row {
  height: clamp(330px, 18vw, 370px);
  min-height: clamp(330px, 18vw, 370px);
  grid-template-columns: minmax(0, 50%) minmax(0, 50%);
  overflow: hidden;
}

body.news-page .news-project-row .news-project-title,
body.news-page .news-project-row .news-project-info {
  position: relative;
  display: block;
  min-width: 0;
  padding: clamp(22px, 2vw, 38px);
}

body.news-page .news-project-row .news-project-number,
body.news-page .news-project-row .news-project-type {
  position: absolute;
  top: clamp(22px, 2vw, 38px);
  left: clamp(22px, 2vw, 38px);
  z-index: 2;
}

body.news-page .news-project-row .news-project-title h2 {
  position: absolute;
  right: clamp(22px, 2vw, 38px);
  bottom: clamp(22px, 2vw, 38px);
  left: clamp(22px, 2vw, 38px);
  display: block;
  max-width: none;
  margin: 0;
  color: currentColor;
  font-size: clamp(30px, 1.75vw, 36px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: none;
  z-index: 2;
}

body.news-page .news-project-row .news-project-type {
  display: grid;
  justify-items: start;
  gap: clamp(12px, 1vw, 18px);
}

body.news-page .news-project-row .news-project-summary {
  position: absolute;
  right: clamp(360px, 22vw, 430px);
  bottom: clamp(22px, 2vw, 38px);
  left: clamp(22px, 2vw, 38px);
  display: grid;
  max-width: none;
  gap: clamp(12px, 1vw, 18px);
  z-index: 2;
}

body.news-page .news-project-row .news-project-media {
  position: absolute;
  top: 50%;
  right: clamp(22px, 2vw, 38px);
  display: block;
  width: clamp(145px, 15.5vw, 280px);
  max-width: none;
  height: clamp(145px, 15.5vw, 280px);
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  background: #deded6;
  transform: translateY(-50%);
  z-index: 1;
}

@media (max-width: 1100px) {
  body.news-page .news-project-row {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
  }

  body.news-page .news-project-row .news-project-title,
  body.news-page .news-project-row .news-project-info {
    min-height: clamp(260px, 42vw, 340px);
  }

  body.news-page .news-project-row .news-project-summary {
    right: clamp(190px, 31vw, 300px);
  }

  body.news-page .news-project-row .news-project-media {
    width: clamp(128px, 22vw, 220px);
    height: clamp(128px, 22vw, 220px);
  }
}

@media (max-width: 760px) {
  body.news-page .news-project-row .news-project-title,
  body.news-page .news-project-row .news-project-info {
    min-height: 260px;
    padding: 22px 18px;
  }

  body.news-page .news-project-row .news-project-number,
  body.news-page .news-project-row .news-project-type {
    top: 22px;
    left: 18px;
  }

  body.news-page .news-project-row .news-project-title h2 {
    right: 18px;
    bottom: 22px;
    left: 18px;
    font-size: clamp(24px, 7vw, 34px);
  }

  body.news-page .news-project-row .news-project-summary {
    right: clamp(142px, 40vw, 184px);
    bottom: 22px;
    left: 18px;
  }

  body.news-page .news-project-row .news-project-media {
    top: 22px;
    right: 18px;
    width: clamp(112px, 34vw, 160px);
    height: clamp(112px, 34vw, 160px);
    transform: none;
  }
}

/* Final news card visibility override. Keep after legacy news rules. */
body.news-page .news-project-row {
  height: clamp(330px, 18vw, 370px);
  min-height: clamp(330px, 18vw, 370px);
  grid-template-columns: minmax(0, 50%) minmax(0, 50%);
  overflow: hidden;
}

body.news-page .news-project-row .news-project-title,
body.news-page .news-project-row .news-project-info {
  position: relative;
  display: block;
  min-width: 0;
  padding: clamp(22px, 2vw, 38px);
}

body.news-page .news-project-row .news-project-number,
body.news-page .news-project-row .news-project-type {
  position: absolute;
  top: clamp(22px, 2vw, 38px);
  left: clamp(22px, 2vw, 38px);
  z-index: 2;
}

body.news-page .news-project-row .news-project-title h2 {
  position: absolute;
  right: clamp(22px, 2vw, 38px);
  bottom: clamp(22px, 2vw, 38px);
  left: clamp(22px, 2vw, 38px);
  display: block;
  max-width: none;
  margin: 0;
  color: currentColor;
  font-size: clamp(30px, 1.75vw, 36px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: none;
  z-index: 2;
}

body.news-page .news-project-row .news-project-type {
  display: grid;
  justify-items: start;
  gap: clamp(12px, 1vw, 18px);
}

body.news-page .news-project-row .news-project-summary {
  position: absolute;
  right: clamp(360px, 22vw, 430px);
  bottom: clamp(22px, 2vw, 38px);
  left: clamp(22px, 2vw, 38px);
  display: grid;
  max-width: none;
  gap: clamp(12px, 1vw, 18px);
  z-index: 2;
}

body.news-page .news-project-row .news-project-media {
  position: absolute;
  top: 50%;
  right: clamp(22px, 2vw, 38px);
  display: block;
  width: clamp(145px, 15.5vw, 280px);
  max-width: none;
  height: clamp(145px, 15.5vw, 280px);
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  background: #deded6;
  transform: translateY(-50%);
  z-index: 1;
}

@media (max-width: 1100px) {
  body.news-page .news-project-row {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
  }

  body.news-page .news-project-row .news-project-title,
  body.news-page .news-project-row .news-project-info {
    min-height: clamp(260px, 42vw, 340px);
  }

  body.news-page .news-project-row .news-project-summary {
    right: clamp(190px, 31vw, 300px);
  }

  body.news-page .news-project-row .news-project-media {
    width: clamp(128px, 22vw, 220px);
    height: clamp(128px, 22vw, 220px);
  }
}

@media (max-width: 760px) {
  body.news-page .news-project-row .news-project-title,
  body.news-page .news-project-row .news-project-info {
    min-height: 260px;
    padding: 22px 18px;
  }

  body.news-page .news-project-row .news-project-number,
  body.news-page .news-project-row .news-project-type {
    top: 22px;
    left: 18px;
  }

  body.news-page .news-project-row .news-project-title h2 {
    right: 18px;
    bottom: 22px;
    left: 18px;
    font-size: clamp(24px, 7vw, 34px);
  }

  body.news-page .news-project-row .news-project-summary {
    right: clamp(142px, 40vw, 184px);
    bottom: 22px;
    left: 18px;
  }

  body.news-page .news-project-row .news-project-media {
    top: 22px;
    right: 18px;
    width: clamp(112px, 34vw, 160px);
    height: clamp(112px, 34vw, 160px);
    transform: none;
  }
}

/* News list fixed-card positioning: keeps titles and summaries visible. */
body.news-page .news-project-row {
  height: clamp(330px, 18vw, 370px);
  min-height: clamp(330px, 18vw, 370px);
  overflow: hidden;
}

body.news-page .news-project-row .news-project-title,
body.news-page .news-project-row .news-project-info {
  position: relative;
  display: block;
  min-width: 0;
  padding: clamp(22px, 2vw, 38px);
}

body.news-page .news-project-row .news-project-number {
  position: absolute;
  top: clamp(22px, 2vw, 38px);
  left: clamp(22px, 2vw, 38px);
  z-index: 2;
}

body.news-page .news-project-row .news-project-title h2 {
  position: absolute;
  right: clamp(22px, 2vw, 38px);
  bottom: clamp(22px, 2vw, 38px);
  left: clamp(22px, 2vw, 38px);
  display: block;
  max-width: none;
  margin: 0;
  color: currentColor;
  font-size: clamp(28px, 1.65vw, 34px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: none;
  z-index: 2;
}

body.news-page .news-project-row .news-project-type {
  position: absolute;
  top: clamp(22px, 2vw, 38px);
  left: clamp(22px, 2vw, 38px);
  display: grid;
  justify-items: start;
  gap: clamp(12px, 1vw, 18px);
  z-index: 2;
}

body.news-page .news-project-row .news-project-summary {
  position: absolute;
  right: clamp(370px, 22vw, 430px);
  bottom: clamp(22px, 2vw, 38px);
  left: clamp(22px, 2vw, 38px);
  display: grid;
  max-width: none;
  gap: clamp(12px, 1vw, 18px);
  z-index: 2;
}

body.news-page .news-project-row .news-project-media {
  position: absolute;
  top: clamp(22px, 2vw, 38px);
  right: clamp(22px, 2vw, 38px);
  display: block;
  width: clamp(150px, 17vw, 300px);
  max-width: none;
  height: clamp(150px, 17vw, 300px);
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  background: #deded6;
  z-index: 1;
}

@media (max-width: 1100px) {
  body.news-page .news-project-row {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
  }

  body.news-page .news-project-row .news-project-title,
  body.news-page .news-project-row .news-project-info {
    min-height: clamp(260px, 42vw, 340px);
  }

  body.news-page .news-project-row .news-project-title h2 {
    font-size: clamp(24px, 4vw, 36px);
  }

  body.news-page .news-project-row .news-project-summary {
    right: clamp(190px, 31vw, 300px);
  }

  body.news-page .news-project-row .news-project-media {
    width: clamp(130px, 24vw, 240px);
    height: clamp(130px, 24vw, 240px);
  }
}

@media (max-width: 760px) {
  body.news-page .news-project-row .news-project-title,
  body.news-page .news-project-row .news-project-info {
    min-height: 260px;
    padding: 22px 18px;
  }

  body.news-page .news-project-row .news-project-number,
  body.news-page .news-project-row .news-project-type {
    top: 22px;
    left: 18px;
  }

  body.news-page .news-project-row .news-project-title h2 {
    right: 18px;
    bottom: 22px;
    left: 18px;
    font-size: clamp(23px, 7vw, 32px);
  }

  body.news-page .news-project-row .news-project-summary {
    right: clamp(142px, 40vw, 184px);
    bottom: 22px;
    left: 18px;
  }

  body.news-page .news-project-row .news-project-media {
    top: 22px;
    right: 18px;
    width: clamp(112px, 34vw, 160px);
    height: clamp(112px, 34vw, 160px);
  }
}

/* Final news row divider/image alignment. Keep this last. */
body.news-page .news-project-row {
  grid-template-columns: minmax(0, 50%) minmax(0, 50%);
}

body.news-page .news-project-title {
  border-right: 1px solid var(--line);
}

body.news-page .news-project-info {
  border-left: 0;
}

body.news-page .news-project-row .news-project-media {
  top: 50%;
  width: clamp(145px, 15.5vw, 280px);
  height: clamp(145px, 15.5vw, 280px);
  transform: translateY(-50%);
}

@media (max-width: 1100px) {
  body.news-page .news-project-row {
    grid-template-columns: 1fr;
  }

  body.news-page .news-project-row .news-project-media {
    width: clamp(128px, 22vw, 220px);
    height: clamp(128px, 22vw, 220px);
  }
}

@media (max-width: 760px) {
  body.news-page .news-project-row .news-project-media {
    top: 22px;
    transform: none;
  }
}
body.news-page .news-project-row .news-project-title h2 {
  align-self: end;
  margin: 0;
  font-size: clamp(30px, 1.75vw, 36px);
  line-height: 1.04;
}

@media (max-width: 1100px) {
  body.news-page .news-project-row .news-project-title h2 {
    font-size: clamp(24px, 4vw, 38px);
  }
}

@media (max-width: 760px) {
  body.news-page .news-project-row .news-project-title h2 {
    font-size: clamp(24px, 7vw, 34px);
  }
}

/*
 * Older news listing selectors are intentionally kept out of this block.
 * The page now uses .news-project-title + .news-project-info only.
 */

body.news-page .news-project-main,
body.news-page .news-project-top,
body.news-page .news-project-kicker,
body.news-page .news-project-detail:not(.news-project-type),
body.news-page .news-project-meta {
  display: contents;
}

/*
 * End restored news listing.
 */

/* Legacy rules below are disabled by the selector reset above. */
body.news-page .news-project-top {
  display: flex;
  min-height: clamp(230px, 18vw, 330px);
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  padding: clamp(22px, 2vw, 38px);
}

body.news-page .news-project-row:hover .news-project-top,
body.news-page .news-project-row:focus-visible .news-project-top,
body.news-page .news-project-row:hover .news-project-info,
body.news-page .news-project-row:focus-visible .news-project-info {
  border-right-color: rgb(255 89 73 / 0.55);
  border-left-color: rgb(255 89 73 / 0.55);
}

body.news-page .news-project-number,
body.news-page .news-project-badge,
body.news-page .news-project-kicker {
  color: currentColor;
  font-size: clamp(13px, 0.95vw, 18px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.news-page .news-project-badge {
  display: inline-flex;
  width: max-content;
  min-height: 34px;
  align-items: center;
  border: 1px solid currentColor;
  padding: 0 14px;
}

body.news-page .news-project-main {
  display: grid;
  align-content: space-between;
  gap: clamp(28px, 4vw, 76px);
  padding: clamp(28px, 3.5vw, 64px) clamp(26px, 4vw, 76px);
}

body.news-page .news-project-main h2 {
  max-width: min(100%, 900px);
  margin: 0;
  color: currentColor;
  font-size: clamp(38px, 4vw, 82px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: none;
}

body.news-page .news-project-info {
  display: grid;
  align-content: space-between;
  gap: clamp(22px, 2.1vw, 38px);
  border-left: 1px solid var(--line);
  padding: clamp(28px, 3.5vw, 64px) clamp(24px, 3vw, 58px);
}

body.news-page .news-project-detail {
  min-width: 0;
}

body.news-page .news-project-summary {
  max-width: 760px;
}

body.news-page .news-project-meta {
  display: block;
}

body.news-page .news-project-detail strong {
  display: block;
  margin: 0 0 clamp(10px, 0.8vw, 16px);
  color: currentColor;
  font-size: clamp(18px, 1.25vw, 25px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.news-page .news-project-detail p {
  margin: 0;
  color: currentColor;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}

body.news-page .news-project-date {
  font-size: clamp(22px, 1.65vw, 34px);
}

body.news-page .news-project-media {
  display: block;
  width: 100%;
  max-width: min(100%, clamp(160px, 18vw, 320px));
  aspect-ratio: 1;
  justify-self: end;
  margin: 0;
  overflow: hidden;
  background: #deded6;
}

body.news-page .news-project-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.news-page .news-project-row:hover .news-project-media img,
body.news-page .news-project-row:focus-visible .news-project-media img {
  transform: scale(1.035);
}

@media (max-width: 1100px) {
  body.news-page .news-project-row {
    grid-template-columns: minmax(92px, 18vw) minmax(0, 1fr);
  }

  body.news-page .news-project-top {
    grid-row: 1 / 3;
    min-height: 0;
  }

  body.news-page .news-project-info {
    grid-column: 2;
    grid-template-columns: minmax(0, 1fr) minmax(130px, 26vw);
    align-items: end;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  body.news-page .news-project-media {
    grid-column: 2;
    grid-row: 1;
  }

  body.news-page .news-project-meta {
    align-self: start;
  }

  body.news-page .news-project-main h2 {
    font-size: clamp(34px, 5vw, 68px);
  }
}

@media (max-width: 760px) {
  body.news-page .news-project-row {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  body.news-page .news-project-top,
  body.news-page .news-project-main,
  body.news-page .news-project-info {
    grid-column: 1;
  }

  body.news-page .news-project-top {
    min-height: 96px;
    flex-direction: row;
    align-items: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 20px 18px;
  }

  body.news-page .news-project-row:hover .news-project-top,
  body.news-page .news-project-row:focus-visible .news-project-top {
    border-bottom-color: rgb(255 89 73 / 0.55);
  }

  body.news-page .news-project-main,
  body.news-page .news-project-info {
    padding: 24px 18px;
  }

  body.news-page .news-project-main h2 {
    font-size: clamp(32px, 10vw, 54px);
  }

  body.news-page .news-project-info {
    grid-template-columns: 1fr clamp(112px, 30vw, 156px);
    gap: 22px 18px;
  }

  body.news-page .news-project-media {
    max-width: none;
    grid-column: 2;
    grid-row: 1;
  }
}

/* Final restored news page layout */
body.news-page .news-project-row {
  display: grid;
  height: clamp(330px, 18vw, 370px);
  min-height: 0;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

body.news-page .news-project-title {
  display: grid;
  align-content: space-between;
  min-width: 0;
  border-right: 1px solid var(--line);
  padding: clamp(22px, 2vw, 38px);
}

body.news-page .news-project-title h2 {
  max-width: min(100%, 980px);
  align-self: end;
  margin: 0;
  color: currentColor;
  font-size: clamp(30px, 1.75vw, 36px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: none;
}

body.news-page .news-project-info {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) clamp(150px, 17vw, 300px);
  grid-template-rows: auto 1fr auto;
  gap: clamp(20px, 2.4vw, 44px);
  align-content: stretch;
  align-items: start;
  border-left: 0;
  padding: clamp(22px, 2vw, 38px);
}

body.news-page .news-project-type {
  display: grid;
  grid-column: 1;
  grid-row: 1;
  justify-items: start;
  gap: clamp(12px, 1vw, 18px);
}

body.news-page .news-project-summary {
  display: grid;
  max-width: 640px;
  grid-column: 1;
  grid-row: 3;
  align-self: end;
  gap: clamp(12px, 1vw, 18px);
}

body.news-page .news-project-media {
  display: block;
  width: 100%;
  max-width: none;
  aspect-ratio: 1;
  grid-column: 2;
  grid-row: 1 / 3;
  justify-self: end;
  align-self: start;
  margin: 0;
  overflow: hidden;
  background: #deded6;
}

body.news-page .news-project-number,
body.news-page .news-project-badge {
  color: currentColor;
  font-size: clamp(14px, 1vw, 20px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.news-page .news-project-badge {
  display: inline-flex;
  width: max-content;
  min-height: 34px;
  align-items: center;
  border: 1px solid currentColor;
  padding: 0 14px;
}

body.news-page .news-project-date,
body.news-page .news-project-summary p {
  margin: 0;
  color: currentColor;
  font-size: clamp(18px, 1.3vw, 25px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
}

body.news-page .news-project-type .news-project-date {
  font-size: clamp(18px, 1.3vw, 25px);
}

body.news-page .news-project-summary strong {
  display: block;
  margin: 0;
  color: currentColor;
  font-size: clamp(14px, 1vw, 20px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.news-page .news-project-row:hover .news-project-title,
body.news-page .news-project-row:focus-visible .news-project-title {
  border-right-color: rgb(255 89 73 / 0.55);
}

@media (max-width: 1100px) {
  body.news-page .news-project-row {
    grid-template-columns: 1fr;
  }

  body.news-page .news-project-title {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  body.news-page .news-project-title h2 {
    margin-top: 0;
    font-size: clamp(24px, 4vw, 36px);
  }

  body.news-page .news-project-info {
    grid-column: 1;
    grid-template-columns: minmax(0, 1fr) clamp(130px, 24vw, 240px);
    border-top: 0;
  }
}

@media (max-width: 760px) {
  body.news-page .news-project-row {
    min-height: 0;
  }

  body.news-page .news-project-title,
  body.news-page .news-project-info {
    padding: 22px 18px;
  }

  body.news-page .news-project-title h2 {
    margin-top: 0;
    font-size: clamp(24px, 7vw, 32px);
  }

  body.news-page .news-project-info {
    grid-template-columns: 1fr clamp(112px, 34vw, 160px);
    gap: 22px 18px;
  }
}

body.news-page .news-project-type .news-project-badge {
  display: inline-flex;
  margin: 0;
  width: max-content;
  min-height: 34px;
  align-items: center;
  border: 1px solid currentColor;
  padding: 0 14px;
}
/* Absolute final override: news titles/summaries must stay visible in fixed cards. */
body.news-page .news-project-row {
  height: clamp(330px, 18vw, 370px);
  min-height: clamp(330px, 18vw, 370px);
  overflow: hidden;
}

body.news-page .news-project-row .news-project-title,
body.news-page .news-project-row .news-project-info {
  position: relative;
  display: block;
  min-width: 0;
  padding: clamp(22px, 2vw, 38px);
}

body.news-page .news-project-row .news-project-number,
body.news-page .news-project-row .news-project-type {
  position: absolute;
  top: clamp(22px, 2vw, 38px);
  left: clamp(22px, 2vw, 38px);
  z-index: 2;
}

body.news-page .news-project-row .news-project-title h2 {
  position: absolute;
  right: clamp(22px, 2vw, 38px);
  bottom: clamp(22px, 2vw, 38px);
  left: clamp(22px, 2vw, 38px);
  display: block;
  max-width: none;
  margin: 0;
  color: currentColor;
  font-size: clamp(30px, 1.75vw, 36px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: none;
  z-index: 2;
}

body.news-page .news-project-row .news-project-type {
  display: grid;
  justify-items: start;
  gap: clamp(12px, 1vw, 18px);
}

body.news-page .news-project-row .news-project-summary {
  position: absolute;
  right: clamp(360px, 22vw, 430px);
  bottom: clamp(22px, 2vw, 38px);
  left: clamp(22px, 2vw, 38px);
  display: grid;
  max-width: none;
  gap: clamp(12px, 1vw, 18px);
  z-index: 2;
}

body.news-page .news-project-row .news-project-media {
  position: absolute;
  top: clamp(22px, 2vw, 38px);
  right: clamp(22px, 2vw, 38px);
  display: block;
  width: clamp(150px, 17vw, 300px);
  max-width: none;
  height: clamp(150px, 17vw, 300px);
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  background: #deded6;
  z-index: 1;
}

@media (max-width: 1100px) {
  body.news-page .news-project-row {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
  }

  body.news-page .news-project-row .news-project-title,
  body.news-page .news-project-row .news-project-info {
    min-height: clamp(260px, 42vw, 340px);
  }

  body.news-page .news-project-row .news-project-summary {
    right: clamp(190px, 31vw, 300px);
  }

  body.news-page .news-project-row .news-project-media {
    width: clamp(130px, 24vw, 240px);
    height: clamp(130px, 24vw, 240px);
  }
}

@media (max-width: 760px) {
  body.news-page .news-project-row .news-project-title,
  body.news-page .news-project-row .news-project-info {
    min-height: 260px;
    padding: 22px 18px;
  }

  body.news-page .news-project-row .news-project-number,
  body.news-page .news-project-row .news-project-type {
    top: 22px;
    left: 18px;
  }

  body.news-page .news-project-row .news-project-title h2 {
    right: 18px;
    bottom: 22px;
    left: 18px;
    font-size: clamp(24px, 7vw, 34px);
  }

  body.news-page .news-project-row .news-project-summary {
    right: clamp(142px, 40vw, 184px);
    bottom: 22px;
    left: 18px;
  }

  body.news-page .news-project-row .news-project-media {
    top: 22px;
    right: 18px;
    width: clamp(112px, 34vw, 160px);
    height: clamp(112px, 34vw, 160px);
  }
}

/* Final news row divider/image alignment. Keep this block at EOF. */
body.news-page .news-sort + .news-project-list {
  border-top: 0;
}

body.news-page .news-sort {
  grid-template-columns: 1fr;
}

body.news-page .news-sort .operation-sort-controls {
  grid-column: 1;
}

body.news-page .news-sort .operation-sort-controls button:hover,
body.news-page .news-sort .operation-sort-controls button:focus-visible {
  border-color: var(--line);
  background: transparent;
  color: #08090c;
}

body.news-page .news-sort .operation-sort-controls button[aria-pressed="true"],
body.news-page .news-sort .operation-sort-controls button[aria-pressed="true"]:hover,
body.news-page .news-sort .operation-sort-controls button[aria-pressed="true"]:focus-visible {
  border-color: #08090c;
  background: #08090c;
  color: #f4f4ef;
}

body.news-page .news-project-row {
  grid-template-columns: minmax(0, 50%) minmax(0, 50%);
}

body.news-page .news-project-title {
  border-right: 1px solid var(--line);
}

body.news-page .news-project-info {
  border-left: 0;
}

body.news-page .news-project-row .news-project-media {
  top: 50%;
  width: clamp(145px, 15.5vw, 280px);
  height: clamp(145px, 15.5vw, 280px);
  transform: translateY(-50%);
}

@media (max-width: 1100px) {
  body.news-page .news-project-row {
    grid-template-columns: 1fr;
  }

  body.news-page .news-project-row .news-project-media {
    width: clamp(128px, 22vw, 220px);
    height: clamp(128px, 22vw, 220px);
  }
}

@media (max-width: 760px) {
  body.news-page .news-project-row .news-project-media {
    top: 22px;
    transform: none;
  }
}

/* Final news expansion behavior. Keep this block after news row alignment. */
body.news-page .news-project-row {
  cursor: pointer;
}

body.news-page .news-project-row.is-open {
  height: auto;
  min-height: clamp(330px, 18vw, 370px);
  overflow: visible;
}

body.news-page .news-project-row.is-open .news-project-title,
body.news-page .news-project-row.is-open .news-project-info {
  min-height: clamp(330px, 18vw, 370px);
}

body.news-page .news-project-panel {
  grid-column: 1 / -1;
  display: grid;
  gap: clamp(14px, 1.15vw, 24px);
  border-top: 1px solid var(--line);
  padding: clamp(28px, 3vw, 56px) clamp(40px, 5vw, 96px) clamp(36px, 4vw, 70px);
  color: currentColor;
  cursor: text;
}

body.news-page .news-project-panel[hidden] {
  display: none;
}

body.news-page .news-project-panel p {
  width: min(980px, 100%);
  margin: 0 0 24px;
  color: currentColor;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
}

body.news-page .news-project-panel > p:last-child {
  margin-bottom: 0;
}

body.news-page .news-project-badge[hidden] {
  display: none !important;
}

body.news-page .news-project-row.is-open .news-project-media {
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 1100px) {
  body.news-page .news-project-row.is-open .news-project-title,
  body.news-page .news-project-row.is-open .news-project-info {
    min-height: clamp(260px, 42vw, 340px);
  }
}

@media (max-width: 760px) {
  body.news-page .news-project-panel {
    padding: 24px 18px 34px;
  }

  body.news-page .news-project-row.is-open .news-project-title,
  body.news-page .news-project-row.is-open .news-project-info {
    min-height: 260px;
  }

  body.news-page .news-project-row.is-open .news-project-media {
    top: 22px;
    transform: none;
  }
}

/* Final news card interaction override. Keep this as the last news block. */
body.news-page .news-project-row,
body.news-page .news-project-row:hover,
body.news-page .news-project-row:focus-visible,
body.news-page .news-project-row.is-open {
  border-color: var(--line) !important;
  background: #f4f4ef !important;
  color: #08090c !important;
  cursor: default;
}

body.news-page .news-project-row:hover .news-project-title,
body.news-page .news-project-row:focus-visible .news-project-title,
body.news-page .news-project-row.is-open .news-project-title,
body.news-page .news-project-row:hover .news-project-info,
body.news-page .news-project-row:focus-visible .news-project-info,
body.news-page .news-project-row.is-open .news-project-info,
body.news-page .news-project-row:hover .news-project-number,
body.news-page .news-project-row:focus-visible .news-project-number,
body.news-page .news-project-row.is-open .news-project-number,
body.news-page .news-project-row:hover .news-project-date,
body.news-page .news-project-row:focus-visible .news-project-date,
body.news-page .news-project-row.is-open .news-project-date,
body.news-page .news-project-row:hover .news-project-summary,
body.news-page .news-project-row:focus-visible .news-project-summary,
body.news-page .news-project-row.is-open .news-project-summary {
  border-color: var(--line) !important;
  color: #08090c !important;
}

body.news-page .news-project-row:hover .news-project-media img,
body.news-page .news-project-row:focus-visible .news-project-media img,
body.news-page .news-project-row.is-open .news-project-media img {
  transform: none !important;
}

body.news-page .news-expand-button {
  --news-expand-arrow-icon: url("data:image/svg+xml,%3Csvg width='30' height='22' viewBox='0 0 30 22' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 11H27M19 3L27 11L19 19' fill='none' stroke='black' stroke-width='3' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E");
  display: grid;
  width: min(100%, 360px);
  min-height: 52px;
  grid-template-columns: minmax(0, 1fr) 56px;
  align-items: stretch;
  border: 1px solid currentColor;
  background: transparent;
  color: currentColor;
  padding: 0;
  font: inherit;
  font-size: clamp(16px, 1.05vw, 20px);
  font-weight: 700;
  line-height: 1;
  text-align: left;
  cursor: pointer;
}

body.news-page .news-expand-button span:first-child {
  display: flex;
  min-width: 0;
  align-items: center;
  padding: 0 clamp(18px, 1.4vw, 26px);
}

body.news-page .news-expand-button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid currentColor;
  font-size: 0;
}

body.news-page .news-expand-button-icon::before {
  display: block;
  width: 24px;
  height: 18px;
  background: currentColor;
  content: "";
  -webkit-mask: var(--news-expand-arrow-icon) center / contain no-repeat;
  mask: var(--news-expand-arrow-icon) center / contain no-repeat;
}

body.news-page .news-expand-button[aria-expanded="true"] .news-expand-button-icon::before {
  width: 20px;
  height: 2px;
  -webkit-mask: none;
  mask: none;
}

body.news-page .news-expand-button:hover,
body.news-page .news-expand-button:focus-visible {
  background: #08090c;
  color: #f4f4ef;
  outline: none;
}

body.news-page .news-project-row:hover .news-expand-button,
body.news-page .news-project-row:focus-visible .news-expand-button,
body.news-page .news-project-row.is-open .news-expand-button {
  color: #08090c;
}

body.news-page .news-project-row:hover .news-expand-button:hover,
body.news-page .news-project-row:focus-visible .news-expand-button:focus-visible,
body.news-page .news-project-row.is-open .news-expand-button:hover,
body.news-page .news-project-row.is-open .news-expand-button:focus-visible {
  color: #f4f4ef;
}

body.news-page .news-project-summary p {
  display: -webkit-box;
  max-width: min(520px, 100%);
  max-height: calc(1.18em * 3);
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
}

body.news-page .news-project-panel p {
  display: block;
  max-width: min(980px, 100%);
  max-height: none;
  overflow: visible;
  -webkit-line-clamp: unset;
}

body.news-page .news-project-panel .rich-text {
  display: block;
  width: min(980px, 100%);
  max-width: 100%;
  color: currentColor;
  font-family: inherit;
  letter-spacing: 0;
}

body.news-page .news-project-panel .rich-text.rich-size-small {
  font-size: 16px;
}

body.news-page .news-project-panel .rich-text.rich-size-normal {
  font-size: 20px;
}

body.news-page .news-project-panel .rich-text.rich-size-large {
  font-size: 24px;
}

body.news-page .news-project-panel .rich-text.rich-weight-regular {
  font-weight: 400;
}

body.news-page .news-project-panel .rich-text.rich-weight-medium {
  font-weight: 500;
}

body.news-page .news-project-panel .rich-text.rich-weight-bold {
  font-weight: 700;
}

body.news-page .news-project-panel .rich-text.rich-align-left {
  text-align: left;
}

body.news-page .news-project-panel .rich-text.rich-align-center {
  text-align: center;
}

body.news-page .news-project-panel .rich-text.rich-align-right {
  text-align: right;
}

body.news-page .news-project-panel .rich-text.rich-align-justify {
  text-align: justify;
}

body.news-page .news-project-panel .rich-text p,
body.news-page .news-project-panel .rich-text ul,
body.news-page .news-project-panel .rich-text ol {
  max-width: 100%;
  margin-top: 0;
  color: currentColor;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.35;
}

body.news-page .news-project-panel .rich-text.rich-gap-compact p,
body.news-page .news-project-panel .rich-text.rich-gap-compact ul,
body.news-page .news-project-panel .rich-text.rich-gap-compact ol {
  margin-bottom: 10px;
}

body.news-page .news-project-panel .rich-text.rich-gap-normal p,
body.news-page .news-project-panel .rich-text.rich-gap-normal ul,
body.news-page .news-project-panel .rich-text.rich-gap-normal ol {
  margin-bottom: 24px;
}

body.news-page .news-project-panel .rich-text.rich-gap-large p,
body.news-page .news-project-panel .rich-text.rich-gap-large ul,
body.news-page .news-project-panel .rich-text.rich-gap-large ol {
  margin-bottom: 56px;
}

body.news-page .news-project-panel .rich-text > :last-child {
  margin-bottom: 0 !important;
}

body.news-page .news-project-panel .rich-text strong,
body.news-page .news-project-panel .rich-text b {
  font-weight: 700;
}

body.news-page .news-project-panel .rich-text ul,
body.news-page .news-project-panel .rich-text ol {
  padding-left: 1.35em;
}

body.news-page .news-project-panel .rich-text li + li {
  margin-top: 0.4em;
}

.rich-text {
  display: block;
  width: 100%;
  max-width: 100%;
  color: currentColor;
  font-family: inherit;
  letter-spacing: 0;
}

.rich-text.rich-size-small {
  font-size: 16px;
}

.rich-text.rich-size-normal {
  font-size: 20px;
}

.rich-text.rich-size-large {
  font-size: 24px;
}

.rich-text.rich-weight-regular {
  font-weight: 400;
}

.rich-text.rich-weight-medium {
  font-weight: 500;
}

.rich-text.rich-weight-bold {
  font-weight: 700;
}

.rich-text.rich-align-left {
  text-align: left;
}

.rich-text.rich-align-center {
  text-align: center;
}

.rich-text.rich-align-right {
  text-align: right;
}

.rich-text.rich-align-justify {
  text-align: justify;
}

.rich-text p,
.rich-text ul,
.rich-text ol {
  margin-top: 0;
  color: currentColor;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.rich-text.rich-gap-compact p,
.rich-text.rich-gap-compact ul,
.rich-text.rich-gap-compact ol {
  margin-bottom: 10px;
}

.rich-text.rich-gap-normal p,
.rich-text.rich-gap-normal ul,
.rich-text.rich-gap-normal ol {
  margin-bottom: 24px;
}

.rich-text.rich-gap-large p,
.rich-text.rich-gap-large ul,
.rich-text.rich-gap-large ol {
  margin-bottom: 56px;
}

.rich-text > :last-child {
  margin-bottom: 0 !important;
}

.subpage-intro .rich-text p + p {
  margin-top: 0;
}

.hasu-about .hasu-intro-text .rich-text p {
  font-size: inherit;
  font-weight: inherit;
}

.rich-text ul,
.rich-text ol {
  padding-left: 1.25em;
}

.rich-text li + li {
  margin-top: 0.35em;
}

.rich-text-inline {
  display: inline-block;
  width: auto;
  vertical-align: top;
}

.rich-text-inline p {
  display: inline;
}

.timeline-section .timeline-copy .timeline-rich-text p,
.timeline-section .timeline-copy .timeline-rich-text li {
  font-size: inherit !important;
  font-weight: inherit !important;
  text-align: inherit;
}

.timeline-section .timeline-copy .timeline-rich-text ul,
.timeline-section .timeline-copy .timeline-rich-text ol {
  text-align: inherit;
}

.contact-panel address .contact-address-rich {
  margin-top: 0;
}

/* Careers job postings: match the news row system. Keep this block at EOF. */
body.careers-page .career-list {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 0;
  border-bottom: 1px solid var(--line);
  background: #f4f4ef;
}

body.careers-page .career-card.job-posting,
body.careers-page .career-card.job-posting:nth-child(2n),
body.careers-page .career-card.job-posting:hover,
body.careers-page .career-card.job-posting:focus-visible,
body.careers-page .career-card.job-posting.is-open {
  --career-row-pad: clamp(14px, 1.15vw, 22px);
  --job-expand-arrow-icon: url("data:image/svg+xml,%3Csvg width='30' height='22' viewBox='0 0 30 22' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 11H27M19 3L27 11L19 19' fill='none' stroke='black' stroke-width='3' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E");

  display: grid;
  height: clamp(190px, 10.5vw, 225px);
  min-height: clamp(190px, 10.5vw, 225px);
  grid-template-columns: minmax(0, 50%) minmax(0, 50%);
  gap: 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid var(--line);
  background: #f4f4ef !important;
  color: #08090c !important;
  opacity: 1 !important;
  overflow: hidden;
  padding: 0;
  cursor: default;
  transform: none !important;
  visibility: visible !important;
}

body.careers-page .career-card.job-posting:last-child {
  border-bottom: 0;
}

body.careers-page .career-card.job-posting.is-open {
  height: auto;
  overflow: visible;
}

body.careers-page .job-posting-top {
  position: relative;
  display: block;
  min-width: 0;
  min-height: clamp(190px, 10.5vw, 225px);
  grid-column: 1;
  grid-row: 1;
  border-right: 1px solid var(--line);
  padding: var(--career-row-pad);
}

body.careers-page .job-posting-main {
  display: contents;
}

body.careers-page .job-posting-kicker {
  display: none;
}

body.careers-page .job-posting-number,
body.careers-page .job-posting-status {
  color: currentColor;
  font-size: clamp(14px, 1vw, 20px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.careers-page .job-posting-number {
  position: absolute;
  top: var(--career-row-pad);
  left: var(--career-row-pad);
}

body.careers-page .job-posting-status {
  position: absolute;
  top: var(--career-row-pad);
  left: calc(100% + var(--career-row-pad));
  z-index: 4;
  display: inline-flex;
  width: max-content;
  min-height: 34px;
  align-items: center;
  border: 1px solid currentColor;
  padding: 0 14px;
  background: #f4f4ef;
}

body.careers-page .career-card.job-posting h2 {
  display: block;
  max-width: none;
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  margin: 0;
  padding: var(--career-row-pad);
  color: currentColor;
  font-size: clamp(26px, 1.55vw, 32px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: none;
  z-index: 2;
}

body.careers-page .job-posting-meta {
  display: grid;
  min-width: 0;
  grid-column: 2;
  grid-row: 1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.3vw, 24px);
  align-self: start;
  margin: 0;
  border-left: 0;
  padding: clamp(46px, 3.8vw, 62px) var(--career-row-pad) var(--career-row-pad);
}

body.careers-page .job-posting-meta div {
  display: grid;
  gap: 8px;
}

body.careers-page .job-posting-meta dt {
  color: currentColor;
  font-size: clamp(13px, 0.9vw, 17px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.careers-page .job-posting-meta dd {
  margin: 0;
  color: currentColor;
  font-size: clamp(17px, 1.15vw, 23px);
  font-weight: 400;
  line-height: 1.15;
}

body.careers-page .job-posting-summary-block {
  display: grid;
  width: min(640px, 100%);
  min-width: 0;
  grid-column: 2;
  grid-row: 1;
  gap: clamp(16px, 1.2vw, 24px);
  align-self: end;
  padding: var(--career-row-pad);
  padding-top: 0;
}

body.careers-page .job-posting-summary {
  max-width: none;
  margin: 0;
  color: currentColor;
  font-size: clamp(18px, 1.3vw, 25px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
}

body.careers-page .job-expand-button {
  display: grid;
  width: min(100%, 320px);
  min-height: 44px;
  grid-template-columns: minmax(0, 1fr) 48px;
  align-items: stretch;
  border: 1px solid currentColor;
  background: transparent;
  color: currentColor;
  padding: 0;
  font: inherit;
  font-size: clamp(16px, 1.05vw, 20px);
  font-weight: 700;
  line-height: 1;
  text-align: left;
  cursor: pointer;
}

body.careers-page .job-expand-button span:first-child {
  display: flex;
  min-width: 0;
  align-items: center;
  padding: 0 clamp(18px, 1.4vw, 26px);
}

body.careers-page .job-expand-button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid currentColor;
  font-size: 0;
}

body.careers-page .job-expand-button-icon::before {
  display: block;
  width: 24px;
  height: 18px;
  background: currentColor;
  content: "";
  -webkit-mask: var(--job-expand-arrow-icon) center / contain no-repeat;
  mask: var(--job-expand-arrow-icon) center / contain no-repeat;
}

body.careers-page .job-expand-button[aria-expanded="true"] .job-expand-button-icon::before {
  width: 20px;
  height: 2px;
  -webkit-mask: none;
  mask: none;
}

body.careers-page .job-expand-button:hover,
body.careers-page .job-expand-button:focus-visible {
  background: #08090c;
  color: #f4f4ef;
  outline: none;
}

body.careers-page .job-posting-sections {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  color: currentColor;
}

body.careers-page .job-posting-sections[hidden],
body.careers-page .job-apply-link[hidden] {
  display: none !important;
}

body.careers-page .job-posting-sections section {
  display: grid;
  align-content: start;
  gap: clamp(16px, 1.4vw, 28px);
  padding: clamp(26px, 3vw, 56px) clamp(26px, 4vw, 76px);
}

body.careers-page .job-posting-sections section + section {
  border-left: 1px solid var(--line);
}

body.careers-page .career-card.job-posting h3 {
  margin: 0;
  color: currentColor;
  font-size: clamp(18px, 1.2vw, 24px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

body.careers-page .career-card.job-posting ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.1em;
  color: currentColor;
  font-size: clamp(16px, 1.1vw, 21px);
  font-weight: 400;
  line-height: 1.24;
}

body.careers-page .job-posting-sections p {
  margin: 0;
  color: currentColor;
  font-size: clamp(16px, 1.1vw, 21px);
  font-weight: 400;
  line-height: 1.24;
}

body.careers-page .job-apply-link {
  display: grid;
  width: min(100%, 470px);
  height: clamp(58px, 4.8vw, 84px);
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) clamp(62px, 5vw, 90px);
  align-items: center;
  margin: 0 clamp(26px, 4vw, 76px) clamp(28px, 3vw, 56px);
  border: 1px solid currentColor;
  color: currentColor;
  text-decoration: none;
}

body.careers-page .job-apply-link:hover,
body.careers-page .job-apply-link:focus-visible {
  background: #08090c;
  color: #f4f4ef;
  outline: none;
}

body.careers-page .job-apply-link span {
  padding: 0 clamp(18px, 2vw, 32px);
  font-size: clamp(18px, 1.2vw, 24px);
  font-weight: 700;
  line-height: 1;
}

body.careers-page .job-apply-link b {
  display: grid;
  height: 100%;
  place-items: center;
  border-left: 1px solid currentColor;
  font-size: clamp(24px, 1.7vw, 34px);
  font-weight: 400;
  line-height: 1;
}

body.careers-page .career-card.job-posting:hover .job-posting-top,
body.careers-page .career-card.job-posting:focus-visible .job-posting-top,
body.careers-page .career-card.job-posting.is-open .job-posting-top,
body.careers-page .career-card.job-posting:hover .job-posting-sections,
body.careers-page .career-card.job-posting:focus-visible .job-posting-sections,
body.careers-page .career-card.job-posting.is-open .job-posting-sections,
body.careers-page .career-card.job-posting:hover .job-posting-sections section + section,
body.careers-page .career-card.job-posting:focus-visible .job-posting-sections section + section,
body.careers-page .career-card.job-posting.is-open .job-posting-sections section + section {
  border-color: var(--line) !important;
}

@media (max-width: 1100px) {
  body.careers-page .career-card.job-posting,
  body.careers-page .career-card.job-posting:nth-child(2n),
  body.careers-page .career-card.job-posting:hover,
  body.careers-page .career-card.job-posting:focus-visible,
  body.careers-page .career-card.job-posting.is-open {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    overflow: visible;
  }

  body.careers-page .job-posting-top {
    min-height: clamp(210px, 32vw, 300px);
    grid-column: 1;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  body.careers-page .job-posting-status {
    right: var(--career-row-pad);
    left: auto;
  }

  body.careers-page .career-card.job-posting h2 {
    grid-column: 1;
    font-size: clamp(28px, 4vw, 36px);
  }

  body.careers-page .job-posting-meta,
  body.careers-page .job-posting-summary-block {
    grid-column: 1;
    grid-row: auto;
  }

  body.careers-page .job-posting-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: var(--career-row-pad) var(--career-row-pad) 0;
  }

  body.careers-page .job-posting-summary-block {
    align-self: start;
    padding-top: clamp(20px, 2vw, 32px);
  }
}

@media (max-width: 760px) {
  body.careers-page .career-card.job-posting,
  body.careers-page .career-card.job-posting:nth-child(2n),
  body.careers-page .career-card.job-posting:hover,
  body.careers-page .career-card.job-posting:focus-visible,
  body.careers-page .career-card.job-posting.is-open {
    --career-row-pad: 18px;
  }

  body.careers-page .job-posting-top {
    min-height: 180px;
  }

  body.careers-page .career-card.job-posting h2 {
    font-size: clamp(22px, 6.4vw, 30px);
  }

  body.careers-page .job-posting-meta {
    grid-template-columns: 1fr;
  }

  body.careers-page .job-posting-sections {
    grid-template-columns: 1fr;
  }

  body.careers-page .job-posting-sections section + section {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  body.careers-page .job-apply-link {
    margin: 0 18px 24px;
  }
}

/* Header action text roll: matches the navigation link hover motion. */
body .site-header .menu-toggle {
  --header-action-icon-width: clamp(54px, 3.75vw, 77px);

  overflow: hidden;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: calc(100% - var(--header-action-icon-width)) 0;
  background-repeat: no-repeat;
  background-size: 1px 100%;
}

body .site-header .menu-toggle::before,
body .site-header .menu-toggle::after {
  display: none !important;
  content: none !important;
}

body .site-header .header-contact {
  overflow: hidden;
}

body .site-header .header-contact > span {
  position: relative;
  display: block;
  height: 1em;
  overflow: hidden;
  color: transparent;
  line-height: 1;
  white-space: nowrap;
}

body .site-header .header-contact > span::before,
body .site-header .header-contact > span::after {
  position: absolute;
  top: 0;
  left: 0;
  content: var(--header-contact-label, "Contact");
  pointer-events: none;
  transform: translateY(0);
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

body .site-header .header-contact > span::before {
  color: #08090c;
}

body .site-header .header-contact > span::after {
  color: var(--lime);
  transform: translateY(100%);
}

@media (hover: hover) and (pointer: fine) {
  body .site-header .header-contact:hover > span::before {
    transform: translateY(-100%);
  }

  body .site-header .header-contact:hover > span::after {
    transform: translateY(0);
  }
}

body .site-header .menu-toggle:focus-visible,
body .site-header .header-contact:focus-visible,
.nav a:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
}

.nav a:focus-visible span {
  transform: translateY(-100%);
}

body .site-header .header-contact:focus-visible > span::before {
  transform: translateY(-100%);
}

body .site-header .header-contact:focus-visible > span::after {
  transform: translateY(0);
}

.nav a:focus-visible::before {
  transform: translateY(-100%);
}

@media (max-width: 920px) {
  body .site-header .menu-toggle {
    --header-action-icon-width: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body .site-header .header-contact > span::before {
    transform: none !important;
    transition: none !important;
  }

  body .site-header .header-contact > span::after {
    display: none;
  }
}

/* Shared button label roll: Contact motion with fixed button icons. */
body .button-roll-control .button-roll-label {
  position: relative;
  display: inline-grid !important;
  min-width: 0 !important;
  height: 1em;
  grid-template: 1em / auto;
  align-items: start !important;
  justify-items: start;
  padding: 0 !important;
  overflow: hidden;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
}

body .button-roll-control .button-roll-copy {
  display: block;
  min-width: 0;
  grid-area: 1 / 1;
  color: inherit;
  font: inherit;
  font-style: normal;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  transform: translateY(0);
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

body .button-roll-control .button-roll-copy-incoming {
  color: var(--button-roll-hover-color, var(--lime));
  transform: translateY(100%);
}

body .flip-toolbar .button-roll-control,
body .button.secondary.button-roll-control {
  --button-roll-hover-color: var(--black);
}

@media (hover: hover) and (pointer: fine) {
  body .button-roll-control:not(:disabled):hover .button-roll-copy-outgoing {
    transform: translateY(-100%);
  }

  body .button-roll-control:not(:disabled):hover .button-roll-copy-incoming {
    transform: translateY(0);
  }
}

body .button-roll-control:not(:disabled):focus-visible .button-roll-copy-outgoing {
  transform: translateY(-100%);
}

body .button-roll-control:not(:disabled):focus-visible .button-roll-copy-incoming {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  body .button-roll-control .button-roll-copy-outgoing {
    transform: none !important;
    transition: none !important;
  }

  body .button-roll-control .button-roll-copy-incoming {
    display: none;
  }
}

/* Menu now uses the same one-line roll viewport as Contact and other buttons. */
body .site-header .menu-toggle > .menu-toggle-roll-label {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  justify-self: start;
  margin-left: clamp(11px, 0.84vw, 18px);
  color: inherit;
  font-size: clamp(15px, 1.05vw, 21px);
  font-weight: 600;
  font-style: normal;
  line-height: 1;
  text-transform: none;
}

body .site-header .menu-toggle > .menu-toggle-line {
  position: absolute;
  left: auto;
  right: clamp(13px, 1.24vw, 25px);
  display: block;
  width: clamp(28px, 1.95vw, 40px);
  height: clamp(1.5px, 0.1vw, 2px);
  background: currentColor;
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

body .site-header .menu-toggle > .menu-toggle-line-top {
  transform: translateY(-5px) !important;
}

body .site-header .menu-toggle > .menu-toggle-line-bottom {
  transform: translateY(5px) !important;
}

body .site-header .menu-toggle[aria-expanded="true"] > .menu-toggle-line-top {
  transform: rotate(45deg) !important;
}

body .site-header .menu-toggle[aria-expanded="true"] > .menu-toggle-line-bottom {
  transform: rotate(-45deg) !important;
}

@media (max-width: 920px) {
  body .site-header .menu-toggle > .menu-toggle-roll-label {
    margin-left: 12px;
    font-size: 15px;
  }

  body .site-header .menu-toggle > .menu-toggle-line {
    right: 14px;
    width: 26px;
  }
}

/* Give expanded News copy more of the available row width. */
body.news-page .news-project-panel p,
body.news-page .news-project-panel > .rich-text {
  width: min(1500px, 100%);
  max-width: min(1500px, 100%);
  margin-inline: auto;
}

/* Shared EN/MN language control. The header remains balanced at every breakpoint. */
body:not(.subpage) .site-header.has-language-switcher,
body.subpage .site-header.has-language-switcher {
  grid-template-columns:
    minmax(180px, 1fr)
    auto
    minmax(188px, clamp(220px, 14.65vw, 300px))
    minmax(188px, clamp(220px, 14.65vw, 300px));
}

.language-switcher {
  position: relative;
  z-index: 110;
  display: grid;
  width: clamp(82px, 5.8vw, 112px);
  height: clamp(38px, 2.74vw, 56px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-self: end;
  overflow: hidden;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
}

.language-switcher-option {
  display: grid;
  min-width: 0;
  place-items: center;
  border: 0;
  border-right: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-size: clamp(11px, 0.72vw, 14px);
  font-weight: 800;
  line-height: 1;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.language-switcher-option:last-child {
  border-right: 0;
}

.language-switcher-option[aria-pressed="true"] {
  background: #ffffff;
  color: #08090c;
}

.language-switcher-option:hover:not([aria-pressed="true"]),
.language-switcher-option:focus-visible:not([aria-pressed="true"]) {
  background: rgb(255 255 255 / 0.16);
}

.language-switcher-option:focus-visible {
  position: relative;
  z-index: 1;
  outline: 2px solid var(--lime);
  outline-offset: -2px;
}

body.subpage .site-header:not(.menu-open) .language-switcher,
body:not(.subpage) .site-header.is-over-light:not(.menu-open) .language-switcher {
  color: #08090c;
}

body.subpage .site-header:not(.menu-open) .language-switcher-option[aria-pressed="true"],
body:not(.subpage) .site-header.is-over-light:not(.menu-open) .language-switcher-option[aria-pressed="true"] {
  background: #08090c;
  color: var(--paper);
}

body.subpage .site-header:not(.menu-open) .language-switcher-option:hover:not([aria-pressed="true"]),
body.subpage .site-header:not(.menu-open) .language-switcher-option:focus-visible:not([aria-pressed="true"]),
body:not(.subpage) .site-header.is-over-light:not(.menu-open)
  .language-switcher-option:hover:not([aria-pressed="true"]),
body:not(.subpage) .site-header.is-over-light:not(.menu-open)
  .language-switcher-option:focus-visible:not([aria-pressed="true"]) {
  background: rgb(8 9 12 / 0.1);
}

body.about-page .site-header:not(.is-scrolled):not(.menu-open) .language-switcher {
  color: #ffffff;
}

body.about-page
  .site-header:not(.is-scrolled):not(.menu-open)
  .language-switcher-option[aria-pressed="true"] {
  background: #ffffff;
  color: #08090c;
}

@media (max-width: 920px) {
  body:not(.subpage) .site-header.has-language-switcher,
  body.subpage .site-header.has-language-switcher {
    grid-template-columns: auto minmax(148px, calc(50vw - 16px));
  }

  .site-header.has-language-switcher .language-switcher {
    position: absolute;
    top: 14px;
    right: calc(50vw + 8px);
    width: 78px;
    height: 44px;
  }

  .language-switcher-option {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .site-header.has-language-switcher .language-switcher {
    top: calc(100% + 7px);
    right: 16px;
    width: 72px;
    height: 34px;
    background: #08090c;
    color: #ffffff;
  }

  body.subpage .site-header:not(.menu-open) .language-switcher,
  body:not(.subpage) .site-header.is-over-light:not(.menu-open) .language-switcher {
    border-color: #08090c;
    background: var(--paper);
    color: #08090c;
  }

  body.about-page .site-header:not(.is-scrolled):not(.menu-open) .language-switcher {
    border-color: #ffffff;
    background: #08090c;
    color: #ffffff;
  }
}

/* Mobile production hardening: one final source-of-truth after legacy component rules. */
@media (max-width: 920px) {
  :root {
    --mobile-header-height: 72px;

    scroll-padding-top: var(--mobile-header-height);
  }

  .site-header {
    min-height: var(--mobile-header-height);
  }

  .brand {
    min-width: 44px;
    min-height: 44px;
    align-items: center;
  }

  .subpage-main,
  .pdf-viewer-main {
    padding-top: var(--mobile-header-height);
  }

  .operation-sort + .subpage-list .subpage-list-card,
  .operations-hero-minimal + .subpage-list .subpage-list-card {
    height: auto;
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  .operation-sort + .subpage-list .subpage-list-number,
  .operation-sort + .subpage-list .subpage-list-copy,
  .operation-sort + .subpage-list .subpage-list-media,
  .operations-hero-minimal + .subpage-list .subpage-list-number,
  .operations-hero-minimal + .subpage-list .subpage-list-copy,
  .operations-hero-minimal + .subpage-list .subpage-list-media {
    grid-column: 1;
    grid-row: auto;
  }

  .operation-sort + .subpage-list .subpage-list-media,
  .operations-hero-minimal + .subpage-list .subpage-list-media {
    min-height: 0;
  }

  .solution-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .solution-order {
    grid-column: 1;
    grid-row: 1;
  }

  .solution-content {
    grid-column: 1;
    grid-row: 2;
  }

  .solution-image {
    grid-column: 1;
    grid-row: 3;
  }

  .timeline-sticky {
    top: auto;
  }

  .timeline-track-flex {
    grid-auto-rows: max-content;
  }

  .timeline-section .timeline-panel,
  .timeline-section .timeline-panel--wide {
    grid-area: auto;
    height: auto;
    min-height: 0;
  }

  .timeline-section .timeline-panel.is-active .timeline-card-year {
    transform: none;
  }

  .timeline-section .timeline-card-year,
  .timeline-section .timeline-copy {
    grid-row: 1;
  }

  .operation-sort-controls button {
    min-width: 44px;
    min-height: 44px;
  }

  .flip-edge {
    width: 44px;
    height: 44px;
  }

  .nav {
    grid-auto-rows: max-content;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .nav a {
    display: flex;
    min-height: 44px;
    align-items: center;
  }

  .nav a span,
  .nav a::before {
    display: flex;
    min-height: 44px;
    align-items: center;
  }

  body.services-page .operations-hero-minimal,
  body.services-page .operations-hero-minimal .subpage-hero-copy {
    min-height: 200px;
  }

  .footer-link-list a,
  .footer-contact a {
    display: flex;
    min-height: 44px;
    align-items: center;
  }

  .rich-text.rich-align-justify,
  body.news-page .news-project-panel .rich-text.rich-align-justify,
  .about-copy-block .rich-text {
    text-align: left;
  }

  .partners {
    padding-bottom: 0;
    background:
      linear-gradient(var(--line), var(--line)) 0 var(--partners-title-line) / 100% 1px no-repeat,
      #f4f4ef;
  }

  .partners h2 {
    width: 100%;
  }

  .partner-marquee {
    padding-block: 46px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .partner-marquee::-webkit-scrollbar {
    display: none;
  }

  .partner-row {
    animation: none;
    transform: none;
    will-change: auto;
  }

  .partner-set {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100vw - (2 * clamp(22px, 4vw, 70px)) - 24px) / 2);
    gap: 24px;
    padding-right: 0;
  }

  .partner-set[aria-hidden="true"] {
    display: none;
  }

  .partner-set > img,
  .partner-set > .partner-link {
    box-sizing: border-box;
    width: 100%;
    height: 112px;
    max-width: none;
    max-height: none;
    padding: 12px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .partner-set > .partner-link {
    justify-content: center;
  }

  .partner-set > .partner-link img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    padding: 0;
    object-fit: contain;
  }

  .project-gallery-grid figure {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .project-gallery-grid img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .project-gallery-dialog {
    max-height: calc(100dvh - 20px);
  }

  .project-gallery-frame {
    height: calc(100dvh - 96px);
    min-height: 0;
  }

  .project-gallery-frame img {
    max-height: calc(100dvh - 96px);
    object-fit: contain;
  }

  .pdf-viewer-main {
    min-height: 100dvh;
  }

  .pdf-viewer-shell {
    width: 100%;
    height: calc(100dvh - var(--mobile-header-height));
    min-height: 0;
  }

  .flip-book-stage,
  .flip-book,
  .flip-spread,
  .flip-toolbar,
  .flip-controls {
    min-width: 0;
    max-width: 100%;
  }

  .flip-book,
  .flip-book.is-single-page {
    width: min(100%, calc((100dvh - 230px) * var(--flip-page-ratio, 1.333)));
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .timeline-section .timeline-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .timeline-section .timeline-card-year {
    grid-row: 1;
  }

  .timeline-section .timeline-copy {
    grid-row: 2;
  }

  .timeline-section .timeline-copy p,
  .timeline-section .timeline-copy li,
  .timeline-section .timeline-panel--dense .timeline-copy p,
  .timeline-section .timeline-panel--dense .timeline-copy li {
    font-size: 17px !important;
    line-height: 1.32;
    text-align: left;
  }

  .rich-text.rich-align-justify,
  .about-copy-block .rich-text {
    text-align: left;
  }

  .partner-set {
    grid-auto-columns: calc(100vw - (2 * clamp(22px, 4vw, 70px)));
    gap: 16px;
  }

  .pdf-viewer-main {
    min-height: 100dvh;
  }

  .pdf-viewer-shell {
    width: 100%;
    height: calc(100dvh - var(--mobile-header-height));
    min-height: 0;
  }

  .flip-book-stage,
  .flip-book,
  .flip-spread,
  .flip-toolbar,
  .flip-controls {
    min-width: 0;
    max-width: 100%;
  }

  .flip-book,
  .flip-book.is-single-page {
    width: min(100%, calc((100dvh - 230px) * var(--flip-page-ratio, 1.333)));
    min-width: 0;
  }

  body.careers-page .job-apply-link {
    width: auto;
    max-width: calc(100% - 36px);
  }
}

@media (max-width: 360px) {
  body.news-page .news-project-row .news-project-summary,
  body.news-page .news-project-row.is-open .news-project-summary {
    right: 148px;
  }

  body.news-page .news-project-row .news-project-media,
  body.news-page .news-project-row.is-open .news-project-media {
    right: 16px;
    width: 112px;
    height: 112px;
  }

  body.news-page .news-expand-button {
    grid-template-columns: minmax(0, 1fr) 48px;
  }

  body.news-page .news-expand-button span:first-child {
    padding-inline: 14px;
  }
}

@media (max-width: 920px) and (max-height: 560px) and (orientation: landscape) {
  .nav {
    align-content: start;
    gap: 0;
    padding: 72px 16px 18px;
  }

  .nav::before,
  .nav::after {
    display: none;
  }

  .nav a {
    height: 44px;
    min-height: 44px;
    font-size: clamp(28px, 8svh, 34px);
    line-height: 1;
  }

  .nav a span,
  .nav a::before {
    height: 44px;
    min-height: 44px;
  }

  body:not(.subpage) .hero {
    min-height: 100svh;
  }

  body:not(.subpage) .hero-content {
    padding: 80px 18px 76px;
  }

  body:not(.subpage) .hero-feature {
    min-height: 0;
    margin-top: 16px;
  }

  body:not(.subpage) .hero-feature-copy {
    padding: 14px 20px;
  }

  body:not(.subpage) .hero-feature h2 {
    font-size: 24px;
  }

  body:not(.subpage) .hero-feature-body {
    margin-top: 14px;
    padding-top: 12px;
  }

  body:not(.subpage) .hero-feature p {
    font-size: 14px;
    line-height: 1.2;
  }

  body:not(.subpage) .hero-feature-cta {
    min-height: 44px;
    margin-top: 10px;
  }

  .pdf-viewer-shell {
    width: 100%;
    height: calc(100dvh - var(--mobile-header-height));
    min-height: 0;
  }

  .flip-book,
  .flip-book.is-single-page {
    width: min(100%, calc((100dvh - 150px) * var(--flip-page-ratio, 1.333)));
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .site-header.has-language-switcher .language-switcher {
    height: 44px;
  }
}

/* Operations — editorial project index inspired by the Enerblock grid language. */
body.operations-page {
  --operations-paper: #f0efeb;
  --operations-ink: #0c0b11;
  --operations-rule: #9f9da0;
  --operations-accent: #ff5949;
  --operations-rail-width: clamp(112px, 8.333vw, 170px);
}

body.operations-page .subpage-main {
  background: var(--operations-paper);
}

body.operations-page .operations-hero-minimal {
  --operations-hero-image: url("assets/operations/operations-hero-open-pit.webp");
  position: relative;
  display: grid;
  min-height: clamp(620px, 75svh, 920px);
  grid-template-columns: minmax(0, 1fr);
  border-bottom: 0;
  overflow: hidden;
  background-color: #141923;
  background-image: var(--operations-hero-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}

body.operations-page .operations-hero-minimal::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: rgb(0 0 0 / 0.5);
  content: "";
  pointer-events: none;
}

body.operations-page .operations-hero-minimal .subpage-hero-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: inherit;
  grid-template-rows: minmax(0, 1fr);
  align-content: stretch;
  border-right: 0 !important;
  padding: clamp(24px, 2.4vw, 48px);
}

body.operations-page .operations-hero-intro {
  display: grid;
  height: 100%;
  min-height: 100%;
  grid-template-rows: auto minmax(48px, 1fr) auto;
  align-content: start;
}

body.operations-page .operations-hero-intro small {
  color: var(--operations-accent);
  font-size: clamp(14px, 1.05vw, 18px);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

body.operations-page .operations-hero-intro h1 {
  align-self: end;
  margin: 0 0 clamp(22px, 2vw, 32px);
  color: #fff;
  font-size: clamp(58px, 5.55vw, 80px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.035em;
  text-shadow: 0 2px 28px rgb(0 0 0 / 0.24);
}

body.operations-page .operations-hero-intro p {
  width: min(100%, 560px);
  align-self: end;
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 2.22vw, 32px);
  font-weight: 500;
  line-height: 1.1;
  text-shadow: 0 2px 24px rgb(0 0 0 / 0.32);
}

body.operations-page .operation-sort {
  min-height: 85px;
  grid-template-columns: var(--operations-rail-width) minmax(0, 1fr);
  border-top: 1px solid var(--operations-rule);
  border-bottom: 1px solid var(--operations-rule);
  background: var(--operations-paper);
}

body.operations-page .operation-sort-label {
  justify-content: flex-start;
  border-right: 1px solid var(--operations-rule);
  padding: 20px;
  color: var(--operations-ink);
  font-size: 18px;
  font-weight: 600;
}

body.operations-page .operation-sort-controls {
  gap: 12px;
  padding: 20px;
}

body.operations-page .operation-sort-controls button {
  min-height: 44px;
  border-color: var(--operations-rule);
  border-radius: 0;
  padding-inline: clamp(18px, 1.7vw, 28px);
  background: #ffffff;
  color: var(--operations-ink);
  font-size: 15px;
  font-weight: 600;
}

body.operations-page .operation-sort-controls button:hover,
body.operations-page .operation-sort-controls button:focus-visible,
body.operations-page .operation-sort-controls button[aria-pressed="true"] {
  border-color: var(--operations-accent);
  background: #ffffff;
  color: var(--operations-accent);
}

body.operations-page .operation-sort.is-empty::after {
  grid-column: 2;
}

body.operations-page .subpage-list {
  border-bottom: 1px solid var(--operations-rule);
  background: var(--operations-paper);
}

body.operations-page .operation-sort + .subpage-list .subpage-list-card,
body.operations-page .operations-hero-minimal + .subpage-list .subpage-list-card,
body.operations-page .subpage-list-card {
  position: relative;
  display: grid;
  height: auto;
  min-height: 0;
  grid-template-columns:
    var(--operations-rail-width)
    minmax(0, 1fr)
    minmax(0, 40%);
  grid-template-rows: auto minmax(0, 1fr);
  border-top: 0;
  border-bottom: 0;
  background: var(--operations-paper);
  color: var(--operations-ink);
  overflow: hidden;
  transition:
    background-color 420ms cubic-bezier(0.53, 0, 0, 1),
    color 420ms cubic-bezier(0.53, 0, 0, 1);
}

body.operations-page
  .subpage-list-card:not([hidden]):has(~ .subpage-list-card:not([hidden]))::after {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--operations-rule);
  content: "";
  pointer-events: none;
}

body.operations-page
  .subpage-list-card:not([hidden]):has(~ .subpage-list-card:not([hidden])) {
  margin-bottom: clamp(28px, 3.05vw, 44px);
}

body.operations-page
  .subpage-list-card:not([hidden])
  ~ .subpage-list-card:not([hidden])::before {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--operations-rule);
  content: "";
  pointer-events: none;
}

body.operations-page .subpage-list-card:last-child {
  border-bottom: 0;
}

body.operations-page .subpage-list-number {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  display: inline-flex;
  width: auto;
  height: auto;
  gap: 0;
  border: 0;
  padding: 0;
  color: var(--operations-accent);
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 600;
  line-height: 1;
  pointer-events: none;
}

body.operations-page .subpage-list-number::before {
  content: "0";
}

body.operations-page .operation-project-index {
  display: grid;
  min-width: 0;
  min-height: 112px;
  grid-column: 1 / 3;
  grid-row: 1;
  grid-template-columns:
    var(--operations-rail-width)
    repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
  border-right: 1px solid var(--operations-rule);
  border-bottom: 1px solid var(--operations-rule);
  padding: 0;
}

body.operations-page .operation-project-index .subpage-list-number {
  position: static;
  top: auto;
  left: auto;
  display: flex;
  width: 100%;
  height: 100%;
  grid-column: 1;
  align-items: center;
  justify-content: flex-start;
  border-right: 1px solid var(--operations-rule);
  padding: 20px 28px;
  white-space: nowrap;
}

body.operations-page .operation-sort + .subpage-list .operation-project-copy,
body.operations-page .operations-hero-minimal + .subpage-list .operation-project-copy,
body.operations-page .operation-project-copy {
  position: relative;
  display: grid;
  min-width: 0;
  grid-column: 2;
  grid-row: 2;
  align-content: start;
  gap: 0;
  border-left: 1px solid var(--operations-rule);
  border-right: 1px solid var(--operations-rule);
  border-bottom: 0;
  padding: 28px 28px 24px;
}

body.operations-page .operation-project-body {
  display: grid;
  min-width: 0;
  align-content: start;
  gap: 12px;
}

body.operations-page .operation-project-kicker {
  position: absolute;
  top: 20px;
  right: 20px;
  display: block !important;
  width: auto !important;
  min-height: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  color: #57565a !important;
  font-size: clamp(14px, 1.05vw, 18px) !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  text-transform: none;
}

body.operations-page .operation-project-index .operation-project-kicker {
  position: static;
  top: auto;
  right: auto;
  display: grid !important;
  width: 100% !important;
  height: 100%;
  grid-column: 4;
  align-content: center;
  justify-content: end;
  gap: 12px;
  text-align: right;
  padding: 20px 28px !important;
}

body.operations-page .operation-project-kicker-label,
body.operations-page .operation-project-kicker-value {
  display: block;
}

body.operations-page .operation-project-kicker-label {
  font-weight: 600;
  text-transform: uppercase;
}

body.operations-page .operation-project-index .operation-project-kicker,
body.operations-page .operation-project-meta dd {
  overflow-wrap: anywhere;
}

body.operations-page
  .operation-project-index
  .operation-project-kicker:has(.operation-project-kicker-label) {
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35em;
  overflow-wrap: normal;
  white-space: nowrap;
  word-break: normal;
}

body.operations-page
  .operation-project-kicker:has(.operation-project-kicker-label)
  .operation-project-kicker-label,
body.operations-page
  .operation-project-kicker:has(.operation-project-kicker-label)
  .operation-project-kicker-value {
  display: inline;
}

body.operations-page .operation-sort + .subpage-list .operation-project-copy h2,
body.operations-page .operations-hero-minimal + .subpage-list .operation-project-copy h2,
body.operations-page .operation-project-copy h2 {
  width: min(100%, 620px);
  margin: 0;
  color: inherit;
  font-size: clamp(34px, 2.78vw, 40px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.022em;
}

body.operations-page .operation-project-copy .operation-details {
  display: grid;
  width: min(100%, 760px);
  margin: clamp(18px, 1.5vw, 24px) 0 0;
  gap: clamp(12px, 1vw, 16px);
  color: #57565a;
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 500;
  line-height: 1.3;
}

body.operations-page .operation-project-copy .operation-details p,
body.operations-page .operation-project-copy .operation-details ul,
body.operations-page .operation-project-copy .operation-details li,
body.operations-page .operation-project-copy .operation-details h3,
body.operations-page .operation-project-copy .operation-details strong {
  width: auto;
  margin: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
}

body.operations-page .operation-project-copy .operation-detail-block {
  gap: 6px;
}

body.operations-page .operation-project-copy .operation-details h3,
body.operations-page .operation-project-copy .operation-details strong {
  color: var(--operations-ink);
  font-weight: 700;
}

body.operations-page .operation-project-copy .operation-details ul {
  display: grid;
  gap: 4px;
  padding-left: 1.15em;
}

body.operations-page .operation-project-cta {
  --button-roll-hover-color: var(--operations-ink);
  width: min(100%, 340px);
  min-width: 0;
  margin-top: clamp(20px, 1.7vw, 28px);
  justify-self: start;
  border-color: var(--operations-ink);
  background: #ffffff;
  color: var(--operations-accent);
}

body.operations-page .operation-project-cta:hover,
body.operations-page .operation-project-cta:active {
  border-color: var(--operations-accent);
  background: #ffffff;
  color: var(--operations-accent);
}

body.operations-page .subpage-list-card:hover .operation-project-cta,
body.operations-page .subpage-list-card:focus-visible .operation-project-cta {
  border-color: var(--operations-accent);
  background: #ffffff;
  color: var(--operations-accent);
}

body.operations-page .subpage-list-card:hover .operation-project-cta:hover,
body.operations-page .subpage-list-card:focus-visible .operation-project-cta:hover {
  background: #ffffff;
  color: var(--operations-accent);
}

body.operations-page .subpage-list-card:hover .operation-details,
body.operations-page .subpage-list-card:focus-visible .operation-details,
body.operations-page .subpage-list-card:hover .operation-details *,
body.operations-page .subpage-list-card:focus-visible .operation-details * {
  color: var(--operations-accent) !important;
}

body.operations-page .operation-project-meta {
  display: grid;
  min-width: 0;
  min-height: 0;
  height: 100%;
  grid-column: 2 / 4;
  grid-row: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: stretch;
  gap: 0;
  border: 0;
  margin: 0;
  padding: 0;
  color: inherit;
}

body.operations-page .operation-project-meta > div {
  display: grid;
  min-width: 0;
  align-content: end;
  gap: 12px;
  border-right: 1px solid var(--operations-rule);
  padding: 20px 28px 24px;
}

body.operations-page .operation-project-meta > div:last-child {
  border-right: 0;
}

body.operations-page .operation-project-index .operation-project-meta > div:last-child {
  border-right: 1px solid var(--operations-rule);
}

body.operations-page .operation-project-meta dt,
body.operations-page .operation-project-meta dd {
  margin: 0;
}

body.operations-page .operation-project-meta dt {
  color: var(--operations-accent);
  font-size: clamp(14px, 1.05vw, 18px);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

body.operations-page .operation-project-meta dd {
  color: inherit;
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 500;
  line-height: 1.25;
}

body.operations-page .subpage-list-media {
  min-width: 0;
  width: 100%;
  grid-column: 3;
  grid-row: 1 / -1;
  align-self: stretch;
  aspect-ratio: 1 / 1;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

body.operations-page .subpage-list-media img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  background: #d9ddd8;
  object-fit: cover;
  transform: none;
  transition: none;
}

body.operations-page .operation-sort + .subpage-list .subpage-list-card:hover,
body.operations-page .operation-sort + .subpage-list .subpage-list-card:focus-visible,
body.operations-page .operations-hero-minimal + .subpage-list .subpage-list-card:hover,
body.operations-page .operations-hero-minimal + .subpage-list .subpage-list-card:focus-visible,
body.operations-page .subpage-list-card:hover,
body.operations-page .subpage-list-card:focus-visible {
  background: var(--operations-ink);
  color: var(--operations-accent);
  outline: none;
}

body.operations-page .subpage-list-card:hover .operation-project-kicker,
body.operations-page .subpage-list-card:focus-visible .operation-project-kicker {
  color: var(--operations-accent) !important;
}

body.operations-page .subpage-list-card:hover .subpage-list-media img,
body.operations-page .subpage-list-card:focus-visible .subpage-list-media img {
  transform: none;
}

body.operations-page .subpage-list-media[data-gallery-href]::after {
  display: none;
}

body.operations-page .subpage-list-media[data-operation-scroll-ready="true"] {
  --operation-scroll-x: -1px;
  --operation-scroll-y: -1px;
  --operation-scroll-right: 100%;
  --operation-scroll-bottom: 100%;
  --operation-scroll-scale: 2;
  --operation-scroll-inset: 20px;
  position: relative;
  background: #d9ddd8;
}

body.operations-page .operation-project-reveal {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

body.operations-page
  .subpage-list-media.is-scroll-transition-ready
  .operation-project-reveal {
  clip-path: inset(
    var(--operation-scroll-inset)
      calc(var(--operation-scroll-right) + var(--operation-scroll-inset))
      calc(var(--operation-scroll-bottom) + var(--operation-scroll-inset))
      var(--operation-scroll-inset)
  );
  will-change: clip-path;
}

body.operations-page .operation-project-reveal img {
  transform: scale(1);
  transform-origin: center;
}

body.operations-page
  .subpage-list-media.is-scroll-transition-ready
  .operation-project-reveal img {
  transform: scale(var(--operation-scroll-scale));
  will-change: transform;
}

body.operations-page
  .subpage-list-media.is-scroll-transition-ready
  .operation-manufacturing-cross {
  display: block;
}

body.operations-page .operation-manufacturing-showcase {
  border-bottom: 0;
  background: var(--operations-paper);
  color: var(--operations-ink);
}

body.operations-page .operation-manufacturing-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: minmax(0, 1fr) auto;
  border-bottom: 0;
}

body.operations-page .operation-manufacturing-content {
  min-width: 0;
  grid-column: 1;
  grid-row: 1;
  border-right: 1px solid var(--operations-rule);
  background: var(--operations-paper);
}

body.operations-page .operation-manufacturing-sticky {
  position: sticky;
  top: 70px;
  display: grid;
  align-content: start;
}

body.operations-page .operation-manufacturing-showcase h2 {
  border-top: 0;
  padding: 20px 20px 0;
  background: var(--operations-paper);
  color: var(--operations-ink);
  font-size: clamp(42px, 3.62vw, 52px);
  font-weight: 500;
  line-height: 0.925;
  letter-spacing: -0.025em;
}

body.operations-page .operation-manufacturing-copy {
  align-content: start;
  gap: 14px;
  padding: 14px 20px 32px;
  background: var(--operations-paper);
}

body.operations-page .operation-manufacturing-copy p {
  width: min(100%, 560px);
  color: #3f3e41;
  font-size: clamp(20px, 1.67vw, 24px);
  font-weight: 500;
  line-height: 1.2;
}

body.operations-page .operation-manufacturing-gallery {
  --operation-scroll-x: -1px;
  --operation-scroll-y: -1px;
  --operation-scroll-right: 100%;
  --operation-scroll-bottom: 100%;
  --operation-scroll-scale: 2;
  --operation-scroll-inset: 20px;
  position: relative;
  grid-column: 2;
  grid-row: 1;
  min-height: clamp(760px, 60vw, 1152px);
  border-top: 0;
  margin: 0;
  overflow: hidden;
  background: #d9ddd8;
}

body.operations-page .operation-manufacturing-reveal {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

body.operations-page
  .operation-manufacturing-gallery.is-scroll-transition-ready
  .operation-manufacturing-reveal {
  clip-path: inset(
    var(--operation-scroll-inset)
      calc(var(--operation-scroll-right) + var(--operation-scroll-inset))
      calc(var(--operation-scroll-bottom) + var(--operation-scroll-inset))
      var(--operation-scroll-inset)
  );
  will-change: clip-path;
}

body.operations-page .operation-manufacturing-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transform-origin: center;
}

body.operations-page
  .operation-manufacturing-gallery.is-scroll-transition-ready
  .operation-manufacturing-reveal img {
  transform: scale(var(--operation-scroll-scale));
  will-change: transform;
}

body.operations-page .operation-manufacturing-cross {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: none;
  pointer-events: none;
}

body.operations-page
  .operation-manufacturing-gallery.is-scroll-transition-ready
  .operation-manufacturing-cross {
  display: block;
}

body.operations-page .operation-manufacturing-cross-line {
  position: absolute;
  z-index: 1;
  background: var(--operations-rule);
}

body.operations-page .operation-manufacturing-cross-line.is-vertical {
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  transform: translateX(var(--operation-scroll-x));
}

body.operations-page .operation-manufacturing-cross-line.is-horizontal {
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transform: translateY(var(--operation-scroll-y));
}

body.operations-page .operation-manufacturing-coordinate,
body.operations-page .operation-manufacturing-cross-point {
  position: absolute;
  z-index: 2;
  color: #85857e;
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

body.operations-page .operation-manufacturing-coordinate.is-x {
  top: -22px;
  left: 12px;
  transform: translate(var(--operation-scroll-x), var(--operation-scroll-y));
}

body.operations-page .operation-manufacturing-coordinate.is-y {
  top: 12px;
  left: -44px;
  transform: translate(var(--operation-scroll-x), var(--operation-scroll-y));
}

body.operations-page .operation-manufacturing-cross-point {
  top: -2px;
  left: -2px;
  width: 5px;
  height: 5px;
  background: var(--operations-ink);
  transform: translate(var(--operation-scroll-x), var(--operation-scroll-y));
}

body.operations-page .operation-image-footer-divider {
  height: clamp(48px, 4.45vw, 64px);
  grid-column: 1 / -1;
  grid-row: 2;
  border-top: 1px solid var(--operations-rule);
  border-bottom: 1px solid var(--operations-rule);
  background: var(--operations-paper);
}

body.operations-page .operation-image-footer-divider span {
  border-color: var(--operations-rule);
}

@media (min-width: 681px) and (max-width: 980px) {
  body.operations-page .operations-hero-minimal {
    min-height: clamp(600px, 72svh, 760px);
  }

  body.operations-page .operation-sort + .subpage-list .subpage-list-card,
  body.operations-page .operations-hero-minimal + .subpage-list .subpage-list-card,
  body.operations-page .subpage-list-card {
    height: auto;
    min-height: 0;
    grid-template-columns:
      var(--operations-rail-width)
      minmax(0, 1fr)
      minmax(0, 40%);
  }

  body.operations-page .operation-project-index {
    min-height: 104px;
    grid-column: 1 / 3;
    padding: 0;
  }

  body.operations-page .operation-project-index .subpage-list-number {
    padding: 16px;
  }

  body.operations-page .operation-project-index .operation-project-kicker {
    right: auto;
    gap: 8px;
    padding: 16px !important;
    font-size: 14px !important;
  }

  body.operations-page .operation-project-meta {
    grid-column: 2 / 4;
    grid-row: 1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.operations-page .operation-project-meta > div {
    gap: 8px;
    padding: 16px;
  }

  body.operations-page .operation-sort + .subpage-list .operation-project-copy,
  body.operations-page .operations-hero-minimal + .subpage-list .operation-project-copy {
    grid-column: 2;
    grid-row: 2;
    align-content: start;
    padding: 24px 16px 16px;
  }

  body.operations-page .operation-sort + .subpage-list .operation-project-meta,
  body.operations-page .operations-hero-minimal + .subpage-list .operation-project-meta {
    grid-column: 2 / 4;
    grid-row: 1;
  }

  body.operations-page .operation-sort + .subpage-list .subpage-list-media,
  body.operations-page .operations-hero-minimal + .subpage-list .subpage-list-media {
    min-height: 0;
    grid-column: 3;
    grid-row: 1 / -1;
  }

  body.operations-page .operation-sort + .subpage-list .operation-project-copy h2,
  body.operations-page .operations-hero-minimal + .subpage-list .operation-project-copy h2,
  body.operations-page .operation-project-copy h2 {
    font-size: clamp(30px, 4vw, 38px);
  }
}

@media (max-width: 680px) {
  body.operations-page .operations-hero-minimal {
    --operations-hero-image: url("assets/operations/operations-hero-open-pit-1280.webp");
    min-height: clamp(560px, 82svh, 700px);
    grid-template-columns: minmax(0, 1fr);
    background-position: 54% center;
  }

  body.operations-page .operations-hero-minimal .subpage-hero-copy {
    min-height: inherit;
    border-right: 0 !important;
    padding: 16px;
  }

  body.operations-page .operations-hero-intro h1 {
    margin-bottom: 22px;
    font-size: clamp(48px, 13.9vw, 56px);
    line-height: 0.9;
  }

  body.operations-page .operations-hero-intro p {
    width: min(100%, 350px);
    margin: 0;
    font-size: clamp(22px, 5.98vw, 24px);
    line-height: 1.2;
  }

  body.operations-page .operation-sort {
    min-height: 75px;
    grid-template-columns: minmax(0, 1fr);
  }

  body.operations-page .operation-sort-label {
    display: none;
  }

  body.operations-page .operation-sort-controls {
    flex-wrap: nowrap;
    gap: 8px;
    padding: 16px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  body.operations-page .operation-sort-controls::-webkit-scrollbar {
    display: none;
  }

  body.operations-page .operation-sort-controls button {
    min-width: max-content;
    min-height: 43px;
    flex: 0 0 auto;
    font-size: 14px;
  }

  body.operations-page .operation-sort.is-empty::after {
    grid-column: 1;
  }

  body.operations-page .operation-sort + .subpage-list .subpage-list-card,
  body.operations-page .operations-hero-minimal + .subpage-list .subpage-list-card,
  body.operations-page .subpage-list-card {
    height: auto;
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: minmax(144px, auto) minmax(112px, auto) auto;
  }

  body.operations-page .subpage-list-number {
    top: 16px;
    left: 16px;
    font-size: 17px;
  }

  body.operations-page .operation-project-index {
    min-height: 144px;
    grid-column: 1 / -1;
    grid-row: 1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: minmax(58px, auto) minmax(86px, auto);
    border-right: 0;
    border-bottom: 1px solid var(--operations-rule);
    padding: 0;
  }

  body.operations-page .operation-project-index .subpage-list-number {
    grid-column: 1;
    grid-row: 1;
    padding: 16px;
  }

  body.operations-page .operation-sort + .subpage-list .operation-project-copy,
  body.operations-page .operations-hero-minimal + .subpage-list .operation-project-copy,
  body.operations-page .operation-project-copy {
    min-height: 112px;
    grid-column: 1 / -1;
    grid-row: 2;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid var(--operations-rule);
    padding: 16px;
  }

  body.operations-page .operation-project-index .operation-project-kicker {
    grid-column: 2;
    grid-row: 1;
    align-content: center;
    gap: 7px;
    padding: 16px !important;
    font-size: 15px !important;
  }

  body.operations-page .operation-sort + .subpage-list .operation-project-copy h2,
  body.operations-page .operations-hero-minimal + .subpage-list .operation-project-copy h2,
  body.operations-page .operation-project-copy h2 {
    width: min(100%, 350px);
    font-size: clamp(25px, 6.7vw, 29px);
    line-height: 1;
  }

  body.operations-page .operation-project-copy .operation-details {
    width: min(100%, 350px);
    margin-top: 12px;
    gap: 10px;
    font-size: 14px;
    line-height: 1.3;
  }

  body.operations-page .operation-project-copy .operation-detail-block {
    gap: 4px;
  }

  body.operations-page .operation-project-copy .operation-details ul {
    gap: 3px;
  }

  body.operations-page .operation-project-cta {
    width: 100%;
    min-height: 54px;
    grid-template-columns: minmax(0, 1fr) 54px;
    margin-top: 18px;
    font-size: 17px;
  }

  body.operations-page .operation-project-meta {
    min-height: 86px;
    grid-column: 1 / -1;
    grid-row: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--operations-rule);
    border-bottom: 0;
    padding: 0;
  }

  body.operations-page .operation-project-meta > div {
    gap: 7px;
    border-right: 1px solid var(--operations-rule);
    padding: 16px;
  }

  body.operations-page .operation-project-meta > div:last-child {
    border-right: 0;
  }

  body.operations-page
    .operation-project-index
    .operation-project-meta
    > div:last-child {
    border-right: 0;
  }

  body.operations-page .operation-project-meta dt,
  body.operations-page .operation-project-meta dd {
    font-size: 15px;
  }

  body.operations-page .operation-sort + .subpage-list .subpage-list-media,
  body.operations-page .operations-hero-minimal + .subpage-list .subpage-list-media,
  body.operations-page .subpage-list-media {
    grid-column: 1 / -1;
    grid-row: 3;
    align-self: start;
    aspect-ratio: auto;
    padding: 16px;
  }

  body.operations-page .subpage-list-media img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  body.operations-page .operation-project-reveal {
    position: relative;
    inset: auto;
  }

  body.operations-page .operation-project-cross {
    display: none !important;
  }

  body.operations-page .subpage-list-card:hover,
  body.operations-page .subpage-list-card:focus-visible {
    background: var(--operations-paper);
    color: var(--operations-ink);
  }

  body.operations-page
    .subpage-list-card:not([hidden]):has(~ .subpage-list-card:not([hidden])) {
    margin-bottom: 24px;
  }

  body.operations-page .subpage-list-card:hover .operation-project-kicker,
  body.operations-page .subpage-list-card:focus-visible .operation-project-kicker {
    color: #57565a !important;
  }

  body.operations-page .operation-manufacturing-inner {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto;
  }

  body.operations-page .operation-manufacturing-content {
    grid-column: 1;
    grid-row: 1;
    border-right: 0;
  }

  body.operations-page .operation-manufacturing-sticky {
    position: static;
  }

  body.operations-page .operation-manufacturing-showcase h2 {
    border-right: 0;
    padding: 32px 16px 0;
    font-size: clamp(36px, 9.95vw, 40px);
    line-height: 1;
  }

  body.operations-page .operation-manufacturing-copy {
    gap: 12px;
    border-right: 0;
    padding: 14px 16px 32px;
  }

  body.operations-page .operation-manufacturing-copy p {
    font-size: 19px;
    line-height: 1.22;
  }

  body.operations-page .operation-manufacturing-gallery {
    min-height: 0;
    grid-column: 1;
    grid-row: 2;
    background: transparent;
  }

  body.operations-page .operation-manufacturing-reveal {
    position: relative;
    inset: auto;
  }

  body.operations-page .operation-manufacturing-gallery img {
    height: auto;
    aspect-ratio: 3 / 2;
  }

  body.operations-page .operation-image-footer-divider {
    height: 32px;
    grid-column: 1;
    grid-row: 3;
  }
}

@media (hover: none), (prefers-reduced-motion: reduce) {
  body.operations-page .subpage-list-card {
    transition: none;
  }

  body.operations-page .operation-manufacturing-gallery,
  body.operations-page .operation-manufacturing-reveal,
  body.operations-page .operation-manufacturing-gallery img,
  body.operations-page .operation-project-reveal,
  body.operations-page .operation-project-reveal img {
    clip-path: none !important;
    transform: none !important;
    will-change: auto !important;
  }

  body.operations-page .operation-manufacturing-cross {
    display: none !important;
  }
}

/* Operations close: Enerblock-inspired local manufacturing statement */
body.operations-page
  .subpage-list:has(+ .operation-manufacturing-showcase:not([hidden])) {
  border-bottom: 0;
}

body.operations-page .operation-manufacturing-showcase {
  --operation-manufacturing-column: 33.333333%;
  position: relative;
  border-top: 1px solid var(--operations-rule);
  background: #09090f;
  color: #f7f6f2;
}

body.operations-page .operation-manufacturing-inner {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(880px, 65vw, 1200px);
  grid-template-columns: var(--operation-manufacturing-column) minmax(0, 1fr);
  grid-template-rows: minmax(0, 2fr) minmax(290px, 1fr);
  overflow: hidden;
  background: #09090f;
}

body.operations-page .operation-manufacturing-inner::before,
body.operations-page .operation-manufacturing-inner::after {
  position: absolute;
  z-index: 5;
  background: rgba(244, 244, 239, 0.58);
  content: "";
  pointer-events: none;
}

body.operations-page .operation-manufacturing-inner::before {
  top: 0;
  bottom: 0;
  left: var(--operation-manufacturing-column);
  width: 1px;
}

body.operations-page .operation-manufacturing-inner::after {
  top: 66.666%;
  right: 0;
  left: 0;
  height: 1px;
}

body.operations-page .operation-manufacturing-content,
body.operations-page .operation-manufacturing-sticky {
  display: contents;
}

body.operations-page .operation-manufacturing-copy {
  position: relative;
  z-index: 4;
  display: grid;
  min-width: 0;
  grid-column: 1;
  grid-row: 1;
  align-content: start;
  gap: clamp(28px, 2.4vw, 48px);
  border: 0;
  padding: clamp(30px, 2.4vw, 48px) clamp(24px, 2.35vw, 46px);
  background: #09090f;
  text-align: left;
}

body.operations-page .operation-manufacturing-copy p {
  width: min(100%, 610px);
  margin: 0;
  color: #f3f2ee;
  font-size: clamp(17px, 1.48vw, 30px);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.018em;
}

body.operations-page .operation-manufacturing-body {
  display: grid;
  min-width: 0;
  gap: clamp(16px, 1.25vw, 24px);
}

body.operations-page .operation-manufacturing-copy .rich-text {
  display: grid;
  gap: clamp(16px, 1.25vw, 24px);
}

body.operations-page .operation-manufacturing-statement {
  position: relative;
  z-index: 4;
  display: grid;
  min-width: 0;
  grid-column: 2;
  grid-row: 2;
  align-content: start;
  gap: clamp(24px, 2vw, 38px);
  padding: clamp(34px, 3vw, 58px) clamp(28px, 3.35vw, 68px)
    clamp(26px, 2.4vw, 46px);
}

body.operations-page .operation-manufacturing-showcase h2 {
  display: block;
  width: min(100%, 1280px);
  border: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  color: #fff;
  font-size: clamp(36px, 2.8vw, 56px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.042em;
  text-align: left;
  text-transform: none;
  text-wrap: balance;
}

body.operations-page .operation-manufacturing-contact-title {
  display: block;
  width: min(100%, 1280px);
  margin: 0;
  color: #fff;
  font-size: clamp(64px, 6.1vw, 124px);
  font-weight: 600;
  line-height: 0.84;
  letter-spacing: -0.052em;
  text-align: left;
  text-wrap: balance;
}

body.operations-page .operation-manufacturing-cta {
  display: grid;
  width: min(100%, 350px);
  min-height: clamp(54px, 4vw, 68px);
  grid-template-columns: minmax(0, 1fr) clamp(54px, 4vw, 68px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  color: #fff;
  font-size: clamp(16px, 1.05vw, 21px);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

body.operations-page .operation-manufacturing-cta span {
  display: grid;
  align-items: center;
  padding: 0 clamp(16px, 1.25vw, 24px);
}

body.operations-page .operation-manufacturing-cta span:last-child {
  justify-content: center;
  border-left: 1px solid currentColor;
  padding: 0;
  font-size: 1.35em;
  transition: transform 180ms ease;
}

body.operations-page .operation-manufacturing-cta:hover,
body.operations-page .operation-manufacturing-cta:focus-visible {
  background: #fff;
  color: #09090f;
}

body.operations-page .operation-manufacturing-cta:hover span:last-child,
body.operations-page .operation-manufacturing-cta:focus-visible span:last-child {
  transform: translateX(3px);
}

body.operations-page .operation-manufacturing-gallery {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  grid-column: 2;
  grid-row: 1 / -1;
  border: 0;
  margin: 0;
  overflow: hidden;
  background: #111118;
}

body.operations-page .operation-manufacturing-reveal {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

body.operations-page .operation-manufacturing-reveal::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 9, 15, 0.08) 26%, rgba(9, 9, 15, 0.77) 100%),
    linear-gradient(90deg, rgba(9, 9, 15, 0.42) 0%, rgba(9, 9, 15, 0.04) 48%);
  content: "";
  pointer-events: none;
}

body.operations-page .operation-manufacturing-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.72) saturate(0.82) contrast(1.06);
}

body.operations-page .operation-manufacturing-cross,
body.operations-page
  .operation-manufacturing-gallery.is-scroll-transition-ready
  .operation-manufacturing-cross {
  display: none;
}

body.operations-page .operation-image-footer-divider {
  display: none;
}

@media (min-width: 681px) and (max-width: 980px) {
  body.operations-page .operation-manufacturing-inner {
    min-height: 1000px;
    grid-template-columns: var(--operation-manufacturing-column) minmax(0, 1fr);
    grid-template-rows: minmax(0, 65%) minmax(280px, 35%);
  }

  body.operations-page .operation-manufacturing-inner::after {
    top: 65%;
  }

  body.operations-page .operation-manufacturing-copy {
    gap: 28px;
    padding: 28px 22px;
  }

  body.operations-page .operation-manufacturing-copy p {
    font-size: clamp(16px, 2.1vw, 19px);
  }

  body.operations-page .operation-manufacturing-statement {
    gap: 22px;
    padding: 30px 24px 24px;
  }

  body.operations-page .operation-manufacturing-showcase h2 {
    font-size: clamp(34px, 3.85vw, 38px);
    line-height: 0.9;
  }

  body.operations-page .operation-manufacturing-contact-title {
    font-size: clamp(48px, 7vw, 68px);
    line-height: 0.87;
  }
}

@media (min-width: 681px) and (max-width: 920px) {
  body.operations-page .operation-manufacturing-showcase {
    --operation-manufacturing-column: 42%;
  }
}

@media (max-width: 680px) {
  body.operations-page .operation-manufacturing-showcase {
    --operation-manufacturing-column: 100%;
  }

  body.operations-page .operation-manufacturing-inner {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto minmax(520px, 132vw);
  }

  body.operations-page .operation-manufacturing-inner::before,
  body.operations-page .operation-manufacturing-inner::after {
    display: none;
  }

  body.operations-page .operation-manufacturing-copy {
    grid-column: 1;
    grid-row: 1;
    gap: 28px;
    border-bottom: 1px solid rgba(244, 244, 239, 0.58);
    padding: 26px 16px 30px;
  }

  body.operations-page .operation-manufacturing-copy p {
    width: 100%;
    font-size: clamp(17px, 4.8vw, 19px);
    line-height: 1.2;
  }

  body.operations-page .operation-manufacturing-statement {
    grid-column: 1;
    grid-row: 2;
    align-self: end;
    gap: 24px;
    padding: 30px 16px 20px;
  }

  body.operations-page .operation-manufacturing-showcase h2 {
    width: min(100%, 620px);
    font-size: clamp(40px, 11vw, 52px);
    line-height: 0.9;
  }

  body.operations-page .operation-manufacturing-contact-title {
    width: min(100%, 620px);
    font-size: clamp(52px, 14.5vw, 82px);
    line-height: 0.86;
  }

  body.operations-page .operation-manufacturing-cta {
    width: 100%;
    min-height: 56px;
    grid-template-columns: minmax(0, 1fr) 56px;
    font-size: 17px;
  }

  body.operations-page .operation-manufacturing-gallery {
    position: relative;
    height: 100%;
    min-height: 520px;
    grid-column: 1;
    grid-row: 2;
  }

  body.operations-page .operation-manufacturing-reveal {
    position: absolute;
    inset: 0;
  }

  body.operations-page .operation-manufacturing-gallery img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-position: 50% center;
  }

  body.operations-page .operation-manufacturing-reveal::after {
    background:
      linear-gradient(180deg, rgba(9, 9, 15, 0.12) 12%, rgba(9, 9, 15, 0.88) 100%),
      linear-gradient(90deg, rgba(9, 9, 15, 0.16), rgba(9, 9, 15, 0.08));
  }
}

/* Services — Operations-aligned editorial capability index. */
body.services-page {
  --services-paper: #f0efeb;
  --services-ink: #0c0b11;
  --services-rule: #9f9da0;
  --services-accent: #ff5949;
  --services-rail-width: clamp(112px, 8.333vw, 170px);
}

body.services-page .subpage-main {
  background: var(--services-paper);
}

body.services-page .operations-hero-minimal {
  position: relative;
  display: grid;
  min-height: clamp(620px, 75svh, 920px);
  grid-template-columns: minmax(0, 1fr);
  border-bottom: 0;
  overflow: hidden;
  background-color: #141923;
  background-image: url("assets/operations/local-manufacturing-service-operation.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}

body.services-page .operations-hero-minimal::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: rgb(0 0 0 / 0.54);
  content: "";
  pointer-events: none;
}

body.services-page .operations-hero-minimal .subpage-hero-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: inherit;
  grid-template-rows: minmax(0, 1fr);
  align-content: stretch;
  border-right: 0 !important;
  padding: clamp(24px, 2.4vw, 48px);
}

body.services-page .operations-hero-intro {
  display: grid;
  height: 100%;
  min-height: 100%;
  grid-template-rows: auto minmax(48px, 1fr) auto;
  align-content: start;
}

body.services-page .operations-hero-intro small {
  color: var(--services-accent);
  font-size: clamp(14px, 1.05vw, 18px);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

body.services-page .operations-hero-intro h1 {
  align-self: end;
  margin: 0 0 clamp(22px, 2vw, 32px);
  color: #fff;
  font-size: clamp(58px, 5.55vw, 80px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.035em;
  text-shadow: 0 2px 28px rgb(0 0 0 / 0.24);
}

body.services-page .operations-hero-intro p {
  width: min(100%, 560px);
  align-self: end;
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 2.22vw, 32px);
  font-weight: 500;
  line-height: 1.1;
  text-shadow: 0 2px 24px rgb(0 0 0 / 0.32);
}

body.services-page .service-sort {
  min-height: 85px;
  grid-template-columns: var(--services-rail-width) minmax(0, 1fr);
  border-top: 1px solid var(--services-rule);
  border-bottom: 1px solid var(--services-rule);
  background: var(--services-paper);
}

body.services-page .service-sort .operation-sort-label {
  justify-content: flex-start;
  border-right: 1px solid var(--services-rule);
  padding: 20px;
  color: var(--services-ink);
  font-size: 18px;
  font-weight: 600;
}

body.services-page .service-sort .operation-sort-controls {
  gap: 12px;
  padding: 20px;
}

body.services-page .service-sort .operation-sort-controls a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--services-rule);
  border-radius: 0;
  padding-inline: clamp(18px, 1.7vw, 28px);
  background: #fff;
  color: var(--services-ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    color 180ms ease;
}

body.services-page .service-sort .operation-sort-controls a:hover,
body.services-page .service-sort .operation-sort-controls a:focus-visible,
body.services-page .service-sort .operation-sort-controls a[aria-current="true"] {
  border-color: var(--services-accent);
  color: var(--services-accent);
  outline: none;
}

body.services-page .services-detail-list {
  border-bottom: 1px solid var(--services-rule);
  background: var(--services-paper);
}

body.services-page .services-detail-list .service-editorial-card {
  position: relative;
  display: grid;
  height: auto;
  min-height: 0;
  grid-template-columns:
    var(--services-rail-width)
    minmax(0, 1fr)
    minmax(0, 40%);
  grid-template-rows: auto minmax(0, 1fr);
  border-top: 0;
  border-bottom: 0;
  background: var(--services-paper);
  color: var(--services-ink);
  opacity: 1 !important;
  overflow: hidden;
  transform: none !important;
  transition:
    background-color 420ms cubic-bezier(0.53, 0, 0, 1),
    color 420ms cubic-bezier(0.53, 0, 0, 1);
  visibility: visible !important;
}

body.services-page
  .services-detail-list
  .service-editorial-card:not(:last-child) {
  margin-bottom: clamp(28px, 3.05vw, 44px);
}

body.services-page
  .services-detail-list
  .service-editorial-card:not(:last-child)::after,
body.services-page
  .services-detail-list
  .service-editorial-card:not(:first-child)::before {
  position: absolute;
  z-index: 4;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--services-rule);
  content: "";
  pointer-events: none;
}

body.services-page
  .services-detail-list
  .service-editorial-card:not(:last-child)::after {
  bottom: 0;
}

body.services-page
  .services-detail-list
  .service-editorial-card:not(:first-child)::before {
  top: 0;
}

body.services-page .service-editorial-card[id],
body.services-page #services-list {
  scroll-margin-top: 78px;
}

body.services-page .service-editorial-index {
  display: grid;
  min-width: 0;
  min-height: 112px;
  grid-column: 1 / 3;
  grid-row: 1;
  grid-template-columns:
    var(--services-rail-width)
    repeat(3, minmax(0, 1fr));
  align-items: stretch;
  border-right: 1px solid var(--services-rule);
  border-bottom: 1px solid var(--services-rule);
}

body.services-page .service-editorial-index .subpage-list-number {
  position: static;
  display: flex;
  width: 100%;
  height: 100%;
  grid-column: 1;
  align-items: center;
  justify-content: flex-start;
  border-right: 1px solid var(--services-rule);
  border-bottom: 0;
  padding: 20px 28px;
  color: var(--services-accent);
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

body.services-page .service-editorial-meta {
  display: contents;
  margin: 0;
}

body.services-page .service-editorial-meta > div,
body.services-page .service-editorial-code {
  display: grid;
  min-width: 0;
  align-content: end;
  gap: 12px;
  border-right: 1px solid var(--services-rule);
  padding: 20px 28px 24px;
}

body.services-page .service-editorial-meta > div:first-child {
  grid-column: 2;
}

body.services-page .service-editorial-meta > div:last-child {
  grid-column: 3;
}

body.services-page .service-editorial-meta dt,
body.services-page .service-editorial-meta dd {
  margin: 0;
}

body.services-page .service-editorial-meta dt,
body.services-page .service-editorial-code span {
  color: var(--services-accent);
  font-size: clamp(14px, 1.05vw, 18px);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

body.services-page .service-editorial-meta dd {
  color: inherit;
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 500;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

body.services-page .service-editorial-code {
  grid-column: 4;
  justify-content: end;
  border-right: 0;
  text-align: right;
}

body.services-page .service-editorial-code b {
  color: inherit;
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 500;
  line-height: 1;
}

body.services-page .services-detail-list .service-editorial-copy {
  position: relative;
  display: grid;
  min-width: 0;
  grid-column: 2;
  grid-row: 2;
  align-content: start;
  gap: 0;
  border-left: 1px solid var(--services-rule);
  border-right: 1px solid var(--services-rule);
  padding: 28px 28px 32px;
}

body.services-page .service-editorial-body {
  display: grid;
  min-width: 0;
  align-content: start;
}

body.services-page .services-detail-list .service-editorial-copy h2 {
  width: min(100%, 680px);
  margin: 0;
  color: inherit;
  font-size: clamp(34px, 2.78vw, 40px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.022em;
}

body.services-page .service-editorial-copy .service-detail-body {
  display: grid;
  width: min(100%, 760px);
  margin: clamp(18px, 1.5vw, 24px) 0 0;
  gap: clamp(12px, 1vw, 16px);
  color: #57565a;
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 500;
  line-height: 1.3;
}

body.services-page .service-editorial-copy .service-detail-body p,
body.services-page .service-editorial-copy .service-detail-body ul,
body.services-page .service-editorial-copy .service-detail-body li,
body.services-page .service-editorial-copy .service-detail-body strong {
  width: auto;
  margin: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
}

body.services-page .service-editorial-copy .service-detail-body ul {
  display: grid;
  gap: 4px;
  padding-left: 1.15em;
}

body.services-page .service-editorial-copy .service-detail-body strong {
  color: var(--services-ink);
  font-weight: 700;
}

body.services-page .services-detail-list .service-editorial-card .subpage-list-media {
  min-width: 0;
  width: 100%;
  height: 100%;
  grid-column: 3;
  grid-row: 1 / -1;
  align-self: stretch;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #d9ddd8;
}

body.services-page
  .services-detail-list
  .service-editorial-card
  .subpage-list-media
  img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
  background: #d9ddd8;
  object-fit: cover;
  transform: none;
  transition: none;
}

body.services-page .services-detail-list .service-editorial-card:hover,
body.services-page .services-detail-list .service-editorial-card:focus-within {
  background: var(--services-ink);
  color: var(--services-accent);
}

body.services-page
  .services-detail-list
  .service-editorial-card:hover
  .service-detail-body,
body.services-page
  .services-detail-list
  .service-editorial-card:hover
  .service-detail-body *,
body.services-page
  .services-detail-list
  .service-editorial-card:focus-within
  .service-detail-body,
body.services-page
  .services-detail-list
  .service-editorial-card:focus-within
  .service-detail-body * {
  color: var(--services-accent) !important;
}

@media (min-width: 681px) and (max-width: 980px) {
  body.services-page .operations-hero-minimal {
    min-height: clamp(600px, 72svh, 760px);
  }

  body.services-page .service-editorial-index {
    min-height: 104px;
  }

  body.services-page .service-editorial-index .subpage-list-number,
  body.services-page .service-editorial-meta > div,
  body.services-page .service-editorial-code {
    gap: 8px;
    padding: 16px;
  }

  body.services-page .services-detail-list .service-editorial-copy {
    padding: 24px 16px;
  }

  body.services-page .services-detail-list .service-editorial-copy h2 {
    font-size: clamp(30px, 4vw, 38px);
  }
}

@media (max-width: 680px) {
  body.services-page .operations-hero-minimal {
    min-height: clamp(560px, 82svh, 700px);
    grid-template-columns: minmax(0, 1fr);
    background-position: 50% center;
  }

  body.services-page .operations-hero-minimal .subpage-hero-copy {
    min-height: inherit;
    border-right: 0 !important;
    padding: 16px;
  }

  body.services-page .operations-hero-intro h1 {
    margin-bottom: 22px;
    font-size: clamp(48px, 13.9vw, 56px);
    line-height: 0.9;
  }

  body.services-page .operations-hero-intro p {
    width: min(100%, 350px);
    font-size: clamp(22px, 5.98vw, 24px);
    line-height: 1.2;
  }

  body.services-page .service-sort {
    min-height: 75px;
    grid-template-columns: minmax(0, 1fr);
  }

  body.services-page .service-sort .operation-sort-label {
    display: none;
  }

  body.services-page .service-sort .operation-sort-controls {
    flex-wrap: nowrap;
    gap: 8px;
    padding: 16px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  body.services-page .service-sort .operation-sort-controls::-webkit-scrollbar {
    display: none;
  }

  body.services-page .service-sort .operation-sort-controls a {
    min-width: max-content;
    min-height: 43px;
    font-size: 14px;
  }

  body.services-page .services-detail-list .service-editorial-card {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto;
  }

  body.services-page .service-editorial-index {
    min-height: 144px;
    grid-column: 1;
    grid-row: 1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: minmax(58px, auto) minmax(86px, auto);
    border-right: 0;
  }

  body.services-page .service-editorial-index .subpage-list-number {
    grid-column: 1;
    grid-row: 1;
    padding: 16px;
    font-size: 17px;
  }

  body.services-page .service-editorial-meta > div,
  body.services-page .service-editorial-code {
    gap: 7px;
    padding: 16px;
  }

  body.services-page .service-editorial-meta > div:first-child {
    grid-column: 1;
    grid-row: 2;
    border-top: 1px solid var(--services-rule);
  }

  body.services-page .service-editorial-meta > div:last-child {
    grid-column: 2;
    grid-row: 2;
    border-top: 1px solid var(--services-rule);
    border-right: 0;
  }

  body.services-page .service-editorial-code {
    grid-column: 2;
    grid-row: 1;
    align-content: center;
    border-right: 0;
  }

  body.services-page .service-editorial-meta dt,
  body.services-page .service-editorial-meta dd,
  body.services-page .service-editorial-code span,
  body.services-page .service-editorial-code b {
    font-size: 15px;
  }

  body.services-page .services-detail-list .service-editorial-copy {
    min-height: 112px;
    grid-column: 1;
    grid-row: 2;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid var(--services-rule);
    padding: 22px 16px 26px;
  }

  body.services-page .services-detail-list .service-editorial-copy h2 {
    width: min(100%, 350px);
    font-size: clamp(28px, 7.7vw, 32px);
    line-height: 1;
  }

  body.services-page .service-editorial-copy .service-detail-body {
    width: min(100%, 380px);
    margin-top: 16px;
    gap: 10px;
    font-size: 15px;
    line-height: 1.3;
  }

  body.services-page .service-editorial-copy .service-detail-body ul {
    gap: 5px;
  }

  body.services-page .services-detail-list .service-editorial-card .subpage-list-media {
    width: auto;
    height: auto;
    grid-column: 1;
    grid-row: 3;
    align-self: start;
    margin: 0;
    padding: 16px;
    background: transparent;
  }

  body.services-page
    .services-detail-list
    .service-editorial-card
    .subpage-list-media
    img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  body.services-page
    .services-detail-list
    .service-editorial-card:not(:last-child) {
    margin-bottom: 24px;
  }

  body.services-page .services-detail-list .service-editorial-card:hover,
  body.services-page .services-detail-list .service-editorial-card:focus-within {
    background: var(--services-paper);
    color: var(--services-ink);
  }

  body.services-page
    .services-detail-list
    .service-editorial-card:hover
    .service-detail-body,
  body.services-page
    .services-detail-list
    .service-editorial-card:hover
    .service-detail-body *,
  body.services-page
    .services-detail-list
    .service-editorial-card:focus-within
    .service-detail-body,
  body.services-page
    .services-detail-list
    .service-editorial-card:focus-within
    .service-detail-body * {
    color: inherit !important;
  }
}

@media (hover: none), (prefers-reduced-motion: reduce) {
  body.services-page .services-detail-list .service-editorial-card {
    transition: none;
  }
}
