@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: optional;
  src: url("../fonts/manrope-latin-variable.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  font-display: optional;
  src: url("../fonts/playfair-display-latin-regular.woff2") format("woff2");
}

:root {
  --anthracite: #2d2e30;
  --deep-brown: #332524;
  --warm-ivory: #f5efe8;
  --raw-umber: #7a5938;
  --raw-umber-light: #b68b63;
  --copper: #a56d47;
  --copper-light: #d7aa7f;
  --charcoal: #1f232b;
  --off-white: #f8f8f6;
  --navy: var(--anthracite);
  --navy-deep: #1b1513;
  --ink: #272324;
  --muted: #6c625d;
  --gold: var(--raw-umber);
  --gold-dark: #62452f;
  --champagne: #d8c7b7;
  --stone: #ded6ce;
  --warm-white: var(--warm-ivory);
  --white: var(--off-white);
  --border: rgba(45, 46, 48, 0.14);
  --shadow: 0 26px 70px rgba(37, 27, 25, 0.16);
  --container: 1380px;
  --sans: "Manrope", "Arial Nova", Arial, sans-serif;
  --display: "Playfair Display", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--warm-white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.68;
}

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

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

p {
  margin: 0 0 1rem;
}

h1,
h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.08;
}

h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--sans);
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  max-width: 900px;
  font-size: 4.35rem;
}

h2 {
  font-size: 3.2rem;
}

h3 {
  font-size: 1.45rem;
}

h2 + p {
  margin-top: 24px;
}

h3 + p {
  margin-top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(45, 46, 48, 0.12);
  background: rgba(248, 248, 246, 0.97);
  backdrop-filter: blur(20px);
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(var(--container), calc(100% - 28px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  position: relative;
  flex-direction: column;
  gap: 4px;
  min-width: 178px;
  padding: 0;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand img {
  display: block;
  width: clamp(160px, 14vw, 230px);
  height: auto;
}

.site-header .brand img {
  filter: none;
}

.site-footer .brand img {
  width: clamp(166px, 15vw, 236px);
}

.site-footer .brand {
  margin-bottom: 18px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(45, 46, 48, 0.2);
  border-radius: 4px;
  background: rgba(122, 89, 56, 0.06);
  color: var(--anthracite);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

.site-header.is-open .nav-toggle span {
  transform: rotate(45deg);
}

.site-header.is-open .nav-toggle span::before {
  opacity: 0;
}

.site-header.is-open .nav-toggle span::after {
  transform: translateY(-2px) rotate(90deg);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.3vw, 24px);
  color: var(--anthracite);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.primary-nav a {
  position: relative;
  padding: 10px 0;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--raw-umber);
  content: "";
  opacity: 0;
  transform: scaleX(0.2);
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0 26px;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.primary-nav .btn {
  min-height: 50px;
  padding-inline: 30px;
}

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

.btn:disabled,
.btn[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
}

.btn-primary {
  background: linear-gradient(120deg, #704c31 0%, #986039 48%, #b77b42 100%);
  color: var(--off-white);
  box-shadow: 0 12px 30px rgba(122, 89, 56, 0.25);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(120deg, #62412b 0%, #875332 48%, #a86c39 100%);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--raw-umber-light);
  background: rgba(182, 139, 99, 0.12);
}

.btn-dark {
  border-color: rgba(122, 89, 56, 0.2);
  background: linear-gradient(120deg, #704c31 0%, #986039 48%, #b77b42 100%);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(122, 89, 56, 0.2);
}

.btn-dark:hover,
.btn-dark:focus-visible {
  background: linear-gradient(120deg, #62412b 0%, #875332 48%, #a86c39 100%);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  overflow: hidden;
  background: linear-gradient(110deg, var(--charcoal) 0%, var(--deep-brown) 58%, #241914 100%);
  color: var(--white);
}

.hero::before,
.image-band::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  content: "";
}

.hero::after,
.image-band::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 72% 48%, rgba(215, 170, 127, 0.2) 0%, rgba(165, 109, 71, 0.09) 26%, rgba(51, 37, 36, 0) 56%),
    linear-gradient(90deg, rgba(31, 35, 43, 0.98) 0%, rgba(31, 35, 43, 0.94) 27%, rgba(45, 46, 48, 0.78) 45%, rgba(51, 37, 36, 0.46) 64%, rgba(27, 21, 19, 0.12) 84%, rgba(27, 21, 19, 0.04) 100%),
    linear-gradient(180deg, rgba(31, 35, 43, 0.06) 0%, rgba(27, 21, 19, 0.12) 52%, rgba(27, 21, 19, 0.4) 100%);
  content: "";
}

.hero.hero-image-right::before {
  background-position: right center;
}

.hero.hero-dubai::before {
  background-position: center;
}

.hero-title-next-line {
  display: block;
}

.page-home .hero::after {
  background:
    radial-gradient(ellipse at 78% 30%, rgba(215, 170, 127, 0.3) 0%, rgba(165, 109, 71, 0.11) 34%, transparent 66%),
    linear-gradient(90deg, rgba(31, 35, 43, 0.98) 0%, rgba(31, 35, 43, 0.92) 29%, rgba(51, 37, 36, 0.7) 50%, rgba(122, 89, 56, 0.28) 73%, rgba(27, 21, 19, 0.08) 100%),
    linear-gradient(180deg, rgba(31, 35, 43, 0.05), rgba(27, 21, 19, 0.38));
}

.page-about .hero::after,
.page-contact .hero::after {
  background:
    radial-gradient(ellipse at 78% 38%, rgba(182, 139, 99, 0.34) 0%, rgba(165, 109, 71, 0.12) 36%, transparent 68%),
    linear-gradient(90deg, rgba(51, 37, 36, 0.98) 0%, rgba(51, 37, 36, 0.93) 29%, rgba(83, 58, 43, 0.7) 51%, rgba(122, 89, 56, 0.3) 74%, rgba(31, 24, 21, 0.08) 100%),
    linear-gradient(180deg, rgba(31, 35, 43, 0.04), rgba(35, 24, 20, 0.42));
}

.page-services .hero::after {
  background:
    radial-gradient(ellipse at 76% 26%, rgba(201, 160, 90, 0.3) 0%, rgba(122, 89, 56, 0.12) 35%, transparent 66%),
    linear-gradient(90deg, rgba(31, 35, 43, 0.98) 0%, rgba(31, 35, 43, 0.93) 30%, rgba(45, 46, 48, 0.7) 51%, rgba(122, 89, 56, 0.29) 75%, rgba(27, 21, 19, 0.08) 100%),
    linear-gradient(180deg, rgba(31, 35, 43, 0.04), rgba(51, 37, 36, 0.38));
}

.page-governance .hero::after,
.page-sourcing .hero::after {
  background:
    radial-gradient(ellipse at 80% 34%, rgba(165, 109, 71, 0.3) 0%, rgba(122, 89, 56, 0.12) 37%, transparent 68%),
    linear-gradient(90deg, rgba(51, 37, 36, 0.98) 0%, rgba(51, 37, 36, 0.93) 31%, rgba(83, 58, 43, 0.68) 53%, rgba(165, 109, 71, 0.25) 76%, rgba(31, 24, 21, 0.08) 100%),
    linear-gradient(180deg, rgba(31, 35, 43, 0.04), rgba(35, 24, 20, 0.42));
}

.page-esg .hero::after {
  background:
    radial-gradient(ellipse at 76% 35%, rgba(215, 170, 127, 0.28) 0%, rgba(122, 89, 56, 0.1) 37%, transparent 68%),
    linear-gradient(90deg, rgba(45, 46, 48, 0.98) 0%, rgba(45, 46, 48, 0.93) 30%, rgba(51, 37, 36, 0.68) 52%, rgba(165, 109, 71, 0.24) 75%, rgba(31, 24, 21, 0.08) 100%),
    linear-gradient(180deg, rgba(31, 35, 43, 0.04), rgba(51, 37, 36, 0.4));
}

.page-insights .hero::after {
  background:
    radial-gradient(ellipse at 78% 31%, rgba(201, 160, 90, 0.34) 0%, rgba(165, 109, 71, 0.12) 35%, transparent 67%),
    linear-gradient(90deg, rgba(31, 35, 43, 0.99) 0%, rgba(31, 35, 43, 0.94) 30%, rgba(51, 37, 36, 0.7) 52%, rgba(122, 89, 56, 0.28) 75%, rgba(27, 21, 19, 0.08) 100%),
    linear-gradient(180deg, rgba(31, 35, 43, 0.04), rgba(27, 21, 19, 0.4));
}

.page-market-article .hero::after {
  background:
    radial-gradient(ellipse at 79% 30%, rgba(215, 170, 127, 0.32), rgba(165, 109, 71, 0.1) 36%, transparent 68%),
    linear-gradient(90deg, rgba(31, 35, 43, 0.99), rgba(31, 35, 43, 0.93) 32%, rgba(83, 58, 43, 0.65) 57%, rgba(201, 160, 90, 0.2) 78%, rgba(27, 21, 19, 0.06));
}

.page-supply-article .hero::after {
  background:
    radial-gradient(ellipse at 78% 34%, rgba(182, 139, 99, 0.3), rgba(122, 89, 56, 0.1) 37%, transparent 69%),
    linear-gradient(90deg, rgba(51, 37, 36, 0.99), rgba(51, 37, 36, 0.93) 32%, rgba(122, 89, 56, 0.58) 57%, rgba(165, 109, 71, 0.2) 78%, rgba(31, 24, 21, 0.06));
}

.page-sourcing-article .hero::after {
  background:
    radial-gradient(ellipse at 78% 34%, rgba(165, 109, 71, 0.32), rgba(122, 89, 56, 0.1) 37%, transparent 69%),
    linear-gradient(90deg, rgba(45, 46, 48, 0.99), rgba(45, 46, 48, 0.93) 32%, rgba(51, 37, 36, 0.67) 57%, rgba(165, 109, 71, 0.22) 78%, rgba(31, 24, 21, 0.06));
}

.hero-inner {
  display: grid;
  width: min(var(--container), calc(100% - 40px));
  min-height: 720px;
  margin: 0 auto;
  align-items: center;
  padding: 88px 0 96px;
}

.hero-content {
  width: min(100%, 760px);
  max-width: 760px;
  min-width: 0;
}

.hero h1,
.hero h2,
.image-band h2 {
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  color: var(--raw-umber-light);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::after {
  display: none;
  content: none;
}

.hero-lead {
  max-width: 590px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.1rem;
}

.hero-subtitle {
  max-width: 520px;
  margin: 20px 0 0;
  color: var(--warm-ivory);
  font-family: var(--sans);
  font-size: 1.18rem;
  font-weight: 520;
  line-height: 1.46;
  text-transform: uppercase;
}

.hero-rule {
  display: none;
}

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

.trust-strip {
  background: var(--navy-deep);
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-inline: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-item {
  display: flex;
  min-height: 136px;
  align-items: center;
  gap: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px 28px;
}

.trust-item:last-child {
  border-right: 0;
}

.icon {
  display: inline-flex;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(122, 89, 56, 0.38);
  border-radius: 50%;
  background: rgba(122, 89, 56, 0.08);
  color: var(--gold-dark);
}

.icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.icon svg use {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.trust-item h3,
.dark-panel h3,
.site-footer h3 {
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: uppercase;
}

.trust-item p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.5;
}

.section-soft .trust-grid {
  gap: 18px;
  border-inline: 0;
}

.section-soft .trust-item {
  min-height: 132px;
  align-items: center;
  border: 1px solid var(--border);
  padding: 22px 26px;
  background:
    linear-gradient(180deg, rgba(248, 248, 246, 0.96), rgba(248, 248, 246, 0.96)),
    linear-gradient(135deg, rgba(122, 89, 56, 0.14), rgba(248, 248, 246, 0));
  box-shadow: 0 18px 46px rgba(37, 27, 25, 0.07);
}

.section-soft .trust-item h3 {
  color: var(--navy);
}

.section-soft .trust-item p {
  color: var(--muted);
}

.section-soft .trust-item .icon {
  background: rgba(122, 89, 56, 0.1);
}

.section {
  padding: clamp(62px, 7vw, 108px) 0;
}

.section-soft {
  position: relative;
  overflow: clip;
  isolation: isolate;
  border-block: 1px solid rgba(122, 89, 56, 0.12);
  background-color: var(--off-white);
  background-image:
    linear-gradient(100deg, rgba(248, 248, 246, 0.98) 0%, rgba(248, 248, 246, 0.94) 58%, rgba(245, 239, 232, 0.78) 100%),
    url("../img/task045/gsg-light-surface-material-01.jpg");
  background-position: center;
  background-size: cover;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    inset 0 -1px 0 rgba(122, 89, 56, 0.06);
}

.page-home .section-soft,
.page-insights .section-soft {
  background-image:
    linear-gradient(112deg, rgba(248, 248, 246, 0.98) 0%, rgba(245, 239, 232, 0.91) 52%, rgba(215, 170, 127, 0.3) 100%),
    url("../img/task045/gsg-light-surface-material-01.jpg");
}

.page-about .section-soft,
.page-contact .section-soft {
  background-image:
    linear-gradient(112deg, rgba(248, 248, 246, 0.98) 0%, rgba(245, 239, 232, 0.92) 48%, rgba(122, 89, 56, 0.23) 100%),
    url("../img/task045/gsg-light-surface-material-01.jpg");
}

.page-services .section-soft {
  background-image:
    linear-gradient(110deg, rgba(248, 248, 246, 0.98) 0%, rgba(245, 239, 232, 0.91) 50%, rgba(201, 160, 90, 0.25) 100%),
    url("../img/task045/gsg-light-surface-material-01.jpg");
}

.page-governance .section-soft,
.page-sourcing .section-soft,
.page-esg .section-soft {
  background-image:
    linear-gradient(110deg, rgba(248, 248, 246, 0.98) 0%, rgba(245, 239, 232, 0.9) 50%, rgba(165, 109, 71, 0.24) 100%),
    url("../img/task045/gsg-light-surface-material-01.jpg");
}

.page-legal .section-soft {
  background-image:
    linear-gradient(110deg, rgba(248, 248, 246, 0.99) 0%, rgba(245, 239, 232, 0.94) 64%, rgba(182, 139, 99, 0.17) 100%),
    url("../img/task045/gsg-light-surface-material-01.jpg");
}

.section-tint-gold {
  border-block: 1px solid rgba(201, 160, 90, 0.14);
  background: linear-gradient(118deg, var(--off-white) 0%, var(--warm-ivory) 48%, rgba(215, 170, 127, 0.32) 100%);
}

.section-tint-umber {
  border-block: 1px solid rgba(122, 89, 56, 0.14);
  background: linear-gradient(110deg, rgba(122, 89, 56, 0.18) 0%, var(--warm-ivory) 42%, var(--off-white) 100%);
}

.section-tint-copper {
  border-block: 1px solid rgba(165, 109, 71, 0.14);
  background: linear-gradient(125deg, var(--off-white) 0%, rgba(165, 109, 71, 0.16) 54%, rgba(215, 170, 127, 0.24) 100%);
}

.page-esg main > .section:last-child {
  border-block: 1px solid rgba(201, 160, 90, 0.14);
  background: linear-gradient(118deg, var(--off-white) 0%, var(--warm-ivory) 48%, rgba(215, 170, 127, 0.3) 100%);
}

.page-insights main > .section:last-child {
  border-block: 1px solid rgba(122, 89, 56, 0.14);
  background: linear-gradient(110deg, rgba(122, 89, 56, 0.16) 0%, var(--warm-ivory) 42%, var(--off-white) 100%);
}

.section-soft > .section-inner {
  position: relative;
  z-index: 1;
}

.section-soft .card,
.section-soft .statement-card,
.section-soft .document-slot {
  border-color: rgba(122, 89, 56, 0.18);
  background: rgba(248, 248, 246, 0.9);
  box-shadow: 0 18px 46px rgba(51, 37, 36, 0.06);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading .eyebrow {
  justify-content: center;
}

.section-heading .eyebrow::after {
  display: none;
}

.section-heading p {
  margin: 24px auto 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

.page-home .section-heading p + p {
  margin-top: 12px;
}

.capabilities-label {
  margin: 0 0 16px;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.capabilities-grid .trust-item {
  justify-content: center;
}

.capabilities-grid .trust-item h3 {
  line-height: 1.45;
}

.gold-rule {
  width: 46px;
  height: 2px;
  margin: 24px auto 0;
  background: var(--gold);
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

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

.card {
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(45, 46, 48, 0.02);
}

.card-padded {
  padding: clamp(24px, 2.4vw, 32px);
}

.service-card-row {
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.service-card-row .card {
  display: flex;
  position: relative;
  flex-direction: column;
  border-top: 0;
  border-left: 0;
  height: 392px;
  min-height: 286px;
  padding-right: 26px;
  padding-bottom: 88px;
  padding-left: 26px;
  text-align: center;
}

.service-card-row .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  flex-basis: 64px;
  background: rgba(122, 89, 56, 0.1);
  color: var(--gold-dark);
}

.service-card-row .icon svg {
  width: 38px;
  height: 38px;
}

.card h3 {
  margin-top: 18px;
  color: var(--navy);
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: uppercase;
}

.card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.62;
}

.service-card-row .card p {
  margin-top: 10px;
  font-size: 0.91rem;
  line-height: 1.42;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  align-items: center;
  gap: 8px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-card-row .text-link {
  position: absolute;
  right: 20px;
  bottom: 32px;
  left: 20px;
  justify-content: center;
  margin-top: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(122, 89, 56, 0.2);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
}

.split-media {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: var(--shadow);
}

.split-media::after {
  display: none;
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.split-media img[src*="ai/"] {
  aspect-ratio: 16 / 10;
}

.dark-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--anthracite);
  background-image:
    linear-gradient(100deg, rgba(31, 35, 43, 0.84) 0%, rgba(45, 46, 48, 0.64) 54%, rgba(51, 37, 36, 0.46) 100%),
    url("../img/brand-backgrounds/dark-process-material-01.png");
  background-position: center;
  background-size: cover;
  background-blend-mode: normal;
  color: var(--white);
}

.page-home .dark-panel,
.page-insights .dark-panel {
  background-image:
    radial-gradient(ellipse at 82% 34%, rgba(215, 170, 127, 0.2), transparent 48%),
    linear-gradient(105deg, rgba(31, 35, 43, 0.9), rgba(51, 37, 36, 0.73) 58%, rgba(122, 89, 56, 0.48)),
    url("../img/brand-backgrounds/dark-process-material-01.png");
}

.page-about .dark-panel,
.page-contact .dark-panel,
.page-governance .dark-panel,
.page-sourcing .dark-panel {
  background-image:
    radial-gradient(ellipse at 80% 32%, rgba(182, 139, 99, 0.2), transparent 49%),
    linear-gradient(105deg, rgba(51, 37, 36, 0.92), rgba(83, 58, 43, 0.74) 58%, rgba(122, 89, 56, 0.48)),
    url("../img/brand-backgrounds/dark-process-material-01.png");
}

.page-services .dark-panel,
.page-esg .dark-panel,
.page-article .dark-panel {
  background-image:
    radial-gradient(ellipse at 81% 35%, rgba(201, 160, 90, 0.19), transparent 48%),
    linear-gradient(105deg, rgba(31, 35, 43, 0.91), rgba(45, 46, 48, 0.72) 55%, rgba(165, 109, 71, 0.43)),
    url("../img/brand-backgrounds/dark-process-material-01.png");
}

.dark-panel::before {
  display: none;
}

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

.dark-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.process {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 16px;
  padding: 34px 0 14px;
  counter-reset: process-step;
}

.process-step {
  position: relative;
  min-height: 174px;
  border: 1px solid rgba(182, 139, 99, 0.26);
  padding: 28px 16px 20px;
  background: rgba(255, 255, 255, 0.045);
  text-align: center;
  counter-increment: process-step;
}

.process-step::after {
  position: absolute;
  top: 50%;
  right: -18px;
  z-index: 1;
  width: 20px;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: translateY(-50%);
}

.process-step::before {
  position: absolute;
  top: 12px;
  right: 12px;
  color: rgba(182, 139, 99, 0.62);
  content: counter(process-step, decimal-leading-zero);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.05rem;
}

.process-step:last-child::after {
  display: none;
}

.process-step .icon {
  margin: 0 auto 18px;
  border-color: rgba(182, 139, 99, 0.44);
  background: rgba(182, 139, 99, 0.1);
  color: var(--raw-umber-light);
}

.process-step h3 {
  font-size: 0.78rem;
  line-height: 1.35;
}

.page-home .process-step {
  min-height: 214px;
}

.page-home .process {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  row-gap: 16px;
}

.page-home .process-step:nth-child(4)::after {
  display: none;
}

.process-step p {
  margin: 10px 0 0;
  font-size: 0.84rem;
  line-height: 1.5;
}

.home-approach-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(42px, 7vw, 108px);
  align-items: start;
}

.home-approach-grid h2 {
  max-width: 620px;
}

.home-approach-grid p {
  max-width: 760px;
  color: var(--charcoal);
  font-size: 1.05rem;
  line-height: 1.75;
}

.home-approach-grid p + p {
  margin-top: 22px;
}

.home-insights-grid {
  gap: 24px;
}

.home-insight-card {
  overflow: hidden;
}

.home-insight-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.image-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--anthracite);
  color: var(--white);
}

.image-band::before {
  background-position: right center;
}

.image-band::after {
  background: linear-gradient(90deg, rgba(31, 35, 43, 0.96) 0%, rgba(45, 46, 48, 0.82) 46%, rgba(51, 37, 36, 0.34) 100%);
}

.page-home .image-band::after,
.page-insights .image-band::after {
  background:
    radial-gradient(ellipse at 78% 36%, rgba(215, 170, 127, 0.24), transparent 56%),
    linear-gradient(90deg, rgba(31, 35, 43, 0.97), rgba(51, 37, 36, 0.78) 52%, rgba(165, 109, 71, 0.28));
}

.page-services .image-band::after,
.page-governance .image-band::after,
.page-sourcing .image-band::after {
  background:
    radial-gradient(ellipse at 80% 34%, rgba(182, 139, 99, 0.23), transparent 57%),
    linear-gradient(90deg, rgba(51, 37, 36, 0.97), rgba(83, 58, 43, 0.75) 52%, rgba(122, 89, 56, 0.3));
}

.image-band-inner {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(74px, 8vw, 118px) 0;
}

.image-band-inner p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.82);
}

.advantage-strip {
  background-color: var(--anthracite);
  background-image:
    linear-gradient(105deg, rgba(31, 35, 43, 0.86), rgba(45, 46, 48, 0.72), rgba(51, 37, 36, 0.56)),
    url("../img/brand-backgrounds/dark-strip-material-01.png");
  background-position: center;
  background-size: cover;
  background-blend-mode: normal;
  color: var(--white);
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-inline: 1px solid rgba(255, 255, 255, 0.12);
}

.advantage-item {
  min-height: 176px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding: 30px 28px;
  text-align: center;
}

.advantage-item:first-child {
  border-left: 0;
}

.advantage-item .icon {
  margin: 0 auto 14px;
}

.advantage-item h3 {
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: uppercase;
}

.advantage-item p {
  margin: 10px auto 0;
  max-width: 230px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  line-height: 1.54;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.value-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  align-items: start;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(30px, 4vw, 54px);
  background: var(--white);
}

.value-item h3 {
  margin: 0 0 10px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: uppercase;
}

.value-item p {
  color: var(--muted);
}

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

.industry-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.industry-card img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
}

.industry-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.industry-card h3 {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.32;
  text-transform: uppercase;
}

.industry-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.home-industries {
  padding-top: clamp(24px, 4vw, 54px);
}

.timeline {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}

.timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 31px;
  width: 1px;
  background: linear-gradient(var(--raw-umber), rgba(122, 89, 56, 0.08));
  content: "";
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 26px;
  padding-bottom: 34px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(122, 89, 56, 0.55);
  border-radius: 50%;
  background: var(--warm-white);
  color: var(--gold-dark);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.25rem;
}

.timeline-card {
  padding: clamp(24px, 3vw, 34px);
}

.timeline-card h3 {
  margin: 0;
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}

.statement-sidebar {
  position: sticky;
  top: 116px;
  border-left: 3px solid var(--gold);
  padding-left: 24px;
}

.statement-sidebar p,
.legal-content p,
.article-card p,
.contact-card p {
  color: var(--muted);
}

.statement-list {
  display: grid;
  gap: 20px;
}

.statement-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: clamp(24px, 3vw, 34px);
}

.statement-card h3 {
  margin: 0 0 10px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: uppercase;
}

.document-slot {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  gap: 22px;
  align-items: center;
  border: 1px solid rgba(122, 89, 56, 0.34);
  border-radius: 6px;
  padding: clamp(24px, 3vw, 34px);
  background: linear-gradient(135deg, rgba(122, 89, 56, 0.12), rgba(248, 248, 246, 0.92));
}

.document-slot h3 {
  margin: 0 0 6px;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: uppercase;
}

.document-slot p {
  margin: 0;
  color: var(--muted);
}

.status-pill {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(122, 89, 56, 0.45);
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.article-card {
  overflow: hidden;
}

.article-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.article-card-content {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  padding: 24px;
}

.article-card-content .text-link {
  margin-top: auto;
}

.article-meta {
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: uppercase;
}

.article-detail-hero .hero-content {
  max-width: 860px;
}

.article-detail-section {
  background: var(--warm-white);
}

.page-market-article .article-detail-section {
  background: linear-gradient(120deg, var(--off-white) 0%, var(--warm-ivory) 54%, rgba(215, 170, 127, 0.27) 100%);
}

.page-supply-article .article-detail-section {
  background: linear-gradient(120deg, rgba(122, 89, 56, 0.16) 0%, var(--warm-ivory) 48%, var(--off-white) 100%);
}

.page-sourcing-article .article-detail-section {
  background: linear-gradient(120deg, var(--off-white) 0%, rgba(165, 109, 71, 0.14) 54%, rgba(215, 170, 127, 0.22) 100%);
}

.article-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.article-detail-main {
  overflow: hidden;
}

.article-detail-image {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.article-detail-content {
  max-width: 840px;
  padding: clamp(28px, 4vw, 54px);
}

.article-detail-content h2 {
  margin: 34px 0 16px;
  font-size: 2.45rem;
}

.article-detail-content p,
.article-detail-content li,
.article-detail-aside p {
  color: var(--muted);
}

.article-detail-content ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 1.2rem;
}

.article-detail-content blockquote {
  margin: 28px 0;
  border-left: 3px solid var(--gold);
  padding-left: 22px;
  color: var(--navy);
  font-family: var(--sans);
  font-style: italic;
  font-weight: 520;
  font-size: 1.35rem;
  line-height: 1.35;
}

.article-detail-aside {
  position: sticky;
  top: 116px;
}

.article-detail-aside h2 {
  margin: 8px 0 12px;
  font-size: 1.9rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
}

.contact-card {
  padding: clamp(24px, 3vw, 34px);
}

.contact-form-panel {
  min-width: 0;
  padding: clamp(24px, 3vw, 36px);
}

.contact-form-panel h2 {
  margin-top: 18px;
  font-size: 2.8rem;
}

.contact-form-panel > p {
  max-width: 660px;
  color: var(--muted);
}

.jotform-embed {
  min-height: 760px;
  margin: 28px -12px -16px;
  overflow: hidden;
  border-top: 1px solid var(--border);
  background: var(--off-white);
}

.jotform-embed iframe {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  border: 0 !important;
}

.enquiry-guidance {
  margin: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.enquiry-guidance h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1rem;
}

.enquiry-guidance ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
  margin: 0;
  padding-left: 20px;
}

.enquiry-guidance + .btn {
  width: fit-content;
}

.enquiry-guidance ~ .form-note {
  margin: 14px 0 0;
}

.form-shell {
  display: grid;
  gap: 18px;
}

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

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

.form-field label {
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 13px 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 46px;
  font-size: 2.35rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-status {
  margin: 0 auto 26px;
}

.site-footer {
  position: relative;
  border-top: 3px solid var(--raw-umber);
  background-color: var(--charcoal);
  background-image:
    linear-gradient(108deg, rgba(27, 29, 34, 0.97) 0%, rgba(34, 34, 36, 0.91) 54%, rgba(51, 37, 36, 0.82) 100%),
    url("../img/brand-backgrounds/dark-footer-material-01.png");
  background-position: center, center 44%;
  background-size: cover;
  background-blend-mode: normal;
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.35fr 0.82fr 1fr 0.72fr;
  gap: clamp(28px, 4.2vw, 64px);
  padding: 76px 0 30px;
}

.footer-brand {
  max-width: 430px;
  padding-right: clamp(10px, 2vw, 30px);
}

.site-footer .brand {
  margin-bottom: 24px;
}

.footer-brand > p:first-of-type {
  max-width: 390px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
  line-height: 1.72;
}

.footer-col {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  padding-left: clamp(22px, 2.4vw, 38px);
}

.site-footer h3 {
  margin-bottom: 20px;
  color: var(--copper-light);
  font-size: 0.76rem;
}

.footer-brand p,
.footer-col p,
.footer-small {
  color: rgba(255, 255, 255, 0.68);
}

.footer-small {
  max-width: 390px;
  font-size: 0.84rem;
  line-height: 1.65;
}

.footer-col p {
  font-size: 0.91rem;
  line-height: 1.7;
}

.footer-col ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.8);
  text-underline-offset: 4px;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--copper-light);
  text-decoration: underline;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(24px, 5vw, 80px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 10px;
  padding-top: 26px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.8rem;
  line-height: 1.65;
}

.footer-bottom span:last-child {
  max-width: 760px;
  text-align: right;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
}

.reveal {
  opacity: 1;
  transform: none;
}

html.js-enabled .reveal.is-visible {
  animation: reveal-in 650ms ease;
  animation-delay: var(--delay, 0ms);
}

html.js-enabled .hero .reveal.is-visible {
  animation: none;
}

@keyframes reveal-in {
  from {
    transform: translateY(22px);
  }

  to {
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .primary-nav {
    gap: 12px;
    font-size: 0.72rem;
  }

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

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

  .process {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 34px;
  }

  .process-step::after {
    display: none;
  }
}

@media (max-width: 900px) {
  h1 {
    font-size: 3.5rem;
  }

  .header-inner {
    min-height: 76px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    top: 76px;
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 18px;
    background: var(--off-white);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .primary-nav {
    display: grid;
  }

  .primary-nav a,
  .primary-nav .btn {
    justify-content: flex-start;
  }

  .hero,
  .hero-inner {
    min-height: 610px;
  }

  .trust-grid,
  .advantage-grid,
  .grid-4,
  .footer-inner,
  .split,
  .grid-2,
  .statement-grid,
  .contact-layout,
  .home-approach-grid {
    grid-template-columns: 1fr;
  }

  .enquiry-guidance ul {
    grid-template-columns: 1fr;
  }

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

  .statement-sidebar {
    position: static;
  }

  .article-detail-layout {
    grid-template-columns: 1fr;
  }

  .article-detail-aside {
    position: static;
  }

  .trust-item,
  .trust-item:last-child {
    border-right: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .section-soft .trust-item,
  .section-soft .trust-item:last-child {
    border-top-color: var(--border);
  }

  .advantage-item,
  .advantage-item:first-child {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

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

  .footer-bottom {
    flex-direction: column;
  }

  .footer-col {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 28px;
    padding-left: 0;
  }

  .footer-brand {
    max-width: 620px;
    padding-right: 0;
  }

  .footer-bottom span:last-child {
    max-width: 760px;
    text-align: left;
  }

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

@media (max-width: 640px) {
  .header-inner,
  .section-inner,
  .footer-inner,
  .hero-inner,
  .image-band-inner {
    width: min(100% - 28px, var(--container));
  }

  .brand {
    min-width: 146px;
  }

  .brand img {
    width: 148px;
  }

  .hero {
    min-height: 650px;
  }

  h1 {
    width: 100%;
    max-width: 100%;
    font-size: 2.4rem;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: 2.1rem;
  }

  .contact-form-panel h2 {
    font-size: 2rem;
  }

  .hero-content,
  .hero-lead {
    width: 100%;
    max-width: 100%;
  }

  .hero-lead {
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero-inner {
    min-height: 650px;
    padding: 76px 0;
  }

  .hero::after,
  .image-band::after {
    background:
      radial-gradient(ellipse at 76% 32%, rgba(215, 170, 127, 0.16) 0%, rgba(165, 109, 71, 0.05) 38%, transparent 66%),
      linear-gradient(90deg, rgba(31, 35, 43, 0.96) 0%, rgba(45, 46, 48, 0.86) 52%, rgba(51, 37, 36, 0.68) 100%),
      linear-gradient(180deg, rgba(31, 35, 43, 0.12), rgba(27, 21, 19, 0.42));
  }

  .image-band::after {
    background:
      linear-gradient(90deg, rgba(31, 35, 43, 0.96) 0%, rgba(51, 37, 36, 0.78) 100%),
      linear-gradient(180deg, rgba(31, 35, 43, 0.1), rgba(27, 21, 19, 0.38));
  }

  .hero-actions,
  .section-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .hero-actions .btn,
  .section-actions .btn {
    width: 100%;
    white-space: normal;
  }

  .service-card-row .card {
    height: auto;
    min-height: 0;
    padding-bottom: clamp(24px, 2.4vw, 32px);
  }

  .service-card-row .text-link {
    position: static;
    margin-top: 16px;
    justify-content: flex-start;
  }

  .grid-3,
  .grid-6,
  .process,
  .article-grid,
  .industries-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-inner {
    gap: 30px;
    padding-top: 58px;
  }

  .footer-bottom {
    margin-top: 2px;
  }

  .value-item {
    grid-template-columns: 1fr;
  }

  .statement-card,
  .document-slot {
    grid-template-columns: 1fr;
  }

  .jotform-embed {
    min-height: 880px;
    margin-inline: -8px;
  }

  .process-step {
    display: grid;
    min-height: 0;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    align-items: center;
    padding: 20px 52px 20px 18px;
    text-align: left;
  }

  .page-home .process-step {
    min-height: 0;
  }

  .process-step .icon {
    margin: 0;
  }

  .process-step::before {
    top: 50%;
    transform: translateY(-50%);
  }

  .timeline::before {
    left: 22px;
  }

  .timeline-item {
    grid-template-columns: 46px 1fr;
    gap: 16px;
  }

  .timeline-number {
    width: 46px;
    height: 46px;
    font-size: 1rem;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
