:root {
  --ink: #06183a;
  --muted: #5d6a82;
  --blue: #2568ea;
  --line: #e7edf7;
  --bg: #f8fafc;
  --panel: #ffffff;

  --container: min(1480px, calc(100vw - 96px));
  --nav-height: 88px;
  --radius-lg: 28px;
}

/* ================= BASE ================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("assets/img/noise.png");
  opacity: .018;
  pointer-events: none;
  z-index: 10;
}

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

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

section {
  position: relative;
  isolation: isolate;
}

.page-shell {
  width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

#about,

#operations,

#presence,

#contact {

  scroll-margin-top: var(--nav-height);

}

/* ================= TYPO ================= */

.eyebrow,
.operations-label,
.presence-label,
.contact-label {
  color: var(--blue);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

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

h2 {
  margin-bottom: 24px;
  color: #071938;
  font-size: clamp(42px, 4vw, 64px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 900;
}

h3 {
  margin-bottom: 16px;
  color: #071938;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
}

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

/* ================= BUTTON ================= */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 30px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2568ea, #1d58cb);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 18px 38px rgba(37,104,234,.24);
  transition: transform .28s ease, box-shadow .28s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(37,104,234,.28);
}

/* ================= NAV ================= */

.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-height);
  padding: 0 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 99999;
}

.nav-brand {
  width: 350px;
  height: 124px;
  overflow: hidden;
  position: relative;
  display: block;
}

.nav-brand img {
  position: absolute;
  width: 390px;
  max-width: none;
  left: 0;
  top: -58px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 46px;
}

.nav-links a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-links a.active {
  color: var(--blue);
}

/* ================= HERO ================= */

.hero-section {
  min-height: calc(100svh + 80px);
  padding-top: calc(var(--nav-height) + 70px);
  padding-bottom: 120px;
  background: var(--bg);
  border-bottom: 1px solid rgba(37,104,234,.06);
  overflow: hidden;
}

.hero-content {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, 560px) minmax(0, 1fr);
  grid-template-areas:
    "copy visual"
    "meta meta";
  column-gap: 40px;
  row-gap: 54px;
  align-items: center;
}

.hero-copy {
  grid-area: copy;
  position: relative;
  z-index: 4;
  padding-top: 20px;
}

.hero-copy .eyebrow {
  margin-bottom: 22px;
  letter-spacing: .16em;
}

.hero-copy h1 {
  margin: 0 0 24px;
  max-width: 680px;
  color: #071938;
  font-size: clamp(64px, 5.8vw, 92px);
  line-height: .86;
  letter-spacing: -.085em;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-copy .lead {
  max-width: 600px;
  margin: 0;
  color: #50607b;
  font-size: 22px;
  line-height: 1.7;
}

.hero-copy .btn-primary {
  margin-top: 30px;
}

.hero-bg {
  grid-area: visual;
  min-height: 700px;
  background: url("assets/img/hero-bg-tiles.png") center right / 120% no-repeat;
  opacity: 1;
  pointer-events: none;
  transform: translateX(4%);
}

/* ================= HERO META ================= */

.hero-meta {
  grid-area: meta;
  width: 100%;
  padding-top: 42px;
  margin-top: 10px;
  border-top: 2px solid rgba(37,104,234,.12);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 70px;
}

.hero-meta-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.hero-meta-icon {
  width: 126px;

  height: 126px;
  max-width: none;
  object-fit: contain;
}

.hero-meta strong {
  display: block;
  margin-bottom: 12px;
  color: #071938;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -.03em;
  font-weight: 900;
}

.hero-meta span {
  display: block;
  color: #5d6a82;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 600;
}

/* ================= ABOUT ================= */

#about.about-section {
  position: relative;

  padding-top: 56px;
  padding-bottom: 180px;
  background: #f8fafc;
  overflow: hidden;
  border-bottom: 1px solid rgba(37,104,234,.08);
}

#about .about-layout {

  width: var(--container);

  margin: 0 auto;

  display: grid;

  grid-template-columns:

    minmax(520px, 620px)

    minmax(420px, 1fr);

  gap: 40px;

  align-items: center;

  position: relative;

  z-index: 5;

}

#about .about-copy {
  position: relative;
  z-index: 6;
  max-width: 660px;
padding-bottom: 70px;

}

#about .about-copy .eyebrow {
  margin-bottom: 24px;
}

#about .about-copy h2 {
  margin: 0;
  color: #071938;
  font-size: clamp(60px, 5vw, 88px);
  line-height: .9;
  letter-spacing: -.08em;
  font-weight: 900;
}

#about .about-accent {
  width: 44px;
  height: 2px;
  margin: 30px 0 26px;
  background: #ef3340;
}

#about .about-copy p {
  max-width: 640px;
  margin: 0 0 20px;
  color: #10213e;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 500;
}

#about .about-group-link {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}

#about .about-group-icon {
  width: 78px;
  height: 78px;
  min-width: 78px;
  border-radius: 50%;
  background: rgba(37,104,234,.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

#about .about-group-icon img {
  width: 46px;
  height: 46px;
  max-width: none;
  object-fit: contain;
}

/* RIGHT DRAWING */

#about .about-visual {

  position: relative;

  min-height: 700px;

  display: flex;

  align-items: center;

  justify-content: flex-end;

  overflow: visible;

  padding-top: 60px;

}

#about .about-bg {

  display: block;

  width: min(980px, 60vw);

  max-width: none;

  height: auto;

  opacity: .95;

  transform: translate(40px, 40px);

  pointer-events: none;

}

/* BOTTOM META */

#about .about-summary {
  position: relative;
  z-index: 10;
  width: 100%;
  margin-top: 48px;
  padding: 38px max(48px, calc((100vw - 1480px) / 2));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: rgba(243,247,252,.96);
  border-top: 1px solid rgba(37,104,234,.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

#about .about-summary-item {
  min-width: 0;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  border-right: 1px solid rgba(37,104,234,.10);
}

#about .about-summary-item:first-child {
  padding-left: 0;
}

#about .about-summary-item:last-child {
  border-right: none;
  padding-right: 0;
}

#about .about-summary-icon {
  width: 74px;
  height: 74px;
  min-width: 74px;
  border-radius: 18px;
  border: 1px solid rgba(37,104,234,.14);
  background: rgba(255,255,255,.94);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ================= ABOUT ICON SYSTEM ================= */

#about .about-summary-icon {
  width: 74px;
  height: 74px;
  min-width: 74px;

  border-radius: 18px;
  border: 1px solid rgba(37,104,234,.14);
  background: rgba(255,255,255,.94);

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

/* base */

#about .about-summary-icon img {
  display: block;

  max-width: none;

  object-fit: contain;
  object-position: center;
}

/* established */

#about .about-summary-item:nth-child(1)
.about-summary-icon img {

  width: 34px;
  height: 34px;
}

/* location */

#about .about-summary-item:nth-child(2)
.about-summary-icon img {

  width: 40px;
  height: 40px;
}

/* globe */

#about .about-summary-item:nth-child(3)

.about-summary-icon img {

  width: 39px;

  height: 39px;

}

/* growth */

#about .about-summary-item:nth-child(4)
.about-summary-icon img {

  width: 42px;
  height: 42px;
}

#about .about-summary-item h3 {
  margin: 0 0 10px;
  color: #071938;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-weight: 900;
}

#about .about-summary-item p {
  margin: 0;
  color: #5d6a82;
  font-size: 15px;
  line-height: 1.6;
}

/* laptop */
@media (min-width: 1025px) and (max-height: 1000px) {
 #about.about-section {

  padding-top: 0;

}

#about .about-layout {

  min-height: 470px;

  align-items: start;

}

#about .about-copy {

  padding-bottom: 10px;

  transform: translateY(-20px);

}

#about .about-copy .eyebrow {
  margin-bottom: 16px;
}

#about .about-copy h2 {

  font-size: 52px;

}

#about .about-accent {
  margin: 22px 0 18px;
}

#about .about-copy p {

  font-size: 14px;

  line-height: 1.38;

  margin-bottom: 10px;

}

#about .about-group-link {
  margin-top: 18px;
}

#about .about-group-icon {
  width: 62px;
  height: 62px;
  min-width: 62px;
}

#about .about-group-icon img {
  width: 40px;
  height: 40px;
}

#about .about-visual {

  min-height: 440px;

  padding-top: 0;

}

#about .about-bg {

  width: min(780px, 54vw);

  transform: translate(20px, 0);

}

#about .about-summary {

  margin-top: -10px;

  padding-top: 18px;

  padding-bottom: 18px;

}

#about .about-summary-item {
  grid-template-columns: 66px minmax(0,1fr);
  gap: 14px;
  padding: 0 16px;
}

#about .about-summary-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
}

#about .about-summary-item h3 {
  font-size: 13px;
  margin-bottom: 6px;
}

#about .about-summary-item p {
  font-size: 12.5px;
  line-height: 1.38;
}
}

/* ================= OPERATIONS ================= */

.operations-section {
      padding: 160px 0 260px;
  position: relative;
  background: var(--bg);
  border-bottom: 1px solid rgba(37,104,234,.04);
  overflow: visible;
  z-index: 10;
}

.operations-heading {
  max-width: 780px;
}

.operations-label {
  display: block;
  margin-top: 54px;
  margin-bottom: 18px;
}

.operations-heading p {
  max-width: 760px;
  margin: 0;
  color: #617089;
  font-size: 18px;
  line-height: 1.65;
}

.operations-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.operation-card {
  min-height: 220px;
  padding: 34px;
  border: 1px solid rgba(37,104,234,.08);
  border-radius: 26px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 20px 60px rgba(6,24,58,.045);
  display: flex;
  align-items: flex-start;
  gap: 26px;
}

.operation-icon {
  width: 92px;
  height: 92px;
  min-width: 92px;
  border: 1px solid rgba(37,104,234,.14);
  border-radius: 20px;
  background: rgba(255,255,255,.96);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.operation-icon img {
  width: 58px;
  height: 58px;
  max-width: none;
  object-fit: contain;
  object-position: center;
}

.operation-content {
  flex: 1;
  min-width: 0;
}

.operation-content h3 {
  margin: 6px 0 14px;
  color: #071938;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 900;
}

.operation-content p {
  margin: 0;
  color: #5d6a82;
  font-size: 16px;
  line-height: 1.7;
}

/* ================= OPERATIONS SUPPORT ================= */

.operations-support {
  margin-top: 64px;
}

.operations-support h3 {
  margin-bottom: 34px;
  color: #071938;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
}

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

.support-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 24px;
  align-items: flex-start;
}

.support-icon {
  width: 72px;
  height: 72px;
  min-width: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-icon img {
  width: 48px;
  height: 48px;
  max-width: none;
  object-fit: contain;
  object-position: center;
}

.support-content strong {
  display: block;
  margin-bottom: 10px;
  color: #071938;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
}

.support-content p {
  margin: 0;
  color: #5d6a82;
  font-size: 16px;
  line-height: 1.65;
}

/* ================= PRESENCE ================= */

.presence-section {
  position: relative;
  padding: 160px 0 200px;
  background: var(--bg);
  border-bottom: 1px solid rgba(37,104,234,.04);
  overflow: hidden;
  z-index: 6;
}

.presence-layout {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, 600px) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

.presence-copy {
  position: relative;
  z-index: 5;
}

.presence-label {
  margin-bottom: 34px;
}

.presence-copy h2 {
  margin-bottom: 34px;
  font-size: clamp(46px, 4.5vw, 68px);
  line-height: .96;
  letter-spacing: -.06em;
}

.presence-copy p {
  max-width: 640px;
  margin: 0;
  color: #5d6a82;
  font-size: 21px;
  line-height: 1.72;
}

.presence-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  margin-top: 60px;
}

.presence-icon {
  width: 106px;
  height: 106px;
  margin-bottom: 24px;
  border-radius: 20px;
  border: 1px solid rgba(37,104,234,.18);
  background: rgba(255,255,255,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.presence-icon img {
  width: 68px;
  height: 68px;
  max-width: none;
  object-fit: contain;
}

#presence img[src*="icon-cross-border-operations.svg"] {

  width: 96px !important;

  height: 96px !important;

}

.presence-meta-item strong {
  display: block;
  margin-bottom: 14px;
  color: #071938;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
}

.presence-meta-item span {
  display: block;
  color: #5d6a82;
  font-size: 16px;
  line-height: 1.65;
}

.presence-visual {
  position: relative;
  min-width: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  overflow: visible;
}

.presence-map {
  width: 135%;
  max-width: none;
  height: auto;
  object-fit: contain;

  transform: translateX(4%);
}
/* ================= CONTACT ================= */

.contact-section {
  position: relative;
  padding: 140px 0 0;
  background: var(--bg);
  overflow: hidden;
  z-index: 7;
}

.contact-hero {
  width: var(--container);
  min-height: 500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
  gap: 90px;
  align-items: center;
  position: relative;
}

.contact-copy {
  position: relative;
  z-index: 5;
}

.contact-label {
  margin-bottom: 24px;
}

.contact-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(42px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -.055em;
  font-weight: 900;
}

.contact-copy > p {
  margin: 0;
  color: #5d6a82;
  font-size: 19px;
  line-height: 1.65;
}

.contact-lines {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.contact-line {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.contact-icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(37,104,234,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-icon img {
  width: 54px;
  height: 54px;
  max-width: none;
  object-fit: contain;
  object-position: center;
}

.email-line .contact-icon img {
  width: 52px;
  height: 52px;
}

.location-line .contact-icon img {
  width: 66px;
  height: 66px;
}
.location-line .contact-line-copy {

  transform: translateY(-2px);

}
.contact-line-copy span {
  display: block;
  margin-bottom: 6px;
  color: #071938;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-line-copy strong {
  display: block;
  color: #071938;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 900;
}

.contact-bg {
  position: absolute;
  right: 0;
  bottom: -20px;
  width: min(1050px, 64vw);
  height: 680px;
  background: url("assets/img/contact-bg-lines.png") right bottom / contain no-repeat;
  opacity: .42;
  pointer-events: none;
  z-index: 1;
}

.contact-details {
  width: 100%;
  padding: 56px max(20px, calc((100vw - 1480px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr) minmax(0, 1.2fr);
  gap: 72px;
  background: rgba(241,245,251,.92);
  border-top: 1px solid rgba(37,104,234,.06);
}

.contact-details > div {
  position: relative;
}

.contact-details > div:not(:first-child)::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(37,104,234,.12);
}

.contact-details h3 {
  margin-bottom: 20px;
  color: #071938;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-details p,
.contact-details dd {
  color: #5d6a82;
  font-size: 15px;
  line-height: 1.65;
}

.contact-details a {
  color: var(--blue);
  font-weight: 800;
}

.contact-details dl {
  margin: 0;
}

.contact-details dl div {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 18px;
  margin-bottom: 8px;
}

.contact-details dt {
  color: #071938;
  font-size: 15px;
  font-weight: 900;
}

.contact-details dd {
  margin: 0;
  color: #071938;
  font-weight: 500;
}

/* ================= FOOTER ================= */

.footer {
  width: var(--container);
  margin: 0 auto;
  padding: 40px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  color: var(--muted);
  font-size: 15px;
}

.footer a {
  color: var(--blue);
  font-weight: 800;
}

/* ================= REVEAL ================= */

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

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

/* ================= RESPONSIVE ================= */

@media (max-width: 1600px) {
  :root {
    --container: min(1320px, calc(100vw - 100px));
  }

  .hero-bg {
    min-height: 620px;
  }

  #about .about-bg {
    width: min(980px, 62vw);
  }
}

/* ================= LAPTOP / LOW HEIGHT ================= */

@media (min-width: 1025px) and (max-height: 1000px) {

  .hero-section {
    padding-top: calc(var(--nav-height) + 56px);
    padding-bottom: 60px;
    min-height: auto;
  }

  .hero-content {

  min-height: auto;

  row-gap: 90px;

  align-items: center;

}

  .hero-copy h1 {
    font-size: 62px;
    line-height: .88;
  }

  .hero-copy .lead {
    font-size: 18px;
    line-height: 1.55;
  }

.hero-bg {

  min-height: 560px;

  background-size: 102%;

  background-position: center 58%;

  transform: translate(4%, 90px);

}

.hero-meta {

  padding-top: 20px;

  margin-top: -10px;

  gap: 40px;


}
  .hero-meta-card {
    grid-template-columns: 96px minmax(0,1fr);
    gap: 18px;
  }

  .hero-meta-icon {
    width: 138px;

  height: 138px;
  }

  .hero-meta strong {
    font-size: 20px;
  }

  .hero-meta span {
    font-size: 15px;
    line-height: 1.5;
  }

  #about.about-section {
    padding-top: 46px;
    padding-bottom: 0;
  }

  #about .about-layout {
    min-height: 600px;
    gap: 56px;
  }

  #about .about-copy {
    padding-bottom: 40px;
  }

  #about .about-copy h2 {
    font-size: 62px;
    line-height: .92;
  }

  #about .about-copy p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  #about .about-group-link {
    margin-top: 24px;
  }

  #about .about-group-icon {
    width: 68px;
    height: 68px;
    min-width: 68px;
  }

 #about .about-group-icon img {

  width: 50px;

height: 50px;

  max-width: none;

  object-fit: contain;

  object-position: center;

  display: block;

}

  #about .about-visual {
    min-height: 580px;
  }

  #about .about-bg {

  width: min(980px, 60vw);

  max-width: none;

  height: auto;

  display: block;

  opacity: .95;

  transform: translateX(40px);

  pointer-events: none;

}

  #about .about-summary {
    margin-top: 20px;
    padding-top: 26px;
    padding-bottom: 26px;
  }

  #about .about-summary-item {
    grid-template-columns: 72px minmax(0,1fr);
    gap: 16px;
    padding: 0 18px;
  }

  #about .about-summary-icon {
    width: 62px;
    height: 62px;
    min-width: 62px;
  }

  #about .about-summary-item h3 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  #about .about-summary-item p {
    font-size: 13px;
    line-height: 1.45;
  }

.operations-section {

  padding-top: 72px;

  padding-bottom: 140px;

}

.operations-label {
  margin-top: 24px;
}

.operations-grid {
  margin-top: 48px;
  gap: 22px;
}

.operation-card {
  min-height: 210px;
  padding: 28px;
  gap: 20px;
}

.operation-icon {
  width: 82px;
  height: 82px;
  min-width: 82px;
}

.operation-icon img {
  width: 52px;
  height: 52px;
}

.operation-content h3 {
  font-size: 20px;
}

.operation-content p {
  font-size: 15px;
  line-height: 1.55;
}

.operations-support {
  margin-top: 54px;
}

.operations-support-grid {
  gap: 38px;
}

  .presence-section {

  padding-top: 120px;

  padding-bottom: 140px;

}

  .presence-layout {
    gap: 36px;
  }

  .presence-copy h2 {
    font-size: 48px;
  }

  .presence-copy p {
    font-size: 18px;
    line-height: 1.55;
  }

  .presence-meta {
    margin-top: 40px;
    gap: 28px;
  }

  .presence-icon {
    width: 84px;
    height: 84px;
  }

  .presence-icon img {

  width: 60px;

  height: 60px;

}

  .contact-section {
    padding-top: 120px;
  }

  .contact-hero {
    min-height: 420px;
    gap: 60px;
  }

  .contact-copy h2 {
    font-size: 48px;
  }

  .contact-lines {
    margin-top: 40px;
    gap: 30px;
  }

  .contact-icon {

  width: 104px;

  height: 104px;

}

.contact-icon img {

  width: 54px;

  height: 54px;

  max-height: none;

}

.email-line .contact-icon img {

  width: 52px;

  height: 52px;

}

.location-line .contact-icon img {

  width: 66px;
  height: 66px;

}
}
@media (min-width: 1025px) and (max-height: 1000px) {

  .location-line .contact-line-copy {

transform: translateY(-4px);
  }

}
/* ================= TABLET ================= */
@media (max-width: 1024px) {
  :root {
    --container: calc(100vw - 56px);
  }

  .hero-content,
  #about .about-layout,
  .presence-layout,
  .contact-hero {
    grid-template-columns: 1fr;
  }

  .hero-content {
    grid-template-areas:
      "copy"
      "visual"
      "meta";
  }

  .hero-meta,
  .operations-grid,
  .operations-support-grid,
  .presence-meta,
  .contact-details {
    grid-template-columns: 1fr;
  }

  .hero-bg {
    min-height: 420px;
    background-size: contain;
    transform: none;
  }

  #about.about-section {
    padding-top: 90px;
  }

  #about .about-layout {
    gap: 40px;
  }

  #about .about-visual {

  position: relative;

  min-height: 640px;

  display: flex;

  align-items: center;

  justify-content: flex-end;

  overflow: visible;

}

  #about .about-bg {
    width: 100%;
    opacity: .18;
    transform: none;
  }

  #about .about-summary {
    grid-template-columns: 1fr 1fr;
    gap: 32px 0;
    margin-top: 40px;
    padding: 32px 28px;
  }

  #about .about-summary-item {
    padding: 24px 0;
    border-right: none;
    border-bottom: 1px solid rgba(37,104,234,.10);
  }

  #about .about-summary-item:nth-child(odd) {
    padding-right: 24px;
    border-right: 1px solid rgba(37,104,234,.10);
  }

  #about .about-summary-item:nth-child(even) {
    padding-left: 24px;
  }

  #about .about-summary-item:nth-child(3),
  #about .about-summary-item:nth-child(4) {
    border-bottom: none;
  }

  .presence-map {
    width: 100%;
    transform: none;
  }

  .contact-bg {
    opacity: .18;
  }

  .contact-details > div::before {
    display: none;
  }

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

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  :root {
    --container: calc(100vw - 32px);
    --nav-height: 140px;
  }

  .site-nav {
    height: auto;
    padding: 16px;
    flex-direction: column;
    gap: 16px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .nav-links a {
    font-size: 12px;
  }

  .nav-brand {
    width: 200px;
    height: 70px;
  }

  .nav-brand img {
    width: 220px;
    top: -32px;
  }

  .hero-section {
    padding-top: calc(var(--nav-height) + 32px);
    padding-bottom: 70px;
  }

  .hero-copy h1,
  #about .about-copy h2,
  .operations-heading h2,
  .presence-copy h2,
  .contact-copy h2 {
    font-size: 40px;
  }

  .hero-copy .lead,
  #about .about-copy p,
  .presence-copy p,
  .contact-copy > p {
    font-size: 16px;
  }

  .hero-bg {
    min-height: 240px;
  }

  .hero-meta-card {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 16px;
  }

  .hero-meta-icon {
    width: 78px;
    height: 78px;
  }

  #about .about-summary {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }

  #about .about-summary-item,
  #about .about-summary-item:nth-child(odd),
  #about .about-summary-item:nth-child(even) {
    padding: 24px 0;
    border-right: none;
    border-bottom: 1px solid rgba(37,104,234,.10);
  }

  #about .about-summary-item:last-child {
    border-bottom: none;
  }

  .operation-card {
    padding: 26px;
  }

  .contact-details {
    padding: 36px 20px;
  }

  .contact-details dl div {
    grid-template-columns: 1fr;
  }
}