﻿/* production build copy */
:root {
  --ink: #102236;
  --navy: #102236;
  --muted: #637285;
  --line: #dde8ef;
  --soft-blue: #e7f7ff;
  --blue: #5baed0;
  --deep-blue: #1f5d7a;
  --orange: #f47b28;
  --orange-dark: #c85b18;
  --paper: #f6fbfe;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(16, 34, 54, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(91, 174, 208, 0.22), transparent 32rem),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 48%, #ffffff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

img.is-media-fallback {
  object-fit: contain !important;
  padding: 18px;
  background: #ffffff;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  transform: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(16, 34, 54, 0.08);
  backdrop-filter: blur(10px);
  will-change: transform;
  transition: background 0.3s ease, top 0.3s ease, transform 0.32s ease;
}

.site-header.is-scrolled {
  top: 0;
  background: rgba(255, 255, 255, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 128px;
  min-width: 128px;
}

.brand img {
  width: 100%;
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 94px;
  transform: translateX(-72px);
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 94px;
}

.nav-link {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  border-radius: 5px;
  color: #050607;
  font-size: 0.92rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-link.is-active {
  color: #050607;
  background: transparent;
  box-shadow: none;
}

.nav-link:hover,
.nav-item:hover > .nav-link,
.nav-link.is-active:hover {
  color: #ffffff;
  background: #37649b;
  box-shadow: 0 14px 30px rgba(55, 100, 155, 0.22);
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 70;
  display: grid;
  min-width: 338px;
  padding: 8px 0;
  background: #ffffff;
  box-shadow: 0 24px 58px rgba(16, 34, 54, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-item:hover .nav-menu,
.nav-item:focus-within .nav-menu,
.nav-item.is-hovered .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-menu a {
  display: block;
  padding: 18px;
  color: #111;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
}

.nav-menu a:hover {
  color: #37649b;
  background: #f3f7fb;
  padding-left: 24px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--soft-blue);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--deep-blue);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 330px);
  gap: 42px;
  align-items: end;
  padding: 150px max(24px, calc((100vw - 1240px) / 2)) 70px 2cm;
  overflow: hidden;
  color: var(--ink);
}

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

.hero-media {
  transform: scale(1.005);
  animation: heroDrift 16s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.05) brightness(1.02) saturate(1.03);
}

.hero-overlay {
  background:
    radial-gradient(circle at 82% 12%, rgba(244, 123, 40, 0.14), transparent 22rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.34) 38%, rgba(255, 255, 255, 0.08) 72%, rgba(255, 255, 255, 0.02) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.38) 92%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 24%;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.82));
  pointer-events: none;
}

.page-main {
  background: linear-gradient(180deg, #ffffff 0%, #f6fbfe 48%, #ffffff 100%);
}

.page-hero {
  position: relative;
  min-height: 470px;
  display: grid;
  align-items: end;
  padding: 170px max(24px, calc((100vw - 1120px) / 2)) 74px;
  overflow: hidden;
  color: var(--white);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 34, 54, 0.82), rgba(16, 34, 54, 0.42) 52%, rgba(244, 123, 40, 0.16)),
    var(--page-image, url("assets/sector-industrie-1600.webp")) center / cover;
  transform: scale(1.04);
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, transparent, #ffffff);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
}

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

.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.7rem, 6.8vw, 6rem);
  font-weight: 950;
  line-height: 0.94;
  text-transform: uppercase;
}

.page-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  color: #d9eef7;
  font-size: 1.08rem;
}

.page-content {
  display: grid;
  grid-template-columns: minmax(230px, 300px) minmax(0, 1fr);
  gap: 36px;
  padding: 72px max(24px, calc((100vw - 1120px) / 2)) 104px;
}

.page-side {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 10px;
  align-self: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(16, 34, 54, 0.09);
  backdrop-filter: blur(12px);
}

.page-side a {
  display: block;
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 850;
}

.page-side a:hover,
.page-side a.is-current {
  color: var(--white);
  background: var(--deep-blue);
}

.page-article {
  display: grid;
  gap: 22px;
}

.page-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 52px rgba(16, 34, 54, 0.08);
}

.page-card h2,
.page-card h3 {
  margin: 0 0 12px;
  line-height: 1.05;
  text-transform: uppercase;
}

.page-card h2 {
  font-size: clamp(1.65rem, 3vw, 2.8rem);
}

.page-card h3 {
  font-size: 1.18rem;
}

.page-card p {
  margin: 0;
  color: var(--muted);
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.page-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-weight: 650;
}

.page-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
}

.page-image-card {
  min-height: 280px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--page-image, url("assets/sector-industrie-1600.webp")) center / cover;
  box-shadow: 0 24px 70px rgba(16, 34, 54, 0.14);
}

.enterprise-main {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(244, 123, 40, 0.13), transparent 26rem),
    radial-gradient(circle at 90% 52%, rgba(91, 174, 208, 0.18), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #f3faff 45%, #ffffff 100%);
}

.enterprise-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(280px, 360px);
  gap: 34px;
  align-items: center;
  min-height: 720px;
  padding: 138px max(24px, calc((100vw - 1180px) / 2)) 82px;
  color: var(--white);
}

.enterprise-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  z-index: 1;
  background: linear-gradient(180deg, transparent, #ffffff);
  pointer-events: none;
}

.enterprise-hero-media,
.enterprise-hero-media::after {
  position: absolute;
  inset: 0;
}

.enterprise-hero-media {
  overflow: hidden;
  background: #102236;
}

.enterprise-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  filter: saturate(1.08) contrast(1.08) brightness(0.92);
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.enterprise-hero-media::after {
  content: "";
  background:
    radial-gradient(circle at 22% 34%, rgba(244, 123, 40, 0.22), transparent 18rem),
    radial-gradient(circle at 88% 18%, rgba(91, 174, 208, 0.2), transparent 24rem),
    linear-gradient(90deg, rgba(16, 34, 54, 0.92) 0%, rgba(16, 34, 54, 0.72) 44%, rgba(16, 34, 54, 0.38) 100%),
    linear-gradient(180deg, rgba(16, 34, 54, 0.22) 0%, rgba(16, 34, 54, 0.42) 100%);
}

.enterprise-hero-copy,
.enterprise-hero-card {
  position: relative;
  z-index: 2;
}

.enterprise-hero-copy {
  max-width: 780px;
}

.enterprise-hero-copy .eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.enterprise-hero-copy h1 {
  max-width: 810px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.8rem);
  font-weight: 950;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.enterprise-hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.15rem, 2.2vw, 1.8rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.25;
}

.enterprise-tagline {
  display: inline-flex;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
}

.enterprise-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.enterprise-actions a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(12px);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.enterprise-actions a:first-child,
.enterprise-actions a:hover {
  background: var(--orange);
  box-shadow: 0 18px 38px rgba(244, 123, 40, 0.3);
  transform: translateY(-3px);
}

.enterprise-hero-card {
  justify-self: end;
  width: min(100%, 430px);
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  box-shadow: 0 34px 80px rgba(16, 34, 54, 0.18);
  backdrop-filter: blur(18px);
  animation: floatSoft 5.6s ease-in-out infinite alternate;
}

.enterprise-hero-card span {
  display: block;
  color: var(--muted);
  font-weight: 850;
}

.enterprise-hero-card strong {
  display: block;
  margin: 8px 0 12px;
  color: var(--orange);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 0.96;
}

.enterprise-hero-card p {
  margin: 0;
  color: var(--orange);
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  font-weight: 950;
  line-height: 1.28;
}

.enterprise-section {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.enterprise-numbers {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: -34px;
}

.enterprise-numbers div {
  min-height: 136px;
  padding: 26px;
  border: 1px solid rgba(221, 232, 239, 0.92);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 54px rgba(16, 34, 54, 0.1);
}

.enterprise-numbers strong {
  display: block;
  color: var(--deep-blue);
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  line-height: 1;
}

.enterprise-numbers span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 750;
}

.enterprise-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.74fr);
  gap: 42px;
  align-items: center;
  padding: 96px 0 70px;
}

.enterprise-panel {
  position: relative;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 70px rgba(16, 34, 54, 0.09);
}

.enterprise-panel::before {
  content: "";
  position: absolute;
  left: 42px;
  bottom: 0;
  width: 112px;
  height: 6px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--orange), var(--deep-blue));
}

.enterprise-panel h2,
.enterprise-process h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 3.35vw, 3.05rem);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.enterprise-panel h2 span,
.enterprise-process h2 span {
  display: block;
  white-space: nowrap;
}

.enterprise-panel p {
  margin: 22px 0 0;
  color: #405c78;
  font-size: 1.04rem;
}

.enterprise-photo-stack {
  position: relative;
  min-height: 420px;
}

.enterprise-photo-stack img {
  position: absolute;
  width: 76%;
  height: 280px;
  object-fit: cover;
  border: 10px solid #ffffff;
  border-radius: 26px;
  box-shadow: 0 28px 70px rgba(16, 34, 54, 0.18);
}

.enterprise-photo-stack img:first-child {
  top: 0;
  right: 0;
}

.enterprise-photo-stack img:last-child {
  left: 0;
  bottom: 0;
}

.enterprise-strengths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 8px 0 84px;
}

.enterprise-strength,
.enterprise-link {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 56px rgba(16, 34, 54, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.enterprise-strength {
  min-height: 260px;
  padding: 30px;
}

.enterprise-strength::before,
.enterprise-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(244, 123, 40, 0.1), transparent 42%, rgba(91, 174, 208, 0.12));
  opacity: 0;
  transition: opacity 0.28s ease;
}

.enterprise-strength:hover,
.enterprise-link:hover {
  border-color: rgba(244, 123, 40, 0.38);
  box-shadow: 0 26px 72px rgba(16, 34, 54, 0.14);
  transform: translateY(-8px);
}

.enterprise-strength:hover::before,
.enterprise-link:hover::before {
  opacity: 1;
}

.enterprise-strength span,
.enterprise-link span {
  position: relative;
  display: inline-grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--deep-blue);
  font-size: 0.88rem;
  font-weight: 950;
  box-shadow: 0 14px 28px rgba(31, 93, 122, 0.2);
}

.enterprise-strength h3 {
  position: relative;
  margin: 28px 0 12px;
  font-size: 1.35rem;
  line-height: 1.08;
  text-transform: uppercase;
}

.enterprise-strength p {
  position: relative;
  margin: 0;
  color: var(--muted);
}

.enterprise-process {
  display: grid;
  grid-template-columns: minmax(330px, 0.68fr) minmax(0, 1.32fr);
  gap: 78px;
  align-items: center;
  padding: 44px;
  border: 1px solid rgba(221, 232, 239, 0.9);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(231, 247, 255, 0.56)),
    #ffffff;
  box-shadow: 0 24px 70px rgba(16, 34, 54, 0.1);
}

.enterprise-process h2 {
  max-width: 390px;
  font-size: clamp(1.62rem, 2.16vw, 2.18rem);
  line-height: 1.08;
}

.enterprise-process .section-kicker {
  margin-bottom: 18px;
  font-size: clamp(0.96rem, 1.28vw, 1.16rem);
  letter-spacing: 0.16em;
}

.enterprise-process ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: enterprise-step;
}

.enterprise-process li {
  position: relative;
  display: grid;
  gap: 4px;
  min-height: 84px;
  padding: 18px 18px 18px 72px;
  border: 1px solid rgba(221, 232, 239, 0.84);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 40px rgba(16, 34, 54, 0.06), 0 0 0 rgba(244, 123, 40, 0);
  animation: methodCardFloat 5.8s ease-in-out infinite, methodOrangeGlow 4.5s ease-in-out infinite;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.enterprise-process li:nth-child(2) {
  animation-delay: -0.7s, -0.7s;
}

.enterprise-process li:nth-child(3) {
  animation-delay: -1.4s, -1.4s;
}

.enterprise-process li:nth-child(4) {
  animation-delay: -2.1s, -2.1s;
}

.enterprise-process li:hover {
  transform: translateX(8px);
  border-color: rgba(244, 123, 40, 0.44);
  box-shadow: 0 24px 56px rgba(16, 34, 54, 0.12), 0 18px 42px rgba(244, 123, 40, 0.28);
}

.enterprise-process li::before {
  counter-increment: enterprise-step;
  content: counter(enterprise-step);
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--orange);
  font-weight: 950;
}

.enterprise-process strong {
  color: var(--ink);
  font-size: 1.02rem;
  text-transform: uppercase;
}

.enterprise-process span {
  color: var(--muted);
}

.enterprise-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 72px 0 110px;
}

.enterprise-link {
  display: grid;
  gap: 18px;
  min-height: 220px;
  padding: 28px;
}

.enterprise-link strong,
.enterprise-link small {
  position: relative;
}

.enterprise-link strong {
  color: var(--ink);
  font-size: 1.32rem;
  line-height: 1.08;
  text-transform: uppercase;
}

.enterprise-link small {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.activities-main {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 14%, rgba(244, 123, 40, 0.14), transparent 24rem),
    radial-gradient(circle at 92% 34%, rgba(91, 174, 208, 0.18), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f3faff 46%, #ffffff 100%);
}

.activities-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(430px, 1fr);
  gap: 42px;
  align-items: center;
  min-height: 760px;
  padding: 150px max(24px, calc((100vw - 1180px) / 2)) 76px;
}

.activities-hero::before {
  content: "";
  position: absolute;
  top: 116px;
  right: max(18px, calc((100vw - 1180px) / 2));
  width: min(42vw, 520px);
  height: min(42vw, 520px);
  border: 1px solid rgba(91, 174, 208, 0.26);
  border-radius: 50%;
  background: rgba(231, 247, 255, 0.35);
  filter: blur(0.2px);
}

.activities-hero-copy,
.activities-hero-media {
  position: relative;
  z-index: 1;
}

.activities-hero-copy .eyebrow {
  color: var(--orange);
}

.activity-eyebrow-strong,
.sectors-page-section .section-heading .eyebrow,
.projects-main .showcase-copy .eyebrow,
.commitments-main .showcase-copy .eyebrow,
.career-hero-copy .eyebrow {
  font-size: clamp(1.12rem, 1.58vw, 1.5rem);
  letter-spacing: 0.13em;
}

.activities-hero-copy .activity-eyebrow-strong,
.activities-method .activity-eyebrow-strong {
  font-size: clamp(1.24rem, 1.78vw, 1.68rem);
}

.activities-hero-copy h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3rem, 8.2vw, 6.25rem);
  font-weight: 950;
  line-height: 0.84;
  text-transform: uppercase;
}

.activities-hero-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 26px 0 0;
  color: #405c78;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.6;
}

.activities-hero-media {
  min-height: 450px;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 34px 88px rgba(16, 34, 54, 0.18);
  transform: rotate(-1.2deg);
}

.activities-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 34, 54, 0.04), rgba(16, 34, 54, 0.34)),
    radial-gradient(circle at 76% 18%, rgba(244, 123, 40, 0.22), transparent 18rem);
}

.activities-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: imagePan 14s ease-in-out infinite alternate;
}

.activities-media-note {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
  display: grid;
  gap: 4px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 24px;
  color: var(--white);
  background: rgba(16, 34, 54, 0.64);
  backdrop-filter: blur(12px);
}

.activities-media-note span {
  color: #ffd5bd;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.activities-media-note strong {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.08;
}

.activities-intro,
.activities-grid,
.activities-method {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.activities-intro {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  padding: 32px 36px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(16, 34, 54, 0.08);
}

.activities-intro span {
  color: var(--orange);
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.activities-intro p {
  margin: 0;
  color: #405c78;
  font-size: 1.05rem;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 72px 0 70px;
}

.activity-tile {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(16, 34, 54, 0.08);
  border-radius: 30px;
  background: var(--ink);
  box-shadow: 0 22px 64px rgba(16, 34, 54, 0.12);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.activity-tile:nth-child(even) {
  transform: translateY(28px);
}

.activity-tile:hover {
  box-shadow: 0 34px 86px rgba(16, 34, 54, 0.2);
  transform: translateY(-8px);
}

.activity-tile:nth-child(even):hover {
  transform: translateY(18px);
}

.activity-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.04);
  transition: transform 0.42s ease, filter 0.42s ease;
}

.activity-tile:hover img {
  filter: saturate(1.1) contrast(1.08);
  transform: scale(1.08);
}

.activity-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 34, 54, 0.06), rgba(16, 34, 54, 0.78)),
    radial-gradient(circle at 80% 12%, rgba(244, 123, 40, 0.26), transparent 14rem);
}

.activity-tile span,
.activity-tile h2 {
  position: absolute;
  z-index: 1;
}

.activity-tile span {
  top: 22px;
  left: 22px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 999px;
  color: var(--orange);
  background: rgba(255, 255, 255, 0.9);
  font-weight: 950;
}

.activity-tile h2 {
  right: 22px;
  bottom: 22px;
  left: 22px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.28rem, 2.1vw, 2rem);
  line-height: 1.02;
  text-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
  text-transform: uppercase;
}

.activities-method {
  display: grid;
  grid-template-columns: minmax(440px, 0.82fr) minmax(0, 1.08fr);
  gap: 76px;
  align-items: start;
  margin-bottom: 110px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(231, 247, 255, 0.62)),
    #ffffff;
  box-shadow: 0 24px 70px rgba(16, 34, 54, 0.1);
}

.activities-method h2 {
  margin: 0;
  color: var(--ink);
  max-width: 500px;
  font-size: clamp(2.1rem, 2.85vw, 2.68rem);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.activities-method h2 span {
  white-space: nowrap;
}

.activities-method ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.activities-method li {
  display: grid;
  gap: 5px;
  padding: 20px 22px;
  border: 1px solid rgba(221, 232, 239, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 16px 40px rgba(16, 34, 54, 0.06), 0 0 0 rgba(244, 123, 40, 0);
  animation: methodCardFloat 5.6s ease-in-out infinite, methodOrangeGlow 4.4s ease-in-out infinite;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.activities-method li:nth-child(2) {
  animation-delay: -0.8s, -0.8s;
}

.activities-method li:nth-child(3) {
  animation-delay: -1.6s, -1.6s;
}

.activities-method li:hover {
  transform: translateX(8px);
  border-color: rgba(244, 123, 40, 0.44);
  box-shadow: 0 24px 56px rgba(16, 34, 54, 0.12), 0 18px 42px rgba(244, 123, 40, 0.28);
}

.activities-method strong {
  color: var(--deep-blue);
  font-size: 1.05rem;
  text-transform: uppercase;
}

.activities-method span {
  color: var(--muted);
}

.showcase-main {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(244, 123, 40, 0.13), transparent 24rem),
    radial-gradient(circle at 92% 38%, rgba(91, 174, 208, 0.16), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #f3faff 48%, #ffffff 100%);
}

.showcase-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.78fr);
  gap: 42px;
  align-items: center;
  padding: 152px max(24px, calc((100vw - 1180px) / 2)) 76px;
}

.showcase-copy h1,
.career-hero-copy h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3rem, 8.4vw, 6.4rem);
  font-weight: 950;
  line-height: 0.88;
  text-transform: uppercase;
}

.projects-main .showcase-copy h1,
.commitments-main .showcase-copy h1 {
  max-width: 760px;
  font-size: clamp(2.55rem, 6.25vw, 5.05rem);
}

.commitments-main .showcase-copy h1 {
  font-size: clamp(2.25rem, 5vw, 4.2rem);
}

.showcase-copy p:not(.eyebrow),
.career-hero-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: #405c78;
  font-size: clamp(1.02rem, 1.55vw, 1.22rem);
  line-height: 1.66;
}

.showcase-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 32px 88px rgba(16, 34, 54, 0.18);
  transform: rotate(1deg);
}

.showcase-visual img,
.commitment-visual img,
.career-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-visual img {
  animation: imagePan 14s ease-in-out infinite alternate;
}

.showcase-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 34, 54, 0.05), rgba(16, 34, 54, 0.42));
}

.showcase-visual div {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
  display: grid;
  gap: 4px;
  padding: 20px;
  border-radius: 22px;
  color: var(--white);
  background: rgba(16, 34, 54, 0.66);
  backdrop-filter: blur(12px);
}

.showcase-visual span {
  color: #ffd5bd;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.showcase-visual strong {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.08;
}

.project-stat-band,
.project-gallery,
.commitment-path,
.commitment-pillars,
.career-actions,
.career-values {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.project-stat-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: -18px;
}

.project-stat-band div,
.commitment-path a,
.career-actions a {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 64px rgba(16, 34, 54, 0.09);
}

.project-stat-band div {
  padding: 24px;
}

.project-stat-band strong {
  display: block;
  color: var(--orange);
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
  line-height: 1;
}

.project-stat-band span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 70px 0 110px;
}

.project-showcase-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--ink);
  box-shadow: 0 24px 68px rgba(16, 34, 54, 0.13);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-showcase-card.is-large {
  grid-column: span 2;
}

.project-showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 86px rgba(16, 34, 54, 0.2);
}

.project-showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.42s ease, filter 0.42s ease;
}

.project-showcase-card:hover img {
  filter: saturate(1.06) contrast(1.06);
  transform: scale(1.07);
}

.project-showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 34, 54, 0.03), rgba(16, 34, 54, 0.82)),
    radial-gradient(circle at 88% 14%, rgba(244, 123, 40, 0.28), transparent 14rem);
}

.project-showcase-card div {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
}

.project-showcase-card span {
  color: #ffd5bd;
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-showcase-card h2 {
  margin: 10px 0 8px;
  color: var(--white);
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  line-height: 1.04;
  text-transform: uppercase;
}

.project-showcase-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 750;
}

.commitments-hero {
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.9fr);
}

.commitment-visual {
  position: relative;
  min-height: 440px;
}

.commitment-visual img {
  position: absolute;
  overflow: hidden;
  border: 10px solid #ffffff;
  border-radius: 28px;
  box-shadow: 0 28px 76px rgba(16, 34, 54, 0.18);
}

.commitment-visual img:first-child {
  top: 0;
  right: 0;
  width: 78%;
  height: 300px;
}

.commitment-visual img:last-child {
  bottom: 0;
  left: 0;
  width: 52%;
  height: 210px;
}

.commitment-path {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.commitment-path a,
.career-actions a {
  display: grid;
  gap: 12px;
  min-height: 180px;
  padding: 28px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.commitment-path a:hover,
.career-actions a:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 78px rgba(16, 34, 54, 0.15);
}

.commitment-path span,
.career-actions span {
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.commitment-path strong,
.career-actions strong {
  color: var(--ink);
  font-size: clamp(1.4rem, 2.4vw, 2.15rem);
  line-height: 1.04;
  text-transform: uppercase;
}

.commitment-path small {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.commitment-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 70px 0 110px;
}

.commitment-pillar,
.career-value {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 64px rgba(16, 34, 54, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.commitment-pillar:hover,
.career-value:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 78px rgba(16, 34, 54, 0.15);
}

.commitment-pillar span,
.career-value span {
  color: var(--orange);
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.commitment-pillar h2,
.career-value h2 {
  margin: 28px 0 14px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.04;
  text-transform: uppercase;
}

.commitment-pillar p,
.career-value p {
  margin: 0;
  color: var(--muted);
}

.career-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 0.9fr);
  gap: 44px;
  align-items: center;
  padding: 152px max(24px, calc((100vw - 1180px) / 2)) 76px;
}

.career-hero-image {
  height: 460px;
  min-height: 0;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 32px 88px rgba(16, 34, 54, 0.18);
  transform: rotate(-1deg);
  background: #dff3fb;
}

.career-hero-image img {
  object-position: center;
  height: 100%;
}

.career-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.career-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 70px 0 110px;
}

.hr-policy-main {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 16%, rgba(244, 123, 40, 0.14), transparent 26rem),
    radial-gradient(circle at 88% 34%, rgba(91, 174, 208, 0.18), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #f3faff 48%, #ffffff 100%);
}

.hr-policy-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 0.9fr);
  gap: 44px;
  align-items: center;
  padding: 152px max(24px, calc((100vw - 1180px) / 2)) 76px;
}

.hr-policy-copy h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3rem, 8.1vw, 6.15rem);
  font-weight: 950;
  line-height: 0.88;
  text-transform: uppercase;
}

.hr-policy-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: #405c78;
  font-size: clamp(1.02rem, 1.55vw, 1.22rem);
  line-height: 1.66;
}

.hr-policy-visual {
  position: relative;
  height: 450px;
  overflow: hidden;
  border-radius: 34px;
  background: #dff3fb;
  box-shadow: 0 32px 88px rgba(16, 34, 54, 0.18);
  transform: rotate(1deg);
}

.hr-policy-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hr-policy-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 34, 54, 0.02), rgba(16, 34, 54, 0.36));
}

.hr-policy-visual div {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
  display: grid;
  gap: 6px;
  padding: 20px;
  border-radius: 22px;
  color: var(--white);
  background: rgba(16, 34, 54, 0.66);
  backdrop-filter: blur(12px);
}

.hr-policy-visual span {
  color: #ffd5bd;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hr-policy-visual strong {
  font-size: clamp(1.12rem, 2vw, 1.6rem);
  line-height: 1.08;
}

.hr-policy-intro,
.hr-policy-grid,
.hr-policy-cta {
  width: min(1360px, calc(100% - 44px));
  margin: 0 auto;
}

.hr-policy-intro {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 32px 36px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(16, 34, 54, 0.08);
}

.hr-policy-intro span {
  color: var(--orange);
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hr-policy-intro p {
  margin: 0;
  color: #405c78;
  font-size: 1.05rem;
}

.hr-policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  padding: 82px 0 88px;
}

.hr-axis-card {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 26px 74px rgba(16, 34, 54, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.hr-axis-card:hover {
  border-color: rgba(244, 123, 40, 0.34);
  transform: translateY(-10px);
  box-shadow: 0 36px 92px rgba(244, 123, 40, 0.2), 0 28px 72px rgba(16, 34, 54, 0.14);
}

.hr-axis-card img {
  width: 100%;
  aspect-ratio: 2.18 / 1;
  height: auto;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.03) contrast(1.02);
}

.hr-axis-card div {
  display: grid;
  align-content: center;
  padding: 34px 38px 40px;
}

.hr-axis-card span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--orange);
  font-weight: 950;
}

.hr-axis-card h2 {
  margin: 26px 0 14px;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.35vw, 2.15rem);
  line-height: 1.04;
  text-transform: uppercase;
}

.hr-axis-card p {
  margin: 0;
  color: var(--muted);
}

.hr-policy-cta {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 110px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(231, 247, 255, 0.68)),
    #ffffff;
  box-shadow: 0 24px 70px rgba(16, 34, 54, 0.1);
}

.hr-policy-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.hr-policy-cta a {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  color: var(--white);
  background: var(--orange);
  font-weight: 950;
  box-shadow: 0 18px 38px rgba(244, 123, 40, 0.28);
}

.dg-main {
  min-height: 100vh;
  padding: 124px max(22px, calc((100vw - 1180px) / 2)) 64px;
  background: #ffffff;
}

.dg-message {
  color: #070b12;
}

.dg-message h1 {
  margin: 0 0 28px;
  font-size: clamp(2.1rem, 4.4vw, 3.1rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: 0;
  text-shadow: 2px 2px 0 rgba(31, 93, 122, 0.32);
}

.dg-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 4vw, 54px);
  align-items: start;
}

.dg-copy {
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.43;
  letter-spacing: 0.09em;
  text-align: justify;
}

.dg-copy p {
  margin: 0 0 25px;
}

.dg-photo {
  float: left;
  width: min(250px, 43%);
  aspect-ratio: 1 / 0.96;
  margin: 0 24px 8px 0;
  object-fit: cover;
  box-shadow: 0 16px 36px rgba(16, 34, 54, 0.16);
}

.dg-signature {
  width: min(320px, 78%);
  margin: 28px 0 0 auto;
  object-fit: contain;
}

.solution-main {
  min-height: 100vh;
  padding: 126px max(22px, calc((100vw - 1160px) / 2)) 72px;
  background: #ffffff;
}

.solution-page {
  max-width: 1160px;
  margin: 0 auto;
}

.solution-hero-image {
  width: 100%;
  max-height: 462px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 46px;
  box-shadow: 0 16px 42px rgba(16, 34, 54, 0.08);
}

.solution-page h1 {
  margin: 0;
  color: #050607;
  font-size: clamp(2.35rem, 4.5vw, 3.1rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: 0;
  text-shadow: 2px 2px 0 rgba(31, 93, 122, 0.32);
}

.solution-divider {
  display: block;
  width: 100%;
  height: 7px;
  margin: 24px 0 22px;
  background: #366092;
}

.solution-copy {
  color: #050607;
  font-size: clamp(1.02rem, 1.55vw, 1.32rem);
  line-height: 1.48;
  letter-spacing: 0.06em;
}

.solution-copy p {
  margin: 0 0 18px;
}

.solution-copy h2 {
  margin: 28px 0 8px;
  color: #050607;
  font-size: clamp(1.35rem, 2.2vw, 1.72rem);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: 0.02em;
}

.solution-copy strong {
  font-weight: 950;
}

.solution-copy ul {
  margin: 4px 0 20px;
  padding-left: 28px;
}

.solution-copy li {
  margin: 4px 0;
}

.legacy-main {
  min-height: 100vh;
  padding: 126px max(22px, calc((100vw - 1320px) / 2)) 72px;
  background: #ffffff;
}

.legacy-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1fr);
  gap: 32px;
  align-items: start;
}

.legacy-grid.is-reversed {
  grid-template-columns: minmax(420px, 1fr) minmax(360px, 0.98fr);
}

.legacy-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.legacy-gallery img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.legacy-gallery img:first-child {
  grid-column: 1 / -1;
  height: 470px;
}

.legacy-copy {
  color: #050607;
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  line-height: 1.58;
  letter-spacing: 0.06em;
  text-align: justify;
}

.legacy-copy h1 {
  margin: 0 0 8px;
  color: #050607;
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: 0;
  text-align: left;
  text-shadow: 2px 2px 0 rgba(31, 93, 122, 0.32);
}

.legacy-copy h2 {
  margin: 28px 0 16px;
  font-size: clamp(1.32rem, 2vw, 1.7rem);
  line-height: 1.15;
  font-weight: 950;
  letter-spacing: 0.02em;
}

.legacy-copy p {
  margin: 0 0 20px;
}

.legacy-copy ul {
  margin: 18px 0 0;
  padding-left: 32px;
}

.legacy-copy li {
  margin: 8px 0;
}

.rh-main {
  min-height: 100vh;
  padding: 126px max(22px, calc((100vw - 1520px) / 2)) 72px;
  background: #ffffff;
}

.rh-heading {
  display: grid;
  justify-items: center;
  gap: 28px;
  margin-bottom: 36px;
  text-align: center;
}

.rh-heading h1 {
  margin: 0;
  color: #050607;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: 0.03em;
  text-shadow: 2px 2px 0 rgba(31, 93, 122, 0.32);
  text-transform: uppercase;
}

.rh-heading span,
.recruitment-title::before,
.recruitment-title::after {
  display: block;
  height: 7px;
  background: #444;
}

.rh-heading span {
  width: 190px;
}

.rh-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(520px, 1.55fr);
  gap: 30px;
  align-items: start;
}

.rh-intro img,
.rh-panel img {
  width: 100%;
  object-fit: cover;
}

.rh-intro img {
  height: 370px;
}

.rh-intro p {
  margin: 36px 0 0;
  color: #050607;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.52;
  letter-spacing: 0.06em;
  text-align: justify;
}

.rh-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
}

.rh-tabs a {
  border: 1px solid #d8d8d8;
  border-bottom: 0;
  padding: 20px 28px;
  background: #eeeeee;
  color: #050607;
  font-size: clamp(1rem, 1.35vw, 1.24rem);
  letter-spacing: 0.04em;
}

.rh-tabs a.is-active {
  background: #ffffff;
}

.rh-panel {
  border: 1px solid #e6e6e6;
  padding: 18px;
}

.rh-panel img {
  height: 480px;
}

.rh-panel h2 {
  margin: 24px 0 10px;
  color: #050607;
  font-size: 1.35rem;
}

.rh-panel p {
  margin: 0 0 20px;
  color: #050607;
  font-size: 1.02rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.recruitment-main {
  min-height: 100vh;
  padding: 126px max(22px, calc((100vw - 1500px) / 2)) 72px;
  background: #ffffff;
}

.recruitment-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 44px;
  margin: 0 0 46px;
  padding: 30px 0;
  background: #fdfdfd;
  color: #050607;
  font-size: clamp(1.55rem, 2.3vw, 2rem);
  line-height: 1.1;
  font-weight: 950;
  text-align: center;
  text-shadow: 2px 2px 0 rgba(31, 93, 122, 0.28);
}

.recruitment-title::before,
.recruitment-title::after {
  content: "";
  height: 1px;
  background: var(--orange);
}

.recruitment-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 30px;
  color: #050607;
  font-size: clamp(1rem, 1.35vw, 1.24rem);
  letter-spacing: 0.03em;
}

.recruitment-field {
  display: grid;
  gap: 8px;
}

.recruitment-field input,
.recruitment-field textarea {
  width: 100%;
  min-height: 56px;
  border: 1px solid #e6e6e6;
  background: #fbfbfb;
  color: #050607;
  font: inherit;
  padding: 10px 14px;
}

.recruitment-field textarea {
  min-height: 164px;
  resize: vertical;
}

.recruitment-field input[type="file"] {
  padding: 12px;
}

.recruitment-submit {
  justify-self: start;
  border: 0;
  border-radius: 999px;
  padding: 14px 34px;
  background: var(--orange);
  color: #ffffff;
  font-weight: 850;
}

.sapem-realisation-page {
  padding: 150px max(24px, calc((100vw - 1220px) / 2)) 92px;
  background: #ffffff;
}

.realisation-page-heading {
  display: grid;
  justify-items: center;
  gap: 28px;
  margin-bottom: 70px;
  text-align: center;
}

.realisation-page-heading h1 {
  max-width: 1120px;
  margin: 0;
  color: #111827;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: 0;
}

.realisation-page-heading span {
  width: 150px;
  height: 7px;
  background: #3f62bd;
}

.sapem-project-list {
  display: grid;
  gap: 0;
}

.sapem-project-row {
  display: grid;
  grid-template-columns: minmax(280px, 470px) minmax(0, 1fr);
  gap: 38px;
  align-items: start;
  padding: 40px 0 52px;
  border-bottom: 1px solid #d7d7d7;
}

.sapem-project-row:first-child {
  padding-top: 0;
}

.sapem-project-row figure {
  margin: 0;
  overflow: hidden;
  background: #f5f7fa;
}

.sapem-project-row img {
  width: 100%;
  height: 315px;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.sapem-project-row:hover img {
  transform: scale(1.045);
  filter: contrast(1.04) saturate(1.05);
}

.sapem-project-row h2 {
  max-width: 820px;
  margin: 18px 0 24px;
  color: #0b1020;
  font-size: clamp(1.26rem, 2.05vw, 2rem);
  font-weight: 950;
  line-height: 1.14;
  letter-spacing: 0;
}

.sapem-project-row p {
  margin: 0 0 6px;
  color: #050607;
  font-size: clamp(1rem, 1.42vw, 1.32rem);
  font-weight: 500;
  line-height: 1.45;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
  justify-self: start;
  margin-left: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.commitment-copy h2,
.cta h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero h1 {
  display: grid;
  max-width: 980px;
  font-size: clamp(3.25rem, 6.55vw, 6rem);
  text-transform: none;
  line-height: 0.96;
  overflow-wrap: anywhere;
}

.hero h1 span:nth-child(2) {
  color: var(--orange);
  -webkit-text-stroke: 0;
}

.hero h1 span:nth-child(3) {
  color: var(--orange);
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: #526678;
  font-size: clamp(1.03rem, 1.55vw, 1.16rem);
}

.hero-eyebrow-strong {
  font-size: clamp(1.08rem, 1.52vw, 1.44rem);
  letter-spacing: 0.12em;
}

.home-eyebrow-strong {
  font-size: clamp(0.98rem, 1.28vw, 1.24rem);
  letter-spacing: 0.12em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-actions .btn {
  min-height: 52px;
  padding-inline: 24px;
  font-size: 1.03rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 14px 32px rgba(244, 123, 40, 0.28);
}

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-ghost {
  color: var(--deep-blue);
  border-color: rgba(31, 93, 122, 0.24);
  background: rgba(255, 255, 255, 0.68);
}

.hero-panel {
  position: relative;
  z-index: 3;
  align-self: end;
  padding: 28px;
  border: 1px solid rgba(31, 93, 122, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel span,
.hero-panel small {
  display: block;
  color: var(--muted);
}

.hero-panel strong {
  display: block;
  margin: 0;
  color: var(--deep-blue);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.1;
}

.section {
  padding: 104px max(24px, calc((100vw - 1120px) / 2));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 span {
  display: block;
}

.commitment-copy h2 span,
.activities-method h2 span {
  display: block;
}

.section-heading h2,
.commitment-copy h2,
.cta h2 {
  font-size: clamp(1.65rem, 3.15vw, 3.55rem);
  text-transform: uppercase;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
}

.intro-image {
  min-height: 520px;
  border-radius: 28px;
  background:
    linear-gradient(0deg, rgba(16, 34, 54, 0.18), rgba(16, 34, 54, 0.18)),
    url("https://images.unsplash.com/photo-1565008447742-97f6f38c985c?auto=format&fit=crop&w=1000&q=80") center / cover;
  box-shadow: var(--shadow);
}

.intro-text {
  display: grid;
  gap: 18px;
  color: #40566b;
  font-size: 1rem;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.stat {
  padding: 48px 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.86);
}

.stat strong {
  display: block;
  color: var(--deep-blue);
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1;
}

.stat strong::before {
  content: "+";
  color: var(--orange);
}

.stat span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
}

.services {
  background:
    linear-gradient(180deg, #ffffff 0%, #eef9fd 100%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 255px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 52px rgba(16, 34, 54, 0.1), 0 0 0 rgba(244, 123, 40, 0);
  animation: cardFloat 7s ease-in-out infinite, orangeCardGlow 3.8s ease-in-out infinite;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-10px) rotate(-0.35deg);
  border-color: rgba(244, 123, 40, 0.45);
  box-shadow: 0 28px 72px rgba(16, 34, 54, 0.18), 0 20px 50px rgba(244, 123, 40, 0.32);
  animation-play-state: paused;
}

.service-card span {
  color: var(--orange);
  font-weight: 900;
}

.service-card .service-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(244, 123, 40, 0.1);
  box-shadow: 0 14px 34px rgba(244, 123, 40, 0.22);
}

.service-card .service-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.service-card h3 {
  margin: 48px 0 12px;
  font-size: 1.18rem;
  line-height: 1.15;
}

.service-card p,
.commitment-copy p,
.cta p {
  color: var(--muted);
}

.sector-slides {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f0f9fd 100%);
}

.sectors-page-section {
  padding-top: 150px;
  padding-bottom: 118px;
}

.sectors-page-section::before {
  display: none;
}

.sectors-page-section .section-heading {
  margin-bottom: 34px;
}

.sectors-page-section .section-heading h1,
.sectors-page-section .section-heading h2 {
  color: var(--ink);
  letter-spacing: 0;
}

.sectors-page-section .sector-card {
  min-height: 350px;
}

.sector-slides::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 9px;
  background: linear-gradient(90deg, var(--orange), #ffb16f, var(--deep-blue));
}

.sector-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.sector-card {
  position: relative;
  isolation: isolate;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid rgba(31, 93, 122, 0.22);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent 38%),
    var(--ink);
  box-shadow:
    0 24px 64px rgba(16, 34, 54, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  animation: sectorFloat 7.5s ease-in-out infinite, sectorBreath 5.4s ease-in-out infinite;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, filter 0.35s ease;
}

.sector-card:nth-child(1) {
  animation-duration: 7.8s;
}

.sector-card:nth-child(2) {
  animation-delay: -1.2s;
  animation-duration: 8.6s;
}

.sector-card:nth-child(3) {
  animation-delay: -2.5s;
  animation-duration: 7.2s;
}

.sector-card:nth-child(4) {
  animation-delay: -3.4s;
  animation-duration: 8.1s;
}

.sector-card:nth-child(5) {
  animation-delay: -4.3s;
  animation-duration: 7.6s;
}

.sector-card:nth-child(6) {
  animation-delay: -5.1s;
  animation-duration: 8.8s;
}

.sector-card:hover {
  transform: translateY(-14px) scale(1.025);
  border-color: rgba(244, 123, 40, 0.62);
  box-shadow:
    0 34px 88px rgba(16, 34, 54, 0.25),
    0 20px 48px rgba(244, 123, 40, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
  animation-play-state: paused;
}

.sector-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: imagePan 13s ease-in-out infinite alternate, sectorImageDrift 9s ease-in-out infinite;
  transition: transform 0.55s ease, filter 0.45s ease;
}

.sector-card:nth-child(1) img {
  object-position: center;
}

.sector-card:nth-child(2) img,
.sector-card:nth-child(6) img {
  object-position: center top;
}

.sector-card:nth-child(4) img {
  object-position: center bottom;
}

.sector-card::before,
.sector-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sector-card::before {
  z-index: 1;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.22) 42%, transparent 58%),
    radial-gradient(circle at 18% 18%, rgba(244, 123, 40, 0.3), transparent 25rem);
  opacity: 0;
  transform: translateX(-42%) skewX(-12deg);
  transition: opacity 0.35s ease, transform 0.55s ease;
}

.sector-card::after {
  z-index: 1;
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.18), transparent 16rem),
    linear-gradient(180deg, rgba(16, 34, 54, 0.02), rgba(16, 34, 54, 0.78)),
    linear-gradient(90deg, rgba(244, 123, 40, 0.16), transparent 58%);
  transition: opacity 0.35s ease;
}

.sector-card:hover::before {
  opacity: 1;
  transform: translateX(42%) skewX(-12deg);
}

.sector-card:hover::after {
  opacity: 0.92;
}

.sector-card:hover img {
  transform: scale(1.16);
  filter: saturate(1.2) contrast(1.08) brightness(1.04);
  animation-play-state: paused;
}

.sector-card h3 {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.02)),
    rgba(16, 34, 54, 0.68);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  line-height: 1.04;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.36);
  transform: translateZ(0);
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.sector-card h3::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: -1px;
  left: 18px;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0.72;
}

.sector-card:hover h3 {
  transform: translateY(-4px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.03)),
    rgba(16, 34, 54, 0.78);
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.28),
    0 10px 30px rgba(244, 123, 40, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.services .section-heading {
  max-width: 1040px;
}

.services .section-heading h2 {
  display: grid;
  gap: 4px;
  font-size: clamp(1.24rem, 2.2vw, 2.52rem);
  line-height: 1.04;
  text-align: center;
}

.services .section-heading h2 span {
  display: block;
  text-wrap: balance;
  white-space: nowrap;
}

.services .section-heading h2 {
  max-width: 1040px;
  margin-inline: auto;
}

.commitments .commitment-copy h2 {
  max-width: 720px;
  font-size: clamp(2rem, 2.38vw, 2.62rem);
  line-height: 1;
}

.commitments .commitment-copy h2 span {
  white-space: nowrap;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

.realisation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.realisation-card {
  position: relative;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 238px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(31, 93, 122, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(231, 247, 255, 0.72)),
    var(--white);
  box-shadow: 0 24px 64px rgba(16, 34, 54, 0.12);
  animation: realisationFloat 8s ease-in-out infinite;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.realisation-card::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -20%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 123, 40, 0.18), transparent 68%);
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.realisation-card:nth-child(2),
.realisation-card:nth-child(3) {
  animation-delay: -2.4s;
}

.realisation-card:nth-child(4) {
  animation-delay: -4.2s;
}

.realisation-card:hover {
  transform: translateY(-12px) scale(1.012);
  border-color: rgba(244, 123, 40, 0.38);
  box-shadow: 0 34px 86px rgba(16, 34, 54, 0.22);
  animation-play-state: paused;
}

.realisation-card:hover::before {
  transform: scale(1.4) translate(18px, 12px);
  opacity: 0.9;
}

.realisation-card figure {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  justify-self: center;
  width: 100%;
  aspect-ratio: 9 / 7;
  height: auto;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(31, 93, 122, 0.22);
}

.realisation-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none;
  animation: none;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.realisation-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.12) contrast(1.06);
}

.realisation-card div {
  position: relative;
  z-index: 1;
}

.realisation-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.realisation-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.45vw, 1.42rem);
  line-height: 1.16;
}

.realisation-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 700;
}

.project-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--ink);
  box-shadow: 0 28px 70px rgba(16, 34, 54, 0.22);
  animation: slideLift 8s ease-in-out infinite;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.project-card.large {
  grid-row: span 2;
  min-height: 700px;
}

.project-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  animation: imagePan 13s ease-in-out infinite alternate;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 34, 54, 0.92), rgba(16, 34, 54, 0.1));
}

.project-card:hover img {
  transform: scale(1.12);
  opacity: 0.92;
  animation-play-state: paused;
}

.project-card:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 34px 86px rgba(16, 34, 54, 0.3);
  animation-play-state: paused;
}

.project-card div {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px;
  color: var(--white);
}

.project-card p {
  margin: 0 0 8px;
  color: var(--orange);
  font-weight: 900;
}

.project-card h3 {
  max-width: 640px;
  margin: 0 0 12px;
  font-size: clamp(1.12rem, 1.55vw, 1.72rem);
  line-height: 1.1;
}

.project-card span {
  color: rgba(255, 255, 255, 0.78);
}

.clients-section {
  overflow: hidden;
  padding: 96px 0 104px;
  background: #ffffff;
}

.clients-heading {
  display: grid;
  justify-items: center;
  gap: 24px;
  margin-bottom: 56px;
}

.clients-heading h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  font-weight: 500;
  letter-spacing: 0;
}

.clients-heading span {
  display: block;
  width: 154px;
  height: 7px;
  background: #435b9c;
}

.clients-marquee {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  user-select: none;
}

.clients-marquee::before,
.clients-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 120px;
  pointer-events: none;
}

.clients-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0));
}

.clients-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff, rgba(255, 255, 255, 0));
}

.clients-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 74px;
  animation: clientLinear 42s linear infinite;
}

.client-logo {
  display: grid;
  width: 160px;
  height: 92px;
  flex: 0 0 auto;
  place-items: center;
  padding: 14px 18px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(16, 34, 54, 0.07);
}

.client-logo img {
  max-width: 128px;
  max-height: 70px;
  object-fit: contain;
  filter: saturate(1.05);
}

.commitments {
  display: grid;
  grid-template-columns: minmax(660px, 0.94fr) minmax(520px, 1.06fr);
  gap: 44px;
  align-items: center;
  padding-inline: max(24px, calc((100vw - 1360px) / 2));
  background: var(--white);
}

.commitment-copy {
  max-width: 720px;
}

.commitment-list {
  display: grid;
  gap: 14px;
}

.commitment {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 112px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(90deg, #ffffff, #f0f9fd);
  box-shadow: 0 18px 44px rgba(16, 34, 54, 0.08), 0 0 0 rgba(244, 123, 40, 0);
  animation: commitmentSoftFloat 5.8s ease-in-out infinite, commitmentOrangePulse 4.2s ease-in-out infinite;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  will-change: translate, box-shadow;
}

.commitment:nth-child(2) {
  animation-delay: -0.8s, -0.8s;
}

.commitment:nth-child(3) {
  animation-delay: -1.6s, -1.6s;
}

.commitment:hover {
  transform: translateX(8px);
  border-color: rgba(244, 123, 40, 0.45);
  box-shadow: 0 24px 62px rgba(16, 34, 54, 0.15), 0 18px 46px rgba(244, 123, 40, 0.35);
}

.commitment strong {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 18px;
  color: var(--white);
  background: var(--deep-blue);
}

.commitment span {
  font-weight: 850;
  line-height: 1.35;
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 480px);
  gap: 48px;
  align-items: start;
  padding: 104px max(24px, calc((100vw - 1120px) / 2));
  background:
    linear-gradient(120deg, rgba(16, 34, 54, 0.94), rgba(31, 93, 122, 0.88)),
    url("https://images.unsplash.com/photo-1496247749665-49cf5b1022e9?auto=format&fit=crop&w=1600&q=80") center / cover;
  color: var(--white);
}

.cta .eyebrow,
.cta p {
  color: #bde7f7;
}

.cta .cta-title {
  max-width: 560px;
  font-size: clamp(2.45rem, 4.25vw, 4.05rem);
  line-height: 1.04;
}

.cta .cta-title span {
  display: block;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font: inherit;
  outline: 0;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) minmax(180px, 0.78fr) minmax(260px, 1.05fr) minmax(160px, 0.62fr);
  gap: 18px;
  align-items: stretch;
  justify-content: space-between;
  padding: 30px max(24px, calc((100vw - 1120px) / 2));
  color: #d7e5ec;
  background: #0b1825;
}

.footer-brand,
.footer-contact,
.footer-location,
.footer-linkedin-card {
  display: grid;
  align-content: center;
  gap: 6px;
  min-height: 118px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.footer-brand strong {
  color: var(--white);
}

.footer-contact span,
.footer-location span,
.footer-linkedin-card span {
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact a {
  color: #d7e5ec;
  font-weight: 800;
}

.footer-contact a:hover {
  color: var(--orange);
}

.footer-location {
  margin: 0;
  color: #d7e5ec;
  font-style: normal;
  text-align: left;
}

.footer-location strong {
  color: var(--white);
  line-height: 1.25;
}

.footer-location small {
  color: #a8c4d2;
}

.footer-linkedin-card {
  color: #d7e5ec;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.footer-linkedin-card strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.2;
}

.footer-linkedin-card svg {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  padding: 5px;
  border-radius: 8px;
  fill: currentColor;
  background: linear-gradient(135deg, #f47b28, #ff9d4e);
  box-shadow: 0 12px 26px rgba(244, 123, 40, 0.28);
}

.footer-linkedin-card:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 123, 40, 0.42);
  background: linear-gradient(135deg, rgba(244, 123, 40, 0.18), rgba(255, 255, 255, 0.08));
  box-shadow: 0 20px 44px rgba(244, 123, 40, 0.18);
}

.statement {
  padding: 72px max(24px, calc((100vw - 1120px) / 2));
  color: var(--white);
  background: var(--ink);
}

.statement p {
  max-width: 1080px;
  margin: 0;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.82);
  font-size: clamp(1.85rem, 4.6vw, 4.8rem);
  font-weight: 950;
  line-height: 0.95;
  text-transform: uppercase;
}

.method {
  padding: 104px max(24px, calc((100vw - 1120px) / 2));
  background: #ffffff;
}

.method-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 40px;
}

.method-heading h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3.15vw, 3.5rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.method-step {
  min-height: 330px;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, var(--soft-blue), #ffffff);
  border: 1px solid var(--line);
  box-shadow: 0 18px 54px rgba(31, 93, 122, 0.1);
  animation: cardFloat 7.5s ease-in-out infinite;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.method-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 74px rgba(31, 93, 122, 0.18);
  animation-play-state: paused;
}

.method-step span {
  color: var(--orange);
  font-weight: 950;
}

.method-step h3 {
  margin: 96px 0 14px;
  font-size: 1.36rem;
  line-height: 1;
}

.method-step p {
  color: var(--muted);
}

.location-card {
  margin-top: 30px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
}

.location-card span,
.location-card small {
  display: block;
  color: #bde7f7;
}

.location-card strong {
  display: block;
  margin: 8px 0;
  font-size: 1.2rem;
  line-height: 1.25;
}

.contact-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.contact-lines a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-weight: 850;
}

.contact-lines a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
}

.contact-linkedin {
  background: linear-gradient(135deg, #f47b28, #ff9d4e) !important;
  box-shadow: 0 14px 34px rgba(244, 123, 40, 0.28);
}

.contact-linkedin svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.top-sticker {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 18px 38px rgba(244, 123, 40, 0.38);
  transition: transform 0.2s ease, background 0.2s ease;
}

.top-sticker:hover {
  transform: translateY(-4px);
  background: var(--orange-dark);
}

.top-sticker span {
  display: block;
  width: 15px;
  height: 15px;
  border-top: 4px solid var(--white);
  border-left: 4px solid var(--white);
  transform: translateY(4px) rotate(45deg);
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, width 0.18s ease, height 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(244, 123, 40, 0.8);
}

.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(31, 93, 122, 0.46);
  border-radius: 50%;
  background: rgba(231, 247, 255, 0.18);
  backdrop-filter: blur(2px);
}

body.cursor-ready .cursor-dot,
body.cursor-ready .cursor-ring {
  opacity: 1;
}

body.cursor-hover .cursor-ring {
  width: 58px;
  height: 58px;
  border-color: rgba(244, 123, 40, 0.72);
  background: rgba(244, 123, 40, 0.1);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.service-card:nth-child(2),
.project-card:nth-child(2),
.method-step:nth-child(2) {
  animation-delay: -1.6s;
}

.service-card:nth-child(3),
.project-card:nth-child(3),
.method-step:nth-child(3) {
  animation-delay: -3.1s;
}

.service-card:nth-child(4) {
  animation-delay: -4.3s;
}

.service-card:nth-child(5) {
  animation-delay: -2.4s;
}

.service-card:nth-child(6) {
  animation-delay: -5.2s;
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translateX(-1%);
  }
  to {
    transform: scale(1.1) translateX(1%);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes clientLinear {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes sectorFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

@keyframes sectorBreath {
  0%,
  100% {
    filter: saturate(1);
  }
  50% {
    filter: saturate(1.08);
  }
}

@keyframes sectorImageDrift {
  0%,
  100% {
    object-position: center center;
  }
  50% {
    object-position: center 46%;
  }
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes orangeCardGlow {
  0%,
  100% {
    box-shadow: 0 18px 52px rgba(16, 34, 54, 0.1), 0 0 0 rgba(244, 123, 40, 0);
  }
  50% {
    box-shadow: 0 28px 72px rgba(16, 34, 54, 0.14), 0 18px 46px rgba(244, 123, 40, 0.28);
  }
}

@keyframes commitmentSoftFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -8px;
  }
}

@keyframes commitmentOrangePulse {
  0%,
  100% {
    box-shadow: 0 18px 44px rgba(16, 34, 54, 0.08), 0 0 0 rgba(244, 123, 40, 0);
  }
  50% {
    box-shadow: 0 26px 64px rgba(16, 34, 54, 0.13), 0 18px 42px rgba(244, 123, 40, 0.3);
  }
}

@keyframes methodCardFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -7px;
  }
}

@keyframes methodOrangeGlow {
  0%,
  100% {
    box-shadow: 0 16px 40px rgba(16, 34, 54, 0.06), 0 0 0 rgba(244, 123, 40, 0);
  }
  50% {
    box-shadow: 0 24px 58px rgba(16, 34, 54, 0.11), 0 16px 38px rgba(244, 123, 40, 0.26);
  }
}

@keyframes floatSoft {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-12px);
  }
}

@keyframes slideLift {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(0.25deg);
  }
}

@keyframes imagePan {
  from {
    transform: scale(1.04) translateX(-1.5%);
  }
  to {
    transform: scale(1.12) translateX(1.5%);
  }
}

@keyframes realisationFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1220px) {
  .commitments {
    grid-template-columns: 1fr;
  }

  .commitments .commitment-copy h2 span {
    white-space: normal;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    transform: none;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 900px;
    align-items: end;
    padding-left: max(24px, 2cm);
    padding-top: 130px;
    padding-bottom: 72px;
  }

  .hero-panel {
    width: min(460px, 100%);
  }

  .intro-grid,
  .commitments,
  .cta,
  .project-grid,
  .realisation-grid,
  .method-heading,
  .page-content,
  .dg-columns,
  .sapem-project-row {
    grid-template-columns: 1fr;
  }

  .page-side {
    position: static;
  }

  .realisation-card {
    grid-template-columns: 170px minmax(0, 1fr);
  }

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .footer-brand,
  .footer-contact,
  .footer-location,
  .footer-linkedin-card {
    min-height: 132px;
    padding: 14px;
    border-radius: 18px;
    font-size: 0.86rem;
  }

  .intro-image,
  .project-card.large {
    min-height: 440px;
  }

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

  .sector-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .sector-card {
    min-height: 230px;
    border-radius: 22px;
  }

  .sector-card h3 {
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-height: 52px;
    border-radius: 14px;
    font-size: 1.08rem;
  }

  .services .section-heading h2 {
    font-size: 1.16rem;
  }

  .services .section-heading h2 span,
  .commitments .commitment-copy h2 span {
    white-space: normal;
  }

  .method-steps {
    grid-template-columns: 1fr;
  }

  .stats-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .enterprise-hero,
  .enterprise-overview,
  .enterprise-process {
    grid-template-columns: 1fr;
  }

  .enterprise-hero {
    min-height: 880px;
    padding-top: 136px;
  }

  .enterprise-hero-card {
    justify-self: start;
  }

  .enterprise-numbers,
  .enterprise-strengths,
  .enterprise-links {
    grid-template-columns: 1fr;
  }

  .enterprise-photo-stack {
    min-height: 360px;
  }

  .enterprise-process {
    padding: 30px;
  }

  .activities-hero,
  .activities-intro,
  .activities-method {
    grid-template-columns: 1fr;
  }

  .activities-hero {
    min-height: auto;
    padding-top: 136px;
  }

  .activities-hero-media {
    min-height: 360px;
  }

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

  .activity-tile:nth-child(even),
  .activity-tile:nth-child(even):hover {
    transform: none;
  }

  .showcase-hero,
  .career-hero {
    grid-template-columns: 1fr;
    padding-top: 136px;
  }

  .showcase-visual,
  .career-hero-image {
    height: 360px;
    min-height: 360px;
    transform: none;
  }

  .project-stat-band,
  .project-gallery,
  .commitment-path,
  .commitment-pillars,
  .career-actions,
  .career-values {
    grid-template-columns: 1fr;
  }

  .project-showcase-card.is-large {
    grid-column: auto;
  }

  .commitment-visual {
    min-height: 360px;
  }

  .hr-policy-hero,
  .hr-policy-intro,
  .hr-policy-grid {
    grid-template-columns: 1fr;
  }

  .hr-policy-hero {
    padding-top: 136px;
  }

  .hr-policy-visual {
    height: 360px;
    transform: none;
  }

  .hr-axis-card {
    grid-template-columns: 1fr;
  }

  .hr-policy-cta {
    display: grid;
  }
}

@media (min-width: 621px) and (max-width: 900px) {
  .site-header {
    width: 100%;
    gap: 8px;
    padding: 8px 10px;
  }

  .brand {
    width: 106px;
    min-width: 106px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .nav-item {
    min-height: 64px;
  }

  .site-nav a {
    padding: 9px 5px;
    font-size: 0.58rem;
    white-space: nowrap;
  }

  .nav-link {
    min-height: 46px;
    gap: 5px;
    padding-inline: 7px;
    letter-spacing: 0.06em;
  }

  .nav-menu {
    min-width: 250px;
  }

  .nav-menu a {
    font-size: 0.92rem;
    padding: 14px 16px;
  }
}

@media (max-width: 620px) {
  .site-header {
    left: 10px;
    width: calc(100% - 20px);
    top: 10px;
  }

  .brand small {
    display: none;
  }

  .brand {
    width: 126px;
    min-width: 126px;
  }

  .nav-item {
    display: block;
    min-height: 0;
  }

  .hero {
    min-height: 780px;
    padding-inline: 18px;
  }

  .hero h1 {
    font-size: 2.42rem;
    line-height: 0.96;
  }

  .section-heading h2,
  .commitment-copy h2,
  .cta h2,
  .method-heading h2 {
    font-size: 1.9rem;
    line-height: 1.04;
  }

  .services .section-heading h2 {
    font-size: 1.03rem;
    line-height: 1.08;
  }

  .statement p {
    font-size: 2.15rem;
  }

  .hero h1 span:nth-child(2) {
    -webkit-text-stroke-width: 1px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-panel {
    right: 18px;
    left: 18px;
    width: auto;
  }

  .section,
  .cta,
  .method,
  .statement,
  .page-content,
  .sapem-realisation-page {
    padding: 72px 18px;
  }

  .sapem-realisation-page {
    padding-top: 132px;
  }

  .realisation-page-heading {
    gap: 20px;
    margin-bottom: 34px;
  }

  .realisation-page-heading span {
    width: 118px;
    height: 6px;
  }

  .sapem-project-row {
    gap: 20px;
    padding: 28px 0 38px;
  }

  .sapem-project-row img {
    height: 220px;
  }

  .page-hero {
    min-height: 420px;
    padding: 132px 18px 62px;
  }

  .dg-main {
    padding: 112px 18px 54px;
  }

  .solution-main {
    padding: 112px 18px 54px;
  }

  .solution-hero-image {
    margin-bottom: 30px;
  }

  .solution-copy {
    letter-spacing: 0.03em;
  }

  .legacy-grid,
  .legacy-grid.is-reversed,
  .rh-layout,
  .recruitment-form {
    grid-template-columns: 1fr;
  }

  .legacy-gallery img:first-child,
  .rh-intro img,
  .rh-panel img {
    height: 320px;
  }

  .dg-message h1 {
    margin-bottom: 22px;
  }

  .dg-copy {
    letter-spacing: 0.04em;
    text-align: left;
  }

  .dg-photo {
    width: min(220px, 48%);
    margin-right: 18px;
  }

  .page-grid {
    grid-template-columns: 1fr;
  }

  .dg-photo {
    float: none;
    width: min(280px, 100%);
    margin: 0 0 20px;
  }

  .dg-copy {
    font-size: 0.98rem;
    letter-spacing: 0.02em;
    line-height: 1.55;
  }

  .solution-copy {
    font-size: 1rem;
    letter-spacing: 0.01em;
    line-height: 1.58;
  }

  .legacy-main,
  .rh-main,
  .recruitment-main {
    padding: 112px 18px 54px;
  }

  .legacy-copy,
  .rh-intro p,
  .rh-panel p {
    letter-spacing: 0.01em;
    text-align: left;
  }

  .legacy-gallery {
    gap: 14px;
  }

  .legacy-gallery img,
  .legacy-gallery img:first-child,
  .rh-intro img,
  .rh-panel img {
    height: 230px;
  }

  .rh-tabs a {
    width: 100%;
    padding: 14px 16px;
  }

  .recruitment-title {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .solution-divider {
    height: 5px;
    margin: 18px 0;
  }

  .dg-signature {
    width: min(300px, 100%);
    margin-left: 0;
  }

  .clients-section {
    padding: 72px 0;
  }

  .clients-heading {
    margin-bottom: 34px;
  }

  .clients-heading h2 {
    font-size: 1.8rem;
  }

  .clients-track {
    gap: 34px;
    animation-duration: 34s;
  }

  .enterprise-hero {
    min-height: 780px;
    padding: 132px 18px 70px;
  }

  .enterprise-hero-copy h1 {
    font-size: 2.55rem;
    line-height: 0.96;
  }

  .enterprise-hero-copy > p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.62;
  }

  .enterprise-actions {
    display: grid;
  }

  .enterprise-actions a {
    width: 100%;
  }

  .enterprise-section {
    width: calc(100% - 36px);
  }

  .enterprise-numbers {
    margin-top: -26px;
  }

  .enterprise-numbers div,
  .enterprise-panel,
  .enterprise-strength,
  .enterprise-link,
  .enterprise-process {
    border-radius: 22px;
  }

  .enterprise-panel,
  .enterprise-process {
    padding: 24px;
  }

  .enterprise-panel h2,
  .enterprise-process h2 {
    font-size: 2rem;
    line-height: 1.02;
  }

  .enterprise-panel h2 span,
  .enterprise-process h2 span {
    white-space: normal;
  }

  .enterprise-overview {
    padding: 68px 0 52px;
  }

  .enterprise-photo-stack {
    min-height: 310px;
  }

  .enterprise-photo-stack img {
    width: 84%;
    height: 210px;
    border-width: 7px;
    border-radius: 20px;
  }

  .enterprise-strengths,
  .enterprise-links {
    padding-bottom: 64px;
  }

  .activities-hero {
    padding: 128px 18px 58px;
  }

  .activities-hero-copy h1 {
    font-size: 2.55rem;
  }

  .activities-hero-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .activities-hero-media {
    min-height: 280px;
    border-radius: 24px;
    transform: none;
  }

  .activities-media-note {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 16px;
    border-radius: 18px;
  }

  .activities-intro,
  .activities-grid,
  .activities-method {
    width: calc(100% - 36px);
  }

  .activities-intro,
  .activities-method {
    padding: 24px;
    border-radius: 22px;
  }

  .activities-grid {
    grid-template-columns: 1fr;
    padding: 52px 0;
  }

  .activity-tile {
    min-height: 280px;
    border-radius: 24px;
  }

  .activities-method {
    margin-bottom: 72px;
  }

  .activities-method h2 {
    font-size: 2rem;
    line-height: 1.04;
  }

  .activities-method h2 span {
    white-space: normal;
  }

  .showcase-hero,
  .career-hero {
    padding: 128px 18px 58px;
  }

  .showcase-copy h1,
  .career-hero-copy h1 {
    font-size: 2.65rem;
    line-height: 0.96;
  }

  .showcase-copy p:not(.eyebrow),
  .career-hero-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .showcase-visual,
  .career-hero-image {
    height: 280px;
    min-height: 0;
    border-radius: 24px;
  }

  .project-stat-band,
  .project-gallery,
  .commitment-path,
  .commitment-pillars,
  .career-actions,
  .career-values {
    width: calc(100% - 36px);
  }

  .project-gallery,
  .commitment-pillars,
  .career-values {
    padding: 52px 0 72px;
  }

  .project-showcase-card {
    min-height: 310px;
    border-radius: 24px;
  }

  .commitment-path a,
  .career-actions a,
  .commitment-pillar,
  .career-value {
    border-radius: 22px;
    padding: 24px;
  }

  .commitment-visual {
    min-height: 300px;
  }

  .commitment-visual img {
    border-width: 7px;
    border-radius: 22px;
  }

  .commitment-visual img:first-child {
    width: 84%;
    height: 220px;
  }

  .commitment-visual img:last-child {
    width: 58%;
    height: 150px;
  }

  .hr-policy-hero {
    grid-template-columns: 1fr;
    padding: 128px 18px 58px;
  }

  .hr-policy-copy h1 {
    font-size: 2.7rem;
    line-height: 0.96;
  }

  .hr-policy-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hr-policy-visual {
    height: 280px;
    border-radius: 24px;
    transform: none;
  }

  .hr-policy-intro,
  .hr-policy-grid,
  .hr-policy-cta {
    width: calc(100% - 36px);
  }

  .hr-policy-intro {
    grid-template-columns: 1fr;
    padding: 24px;
    border-radius: 22px;
  }

  .hr-policy-grid {
    grid-template-columns: 1fr;
    padding: 52px 0;
  }

  .hr-axis-card {
    grid-template-columns: 1fr;
    min-height: auto;
    border-radius: 22px;
  }

  .hr-axis-card img {
    aspect-ratio: 2.05 / 1;
    height: auto;
  }

  .hr-policy-cta {
    display: grid;
    margin-bottom: 72px;
    padding: 24px;
    border-radius: 22px;
  }

  .hr-policy-cta a {
    width: 100%;
  }

  .client-logo {
    width: 132px;
    height: 78px;
  }

  .service-grid,
  .stats-band,
  .sector-card-grid {
    grid-template-columns: 1fr;
  }

  .sector-card {
    min-height: 260px;
  }

  .intro-image,
  .project-card,
  .project-card.large {
    min-height: 380px;
  }

  .realisation-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .realisation-card figure {
    width: min(100%, 360px);
    height: auto;
  }

  .commitment {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-inline: 18px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-brand span {
    display: block;
  }

  .footer-brand,
  .footer-contact,
  .footer-location,
  .footer-linkedin-card {
    padding: 14px;
    border-radius: 18px;
    font-size: 0.82rem;
    min-height: auto;
    margin-right: 0;
  }

  .footer-location strong {
    font-size: 0.84rem;
  }

  .top-sticker {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

/* Deep detail page redesigns */
.deep-main {
  min-height: 100vh;
  padding: 128px max(22px, calc((100vw - 1360px) / 2)) 84px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 114, 24, 0.16), transparent 30%),
    radial-gradient(circle at 84% 20%, rgba(104, 177, 208, 0.18), transparent 34%),
    linear-gradient(135deg, #fffaf6 0%, #f3f9fc 54%, #ffffff 100%);
}

.deep-eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.deep-main h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(3rem, 8vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(255, 114, 24, 0.35);
}

.deep-main h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.deep-main p {
  color: #36506d;
  font-size: 1.05rem;
  line-height: 1.75;
}

.deep-card {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(70, 125, 153, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 70px rgba(10, 31, 58, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.deep-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 88px rgba(10, 31, 58, 0.16);
}

.surface-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 54px;
  min-height: 620px;
}

.surface-hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 6.2vw, 6rem);
  line-height: 0.92;
}

.surface-hero .deep-hero-copy p:last-child,
.anti-hero-panel p:last-child,
.resin-copy p:last-child,
.refractory-hero p:last-child,
.fire-title-card p:last-child,
.special-title p:last-child,
.hse-copy p:last-child,
.quality-panel p:last-child,
.candidate-hero p:last-child {
  max-width: 680px;
  font-size: 1.26rem;
}

.surface-media {
  position: relative;
  min-height: 500px;
  margin: 0;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 36px 90px rgba(10, 31, 58, 0.24);
  transform: rotate(1.5deg);
}

.surface-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 31, 58, 0.74));
}

.surface-media img,
.surface-media figcaption {
  position: absolute;
}

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

.surface-media figcaption {
  right: 26px;
  bottom: 24px;
  z-index: 1;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}

.surface-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 30px 0 26px;
}

.surface-process article {
  min-height: 230px;
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(150deg, rgba(10, 31, 58, 0.96), rgba(27, 91, 118, 0.92));
  box-shadow: 0 24px 68px rgba(10, 31, 58, 0.18);
}

.surface-process span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 26px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
}

.surface-process h2,
.surface-process p {
  color: #fff;
}

.deep-content-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 20px;
}

.anti-hero {
  display: grid;
  grid-template-columns: minmax(620px, 1.08fr) minmax(500px, 0.92fr);
  gap: 0;
  align-items: stretch;
  min-height: 620px;
}

.anti-hero figure {
  min-height: 620px;
  margin: 0;
  border-radius: 34px 0 0 34px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 35px 90px rgba(10, 31, 58, 0.18);
}

.anti-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
}

.anti-hero-panel {
  display: grid;
  align-content: center;
  padding: 58px 50px;
  border-radius: 0 34px 34px 0;
  background: linear-gradient(145deg, #0a1f3a, #153d5d);
  box-shadow: 0 35px 90px rgba(10, 31, 58, 0.22);
}

.anti-hero-panel h1,
.anti-hero-panel p:last-child {
  color: #fff;
}

.anti-hero-panel h1 {
  max-width: 540px;
  font-size: clamp(2.55rem, 3.85vw, 4.05rem);
  line-height: 0.95;
  overflow-wrap: normal;
}

.anti-shield-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 34px 0;
}

.anti-shield-grid article {
  padding: 32px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(10, 31, 58, 0.12);
}

.anti-shield-grid span {
  display: block;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  border-radius: 18px 18px 30px 30px;
  background: linear-gradient(145deg, var(--orange), #ff9a45);
  clip-path: polygon(50% 0, 100% 18%, 92% 76%, 50% 100%, 8% 76%, 0 18%);
}

.anti-band {
  padding: 36px 44px;
  border-left: 12px solid var(--orange);
  border-radius: 0 30px 30px 0;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 70px rgba(10, 31, 58, 0.1);
}

.resin-detail {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(229, 244, 250, 0.92)),
    radial-gradient(circle at 15% 18%, rgba(255, 114, 24, 0.18), transparent 30%);
}

.resin-hero {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
  min-height: 590px;
}

.resin-copy h1 {
  max-width: 760px;
  font-size: clamp(2.65rem, 5.35vw, 5.15rem);
  line-height: 0.94;
}

.resin-floor {
  position: relative;
  height: 470px;
  margin: 0;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: inset 0 -120px 120px rgba(255,255,255,0.24), 0 34px 90px rgba(10,31,58,0.18);
}

.resin-floor img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resin-floor::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,31,58,0.22), transparent 40%, rgba(255,114,24,0.13));
}

.resin-specs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 20px 0 28px;
}

.resin-specs article {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,0.86);
  box-shadow: 0 18px 48px rgba(10,31,58,0.09);
}

.resin-specs strong {
  color: var(--navy);
  font-size: 1.15rem;
}

.resin-specs span {
  color: #536783;
}

.resin-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.refractory-detail {
  background: linear-gradient(135deg, #08192c 0%, #102d48 44%, #fff8f2 44%, #f4fbff 100%);
}

.refractory-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 42px;
  min-height: 610px;
}

.refractory-hero > div {
  transform: translateX(clamp(-86px, -5vw, -30px));
}

.refractory-hero .deep-eyebrow {
  color: #ffffff;
}

.refractory-hero h1,
.refractory-hero p:last-child {
  color: #fff;
}

.refractory-hero h1 {
  color: var(--orange);
  font-size: clamp(2.85rem, 4.95vw, 5rem);
  line-height: 0.92;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.2);
}

.refractory-hero img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border: 10px solid rgba(255,255,255,0.74);
  border-radius: 36px;
  box-shadow: 0 36px 90px rgba(0,0,0,0.22);
}

.heat-lane {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.heat-lane article {
  padding: 32px;
  border-radius: 30px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 24px 70px rgba(10,31,58,0.14);
}

.heat-lane article::before {
  content: "";
  display: block;
  width: 92px;
  height: 8px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), #ffd1aa);
}

.fire-hero {
  position: relative;
  min-height: 620px;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 0 36px 96px rgba(10,31,58,0.18);
}

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

.fire-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,31,58,0.88), rgba(10,31,58,0.2), rgba(255,114,24,0.5));
}

.fire-title-card {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 70px;
}

.fire-title-card h1,
.fire-title-card p:last-child {
  color: #fff;
}

.fire-title-card .deep-eyebrow {
  color: #ffffff;
  font-size: clamp(1.06rem, 1.55vw, 1.48rem);
  letter-spacing: 0.16em;
}

.fire-title-card h1 {
  max-width: 700px;
  font-size: clamp(2.55rem, 4.8vw, 4.45rem);
  line-height: 0.94;
}

.fire-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 34px 0;
}

.fire-comparison article,
.fire-note {
  padding: 34px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(10,31,58,0.12);
}

.fire-comparison span {
  display: inline-flex;
  margin-top: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 114, 24, 0.12);
  color: var(--orange);
  font-weight: 900;
}

.special-hero {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 44px;
  align-items: center;
  min-height: 600px;
}

.special-title h1 {
  max-width: 700px;
  font-size: clamp(2.45rem, 4.25vw, 4.25rem);
  line-height: 0.95;
}

.special-mosaic {
  display: grid;
  grid-template-rows: minmax(360px, 1fr) auto;
  overflow: hidden;
  border-radius: 38px;
  background: #0a1f3a;
  box-shadow: 0 36px 90px rgba(10,31,58,0.18);
}

.special-mosaic img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.05);
}

.special-mosaic div {
  display: grid;
  gap: 8px;
  padding: 28px;
  color: #fff;
}

.special-mosaic strong {
  font-size: 1.7rem;
}

.special-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 20px;
}

.special-grid article {
  min-height: 230px;
  padding: 30px;
  border-radius: 30px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 24px 70px rgba(10,31,58,0.11);
}

.special-grid article:nth-child(2) {
  transform: translateY(34px);
  background: linear-gradient(160deg, #0a1f3a, #226981);
}

.special-grid article:nth-child(2) h2,
.special-grid article:nth-child(2) p {
  color: #fff;
}

.hse-command {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 48px;
  align-items: center;
  min-height: 600px;
}

.hse-visual-stack {
  position: relative;
  min-height: 520px;
}

.hse-visual-stack img {
  position: absolute;
  object-fit: cover;
  border: 9px solid rgba(255,255,255,0.9);
  box-shadow: 0 28px 80px rgba(10,31,58,0.2);
}

.hse-visual-stack img:first-child {
  top: 0;
  right: 0;
  width: 82%;
  height: 340px;
  border-radius: 34px;
}

.hse-visual-stack img:nth-child(2) {
  left: 0;
  bottom: 0;
  width: 48%;
  height: 260px;
  border-radius: 30px;
}

.hse-visual-stack img:nth-child(3) {
  right: 44px;
  bottom: 28px;
  width: 44%;
  height: 230px;
  border-radius: 30px;
}

.hse-dashboard {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.hse-dashboard article {
  padding: 32px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(10,31,58,0.12);
}

.hse-dashboard span {
  display: block;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 2.6rem;
  font-weight: 900;
}

.hse-focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 22px;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, #0a1f3a, #226981);
  box-shadow: 0 24px 70px rgba(10,31,58,0.15);
}

.hse-focus h2,
.hse-focus li {
  color: #fff;
}

.hse-focus ul {
  columns: 2;
  margin: 0;
}

.hse-detail {
  background:
    radial-gradient(circle at 14% 10%, rgba(244, 123, 40, 0.16), transparent 26rem),
    radial-gradient(circle at 86% 24%, rgba(91, 174, 208, 0.18), transparent 30rem),
    linear-gradient(135deg, #ffffff 0%, #f2f9fd 54%, #fff7ef 100%);
}

.hse-hero-redesign {
  grid-template-columns: minmax(430px, 0.96fr) minmax(0, 1.04fr);
  gap: 64px;
  min-height: 660px;
}

.hse-gallery {
  order: 2;
  min-height: 590px;
}

.hse-gallery img {
  animation: hseImageFloat 7s ease-in-out infinite;
}

.hse-gallery img:first-child {
  top: 30px;
  right: auto;
  left: 0;
  width: 78%;
  height: 360px;
  border-radius: 38px;
}

.hse-gallery img:nth-child(2) {
  right: 0;
  left: auto;
  bottom: 28px;
  width: 49%;
  height: 252px;
  border-radius: 32px;
  animation-delay: 0.7s;
}

.hse-gallery img:nth-child(3) {
  left: 8%;
  right: auto;
  bottom: 0;
  width: 46%;
  height: 230px;
  border-radius: 32px;
  animation-delay: 1.2s;
}

.hse-hero-copy {
  order: 1;
  padding: 42px;
  border: 1px solid rgba(221, 232, 239, 0.94);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.91);
  box-shadow: 0 28px 78px rgba(16, 34, 54, 0.11);
  backdrop-filter: blur(16px);
}

.hse-hero-copy h1 {
  max-width: 800px;
  color: var(--ink);
  font-size: clamp(2.55rem, 5.2vw, 5rem);
  line-height: 0.95;
}

.hse-hero-copy p {
  max-width: 780px;
}

.hse-lead {
  margin-top: 16px;
}

.hse-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hse-hero-points span {
  padding: 11px 15px;
  border: 1px solid rgba(244, 123, 40, 0.28);
  border-radius: 999px;
  background: rgba(255, 246, 238, 0.95);
  color: var(--orange-dark);
  font-size: 0.88rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hse-policy-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(221, 232, 239, 0.92);
  animation: methodCardFloat 5.8s ease-in-out infinite, methodOrangeGlow 4.6s ease-in-out infinite;
}

.hse-policy-grid article:nth-child(2) {
  animation-delay: 0.3s;
}

.hse-policy-grid article:nth-child(3) {
  animation-delay: 0.6s;
}

.hse-policy-grid article::after {
  content: "";
  position: absolute;
  right: -44px;
  top: -44px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(244, 123, 40, 0.2), transparent 70%);
}

.hse-policy-grid span {
  display: inline-grid;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 18px;
  background: #1f6a86;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 14px 34px rgba(31, 106, 134, 0.18);
}

.hse-policy-grid h2 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.hse-policy-grid p {
  margin: 0;
  color: #3b526c;
}

.hse-commitments {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: start;
  margin-top: 28px;
}

.hse-commitment-copy {
  position: sticky;
  top: 124px;
  padding: 36px;
  border-radius: 34px;
  background: linear-gradient(150deg, #0a1f3a, #1f6a86);
  box-shadow: 0 30px 80px rgba(10, 31, 58, 0.18);
}

.hse-commitment-copy .deep-eyebrow {
  color: #ffb17b;
}

.hse-commitment-copy h2,
.hse-commitment-copy p {
  color: #fff;
}

.hse-commitment-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3vw, 3.35rem);
  line-height: 1.02;
}

.hse-commitment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.hse-commitment-grid article {
  min-height: 190px;
  padding: 28px;
  border: 1px solid rgba(221, 232, 239, 0.94);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 58px rgba(16, 34, 54, 0.08);
  animation: methodCardFloat 6.2s ease-in-out infinite, methodOrangeGlow 5s ease-in-out infinite;
}

.hse-commitment-grid article:nth-child(2n) {
  animation-delay: 0.35s;
}

.hse-commitment-grid article:nth-child(3n) {
  animation-delay: 0.7s;
}

.hse-commitment-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hse-commitment-grid p {
  margin: 0;
  color: #3b526c;
}

.hse-risk-panel {
  align-items: flex-start;
  margin-top: 34px;
  padding: 42px;
  border-radius: 34px;
}

.hse-risk-panel .deep-eyebrow {
  color: #ffb17b;
}

.hse-risk-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.96;
}

.hse-risk-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  columns: auto;
  width: min(780px, 100%);
  padding: 0;
  list-style: none;
}

.hse-risk-panel li {
  position: relative;
  padding-left: 22px;
  font-weight: 800;
}

.hse-risk-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(244, 123, 40, 0.72);
}

.hse-closing {
  max-width: 980px;
  margin: 30px auto 0;
  padding: 28px 34px;
  border: 1px solid rgba(221, 232, 239, 0.96);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  color: #385069;
  font-size: 1.08rem;
  text-align: center;
  box-shadow: 0 20px 58px rgba(16, 34, 54, 0.08);
}

@keyframes hseImageFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(0.6deg);
  }
}

.hse-source-page {
  position: relative;
  display: grid;
  gap: 86px;
  padding-top: 148px;
  background:
    radial-gradient(circle at 8% 12%, rgba(244, 123, 40, 0.16), transparent 24rem),
    radial-gradient(circle at 90% 16%, rgba(91, 174, 208, 0.2), transparent 34rem),
    linear-gradient(135deg, #ffffff 0%, #eef8fc 48%, #fff7f1 100%);
}

.hse-source-page::before {
  content: "";
  position: absolute;
  inset: 96px max(18px, calc((100vw - 1460px) / 2)) auto;
  height: 210px;
  border-radius: 44px;
  background:
    linear-gradient(120deg, rgba(9, 30, 52, 0.92), rgba(24, 97, 126, 0.72)),
    url("assets/hse-main.webp") center 42% / cover;
  box-shadow: 0 28px 90px rgba(10, 31, 58, 0.18);
  opacity: 0.16;
  pointer-events: none;
}

.hse-source-split {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(440px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 4vw, 58px);
  align-items: center;
  padding: clamp(26px, 3vw, 44px);
  border: 1px solid rgba(188, 214, 228, 0.72);
  border-radius: 44px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(239, 249, 253, 0.86)),
    #ffffff;
  box-shadow: 0 28px 90px rgba(10, 31, 58, 0.12);
  animation: hseSectionLift 0.9s ease both;
}

.hse-source-split::before {
  content: "HSE";
  position: absolute;
  top: 24px;
  right: clamp(24px, 3vw, 42px);
  z-index: 0;
  color: rgba(9, 30, 52, 0.045);
  font-size: clamp(5rem, 13vw, 13rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.8;
}

.hse-source-split::after {
  content: "";
  position: absolute;
  left: clamp(30px, 4vw, 60px);
  right: clamp(30px, 4vw, 60px);
  bottom: -1px;
  height: 6px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--orange), rgba(91, 174, 208, 0.9), transparent);
  z-index: 2;
}

.hse-source-split:nth-of-type(2) {
  animation-delay: 0.15s;
}

.hse-source-split-reverse {
  grid-template-columns: minmax(0, 1.03fr) minmax(440px, 0.97fr);
  background:
    linear-gradient(135deg, rgba(255, 250, 246, 0.96), rgba(239, 249, 253, 0.9)),
    #ffffff;
}

.hse-photo-mosaic {
  position: relative;
  z-index: 1;
  min-height: 590px;
  animation: hseMosaicBreath 8s ease-in-out infinite;
}

.hse-photo-mosaic img {
  position: absolute;
  width: 100%;
  object-fit: cover;
  border: 10px solid rgba(255, 255, 255, 0.98);
  border-radius: 30px;
  box-shadow: 0 24px 64px rgba(16, 34, 54, 0.14), 0 14px 34px rgba(244, 123, 40, 0.14);
  filter: saturate(1.02) contrast(1.03);
  animation: hseSourcePictureFloat 6.4s ease-in-out infinite, hseImageOrangePulse 4.8s ease-in-out infinite;
}

.hse-photo-mosaic img:first-child {
  top: 20px;
  left: 0;
  z-index: 1;
  width: 92%;
  height: 372px;
}

.hse-photo-mosaic img:nth-child(2) {
  left: 4%;
  bottom: 22px;
  z-index: 3;
  width: 42%;
  height: 198px;
  animation-delay: 0.35s;
}

.hse-photo-mosaic img:nth-child(3) {
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 48%;
  height: 236px;
  animation-delay: 0.7s;
}

.hse-photo-mosaic-alt img:first-child {
  left: auto;
  right: 0;
  width: 92%;
  height: 350px;
}

.hse-photo-mosaic-alt img:nth-child(2) {
  left: 0;
  width: 46%;
  height: 218px;
}

.hse-photo-mosaic-alt img:nth-child(3) {
  right: 5%;
  width: 44%;
  height: 218px;
}

.hse-source-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: clamp(30px, 3.2vw, 48px);
  border: 1px solid rgba(221, 232, 239, 0.95);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(247, 252, 255, 0.88)),
    #ffffff;
  box-shadow: 0 24px 70px rgba(16, 34, 54, 0.11), 0 0 0 rgba(244, 123, 40, 0);
  animation: hseSourceCardFloat 6s ease-in-out infinite, hseCardOrangePulse 5.2s ease-in-out infinite;
}

.hse-source-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, transparent, rgba(244, 123, 40, 0.95), rgba(91, 174, 208, 0.75), transparent);
  transform: translateX(-100%);
  animation: hseAccentSweep 4.8s ease-in-out infinite;
}

.hse-source-card::after {
  content: "";
  position: absolute;
  right: -86px;
  bottom: -86px;
  width: 230px;
  height: 230px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(244, 123, 40, 0.16), transparent 68%);
  animation: hseCornerGlow 5.4s ease-in-out infinite;
  pointer-events: none;
}

.hse-attention-card {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(145deg, rgba(10, 31, 58, 0.96), rgba(30, 100, 127, 0.9)),
    #102236;
  animation-delay: 0.45s;
}

.hse-source-card h1 {
  margin: 0 0 16px;
  color: #071529;
  font-size: clamp(2.25rem, 3.35vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: 0 2px 0 rgba(244, 123, 40, 0.26);
}

.hse-source-card h2 {
  margin: 28px 0 18px;
  color: #071529;
  font-size: clamp(1.22rem, 1.85vw, 1.85rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.hse-attention-card h2 {
  margin-top: 0;
  color: #ffffff;
}

.hse-source-card p,
.hse-source-card li {
  color: #243b53;
  font-size: 1rem;
  line-height: 1.82;
}

.hse-attention-card p,
.hse-attention-card li {
  color: rgba(255, 255, 255, 0.88);
}

.hse-source-card p {
  margin: 0 0 18px;
  text-align: justify;
}

.hse-source-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hse-source-card li {
  position: relative;
  padding-left: 24px;
}

.hse-source-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(244, 123, 40, 0.11);
}

@keyframes hseSourcePictureFloat {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 20px 54px rgba(16, 34, 54, 0.12), 0 12px 34px rgba(244, 123, 40, 0.14);
  }
  50% {
    transform: translateY(-9px);
    box-shadow: 0 28px 68px rgba(16, 34, 54, 0.14), 0 22px 58px rgba(244, 123, 40, 0.34);
  }
}

@keyframes hseSourceCardFloat {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 22px 60px rgba(16, 34, 54, 0.1), 0 10px 30px rgba(244, 123, 40, 0.1);
  }
  50% {
    transform: translateY(-8px);
    box-shadow: 0 30px 74px rgba(16, 34, 54, 0.12), 0 22px 54px rgba(244, 123, 40, 0.3);
  }
}

@keyframes hseImageOrangePulse {
  0%,
  100% {
    outline: 0 solid rgba(244, 123, 40, 0);
  }
  50% {
    outline: 3px solid rgba(244, 123, 40, 0.28);
    outline-offset: 5px;
  }
}

@keyframes hseCardOrangePulse {
  0%,
  100% {
    border-color: rgba(221, 232, 239, 0.95);
  }
  50% {
    border-color: rgba(244, 123, 40, 0.46);
  }
}

@keyframes hseAccentSweep {
  0%,
  35% {
    transform: translateX(-100%);
  }
  70%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes hseCornerGlow {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.92);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes hseMosaicBreath {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes hseSectionLift {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quality-hero {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 34px;
  align-items: stretch;
  min-height: 570px;
}

.quality-panel {
  display: grid;
  align-content: center;
  padding: 52px;
  border-radius: 36px;
  background: #fff;
  box-shadow: 0 28px 82px rgba(10,31,58,0.12);
}

.quality-hero img {
  width: 100%;
  height: 570px;
  object-fit: cover;
  border-radius: 36px;
  box-shadow: 0 28px 82px rgba(10,31,58,0.16);
}

.quality-lab {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 28px 0;
}

.quality-lab article {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  align-items: center;
  padding: 20px;
  border-radius: 30px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 24px 70px rgba(10,31,58,0.1);
}

.quality-lab img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 22px;
}

.quality-policy {
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255,255,255,0.94), rgba(232,245,250,0.92));
  box-shadow: 0 24px 70px rgba(10,31,58,0.1);
}

.quality-policy div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0;
}

.quality-policy span {
  padding: 12px 18px;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(10,31,58,0.09);
}

.candidate-hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
  align-items: center;
  min-height: 560px;
}

.candidate-hero figure {
  position: relative;
  height: 470px;
  margin: 0;
  overflow: hidden;
  border-radius: 38px;
  box-shadow: 0 34px 90px rgba(10,31,58,0.18);
}

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

.candidate-hero figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(10,31,58,0.82);
  color: #fff;
  font-weight: 900;
}

.candidate-form-shell {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 26px;
  align-items: stretch;
}

.candidate-form-shell aside {
  padding: 30px;
  border-radius: 32px;
  background: linear-gradient(145deg, #0a1f3a, #226981);
  box-shadow: 0 24px 70px rgba(10,31,58,0.14);
}

.candidate-form-shell aside h2,
.candidate-form-shell aside p,
.candidate-form-shell aside div {
  color: #fff;
}

.candidate-form-shell aside div {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  font-weight: 900;
}

.candidate-form-shell aside span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange);
}

.candidate-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 30px;
  border-radius: 32px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 24px 70px rgba(10,31,58,0.12);
}

.candidate-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
}

.candidate-form input,
.candidate-form textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(70, 125, 153, 0.2);
  border-radius: 16px;
  padding: 12px 14px;
  background: #f8fbfd;
  color: var(--navy);
  font: inherit;
}

.candidate-form input[type="file"] {
  min-height: 64px;
  padding: 10px;
  border-style: dashed;
  border-color: rgba(70, 125, 153, 0.36);
  background:
    linear-gradient(135deg, rgba(255, 114, 24, 0.08), rgba(104, 177, 208, 0.1)),
    #ffffff;
  color: #536783;
  font-weight: 800;
}

.candidate-form input[type="file"]::file-selector-button {
  margin-right: 14px;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--orange), #ff9a45);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(255, 114, 24, 0.24);
}

.candidate-form input[type="file"]:hover::file-selector-button {
  background: linear-gradient(135deg, #0a1f3a, #226981);
}

.candidate-form textarea {
  min-height: 150px;
  resize: vertical;
}

.candidate-message {
  grid-row: span 2;
}

.candidate-form button {
  justify-self: start;
  border: 0;
  border-radius: 999px;
  padding: 15px 24px;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(255, 114, 24, 0.28);
}

@media (max-width: 980px) {
  .deep-main {
    padding: 118px 18px 64px;
  }

  .surface-hero,
  .anti-hero,
  .resin-hero,
  .refractory-hero,
  .special-hero,
  .hse-command,
  .quality-hero,
  .candidate-hero,
  .candidate-form-shell {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .refractory-hero > div {
    transform: none;
  }

  .anti-hero figure,
  .anti-hero-panel {
    border-radius: 30px;
  }

  .surface-process,
  .deep-content-grid,
  .anti-shield-grid,
  .resin-specs,
  .resin-layout,
  .heat-lane,
  .fire-comparison,
  .special-grid,
  .hse-dashboard,
  .hse-commitments,
  .quality-lab {
    grid-template-columns: 1fr;
  }

  .hse-commitment-copy {
    position: static;
  }

  .hse-commitment-grid,
  .hse-risk-panel ul,
  .hse-source-split,
  .hse-source-split-reverse {
    grid-template-columns: 1fr;
  }

  .hse-source-split-reverse .hse-photo-mosaic {
    order: -1;
  }

  .hse-source-page::before {
    inset-inline: 18px;
  }

  .hse-photo-mosaic {
    min-height: 540px;
  }

  .surface-media,
  .anti-hero figure,
  .resin-floor,
  .refractory-hero img,
  .fire-hero,
  .quality-hero img,
  .candidate-hero figure {
    min-height: 0;
    height: 330px;
  }

  .hse-visual-stack {
    min-height: 420px;
  }

  .hse-focus {
    display: grid;
  }

  .hse-focus ul {
    columns: 1;
  }

  .hse-photo-mosaic img:first-child,
  .hse-photo-mosaic-alt img:first-child {
    position: absolute;
    height: 300px;
  }

  .quality-lab article,
  .candidate-form {
    grid-template-columns: 1fr;
  }

  .candidate-message {
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  .deep-main h1 {
    font-size: clamp(2.55rem, 15vw, 4.4rem);
  }

  .anti-hero-panel,
  .fire-title-card,
  .hse-hero-copy,
  .hse-commitment-copy,
  .hse-risk-panel,
  .quality-panel,
  .candidate-form,
  .candidate-form-shell aside {
    padding: 24px;
  }

  .surface-process article,
  .deep-card,
  .anti-shield-grid article,
  .fire-comparison article,
  .fire-note,
  .special-grid article,
  .hse-dashboard article,
  .hse-commitment-grid article,
  .hse-closing,
  .hse-source-card,
  .quality-policy {
    padding: 24px;
  }

  .hse-photo-mosaic {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
    animation: none;
  }

  .hse-photo-mosaic img,
  .hse-photo-mosaic img:first-child,
  .hse-photo-mosaic img:nth-child(2),
  .hse-photo-mosaic img:nth-child(3),
  .hse-photo-mosaic-alt img:first-child,
  .hse-photo-mosaic-alt img:nth-child(2),
  .hse-photo-mosaic-alt img:nth-child(3) {
    position: relative;
    inset: auto;
    width: 100%;
    height: 220px;
    transform: none;
  }

  .special-grid article:nth-child(2) {
    transform: none;
  }
}

@media (hover: none), (pointer: coarse) {
  body,
  a,
  button,
  input,
  textarea {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

/* Production accessibility and responsive navigation layer */
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--ink);
  box-shadow: var(--shadow);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

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

:focus-visible {
  outline: 3px solid rgba(244, 123, 40, 0.78);
  outline-offset: 4px;
}

.no-js .reveal,
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.js .reveal {
  will-change: opacity, transform;
}

.nav-lock {
  overflow: hidden;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.field-error {
  color: #ffcfb0;
  font-size: 0.82rem;
  font-weight: 800;
}

.candidate-form .field-error {
  color: #a73400;
}

.form-status {
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  font-weight: 800;
}

form[data-state="success"] .form-status {
  background: rgba(54, 148, 95, 0.28);
}

form[data-state="error"] .form-status {
  background: rgba(198, 66, 40, 0.3);
}

.candidate-form progress {
  grid-column: 1 / -1;
  width: 100%;
  height: 10px;
  accent-color: var(--orange);
}

@media (max-width: 900px) {
  .site-header {
    gap: 14px;
  }

  .site-header.is-hidden-mobile {
    transform: translate3d(0, -110%, 0);
  }

  .nav-toggle {
    display: block !important;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
  }

  .site-nav {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    right: 0 !important;
    left: 0 !important;
    display: grid !important;
    max-height: min(calc(100vh - 96px), 720px);
    overflow-y: auto;
    overscroll-behavior: contain;
    gap: 6px !important;
    padding: 12px !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: var(--shadow) !important;
    transform: translate3d(0, -10px, 0) !important;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) !important;
  }

  .no-js .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) !important;
  }

  .nav-item,
  .nav-item.has-menu {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    min-height: 0 !important;
  }

  .nav-item:not(.has-menu) {
    grid-template-columns: 1fr;
  }

  .nav-link,
  .site-nav a {
    min-height: 52px !important;
    width: 100%;
    padding: 14px 16px !important;
    border-radius: 8px !important;
    font-size: 0.95rem !important;
    letter-spacing: 0.05em !important;
    white-space: normal !important;
  }

  .nav-menu {
    position: static !important;
    grid-column: 1 / -1;
    display: grid !important;
    min-width: 0 !important;
    max-height: 0;
    overflow: hidden;
    padding: 0 !important;
    border-radius: 12px;
    background: rgba(243, 247, 251, 0.98) !important;
    box-shadow: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    transition: max-height 0.26s ease, padding 0.26s ease;
  }

  .nav-item.is-submenu-open .nav-menu,
  .no-js .nav-menu {
    max-height: 560px;
    padding: 6px !important;
  }

  .nav-menu a {
    min-height: 48px !important;
    padding: 12px 14px !important;
    font-size: 0.94rem !important;
  }
}

@media (min-width: 901px) {
  .site-nav {
    display: flex !important;
  }

  .nav-menu {
    position: absolute;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal,
  .site-nav,
  .site-header,
  .nav-menu {
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 900px) {
  .no-js .site-nav {
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, -10px, 0) !important;
  }
}

@media (max-width: 900px) and (scripting: none) {
  .no-js .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) !important;
  }
}
