:root {
  --ink: #111820;
  --navy: #101923;
  --slate: #586773;
  --muted: #76838d;
  --line: #d9dee2;
  --paper: #fbfaf8;
  --warm: #f5f1ec;
  --blue: #edf3f7;
  --orange: #f27822;
  --orange-soft: #fae8d9;
  --white: #ffffff;
}

* { box-sizing: border-box; }

.svgSymbols {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

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

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

svg {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skipLink {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--navy);
  color: white;
  transform: translateY(-160%);
}

.skipLink:focus { transform: translateY(0); }

a:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.siteHeader {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 78px;
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 4.8vw;
  border-bottom: 1px solid rgba(17, 24, 32, 0.1);
  background: rgba(251, 250, 248, 0.94);
  backdrop-filter: blur(18px);
}

.brandLink {
  width: 220px;
  height: 44px;
  display: flex;
  align-items: center;
}

.brandCrop {
  position: relative;
  display: block;
  width: 220px;
  height: 38px;
  overflow: hidden;
}

.brandCrop img {
  position: absolute;
  width: 220px;
  height: auto;
  left: 0;
  top: -22px;
}

.mainNav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 2.4vw, 40px);
}

.mainNav a {
  position: relative;
  color: #34424d;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.mainNav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--orange);
  transition: right 180ms ease;
}

.mainNav a:hover::after { right: 0; }

.headerActions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.language {
  padding-right: 16px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 24px;
  border: 1px solid var(--orange);
  background: var(--orange);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.025em;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: #db6415;
  background: #db6415;
}

.buttonSmall {
  min-height: 40px;
  padding: 0 17px;
  gap: 10px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: 52% 48%;
  grid-template-rows: 1fr auto;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(17,24,32,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,24,32,.035) 1px, transparent 1px),
    var(--paper);
  background-size: 64px 64px;
}

.heroCopy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 132px) 7vw clamp(120px, 12vw, 180px) 6.1vw;
}

.sectionLabel {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.sectionLabel span {
  width: 12px;
  height: 28px;
  display: inline-block;
  background: var(--orange);
}

.hero h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(48px, 5.1vw, 82px);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.heroLead {
  max-width: 720px;
  margin: 34px 0 0;
  color: #33424d;
  font-size: clamp(19px, 1.45vw, 24px);
  line-height: 1.43;
}

.heroSupport {
  max-width: 650px;
  margin: 15px 0 0;
  color: var(--slate);
  font-size: 16px;
}

.heroButtons {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 36px;
}

.textLink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--ink);
  padding: 12px 0 9px;
  font-size: 13px;
  font-weight: 800;
}

.heroVisual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-left: 10px solid var(--orange);
  background: var(--navy);
  margin: 0;
}

.heroVisual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,16,22,.78) 100%);
  pointer-events: none;
}

.heroVisual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
}

.heroCaption {
  position: absolute;
  z-index: 2;
  left: 38px;
  right: 38px;
  bottom: 42px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  color: white;
}

.heroCaption span {
  max-width: 140px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.heroCaption strong {
  font-size: 13px;
  letter-spacing: .02em;
}

.heroFacts {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  width: 52%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  background: rgba(251,250,248,.95);
}

.heroFacts div {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px clamp(15px, 2vw, 34px);
  border-right: 1px solid var(--line);
}

.heroFacts strong {
  color: var(--ink);
  font-size: clamp(25px, 2.5vw, 38px);
  letter-spacing: -.04em;
  line-height: 1;
}

.heroFacts div:first-child strong { color: var(--orange); }

.heroFacts span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.experienceBand {
  min-height: 126px;
  display: grid;
  grid-template-columns: minmax(220px, .7fr) 2fr;
  align-items: center;
  gap: 34px;
  padding: 28px 6.1vw;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.experienceBand > p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.clientNames {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 20px;
}

.clientNames span {
  color: #293641;
  font-size: clamp(14px, 1.15vw, 18px);
  font-weight: 800;
  letter-spacing: -.015em;
  text-align: center;
}

.section { padding: clamp(84px, 8.5vw, 138px) 6.1vw; }

.sectionIntro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 7vw;
  margin-bottom: 58px;
}

.sectionIntro .sectionLabel {
  grid-column: 1 / -1;
  margin-bottom: -12px;
}

.sectionIntro h2,
.capabilityHeader h2,
.projectsHeader h2,
.mobilisationCopy h2,
.galleryIntro h2,
.contactSection h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 62px);
  font-weight: 750;
  letter-spacing: -.045em;
  line-height: 1.05;
}

.sectionIntro > p,
.capabilityHeader > p,
.projectsHeader > p,
.galleryIntro > p {
  max-width: 660px;
  margin: 3px 0 0;
  color: var(--slate);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.58;
}

.servicesLayout {
  display: grid;
  grid-template-columns: 1.5fr .8fr;
  gap: 38px;
}

.serviceCards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.serviceCard {
  position: relative;
  min-height: 430px;
  padding: 34px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.serviceIcon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--orange);
  background: var(--orange-soft);
}

.serviceNumber {
  position: absolute;
  top: 38px;
  right: 30px;
  color: #9aa4ab;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}

.serviceCard h3 {
  margin: 76px 0 18px;
  font-size: clamp(24px, 2vw, 31px);
  letter-spacing: -.035em;
  line-height: 1.08;
}

.serviceCard p {
  margin: 0;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.65;
}

.serviceImage {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
}

.serviceImage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
}

.serviceImage::after,
.galleryGrid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,17,23,.68) 100%);
}

.serviceImage figcaption,
.galleryGrid figcaption {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 20px;
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.capabilitySection { background: var(--blue); }

.capabilityHeader,
.projectsHeader {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 50px;
}

.wpsCallout {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 24px;
  max-width: 1000px;
  margin-bottom: 38px;
  padding: 26px 30px;
  border-left: 4px solid var(--orange);
  background: var(--white);
}

.wpsIcon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--orange);
  background: var(--orange-soft);
}

.wpsCallout span,
.featureKicker,
.safetyCopy > span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.wpsCallout h3 {
  margin: 3px 0 5px;
  font-size: 21px;
  letter-spacing: -.02em;
}

.wpsCallout p {
  max-width: 840px;
  margin: 0;
  color: var(--slate);
}

.processGrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 54px;
  border-top: 1px solid #ccd6dc;
  border-left: 1px solid #ccd6dc;
}

.processCard {
  min-height: 164px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  border-right: 1px solid #ccd6dc;
  border-bottom: 1px solid #ccd6dc;
  background: rgba(255,255,255,.45);
}

.processCard strong {
  color: var(--orange);
  font-size: 38px;
  letter-spacing: -.045em;
  line-height: 1;
}

.processCard span {
  margin-top: 13px;
  font-size: 13px;
  font-weight: 800;
}

.processCard small {
  margin-top: 3px;
  color: var(--slate);
  font-size: 11px;
}

.capabilityFeature {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  min-height: 560px;
  background: var(--navy);
}

.featureImage {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
}

.featureImage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

.featureCopy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 5vw, 76px);
  color: white;
}

.featureCopy h3 {
  margin: 12px 0 28px;
  font-size: clamp(30px, 3vw, 46px);
  letter-spacing: -.04em;
  line-height: 1.08;
}

.featureCopy ul,
.readinessList {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.featureCopy li,
.readinessList li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.featureCopy li {
  color: #d7dde2;
  font-size: 15px;
}

.featureCopy li svg {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--orange);
}

.safetySection { background: var(--paper); }
.compactIntro { max-width: 1180px; }

.safetyCards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.safetyCard {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 460px;
  border: 1px solid var(--line);
  background: var(--white);
}

.safetyVisual {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background: #f5f6f5;
}

.safetyVisual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 28px;
}

.certificateVisual img { padding: 24px; }
.helmetVisual img { padding: 45px 24px; }

.safetyCopy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
}

.inlineIcon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  color: var(--orange);
  background: var(--orange-soft);
}

.safetyCopy h3 {
  margin: 10px 0 14px;
  font-size: clamp(25px, 2.2vw, 35px);
  letter-spacing: -.035em;
  line-height: 1.08;
}

.safetyCopy p {
  margin: 0;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.65;
}

.mobilisationSection {
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: 690px;
  background: var(--warm);
}

.mobilisationVisual {
  position: relative;
  min-height: 580px;
  overflow: hidden;
}

.mobilisationVisual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
}

.photoLabel {
  position: absolute;
  left: 30px;
  bottom: 30px;
  padding: 11px 14px;
  background: rgba(17,24,32,.9);
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.mobilisationCopy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 7vw, 120px) 7vw;
}

.mobilisationCopy > p {
  margin: 26px 0 23px;
  color: var(--slate);
  font-size: 17px;
  line-height: 1.65;
}

.countryLine {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 25px;
  color: var(--orange);
}

.countryLine span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .11em;
}

.readinessList {
  grid-template-columns: 1fr 1fr;
  gap: 11px 20px;
}

.readinessList li {
  color: var(--slate);
  font-size: 13px;
  line-height: 1.4;
}

.readinessList li svg {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--orange);
}

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

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

.projectCard {
  min-height: 350px;
  padding: clamp(28px, 3.4vw, 54px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: background 180ms ease;
}

.projectCard:hover { z-index: 2; background: var(--blue); }

.projectMeta {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.projectMeta span:last-child {
  display: flex;
  align-items: center;
  gap: 6px;
}

.projectCard h3 {
  margin: 58px 0 0;
  font-size: clamp(30px, 3vw, 45px);
  letter-spacing: -.04em;
  line-height: 1.05;
}

.projectCard h4 {
  margin: 6px 0 0;
  color: var(--orange);
  font-size: 16px;
}

.projectCard p {
  max-width: 610px;
  margin: 23px 0 0;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.65;
}

.gallerySection {
  padding: clamp(84px, 8vw, 130px) 6.1vw;
  background: var(--navy);
  color: white;
}

.galleryIntro {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 50px;
  margin-bottom: 48px;
}

.galleryIntro .sectionLabel {
  grid-column: 1 / -1;
  margin-bottom: -15px;
}

.galleryIntro > p { color: #9fabb4; }

.galleryGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 310px;
  gap: 16px;
}

.galleryGrid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #202a33;
}

.galleryGrid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.galleryGrid figure:hover img { transform: scale(1.025); }
.galleryTall { grid-row: span 2; }
.galleryWide { grid-row: span 1; }
.galleryPosTop img { object-position: center 35%; }

.contactSection {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 7vw;
  padding: clamp(84px, 8vw, 132px) 6.1vw;
  background: var(--orange-soft);
}

.contactDetails { align-self: end; }

.contactDetails > p {
  max-width: 600px;
  margin: 0 0 30px;
  color: var(--slate);
  font-size: 18px;
  line-height: 1.6;
}

.contactDetails > a:first-of-type {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 20px 0;
  border-top: 1px solid rgba(17,24,32,.25);
  border-bottom: 1px solid rgba(17,24,32,.25);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 750;
  letter-spacing: -.02em;
}

.secondaryMail {
  display: inline-block;
  margin-top: 18px;
  color: var(--slate);
  font-size: 14px;
  font-weight: 700;
}

.siteFooter {
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 30px;
  padding: 34px 6.1vw;
  background: var(--navy);
  color: white;
}

.footerWordmark {
  font-size: clamp(18px, 1.8vw, 27px);
  font-weight: 800;
  letter-spacing: .02em;
}

.siteFooter > p {
  margin: 0;
  color: #a4b0b8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-align: center;
  text-transform: uppercase;
}

.siteFooter > div {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  color: #a4b0b8;
  font-size: 11px;
}

@media (max-width: 1180px) {
  .siteHeader {
    grid-template-columns: 220px 1fr auto;
    padding-inline: 4vw;
  }
  .mainNav { gap: 18px; }
  .hero { grid-template-columns: 55% 45%; }
  .heroFacts { width: 55%; }
  .serviceCards { grid-template-columns: 1fr; }
  .serviceCard { min-height: auto; padding: 28px; }
  .serviceCard h3 { margin-top: 36px; }
  .safetyCard { grid-template-columns: 1fr; }
  .safetyVisual { min-height: 340px; }
}

@media (max-width: 900px) {
  .siteHeader {
    min-height: 70px;
    grid-template-columns: 1fr auto;
  }
  .mainNav, .language { display: none; }
  .brandLink, .brandCrop { width: 182px; }
  .brandCrop { height: 32px; }
  .brandCrop img { width: 182px; top: -18px; }
  .hero {
    min-height: 0;
    display: flex;
    flex-direction: column;
  }
  .heroCopy { order: 1; padding: 74px 6vw 54px; }
  .heroVisual {
    order: 2;
    min-height: 66vw;
    border-top: 8px solid var(--orange);
    border-left: 0;
  }
  .heroFacts { position: static; order: 3; width: 100%; }
  .experienceBand { grid-template-columns: 1fr; }
  .clientNames { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .sectionIntro,
  .capabilityHeader,
  .projectsHeader,
  .galleryIntro,
  .contactSection { grid-template-columns: 1fr; }
  .servicesLayout { grid-template-columns: 1fr; }
  .serviceCards { grid-template-columns: repeat(3, 1fr); }
  .serviceImage { min-height: 68vw; }
  .processGrid { grid-template-columns: repeat(3, 1fr); }
  .capabilityFeature,
  .mobilisationSection { grid-template-columns: 1fr; }
  .featureImage,
  .mobilisationVisual { min-height: 68vw; }
  .safetyCards { grid-template-columns: 1fr 1fr; }
  .projectGrid { grid-template-columns: 1fr; }
  .siteFooter { grid-template-columns: 1fr; text-align: center; }
  .siteFooter > div { justify-content: center; }
}

@media (max-width: 680px) {
  html { scroll-padding-top: 70px; }
  .siteHeader { padding-inline: 20px; }
  .buttonSmall { min-height: 38px; padding-inline: 13px; }
  .buttonSmall svg { display: none; }
  .hero h1 { font-size: clamp(43px, 12.5vw, 60px); }
  .heroButtons {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }
  .textLink { justify-content: center; }
  .heroVisual { min-height: 82vw; }
  .heroCaption { left: 22px; right: 22px; bottom: 22px; }
  .heroCaption strong { display: none; }
  .heroFacts { grid-template-columns: repeat(2, 1fr); }
  .heroFacts div {
    min-height: 92px;
    border-bottom: 1px solid var(--line);
  }
  .section,
  .gallerySection,
  .contactSection { padding-inline: 20px; }
  .sectionIntro { gap: 24px; }
  .serviceCards,
  .processGrid,
  .safetyCards,
  .readinessList { grid-template-columns: 1fr; }
  .processCard { min-height: 118px; }
  .capabilityFeature { min-height: 0; }
  .featureImage,
  .mobilisationVisual { min-height: 84vw; }
  .featureCopy,
  .mobilisationCopy { padding: 54px 24px; }
  .wpsCallout { grid-template-columns: 1fr; }
  .safetyCard { grid-template-columns: 1fr; }
  .safetyVisual { min-height: 88vw; }
  .safetyCopy { padding: 30px; }
  .galleryGrid {
    grid-template-columns: 1fr;
    grid-auto-rows: 74vw;
  }
  .galleryTall { grid-row: span 1; }
  .projectCard { min-height: 0; }
  .contactSection { gap: 42px; }
  .contactDetails > a:first-of-type { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
