:root {
  --obsidian: #0a0a0a;
  --graphite: #1a1a1a;
  --stone: #2a2a2a;
  --silver: #8a8a8a;
  --ash: #c0c0c0;
  --white: #ffffff;
  --container: 1440px;
  --header-height: 92px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: var(--obsidian);
  color: var(--ash);
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.font-serif {
  font-family: 'Cormorant Garamond', serif;
}

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section--alt {
  background: var(--graphite);
}

.section-divider {
  width: 60px;
  height: 1px;
  background: var(--stone);
  margin-bottom: 32px;
}

.section-title {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--white);
}

.section-text {
  margin: 0 0 24px;
  max-width: 720px;
  color: var(--silver);
  font-size: 1rem;
  line-height: 1.8;
}

.section-link-wrap {
  margin-top: 40px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 64px;
}

.grid-two {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 96px;
  align-items: start;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background: radial-gradient(ellipse at 20% 50%, var(--graphite) 0%, transparent 50%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero-title {
  margin: 0;
  max-width: 1100px;
  color: var(--white);
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: 0.95;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.hero-copy {
  margin-top: 48px;
  max-width: 640px;
}

.hero-copy p {
  margin: 0;
  color: var(--silver);
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.9;
}

.hero-actions {
  margin-top: 48px;
}

.hero-mark {
  position: absolute;
  right: 96px;
  bottom: 48px;
  color: var(--silver);
  opacity: 0.2;
}

.hero-line {
  overflow: hidden;
}

.hero-line span {
  display: block;
  transform: translateY(100%);
  animation: slideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-line:nth-child(2) span {
  animation-delay: 0.15s;
}

.hero-line:nth-child(3) span {
  animation-delay: 0.3s;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in-delay-1 {
  animation-delay: 0.4s;
}

.fade-in-delay-2 {
  animation-delay: 0.6s;
}

.fade-in-delay-3 {
  animation-delay: 0.8s;
}

@keyframes slideUp {
  to {
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .grid-two {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 80px;
  }

  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .section {
    padding: 72px 0;
  }

  .hero__content {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .hero-mark {
    display: none;
  }
}
/* ===== HERO VIDEO UPGRADE ===== */

.site-header--hero {
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.82) 0%, rgba(10, 10, 10, 0.3) 65%, transparent 100%);
  backdrop-filter: blur(6px);
}

.hero--video {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-height);
  background: #050505;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.7) brightness(0.55) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.74) 0%, rgba(5, 5, 5, 0.48) 35%, rgba(5, 5, 5, 0.2) 65%, rgba(5, 5, 5, 0.45) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.28) 0%, rgba(5, 5, 5, 0.1) 35%, rgba(5, 5, 5, 0.58) 100%);
}

.hero__content--left {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--header-height));
}

.hero-copy-block {
  max-width: 760px;
  padding-top: 40px;
}

.hero-kicker {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero--video .hero-title {
  max-width: 900px;
  font-size: clamp(3.4rem, 8vw, 7.2rem);
  line-height: 0.92;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.hero--video .hero-copy {
  margin-top: 36px;
  max-width: 620px;
}

.hero--video .hero-copy p {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.9;
}

.hero--video .hero-actions {
  margin-top: 38px;
}


/* Institution section: give it more gravity after video */
.section--institution {
  background:
    linear-gradient(180deg, rgba(12, 12, 12, 1) 0%, rgba(14, 14, 14, 1) 100%);
}

/* Capability media placeholders */
.service-card__media {
  width: 100%;
  height: 220px;
  margin-bottom: 24px;
  background-color: #111;
  border: 1px solid var(--stone);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.service-card__media--aviation {
  background-image:
    linear-gradient(180deg, rgba(8, 8, 8, 0.18) 0%, rgba(8, 8, 8, 0.4) 100%),
    url("../img/services/aviation.jpg");
}

.service-card__media--maritime {
  background-image:
    linear-gradient(180deg, rgba(8, 8, 8, 0.18) 0%, rgba(8, 8, 8, 0.4) 100%),
    url("../img/services/maritime.jpg");
}

.service-card__media--residences {
  background-image:
    linear-gradient(180deg, rgba(8, 8, 8, 0.18) 0%, rgba(8, 8, 8, 0.4) 100%),
    url("../img/services/residences.jpg");
}

/* How we operate */
.section--operate {
  background: #0d0d0d;
}

.section-head--stack {
  display: block;
  margin-bottom: 56px;
}

.section-text--narrow {
  max-width: 640px;
  margin-top: 18px;
}

.operate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.operate-card {
  border: 1px solid var(--stone);
  padding: 28px;
  background: linear-gradient(180deg, rgba(24, 24, 24, 0.78) 0%, rgba(14, 14, 14, 0.96) 100%);
}

.operate-card__number {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--silver);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.operate-card__title {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1.65rem;
  line-height: 1.08;
  font-weight: 300;
}

.operate-card__text {
  margin: 0;
  color: var(--silver);
  font-size: 0.95rem;
  line-height: 1.8;
}

@media (max-width: 1100px) {
  .operate-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero__content--left {
    min-height: calc(100vh - var(--header-height));
    align-items: center;
  }

  .hero-copy-block {
    max-width: 100%;
    padding-top: 20px;
  }

  .hero-kicker {
    margin-bottom: 18px;
  }

  .hero--video .hero-title {
    font-size: clamp(2.8rem, 13vw, 4.5rem);
  }

  .hero--video .hero-copy {
    margin-top: 28px;
  }

  .hero-bottom-note {
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
  }

  .service-card__media {
    height: 180px;
  }
}
/* ===== SELECTED DISPATCHES + CONTACT ===== */

.section--dispatches {
  background: #111111;
}

.dispatch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.dispatch-card {
  display: block;
  border: 1px solid var(--stone);
  background: linear-gradient(180deg, rgba(22, 22, 22, 0.9) 0%, rgba(12, 12, 12, 0.96) 100%);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.dispatch-card:hover {
  transform: translateY(-4px);
  border-color: var(--silver);
}

.dispatch-card__media {
  height: 220px;
  border-bottom: 1px solid var(--stone);
  background-size: cover;
  background-position: center;
}

.dispatch-card__media--instagram {
  background-image:
    linear-gradient(180deg, rgba(8, 8, 8, 0.25) 0%, rgba(8, 8, 8, 0.45) 100%),
    url("../img/social/instagram.jpg");
}

.dispatch-card__media--linkedin {
  background-image:
    linear-gradient(180deg, rgba(8, 8, 8, 0.25) 0%, rgba(8, 8, 8, 0.45) 100%),
    url("../img/social/linkedin.jpg");
}

.dispatch-card__media--contact {
  background-image:
    linear-gradient(180deg, rgba(8, 8, 8, 0.25) 0%, rgba(8, 8, 8, 0.45) 100%),
    url("../img/social/contact.jpg");
}

.dispatch-card__body {
  padding: 24px;
}

.dispatch-card__eyebrow {
  margin: 0 0 16px;
  color: var(--silver);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.dispatch-card__title {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1.75rem;
  line-height: 1.08;
  font-weight: 300;
}

.dispatch-card__text {
  margin: 0;
  color: var(--silver);
  font-size: 0.95rem;
  line-height: 1.8;
}

.section--contact {
  background: #0c0c0c;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 20px;
}

.contact-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--stone);
}

.contact-item__label {
  color: var(--silver);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.contact-item__value {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.7;
  word-break: break-word;
}

.contact-item__value:hover {
  color: var(--ash);
}

@media (max-width: 1100px) {
  .dispatch-grid {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .dispatch-card__media {
    height: 180px;
  }

  .contact-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-height);
  background: #050505;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.78) brightness(0.9) contrast(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.52) 0%, rgba(5, 5, 5, 0.28) 36%, rgba(5, 5, 5, 0.18) 65%, rgba(5, 5, 5, 0.34) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.2) 0%, rgba(5, 5, 5, 0.08) 38%, rgba(5, 5, 5, 0.42) 100%);
}

.hero__content--left {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--header-height));
}

.hero-copy-block {
  max-width: 760px;
  padding-top: 20px;
}

.hero-substatement {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.1;
}

.hero-substatement span {
  display: inline-block;
}

@media (max-width: 768px) {
  .hero-substatement {
    gap: 10px 14px;
    margin-top: 16px;
    font-size: clamp(1rem, 5vw, 1.3rem);
  }
}

.contact {
  padding: 80px;
  text-align: center;
  background: #000;
  color: white;
}

.contact-links {
  margin-top: 20px;
}

.contact-links a {
  display: inline-block;
  margin: 10px;
  color: white;
  text-decoration: none;
}

.hero-substatement {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  line-height: 1.1;
}

.hero-substatement span {
  display: inline-block;
}

.card-grid {
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card__title {
  margin: 0 0 12px;
  font-size: 1.8rem;
  line-height: 1.08;
}

.service-card__text {
  margin: 0;
  line-height: 1.75;
  color: var(--silver);
}

.service-card__media {
  margin-bottom: 22px;
}

@media (max-width: 768px) {
  .hero-substatement {
    gap: 10px 14px;
    margin-top: 18px;
    font-size: clamp(1rem, 5vw, 1.3rem);
  }

  .service-card__title {
    font-size: 1.5rem;
  }
}

/* ===== POLISH / INTERACTION / REVEAL ===== */

.hero-copy-block {
  max-width: 820px;
}

.hero-title {
  letter-spacing: 0.01em;
}

.hero-title .hero-line:first-child span {
  margin-left: -0.02em;
}

.hero-copy {
  margin-top: 30px;
}

.hero-actions {
  margin-top: 34px;
}

.section-head {
  margin-bottom: 54px;
}

.service-card {
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.service-card__media {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.service-card:hover .service-card__media {
  transform: scale(1.025);
  filter: brightness(1.02);
}

.service-card__title {
  transition: color 0.3s ease;
}

.service-card:hover .service-card__title {
  color: #f2f2f2;
}

.operate-card {
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease,
    background 0.35s ease;
}

.operate-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.92) 0%, rgba(16, 16, 16, 0.98) 100%);
}

.dispatch-card {
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.dispatch-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.dispatch-card__media {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.dispatch-card:hover .dispatch-card__media {
  transform: scale(1.025);
  filter: brightness(1.03);
}

.contact-item {
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.contact-item:hover {
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateX(4px);
}

.contact-item__value {
  transition: color 0.3s ease, opacity 0.3s ease;
}

.contact-item__value:hover {
  color: #ffffff;
  opacity: 0.95;
}

/* reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .service-card,
  .operate-card,
  .dispatch-card,
  .service-card__media,
  .dispatch-card__media,
  .contact-item,
  .contact-item__value {
    transition: none;
  }
}

@media (max-width: 768px) {
  .section-head {
    margin-bottom: 40px;
  }

  .service-card:hover,
  .operate-card:hover,
  .dispatch-card:hover,
  .contact-item:hover {
    transform: none;
  }
}

/* ===== BATCH UPGRADE: HEADER / HERO / SECTIONS / MOBILE ===== */

/* Header refinement */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.site-header__inner {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-logo {
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--white);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

/* Hero refinement */
.hero-copy-block {
  max-width: 860px;
}

.hero-title {
  max-width: 960px;
  font-size: clamp(3.6rem, 8vw, 7.4rem);
  line-height: 0.92;
  font-weight: 300;
  color: var(--white);
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.hero-substatement {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 22px;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  line-height: 1.12;
  color: rgba(255, 255, 255, 0.84);
}

.hero-copy {
  max-width: 620px;
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.btn-primary--hero {
  min-width: 200px;
}

.text-link--hero {
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.text-link--hero:hover {
  color: var(--white);
}

/* Better overlay balance */
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.58) 0%, rgba(5, 5, 5, 0.34) 34%, rgba(5, 5, 5, 0.18) 64%, rgba(5, 5, 5, 0.34) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.18) 0%, rgba(5, 5, 5, 0.1) 38%, rgba(5, 5, 5, 0.38) 100%);
}

/* Section head improvements */
.section-head--capabilities {
  align-items: flex-end;
}

.section-text--section-head {
  max-width: 520px;
  margin: 16px 0 0;
}

/* Capability cards */
.card-grid {
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(22, 22, 22, 0.92) 0%, rgba(12, 12, 12, 0.98) 100%);
}

.service-card__media {
  height: 250px;
  margin-bottom: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card__title,
.service-card__text {
  padding-left: 24px;
  padding-right: 24px;
}

.service-card__title {
  margin-top: 24px;
  margin-bottom: 14px;
}

.service-card__text {
  margin-bottom: 24px;
}

/* Operate cards refinement */
.operate-card {
  min-height: 100%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

/* Dispatch cards refinement */
.dispatch-card {
  overflow: hidden;
}

.dispatch-card__media {
  height: 240px;
}

.dispatch-card__body {
  padding: 26px;
}

.dispatch-card__title {
  max-width: 300px;
}

/* Contact section stronger */
.contact-panel {
  padding-top: 12px;
}

.contact-item {
  align-items: start;
}

.contact-item__label {
  padding-top: 3px;
}

/* Footer refinement */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: #090909;
}

.site-footer__inner {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.site-footer__brand {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1;
}

.site-footer__copy {
  margin: 0;
  color: var(--silver);
  font-size: 0.88rem;
  line-height: 1.8;
}

.site-footer__links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.site-footer__links a:hover {
  color: var(--white);
}

/* Mobile upgrade */
@media (max-width: 1100px) {
  .site-header__inner,
  .site-footer__inner {
    width: min(var(--container), calc(100% - 32px));
  }

  .site-nav.desktop-nav {
    display: none;
  }

  .hero-title {
    max-width: 760px;
  }

  .service-card__media,
  .dispatch-card__media {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .site-logo {
    font-size: 1.2rem;
    letter-spacing: 0.14em;
  }

  .hero {
    min-height: 92vh;
  }

  .hero__content--left {
    align-items: end;
    min-height: calc(92vh - var(--header-height));
  }

  .hero-copy-block {
    max-width: 100%;
    padding-top: 0;
    padding-bottom: 38px;
  }

  .hero-title {
    font-size: clamp(3rem, 14vw, 4.8rem);
    line-height: 0.95;
  }

  .hero-substatement {
    gap: 8px 14px;
    margin-top: 14px;
    font-size: clamp(1rem, 5vw, 1.2rem);
  }

  .hero-copy {
    margin-top: 20px;
    max-width: 100%;
  }

  .hero-copy p {
    font-size: 0.98rem;
    line-height: 1.8;
  }

  .hero-actions {
    margin-top: 24px;
    gap: 16px;
    align-items: flex-start;
    flex-direction: column;
  }

  .btn-primary--hero {
    min-width: 0;
    width: 100%;
  }

  .section {
    padding: 72px 0;
  }

  .section-head {
    margin-bottom: 34px;
  }

  .service-card__title,
  .service-card__text {
    padding-left: 20px;
    padding-right: 20px;
  }

  .service-card__title {
    margin-top: 20px;
  }

  .service-card__text {
    margin-bottom: 20px;
  }

  .service-card__media,
  .dispatch-card__media {
    height: 190px;
  }

  .dispatch-card__body {
    padding: 20px;
  }

  .dispatch-card__title {
    font-size: 1.55rem;
  }

  .site-footer__inner {
    padding: 26px 0;
    align-items: flex-start;
    flex-direction: column;
  }
}