:root {
  --ink: #1b1e1f;
  --ink-soft: #272b2d;
  --paper: #f3f4f0;
  --white: #ffffff;
  --muted: #697174;
  --mist: #dfe4e3;
  --blue: #6f9fb4;
  --blue-deep: #326f8a;
  --blue-bright: #1394c4;
  --radius: 1.1rem;
  --shadow: 0 28px 70px rgba(16, 21, 23, 0.12);
  --page: min(1840px, calc(100vw - 64px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 999;
  padding: 0.65rem 0.9rem;
  color: var(--white);
  background: var(--blue-deep);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--white);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.solid {
  background: rgba(24, 27, 28, 0.97);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: var(--page);
  min-height: 94px;
  padding: 12px 0 8px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 285px;
  height: auto;
  filter: brightness(0) invert(1);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.83rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--white);
}

.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.55rem;
  left: 0;
  height: 2px;
  background: var(--blue);
}

.nav-contact {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
}

.nav-contact::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 19px;
  height: 1.5px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle span {
  opacity: 0;
}

.nav-open .nav-toggle::before {
  transform: translateY(5.5px) rotate(45deg);
}

.nav-open .nav-toggle::after {
  transform: translateY(-5.5px) rotate(-45deg);
}

.hero {
  min-height: 760px;
  height: 100svh;
  display: grid;
  grid-template-columns: minmax(560px, 0.82fr) minmax(0, 1.18fr);
  color: var(--white);
  background: var(--ink);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 145px clamp(42px, 5vw, 104px) 60px;
  overflow: hidden;
}

.hero-copy::before {
  display: none;
}

.hero-copy-inner {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.3rem;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2rem;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.05;
}

.hero h1 {
  max-width: 690px;
  margin-bottom: 1.45rem;
  font-size: clamp(3.7rem, 5.3vw, 6.6rem);
  font-weight: 400;
  letter-spacing: -0.065em;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.02rem, 1.35vw, 1.25rem);
  line-height: 1.62;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.8rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--white);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--blue-deep);
}

.hero-media {
  position: relative;
  min-height: 620px;
  padding: 106px 12px 12px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(220px, 0.72fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 9px;
  background: var(--ink);
  overflow: hidden;
}

.hero-visual {
  position: relative;
  margin: 0;
  min-height: 0;
  border-radius: 0.7rem;
  overflow: hidden;
}

.hero-visual-main {
  grid-row: 1 / -1;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.04);
  transition: transform 700ms cubic-bezier(.2,.7,.2,1);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 11, 12, 0.72), transparent 45%);
}

.hero-visual:hover img {
  transform: scale(1.025);
}

.visual-label {
  position: absolute;
  z-index: 2;
  right: 1.2rem;
  bottom: 1.1rem;
  left: 1.2rem;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section {
  padding: clamp(4.7rem, 6.5vw, 7.5rem) 0;
}

.section-tight {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.section-dark {
  color: var(--white);
  background: var(--ink);
}

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

.container {
  width: var(--page);
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.52fr) minmax(0, 1.48fr);
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

.intro-aside {
  display: grid;
  gap: 1.5rem;
  align-content: start;
}

.intro-aside img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  filter: saturate(0.8);
}

.section-kicker {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-dark .section-kicker {
  color: var(--blue);
}

.display-copy {
  max-width: 1120px;
  margin-bottom: 1.5rem;
  font-size: clamp(2.55rem, 4.25vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.06;
}

.intro-copy {
  max-width: 920px;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-dark .intro-copy {
  color: rgba(255, 255, 255, 0.64);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 4rem;
}

.service-card {
  min-height: 300px;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-card:nth-child(1),
.service-card:nth-child(2) {
  grid-column: span 6;
}

.service-card:nth-child(n+3) {
  grid-column: span 4;
}

.service-card.is-dark {
  color: var(--white);
  background: var(--ink-soft);
}

.service-number {
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.is-dark .service-number {
  color: var(--blue);
}

.service-card h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.45rem, 2.2vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.service-card p {
  max-width: 36rem;
  margin-bottom: 0;
  color: var(--muted);
}

.service-card.is-dark p {
  color: rgba(255, 255, 255, 0.64);
}

.image-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
  min-height: 680px;
  background: var(--white);
}

.image-feature-media {
  position: relative;
  min-height: 540px;
  overflow: hidden;
}

.image-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 7rem);
}

.image-feature-copy h2 {
  margin: 0 0 1.2rem;
  font-size: clamp(2.6rem, 5vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -0.06em;
}

.image-feature-copy p:not(.eyebrow) {
  max-width: 30rem;
  color: var(--muted);
}

.category-header,
.insights-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.category-header h2,
.insights-header h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -0.06em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link::after {
  content: "↗";
  font-size: 1rem;
  transition: transform 160ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translate(2px, -2px);
}

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

.category-card {
  position: relative;
  min-height: 420px;
  color: var(--white);
  background: #101213;
  border-radius: var(--radius);
  overflow: hidden;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(8, 11, 12, 0.9));
}

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

.category-card-content {
  position: absolute;
  z-index: 2;
  right: 1.5rem;
  bottom: 1.45rem;
  left: 1.5rem;
}

.category-card-content span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-card-content h3 {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.sector-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.sector-strip div {
  min-height: 140px;
  padding: 1.4rem 1rem 1.4rem 0;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.sector-strip div:last-child {
  border-right: 0;
}

.sector-strip strong {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 1.05rem;
  font-weight: 550;
}

.sector-strip span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
}

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

.insight-card {
  display: grid;
  grid-template-rows: 190px auto 1fr;
  min-height: 465px;
  padding: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 200ms ease, background 200ms ease;
}

.insight-image {
  width: 100%;
  height: 190px;
  object-fit: cover;
  filter: saturate(0.78);
}

.insight-card > .insight-meta {
  margin: 1.4rem 1.75rem 0;
}

.insight-card > div {
  padding: 0 1.75rem 1.75rem;
}

.insight-card:hover {
  transform: translateY(-4px);
  background: #e7ebea;
}

.insight-meta {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.insight-card h3 {
  margin: 1.6rem 0 0.8rem;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  font-weight: 450;
  letter-spacing: -0.04em;
}

.insight-card p {
  color: var(--muted);
}

.cta-band {
  position: relative;
  padding: clamp(5rem, 10vw, 10rem) 0;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  width: min(52vw, 700px);
  aspect-ratio: 1;
  right: -11vw;
  bottom: -65%;
  border: clamp(3rem, 7vw, 7rem) solid rgba(111, 159, 180, 0.12);
  border-radius: 50%;
}

.cta-band-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  align-items: end;
  gap: 3rem;
}

.cta-band h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 7.4rem);
  font-weight: 400;
  letter-spacing: -0.065em;
}

.cta-details {
  display: grid;
  gap: 0.9rem;
  justify-items: start;
}

.cta-details a {
  color: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.cta-details a:hover,
.cta-details a:focus-visible {
  color: var(--white);
}

.site-footer {
  padding: 3.2rem 0 1.7rem;
  color: rgba(255, 255, 255, 0.62);
  background: #111314;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(2, 0.7fr);
  gap: 3rem;
}

.footer-brand img {
  width: 270px;
  height: auto;
  margin-bottom: 1.3rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 410px;
  font-size: 0.92rem;
}

.footer-column h3 {
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  display: block;
  margin: 0.42rem 0;
  font-size: 0.92rem;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
}

/* Inner pages */
.page-hero {
  position: relative;
  min-height: 610px;
  padding: 190px 0 90px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.page-hero.has-image::before {
  content: "";
  position: absolute;
  inset: 0 0 0 52%;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: saturate(0.75);
}

.page-hero.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, var(--ink) 47%, rgba(27, 30, 31, 0.5) 72%, rgba(27, 30, 31, 0.15));
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0 0 1.4rem;
  font-size: clamp(3.5rem, 7.5vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.065em;
}

.page-hero p:not(.eyebrow) {
  max-width: 630px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.12rem;
}

.page-hero.page-hero-visual {
  min-height: 730px;
  padding: 116px 0 28px;
  align-items: stretch;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(500px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: stretch;
}

.page-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3.5rem 0;
}

.page-hero-visual h1 {
  max-width: 780px;
  font-size: clamp(3.7rem, 5.5vw, 6.8rem);
}

.page-hero-collage {
  min-height: 580px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(220px, 0.7fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.page-hero-image {
  position: relative;
  margin: 0;
  min-height: 0;
  border-radius: 0.75rem;
  overflow: hidden;
}

.page-hero-image:first-child {
  grid-row: 1 / -1;
}

.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.03);
}

.page-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 11, 12, 0.64), transparent 44%);
}

.page-hero-image figcaption {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 0.9rem;
  left: 1rem;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.detail-list {
  display: grid;
  gap: 1rem;
}

.detail-row {
  display: grid;
  grid-template-columns: 110px minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  padding: 2.2rem 0;
  border-top: 1px solid #cfd5d3;
}

.detail-row:last-child {
  border-bottom: 1px solid #cfd5d3;
}

.detail-row .number {
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.detail-row h2,
.detail-row h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.6vw, 2.5rem);
  font-weight: 480;
  letter-spacing: -0.04em;
}

.detail-row p {
  margin-bottom: 0;
  color: var(--muted);
}

.product-section {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(3rem, 5vw, 6.5rem);
  align-items: start;
  padding: clamp(4rem, 8vw, 8rem) 0;
  border-top: 1px solid #cfd5d3;
}

.product-sticky {
  position: sticky;
  top: 118px;
}

.product-sticky img {
  width: 100%;
  aspect-ratio: 2.06 / 1;
  margin-bottom: 1.5rem;
  object-fit: cover;
  border-radius: var(--radius);
}

.product-sticky h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(2.3rem, 4.4vw, 4.6rem);
  font-weight: 420;
  letter-spacing: -0.055em;
}

.product-sticky p {
  color: var(--muted);
}

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

.product-column {
  padding: 1.6rem;
  background: var(--white);
  border-radius: 0.8rem;
}

.product-column h3 {
  font-size: 1.1rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.product-column ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.product-column li + li {
  margin-top: 0.45rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.value-card {
  min-height: 280px;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius);
}

.value-card span {
  color: var(--blue-deep);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.value-card h3 {
  margin: 3.4rem 0 1rem;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.035em;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 1rem;
}

.contact-card {
  min-height: 300px;
  padding: clamp(2rem, 5vw, 4.5rem);
  background: var(--white);
  border-radius: var(--radius);
}

.contact-card.dark {
  color: var(--white);
  background: var(--ink);
}

.contact-card h2 {
  max-width: 650px;
  font-size: clamp(2.5rem, 5vw, 5.4rem);
  font-weight: 420;
  letter-spacing: -0.06em;
}

.contact-card p {
  max-width: 560px;
  color: var(--muted);
}

.contact-card.dark p {
  color: rgba(255, 255, 255, 0.62);
}

.contact-methods {
  display: grid;
  gap: 0.75rem;
  margin-top: 2.2rem;
}

.contact-method {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-method span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-method a:hover,
.contact-method a:focus-visible {
  color: var(--blue);
}

.contact-method .contact-email-button {
  justify-self: start;
  min-height: 44px;
  padding: 0.6rem 1.05rem;
}

.contact-method .contact-email-button:hover,
.contact-method .contact-email-button:focus-visible {
  color: var(--ink);
}

.enquiry-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 2rem;
}

.enquiry-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid #d3d8d6;
  font-weight: 550;
}

.enquiry-list a::after {
  content: "↗";
  color: var(--blue-deep);
}

/* Blog */
.blog-hero {
  padding-bottom: 4rem;
}

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

.blog-card {
  --blog-pad: clamp(1.7rem, 3vw, 3rem);
  min-height: 380px;
  padding: var(--blog-pad);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 200ms ease, background 200ms ease;
}

.blog-card:first-child {
  grid-column: span 2;
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  grid-template-rows: auto 1fr;
  gap: 1rem 3rem;
  color: var(--white);
  background: var(--ink);
}

.blog-card:first-child > .insight-meta {
  grid-column: 1;
  grid-row: 1;
}

.blog-card:first-child > div {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
}

.blog-card:first-child > .blog-card-image {
  grid-column: 2;
  grid-row: 1 / -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.8rem;
  filter: saturate(0.74);
}

.blog-card:not(:first-child) .blog-card-image {
  order: -1;
  width: 100%;
  height: 240px;
  margin: 0 0 1.8rem;
  object-fit: cover;
  border-radius: 0.75rem;
  filter: saturate(0.74);
}

.blog-card:hover {
  transform: translateY(-4px);
  background: #e6ebea;
}

.blog-card:first-child:hover {
  background: var(--ink-soft);
}

.blog-card h2 {
  max-width: 760px;
  margin: 2rem 0 1rem;
  font-size: clamp(2rem, 4vw, 4.7rem);
  font-weight: 430;
  letter-spacing: -0.055em;
}

.blog-card:not(:first-child) h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.blog-card p {
  max-width: 650px;
  color: var(--muted);
}

.blog-card:first-child p {
  color: rgba(255, 255, 255, 0.62);
}

.article-hero {
  position: relative;
  min-height: 560px;
  padding: 180px 0 70px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.article-hero.has-image::before {
  content: "";
  position: absolute;
  inset: 0 0 0 52%;
  background-image: var(--article-image);
  background-position: center;
  background-size: cover;
  filter: saturate(0.72) contrast(1.03);
}

.article-hero.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, var(--ink) 45%, rgba(27, 30, 31, 0.72) 62%, rgba(27, 30, 31, 0.2));
}

.article-hero .container {
  position: relative;
  z-index: 2;
}

.article-hero h1 {
  max-width: 1000px;
  margin: 0 0 1.4rem;
  font-size: clamp(3.2rem, 5.5vw, 6.5rem);
  font-weight: 420;
  letter-spacing: -0.06em;
}

.article-hero .article-intro {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 1.12rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(190px, 0.32fr) minmax(0, 820px) minmax(0, 0.32fr);
  gap: clamp(2rem, 5vw, 6rem);
}

.article-body {
  grid-column: 2;
}

.article-aside {
  position: sticky;
  top: 120px;
  align-self: start;
  color: var(--muted);
  font-size: 0.84rem;
}

.article-aside strong {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--ink);
}

.article-body {
  font-size: 1.08rem;
}

.article-body h2 {
  margin: 3.3rem 0 1rem;
  font-size: clamp(2rem, 3.6vw, 3.3rem);
  font-weight: 470;
  letter-spacing: -0.045em;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body h3 {
  margin: 2.3rem 0 0.7rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.article-body p,
.article-body li {
  color: #4f575a;
}

.article-body ul,
.article-body ol {
  padding-left: 1.2rem;
}

.article-body li + li {
  margin-top: 0.75rem;
}

.article-note {
  margin: 2.8rem 0;
  padding: 1.7rem;
  color: var(--ink);
  background: #e2e8e7;
  border-left: 4px solid var(--blue-deep);
  border-radius: 0 0.7rem 0.7rem 0;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (max-width: 980px) {
  :root {
    --page: min(100% - 36px, 860px);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    padding: 120px 24px 40px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    visibility: visible;
  }

  .site-nav a {
    padding: 0.85rem 0;
    font-size: clamp(1.6rem, 7vw, 2.4rem);
    font-weight: 450;
    letter-spacing: -0.03em;
    text-transform: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .site-nav a[aria-current="page"]::after {
    display: none;
  }

  .nav-contact {
    border: 0;
    border-radius: 0;
  }

  .hero {
    min-height: 980px;
    height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: auto;
    padding: 72px 22px 80px;
    order: 2;
  }

  .hero-media {
    min-height: 470px;
    height: 52vh;
    padding: 86px 8px 8px;
    grid-template-columns: minmax(0, 1.4fr) minmax(190px, 0.7fr);
    gap: 7px;
    order: 1;
  }

  .intro-aside img {
    max-height: 340px;
  }

  .intro-grid,
  .image-feature,
  .cta-band-inner,
  .contact-grid,
  .product-section {
    grid-template-columns: 1fr;
  }

  .service-card:nth-child(n) {
    grid-column: span 6;
  }

  .image-feature-copy {
    padding: 4rem 24px;
  }

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

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

  .sector-strip div:nth-child(2n) {
    border-right: 0;
  }

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

  .footer-brand {
    grid-column: span 2;
  }

  .page-hero.has-image::before {
    inset: 0;
    opacity: 0.3;
  }

  .page-hero.has-image::after {
    background: linear-gradient(90deg, rgba(27, 30, 31, 0.92), rgba(27, 30, 31, 0.64));
  }

  .page-hero.page-hero-visual {
    min-height: auto;
    padding: 112px 0 24px;
  }

  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .page-hero-copy {
    padding: 2.5rem 0 1rem;
  }

  .page-hero-collage {
    min-height: 450px;
  }

  .product-sticky {
    position: static;
  }

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

  .values-grid,
  .insight-grid {
    grid-template-columns: 1fr;
  }

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

  .article-body {
    grid-column: auto;
  }

  .blog-card:first-child {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  }

  .article-aside {
    position: static;
  }
}

@media (max-width: 680px) {
  :root {
    --page: calc(100% - 28px);
  }

  .nav-shell {
    min-height: 76px;
  }

  .brand img {
    width: 220px;
  }

  .hero-copy {
    min-height: auto;
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 14vw, 4.8rem);
  }

  .hero-media {
    min-height: 500px;
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 1.35fr 0.65fr;
  }

  .hero-visual-main {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .button-row,
  .button {
    width: 100%;
  }

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

  .service-card:nth-child(n) {
    grid-column: auto;
    min-height: 235px;
  }

  .category-header,
  .insights-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .category-grid,
  .product-columns,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 325px;
  }

  .insight-card {
    min-height: 430px;
  }

  .sector-strip {
    grid-template-columns: 1fr;
  }

  .sector-strip div {
    min-height: auto;
    border-right: 0;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .footer-brand {
    grid-column: auto;
  }

  .page-hero {
    min-height: 560px;
    padding-top: 145px;
  }

  .page-hero.page-hero-visual {
    padding-top: 92px;
  }

  .page-hero-visual h1 {
    font-size: clamp(2.9rem, 12.5vw, 4.6rem);
  }

  .page-hero-collage {
    min-height: 470px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 1.25fr 0.75fr;
  }

  .page-hero-image:first-child {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .detail-row {
    grid-template-columns: 55px 1fr;
    gap: 1rem;
  }

  .detail-row p {
    grid-column: 2;
  }

  .product-section {
    padding: 4.5rem 0;
  }

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

  .contact-method {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .blog-card:first-child {
    grid-column: auto;
    display: flex;
    min-height: 520px;
  }

  .blog-card:first-child > .blog-card-image {
    order: -1;
    width: 100%;
    height: 250px;
    margin: 0 0 1.8rem;
    border-radius: 0.75rem;
  }

  .article-hero {
    min-height: 520px;
    padding-top: 145px;
  }

  .article-hero h1 {
    font-size: clamp(2.75rem, 11.5vw, 4.4rem);
  }

  .article-hero.has-image::before {
    inset: 0;
    opacity: 0.34;
  }

  .article-hero.has-image::after {
    background: linear-gradient(90deg, rgba(27, 30, 31, 0.95), rgba(27, 30, 31, 0.72));
  }
}

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

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