/* =========================================================
   GPS PREMIUM CORPORATE WEBSITE
   Groundwork Perfect Solutions Limited
   ========================================================= */


/* =========================================================
   DESIGN TOKENS
========================================================= */

:root {
  --ink: #081a24;
  --ink-2: #0d2633;
  --ink-3: #183542;

  --gps-yellow: #facc15;
  --gps-yellow-light: #fff7c7;
  --gps-yellow-dark: #d9a900;

  --lime: #d7ff16;
  --lime-2: #bce900;

  --muted: #60717b;
  --muted-light: #89979e;

  --white: #ffffff;
  --black: #000000;

  --soft: #f6f8f8;
  --soft-2: #eef2f3;

  --line: #e2e7e9;
  --line-dark: rgba(255, 255, 255, .12);

  --shadow-sm:
    0 8px 25px rgba(6, 25, 35, .07);

  --shadow:
    0 18px 45px rgba(6, 25, 35, .10);

  --shadow-lg:
    0 30px 70px rgba(6, 25, 35, .14);

  --radius: 16px;

  --header-height: 88px;
  --mobile-header-height: 72px;

  --container-width: 1380px;
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;

  font-size: 15px;
  line-height: 1.6;

  color: var(--ink);
  background: var(--white);

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

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

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

button {
  cursor: pointer;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

::selection {
  background: var(--gps-yellow);
  color: var(--ink);
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

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

button:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
  outline: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
  width: min(
    var(--container-width),
    calc(100% - 64px)
  );

  margin-inline: auto;
}


/* =========================================================
   TOPBAR
========================================================= */

.topbar {
  min-height: 38px;

  background: #04131b;

  color: #aebdc4;

  font-size: 12px;
  letter-spacing: .15px;
}

.topbar-in {
  min-height: 38px;

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

  gap: 25px;
}


/* =========================================================
   TOPBAR SOCIALS
========================================================= */

.topbar-socials {
  display: flex;
  align-items: center;
  gap: 7px;
}

.topbar-social-label {
  margin-right: 7px;

  color: #aebdc4;

  font-size: 10px;
  font-weight: 850;

  text-transform: uppercase;
  letter-spacing: 1.8px;
}

.topbar-socials a {
  width: 27px;
  height: 27px;

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

  border-radius: 50%;

  color: #aebdc4;

  font-size: 12px;

  transition:
    color .2s ease,
    background .2s ease,
    transform .2s ease;
}

.topbar-socials a:hover {
  color: var(--gps-yellow);

  background: rgba(250, 204, 21, .10);

  transform: translateY(-2px);
}


/* =========================================================
   TOPBAR CONTACT
========================================================= */

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-contact a {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: #aebdc4;

  font-size: 11px;

  transition: color .2s ease;
}

.topbar-contact a:hover {
  color: var(--gps-yellow);
}

.topbar-contact i {
  color: var(--gps-yellow);
  font-size: 11px;
}

.topbar-contact b {
  color: #536a73;
  font-weight: 500;
}


/* =========================================================
   MAIN HEADER
========================================================= */

.site-header {
  height: var(--header-height);

  position: sticky;
  top: 0;
  z-index: 1000;

  background: var(--gps-yellow);

  color: var(--ink);

  border-bottom: 1px solid rgba(8, 26, 36, .10);

  box-shadow:
    0 4px 18px rgba(8, 26, 36, .06);
}

.nav-in {
  height: 100%;

  display: flex;
  align-items: center;

  gap: 28px;
}


/* =========================================================
   LOGO
========================================================= */

.brand {
  flex: 0 0 auto;

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

  padding: 6px 10px;

  border-radius: 10px;

  background: var(--gps-yellow);

  transition:
    transform .25s ease,
    opacity .25s ease;
}

.brand:hover {
  transform: translateY(-1px);
  opacity: .92;
}

.brand img {
  width: 220px;
  height: 60px;

  object-fit: contain;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.nav-links {
  margin-left: auto;

  display: flex;
  align-items: center;

  gap: 24px;

  background: var(--gps-yellow);
}

.nav-links a {
  position: relative;

  display: inline-flex;
  align-items: center;

  padding: 33px 0;

  color: #102a2f;

  font-size: 13px;
  font-weight: 800;

  letter-spacing: .05px;

  white-space: nowrap;

  transition:
    color .2s ease,
    opacity .2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #000f16;
}

.nav-links a.active::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 22px;

  height: 3px;

  border-radius: 4px;

  background: #102a2f;
}

.nav-links span {
  margin-left: 4px;

  font-size: 11px;

  opacity: .7;
}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.icon-btn,
.menu-btn {
  border: 0;
  background: transparent;
  color: #102a2f;
}

.search-btn {
  flex: 0 0 auto;

  margin-left: 2px;

  padding: 8px;

  font-size: 22px;

  opacity: .9;

  transition:
    transform .2s ease,
    opacity .2s ease;
}

.search-btn:hover {
  transform: scale(1.08);
  opacity: 1;
}

.menu-btn {
  display: none;

  padding: 7px;

  font-size: 27px;

  line-height: 1;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
  min-height: 46px;

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

  gap: 10px;

  padding: 13px 23px;

  border: 1px solid transparent;
  border-radius: 999px;

  font-size: 13px;
  font-weight: 850;

  letter-spacing: .1px;

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease,
    color .25s ease,
    border-color .25s ease;
}

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

.btn.lime {
  background: var(--lime);
  color: #07151c;

  box-shadow:
    0 8px 22px rgba(215, 255, 22, .16);
}

.btn.lime:hover {
  background: #e2ff4b;

  box-shadow:
    0 12px 28px rgba(215, 255, 22, .24);
}

.btn.yellow {
  background: var(--gps-yellow);
  color: var(--ink);

  box-shadow:
    0 8px 22px rgba(250, 204, 21, .14);
}

.btn.yellow:hover {
  background: #ffdc35;
}

.btn.dark {
  background: var(--ink);
  color: #fff;

  box-shadow:
    0 8px 20px rgba(8, 26, 36, .13);
}

.btn.dark:hover {
  background: #102f3d;

  box-shadow:
    0 12px 26px rgba(8, 26, 36, .18);
}

.btn.outline {
  border-color: rgba(255, 255, 255, .8);

  color: #fff;

  background: transparent;
}

.btn.outline:hover {
  background: #fff;
  color: var(--ink);
}


/* =========================================================
   HEADER CTA
========================================================= */

.header-cta {
  flex: 0 0 auto;

  background: var(--ink) !important;
  color: #fff !important;

  padding-left: 20px;
  padding-right: 20px;
}

.header-cta:hover {
  background: #102f3d !important;
}


/* =========================================================
   EYEBROW
========================================================= */

.eyebrow {
  display: inline-block;

  color: #91b600;

  font-size: 11px;
  font-weight: 900;

  letter-spacing: 2.8px;

  text-transform: uppercase;
}

.section.dark .eyebrow,
.partners .eyebrow {
  color: var(--lime);
}


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

.hero {
  position: relative;

  min-height: 680px;

  overflow: hidden;

  background: #061a24;

  color: #fff;
}

.hero-slide {
  position: absolute;
  inset: 0;

  opacity: 0;
  visibility: hidden;

  background-size: cover;
  background-position: center;

  transition:
    opacity .6s ease,
    visibility .6s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-slide::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(3, 18, 26, .97) 0%,
      rgba(3, 18, 26, .88) 34%,
      rgba(3, 18, 26, .42) 67%,
      rgba(3, 18, 26, .10) 100%
    ),
    linear-gradient(
      0deg,
      rgba(3, 18, 26, .38),
      transparent 55%
    );
}

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

  min-height: 680px;

  display: flex;
  align-items: center;
}

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

  padding-top: 20px;
}

.hero h1 {
  margin: 17px 0 18px;

  font-size: clamp(54px, 5.4vw, 84px);
  line-height: .96;

  letter-spacing: -3.5px;

  font-weight: 850;
}

.hero h1 span {
  color: var(--lime);
}

.hero h2 {
  margin: 0 0 8px;

  font-size: 30px;

  line-height: 1.25;

  font-weight: 650;

  letter-spacing: -.5px;
}

.hero p {
  max-width: 650px;

  margin: 0;

  color: #e2eaed;

  font-size: 17px;
  line-height: 1.75;
}

.hero .buttons {
  display: flex;
  flex-wrap: wrap;

  gap: 15px;

  margin-top: 31px;
}

.hero .btn {
  min-height: 50px;

  padding: 14px 26px;

  font-size: 14px;
}


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

.hero-nav {
  position: absolute;
  z-index: 4;

  top: 50%;
  left: 24px;
  right: 24px;

  display: flex;
  justify-content: space-between;

  transform: translateY(-50%);

  pointer-events: none;
}

.hero-arrow {
  width: 52px;
  height: 52px;

  display: grid;
  place-items: center;

  pointer-events: auto;

  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;

  background: rgba(4, 19, 27, .45);

  backdrop-filter: blur(8px);

  color: #fff;

  font-size: 30px;

  transition:
    background .2s ease,
    transform .2s ease;
}

.hero-arrow:hover {
  background: rgba(4, 19, 27, .75);

  transform: scale(1.05);
}

.hero-meta {
  position: absolute;
  z-index: 4;

  left: 50%;
  bottom: 26px;

  display: flex;
  align-items: center;

  gap: 9px;

  transform: translateX(-50%);
}

.dot {
  width: 10px;
  height: 10px;

  padding: 0;

  border: 1px solid #fff;
  border-radius: 50%;

  background: transparent;

  cursor: pointer;

  transition:
    background .2s ease,
    border-color .2s ease,
    transform .2s ease;
}

.dot:hover {
  transform: scale(1.15);
}

.dot.active {
  border-color: var(--lime);
  background: var(--lime);
}

.hero-count {
  position: absolute;
  z-index: 4;

  right: 5%;
  bottom: 28px;

  font-size: 13px;

  letter-spacing: 1.5px;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section {
  padding: 105px 0;
}

.section.soft {
  background:
    linear-gradient(
      180deg,
      #f8f9f9 0%,
      #f3f6f6 100%
    );
}

.section.dark {
  background:
    linear-gradient(
      135deg,
      #061923 0%,
      #0a2430 100%
    );

  color: #fff;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 30px;

  margin-bottom: 42px;
}

.section-head h2,
.about-copy h2,
.pagehero h1 {
  margin: 10px 0 12px;

  font-size: clamp(38px, 4vw, 58px);

  line-height: 1.02;

  letter-spacing: -2.6px;

  font-weight: 820;
}

.section-head p {
  max-width: 680px;

  margin: 0;

  color: var(--muted);

  font-size: 15px;
  line-height: 1.75;
}

.section.dark .section-head p {
  color: #aabac1;
}

.more {
  color: #43565f;

  font-size: 13px;
  font-weight: 850;

  white-space: nowrap;

  transition: color .2s ease;
}

.more:hover {
  color: var(--ink);
}

.section.dark .more {
  color: #d7e0e3;
}

.section.dark .more:hover {
  color: var(--lime);
}


/* =========================================================
   SERVICE CARDS
========================================================= */

.cards {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 22px;
}

.card {
  overflow: hidden;

  background: #fff;

  border: 1px solid #e0e6e8;
  border-radius: 17px;

  box-shadow: var(--shadow-sm);

  transition:
    transform .3s ease,
    box-shadow .3s ease,
    border-color .3s ease;
}

.card:hover {
  transform: translateY(-7px);

  border-color: #d3dbde;

  box-shadow: var(--shadow);
}

.card-img {
  height: 240px;

  background-size: cover;
  background-position: center;

  transition: transform .45s ease;
}

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

.card-body {
  padding: 27px;
}

.card-icon {
  width: 49px;
  height: 49px;

  position: relative;

  display: grid;
  place-items: center;

  margin-top: -48px;

  border: 4px solid #fff;
  border-radius: 50%;

  background: #071b25;

  color: var(--lime);

  font-size: 23px;

  box-shadow:
    0 6px 16px rgba(6, 25, 35, .12);
}

.card h3 {
  margin: 18px 0 9px;

  font-size: 22px;

  letter-spacing: -.5px;
}

.card p {
  margin: 0;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.75;
}

.card a {
  display: inline-block;

  margin-top: 20px;

  font-size: 13px;
  font-weight: 850;
}

.card a:hover {
  color: #7b9a00;
}


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

.about-grid {
  display: grid;

  grid-template-columns: 1.02fr 1.2fr;

  gap: 70px;

  align-items: center;
}

.about-photo {
  height: 550px;

  position: relative;

  overflow: hidden;

  border-radius: 20px;

  background:
    url("../images/about-story.jpg")
    center / cover no-repeat;

  box-shadow: var(--shadow-lg);
}

.about-photo::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      transparent 45%,
      rgba(0, 0, 0, .55) 100%
    );

  pointer-events: none;
}

.play {
  width: 78px;
  height: 78px;

  position: absolute;

  left: 50%;
  top: 50%;

  z-index: 3;

  display: grid;
  place-items: center;

  transform: translate(-50%, -50%);

  border: 2px solid #fff;
  border-radius: 50%;

  background: rgba(4, 19, 27, .50);

  backdrop-filter: blur(7px);

  color: #fff;

  font-size: 28px;

  transition:
    transform .25s ease,
    background .25s ease;
}

.about-photo:hover .play {
  transform:
    translate(-50%, -50%)
    scale(1.06);

  background: rgba(4, 19, 27, .68);
}

.story-tag {
  position: absolute;

  z-index: 3;

  left: 27px;
  bottom: 25px;

  color: #fff;
}

.story-tag strong {
  display: block;

  font-size: 18px;
}

.story-tag span {
  color: #dbe5e8;

  font-size: 12px;
}

.about-copy h2 {
  margin-top: 12px;
  margin-bottom: 20px;
}

.about-copy p {
  margin: 0 0 16px;

  color: #60717b;

  font-size: 15px;
  line-height: 1.85;
}


/* =========================================================
   ABOUT IMAGE BACKGROUND VERSION
========================================================= */

.about-section {
  position: relative;

  width: 100%;

  overflow: hidden;
}

.about-image-background {
  position: relative;

  min-height: 560px;

  display: flex;
  align-items: center;

  background-image:
    url("../images/gps-ser.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(8, 26, 36, .94) 0%,
      rgba(8, 26, 36, .78) 42%,
      rgba(8, 26, 36, .38) 72%,
      rgba(8, 26, 36, .20) 100%
    );
}

.about-image-background .container {
  position: relative;

  z-index: 2;

  width: 100%;
}

.about-content {
  max-width: 720px;

  padding: 90px 0;
}

.about-content h2 {
  margin: 0 0 24px;

  color: #fff;

  font-size: clamp(38px, 5vw, 68px);

  line-height: 1.02;

  letter-spacing: -2.5px;

  font-weight: 850;
}

.about-content p {
  max-width: 650px;

  margin: 0 0 32px;

  color: rgba(255, 255, 255, .82);

  font-size: 17px;
  line-height: 1.8;
}

.about-content .btn.yellow {
  min-height: 52px;

  padding: 0 24px;

  border-radius: 6px;

  font-size: 13px;
  font-weight: 850;
}


/* =========================================================
   VALUES
========================================================= */

.values {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;

  margin: 34px 0;
}

.value {
  padding-top: 18px;

  border-top: 1px solid var(--line);
}

.value .vicon {
  width: 45px;
  height: 45px;

  display: grid;
  place-items: center;

  margin-bottom: 12px;

  border-radius: 50%;

  background: var(--ink);

  color: var(--lime);

  font-weight: 900;
}

.value b {
  display: block;

  font-size: 14px;
}

.value span {
  color: var(--muted);

  font-size: 12px;
  line-height: 1.6;
}


/* =========================================================
   STATS
========================================================= */

.stats {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  overflow: hidden;

  background: #fff;

  border: 1px solid var(--line);
  border-radius: 18px;

  box-shadow: var(--shadow);
}

.stat {
  padding: 35px 32px;

  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;

  font-size: 48px;
  line-height: 1;

  letter-spacing: -2.5px;
}

.stat b {
  display: block;

  margin-top: 8px;

  font-size: 14px;
}

.stat span {
  display: block;

  margin-top: 4px;

  color: var(--muted);

  font-size: 12px;
  line-height: 1.55;
}


/* =========================================================
   MINERALS
========================================================= */

.mineral-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 18px;

  margin-top: 38px;
}

.mineral {
  min-height: 270px;

  position: relative;

  display: flex;
  align-items: flex-end;

  overflow: hidden;

  padding: 0;

  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 16px;

  background-color: #102b35;

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  text-align: left;

  isolation: isolate;

  transition:
    transform .35s ease,
    border-color .35s ease,
    box-shadow .35s ease,
    background-position .6s ease;
}

.mineral:hover {
  transform: translateY(-7px);

  border-color: rgba(250, 204, 21, .55);

  background-position: center 45%;

  box-shadow:
    0 18px 45px rgba(0, 0, 0, .35),
    0 0 0 1px rgba(250, 204, 21, .08);
}


/* =========================================================
   MINERAL IMAGES
========================================================= */

.mineral-iron {
  background-image: url("../images/i.png");
}

.mineral-lithium {
  background-image: url("../images/li.png");
}

.mineral-coal {
  background-image: url("../images/coal.png");
}

.mineral-quartz {
  background-image: url("../images/qz.png");
}

.mineral-manganese {
  background-image: url("../images/mag.png");
}

.mineral-copper {
  background-image: url("../images/c.png");
}


/* =========================================================
   MINERAL OVERLAY
========================================================= */

.mineral-overlay {
  position: absolute;
  inset: 0;

  z-index: -1;

  background:
    linear-gradient(
      180deg,
      rgba(4, 18, 24, .08) 10%,
      rgba(4, 18, 24, .27) 40%,
      rgba(4, 18, 24, .94) 100%
    );

  transition: background .35s ease;
}

.mineral:hover .mineral-overlay {
  background:
    linear-gradient(
      180deg,
      rgba(4, 18, 24, .12) 10%,
      rgba(4, 18, 24, .34) 40%,
      rgba(4, 18, 24, .97) 100%
    );
}


/* =========================================================
   MINERAL CONTENT
========================================================= */

.mineral-content {
  width: 100%;

  padding: 24px;

  color: #fff;
}

.mineral-content small {
  display: block;

  margin-bottom: 8px;

  color: var(--gps-yellow);

  font-size: 10px;
  font-weight: 850;

  letter-spacing: 2px;
}

.mineral-content b {
  display: block;

  margin-bottom: 7px;

  color: #fff;

  font-size: 22px;
  line-height: 1.15;

  font-weight: 850;

  letter-spacing: -.4px;
}

.mineral-content span {
  display: block;

  color: #b7c5ca;

  font-size: 10px;
  line-height: 1.5;
}


/* =========================================================
   PROJECTS
========================================================= */

.projects-grid {
  display: grid;

  grid-template-columns: 1.2fr 1fr 1fr;

  gap: 19px;
}

.project {
  height: 290px;

  position: relative;

  overflow: hidden;

  border-radius: 17px;

  background-size: cover;
  background-position: center;

  box-shadow: var(--shadow-sm);

  transition:
    transform .3s ease,
    box-shadow .3s ease;
}

.project:nth-child(1) {
  height: 420px;
  grid-row: span 2;
}

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

.project::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      transparent 18%,
      rgba(0, 0, 0, .86) 100%
    );
}

.project-content {
  position: absolute;

  z-index: 2;

  left: 25px;
  right: 25px;
  bottom: 24px;

  color: #fff;
}

.tag {
  display: inline-flex;
  align-items: center;

  padding: 7px 11px;

  border-radius: 20px;

  background: #fff;

  color: #20343e;

  font-size: 10px;
  font-weight: 900;

  letter-spacing: 1.2px;
}

.project h3 {
  margin: 10px 0 5px;

  font-size: 23px;
  line-height: 1.15;

  letter-spacing: -.5px;
}

.project p {
  margin: 0;

  color: #d7e0e4;

  font-size: 12px;
}


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

.pagehero {
  min-height: 400px;

  display: flex;
  align-items: center;

  padding: 90px 0;

  background:
    linear-gradient(
      90deg,
      rgba(3, 18, 26, .96),
      rgba(3, 18, 26, .45)
    ),
    url("../images/hero-projects.jpg")
    center / cover no-repeat;

  color: #fff;

  text-align: center;
}

.pagehero .container {
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


/* =========================================================
   PAGE HERO BREADCRUMBS
========================================================= */

.breadcrumbs {
  width: 100%;

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

  gap: 8px;

  margin: 0 0 22px;
  padding: 0;

  color: rgba(255, 255, 255, .65);

  font-size: 13px;

  line-height: 1.4;

  text-align: center;
}

.breadcrumbs a {
  color: var(--gps-yellow);

  text-decoration: none;

  transition: opacity .2s ease;
}

.breadcrumbs a:hover {
  opacity: .8;
}

.breadcrumbs span {
  display: inline-flex;
  align-items: center;
}

.pagehero h1 {
  width: 100%;
  max-width: 900px;

  margin: 0 0 16px;

  font-size: clamp(46px, 5vw, 70px);

  line-height: 1;

  color: #fff;

  text-align: center;
}

.pagehero p {
  width: 100%;
  max-width: 720px;

  margin: 0 auto;

  color: #d5dfe2;

  font-size: 16px;

  line-height: 1.7;

  text-align: center;
}


/* =========================================================
   ABOUT PAGE HERO
   IMPORTANT:
   This matches the actual about.html structure:
   .about-pagehero
     .container
       .about-hero-inner
========================================================= */

.about-pagehero {
  position: relative;

  width: 100%;
  min-height: 390px;

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

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #0b252f 0%,
      #102a2f 55%,
      #0b2029 100%
    );

  color: #fff;

  text-align: center;
}

.about-pagehero::before {
  content: "";

  position: absolute;

  width: 520px;
  height: 520px;

  right: -250px;
  top: -220px;

  border: 1px solid rgba(250, 204, 21, .16);

  border-radius: 50%;

  pointer-events: none;
}

.about-pagehero::after {
  content: "";

  position: absolute;

  width: 280px;
  height: 280px;

  right: -110px;
  bottom: -180px;

  border: 1px solid rgba(250, 204, 21, .10);

  border-radius: 50%;

  pointer-events: none;
}

.about-pagehero > .container {
  position: relative;

  z-index: 2;

  width: 100%;
  max-width: 1200px;

  margin-inline: auto;

  padding-left: 24px;
  padding-right: 24px;

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

.about-hero-inner {
  width: 100%;
  max-width: 900px;

  margin-inline: auto;

  display: flex;
  flex-direction: column;

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

  text-align: center;
}

.about-hero-inner .breadcrumbs {
  width: 100%;

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

  gap: 9px;

  margin: 0 0 24px;
  padding: 0;

  color: rgba(255, 255, 255, .62);

  text-align: center;
}

.about-hero-inner .breadcrumbs a {
  color: var(--gps-yellow);
}

.about-hero-inner .breadcrumbs span {
  color: rgba(255, 255, 255, .45);
}

.about-hero-inner .eyebrow {
  display: block;

  width: 100%;

  margin: 0 0 15px;

  color: var(--gps-yellow);

  text-align: center;
}

.about-hero-inner h1 {
  display: block;

  width: 100%;
  max-width: 850px;

  margin: 0 auto 22px;

  color: #fff;

  font-size: clamp(42px, 5.5vw, 72px);

  font-weight: 800;

  line-height: 1.02;

  letter-spacing: -.035em;

  text-align: center;
}

.about-hero-inner h1 span {
  color: var(--gps-yellow);
}

.about-hero-inner > p {
  display: block;

  width: 100%;
  max-width: 680px;

  margin: 0 auto;

  color: #d1dde1;

  font-size: 17px;

  line-height: 1.8;

  text-align: center;
}


/* =========================================================
   PROJECT PAGE HERO
========================================================= */

.projects-page .pagehero {
  min-height: 360px;

  padding: 80px 0;

  background: #102a2f;
}

.projects-page .pagehero .container {
  width: 100%;
}

.projects-page .breadcrumbs {
  margin-bottom: 22px;
}

.projects-page .pagehero h1 {
  margin: 0 0 16px;

  font-size: clamp(42px, 6vw, 70px);

  letter-spacing: -2px;
}

.projects-page .pagehero p {
  max-width: 700px;

  margin: 0 auto;

  color: #d5dfe2;

  font-size: 16px;
  line-height: 1.7;
}


/* =========================================================
   PROJECT PAGE INTRO
========================================================= */

.projects-page .projects-intro {
  padding-bottom: 35px;
  text-align: center;
}

.projects-page .section-heading.centered {
  max-width: 760px;

  margin-inline: auto;

  text-align: center;
}

.projects-page .section-heading h2 {
  margin: 10px 0 15px;
}

.projects-page .section-heading h2 span {
  color: var(--gps-yellow);
}

.projects-page .section-heading p {
  max-width: 700px;

  margin: 0 auto;

  color: var(--muted);

  line-height: 1.75;
}

.projects-page .projects-section {
  padding-top: 25px;
}


/* =========================================================
   SPLIT / FORMS
========================================================= */

.split {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 60px;

  align-items: center;
}

.list {
  display: grid;

  gap: 13px;

  max-width: 620px;

  margin: 25px auto 0;
}

.list-item {
  display: flex;
  align-items: flex-start;

  gap: 12px;

  text-align: left;
}

.check {
  width: 26px;
  height: 26px;

  flex: 0 0 auto;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--lime);

  font-weight: 900;
}

.form-card {
  padding: 32px;

  background: #fff;

  border: 1px solid var(--line);
  border-radius: 18px;

  box-shadow: var(--shadow);

  text-align: center;
}

.form-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 14px;

  text-align: left;
}

.field label {
  display: block;

  margin-bottom: 8px;

  font-size: 12px;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;

  min-height: 46px;

  padding: 13px 14px;

  border: 1px solid #dce3e6;
  border-radius: 10px;

  outline: none;

  background: #fff;

  color: var(--ink);

  font: inherit;
  font-size: 13px;

  transition:
    border-color .2s ease,
    box-shadow .2s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9aa8ad;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #a7bd00;

  box-shadow:
    0 0 0 3px rgba(215, 255, 22, .14);
}

.field textarea {
  min-height: 140px;

  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.form-card .btn {
  margin-inline: auto;
}

.notice {
  margin-top: 12px;

  color: #57706a;

  font-size: 12px;
}


/* =========================================================
   TEAM
========================================================= */

.team-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 22px;
}

.team-card {
  width: 100%;

  overflow: hidden;

  background: #fff;

  border: 1px solid var(--line);
  border-radius: 17px;

  box-shadow: var(--shadow-sm);

  text-align: center;

  transition:
    transform .3s ease,
    box-shadow .3s ease;
}

.team-card:hover {
  transform: translateY(-6px);

  box-shadow: var(--shadow);
}

.team-photo {
  width: 100%;
  height: 360px;

  object-fit: cover;
  object-position: center top;

  background: #eef2f4;
}

.team-body {
  padding: 23px;

  text-align: center;
}

.team-body h3 {
  margin: 0 0 5px;

  font-size: 19px;
}

.team-body p {
  margin: 0;

  color: var(--muted);

  font-size: 13px;
}


/* =========================================================
   MAP
========================================================= */

.map-box {
  height: 410px;

  position: relative;

  overflow: hidden;

  margin-inline: auto;

  border-radius: 18px;

  background:
    linear-gradient(
      145deg,
      #092533,
      #06161f
    );

  box-shadow: var(--shadow);
}

.map-box::before {
  content: "AFRICA";

  position: absolute;

  left: 20%;
  top: 24%;

  color: rgba(255, 255, 255, .05);

  font-size: 80px;
  font-weight: 900;

  letter-spacing: 9px;
}

.pin {
  position: absolute;

  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: var(--lime);

  box-shadow:
    0 0 0 7px rgba(215, 255, 22, .12);

  animation:
    gpsPinPulse 2.5s ease-in-out infinite;
}

.pin.n {
  left: 38%;
  top: 31%;
}

.pin.z {
  left: 52%;
  top: 62%;
}

.pin.r {
  left: 61%;
  top: 47%;
}

.pin.t {
  left: 66%;
  top: 58%;
}

.map-label {
  position: absolute;

  color: #fff;

  font-size: 10px;
  font-weight: 800;
}

.label-n {
  left: 40%;
  top: 27%;
}

.label-z {
  left: 54%;
  top: 64%;
}

.label-r {
  left: 63%;
  top: 43%;
}

.label-t {
  left: 68%;
  top: 60%;
}

@keyframes gpsPinPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 7px rgba(215, 255, 22, .12);
  }

  50% {
    box-shadow:
      0 0 0 12px rgba(215, 255, 22, .04);
  }
}


/* =========================================================
   CTA
========================================================= */

.cta {
  padding: 78px 0;

  background:
    linear-gradient(
      135deg,
      #d7ff16 0%,
      #facc15 100%
    );

  text-align: center;
}

.cta-in {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}

.cta h2 {
  margin: 0 0 8px;

  font-size: clamp(38px, 4vw, 56px);

  line-height: 1;

  letter-spacing: -2.5px;

  font-weight: 850;
}

.cta p {
  max-width: 650px;

  margin: 0 auto;

  color: #33413e;

  font-size: 15px;

  line-height: 1.7;
}

.cta .btn {
  min-height: 52px;

  padding-left: 27px;
  padding-right: 27px;
}


/* =========================================================
   PROJECT PAGE CTA
========================================================= */

.projects-page .projects-cta {
  padding-top: 35px;
}

.projects-page .cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 35px;

  padding: 55px;

  border-radius: 20px;

  background: var(--ink);

  text-align: center;
}

.projects-page .cta-box h2 {
  margin: 9px 0 14px;

  color: #fff;

  font-size: clamp(30px, 4vw, 48px);

  line-height: 1.05;

  letter-spacing: -1px;
}

.projects-page .cta-box h2 span {
  color: var(--gps-yellow);
}

.projects-page .cta-box p {
  max-width: 650px;

  margin: 0 auto;

  color: #c7d3d6;

  line-height: 1.7;
}

.projects-page .cta-box .btn {
  margin-inline: auto;
}


/* =========================================================
   PARTNERS
========================================================= */

.partners {
  position: relative;

  overflow: hidden;

  padding: 58px 0 52px;

  background:
    linear-gradient(
      135deg,
      #061820 0%,
      #092530 100%
    );

  color: #fff;

  text-align: center;
}

.partners-in {
  margin-bottom: 36px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.partner-copy {
  max-width: 760px;

  margin-inline: auto;

  text-align: center;
}

.partner-copy .eyebrow {
  display: block;

  margin-bottom: 10px;

  color: var(--lime);
}

.partner-copy h3 {
  margin: 0 0 9px;

  color: #fff;

  font-size: 30px;

  line-height: 1.15;

  letter-spacing: -.8px;

  font-weight: 850;
}

.partner-copy p {
  max-width: 650px;

  margin: 0 auto;

  color: #aebdc4;

  font-size: 14px;

  line-height: 1.7;
}


/* =========================================================
   PARTNER MARQUEE
========================================================= */

.partner-marquee {
  width: 100%;

  position: relative;

  overflow: hidden;

  -webkit-mask-image:
    linear-gradient(
      90deg,
      transparent 0%,
      #000 7%,
      #000 93%,
      transparent 100%
    );

  mask-image:
    linear-gradient(
      90deg,
      transparent 0%,
      #000 7%,
      #000 93%,
      transparent 100%
    );
}

.partner-track {
  width: max-content;

  display: flex;
  align-items: center;

  gap: 18px;

  animation:
    gpsPartnerMarquee 35s linear infinite;
}

.partner-marquee:hover .partner-track {
  animation-play-state: paused;
}

.partner-item {
  flex: 0 0 auto;

  min-width: 180px;
  height: 72px;

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

  padding: 0 26px;

  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 13px;

  background: rgba(255, 255, 255, .035);

  color: #dce5e8;

  font-size: 17px;
  font-weight: 850;

  letter-spacing: -.3px;

  white-space: nowrap;

  text-align: center;

  transition:
    background .25s ease,
    border-color .25s ease,
    color .25s ease,
    transform .25s ease;
}

.partner-item:hover {
  background: rgba(215, 255, 22, .08);

  border-color: rgba(215, 255, 22, .30);

  color: var(--lime);

  transform: translateY(-3px);
}

@keyframes gpsPartnerMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}


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

.footer {
  padding: 62px 0 18px;

  background: #031119;

  color: #b4c3c9;
}

.footer-grid {
  display: grid;

  grid-template-columns:
    1.6fr
    1fr
    1fr
    1fr;

  gap: 60px;
}

.footer-logo {
  width: 230px;
  height: 58px;

  object-fit: contain;
}

.footer p,
.footer a {
  font-size: 12px;
  line-height: 1.9;
}

.footer h4 {
  margin: 0 0 17px;

  color: #fff;

  font-size: 13px;

  letter-spacing: .5px;

  text-transform: uppercase;
}

.footer a {
  display: block;

  transition:
    color .2s ease,
    padding-left .2s ease;
}

.footer a:hover {
  color: var(--lime);

  padding-left: 3px;
}

.footer-btn {
  display: inline-block;

  margin-top: 10px;

  padding: 10px 15px;

  border: 1px solid #536b75;
  border-radius: 999px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 15px;

  margin-top: 45px;
  padding-top: 19px;

  border-top: 1px solid rgba(255, 255, 255, .1);

  color: #7f959f;

  font-size: 10px;
}


/* =========================================================
   PREMIUM GPS FOOTER
========================================================= */

.gps-footer {
  position: relative;

  overflow: hidden;

  padding: 78px 0 0;

  background:
    linear-gradient(
      135deg,
      #06151c 0%,
      #081f29 55%,
      #06151c 100%
    );

  color: #fff;

  text-align: center;
}

.gps-footer::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background:
    linear-gradient(
      90deg,
      #facc15,
      #ffe477,
      #facc15
    );
}

.gps-footer::after {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  right: -220px;
  bottom: -300px;

  border-radius: 50%;

  background: rgba(250, 204, 21, .045);

  pointer-events: none;
}


/* =========================================================
   FOOTER MAIN GRID
========================================================= */

.gps-footer-main {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    1.6fr
    .8fr
    1fr
    1.25fr;

  gap: 65px;

  padding-bottom: 58px;

  justify-items: center;
}


/* =========================================================
   AFRICAN GROUP PANEL
========================================================= */

.gps-footer-brand {
  position: relative;

  width: 100%;
  max-width: 420px;
  min-height: 270px;

  padding: 28px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;

  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(250, 204, 21, .10),
      transparent 42%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, .045),
      rgba(255, 255, 255, .012)
    );

  box-shadow:
    0 22px 55px rgba(0, 0, 0, .22),
    inset 0 1px 0 rgba(255, 255, 255, .04);

  text-align: center;
}

.gps-footer-brand {
  background-image:
    radial-gradient(
      circle at 8% 85%,
      rgba(250, 204, 21, .20) 0 1px,
      transparent 2px
    ),
    radial-gradient(
      circle at 18% 70%,
      rgba(250, 204, 21, .13) 0 1px,
      transparent 2px
    ),
    radial-gradient(
      circle at 30% 78%,
      rgba(250, 204, 21, .16) 0 1px,
      transparent 2px
    ),
    radial-gradient(
      circle at 72% 25%,
      rgba(250, 204, 21, .12) 0 1px,
      transparent 2px
    ),
    radial-gradient(
      circle at 85% 72%,
      rgba(250, 204, 21, .14) 0 1px,
      transparent 2px
    );
}


/* =========================================================
   FOOTER GROUP HEADING
========================================================= */

.gps-footer-brand::before {
  content: "OUR AFRICAN GROUP";

  position: absolute;

  top: 24px;
  left: 28px;

  z-index: 5;

  color: var(--lime);

  font-size: 10px;
  font-weight: 850;

  letter-spacing: 2px;
}


/* =========================================================
   AFRICA SILHOUETTE
========================================================= */

.gps-footer-brand::after {
  content: "";

  position: absolute;

  top: 55px;
  right: 30px;

  width: 190px;
  height: 185px;

  opacity: .15;

  background: var(--lime);

  clip-path: polygon(
    48% 0%,
    62% 8%,
    70% 20%,
    77% 31%,
    73% 43%,
    82% 55%,
    69% 65%,
    64% 79%,
    56% 100%,
    48% 86%,
    38% 75%,
    28% 67%,
    17% 55%,
    24% 44%,
    17% 33%,
    29% 24%,
    35% 12%
  );

  filter:
    drop-shadow(
      0 0 18px rgba(250, 204, 21, .28)
    );

  pointer-events: none;
}


/* =========================================================
   HIDE OLD FOOTER ELEMENTS
========================================================= */

.gps-footer-logo,
.gps-footer-description {
  display: none !important;
}


/* =========================================================
   AFRICAN GROUP LOCATIONS
========================================================= */

.gps-footer-brand .gps-socials {
  position: absolute;

  z-index: 3;

  left: 28px;
  right: 28px;
  bottom: 20px;

  max-width: 235px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 9px;

  margin-inline: auto;
}

.gps-footer-brand .gps-socials a {
  width: 100%;
  min-height: 40px;

  position: relative;

  display: flex;
  align-items: center;

  padding: 8px 65px 8px 32px;

  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;

  background: rgba(4, 19, 27, .88);

  color: #d7e0e3;

  font-size: 0;

  font-weight: 650;

  line-height: 1.4;

  transition:
    transform .2s ease,
    border-color .2s ease,
    background .2s ease,
    color .2s ease;
}

.gps-footer-brand .gps-socials a:nth-child(1)::before {
  content:
    "Groundwork Perfect Solutions Pty Ltd  •  Zambia";

  font-size: 10px;
}

.gps-footer-brand .gps-socials a:nth-child(2)::before {
  content:
    "Greatlakes Resources Company Ltd  •  Rwanda";

  font-size: 10px;
}

.gps-footer-brand .gps-socials a:nth-child(3)::before {
  content:
    "Greatlakes International Ltd  •  Tanzania";

  font-size: 10px;
}

.gps-footer-brand .gps-socials a::after {
  position: absolute;

  right: 12px;

  color: var(--gps-yellow);

  font-size: 7px;
  font-weight: 850;

  letter-spacing: 1px;
}

.gps-footer-brand .gps-socials a:nth-child(1)::after {
  content: "ZAMBIA";
}

.gps-footer-brand .gps-socials a:nth-child(2)::after {
  content: "RWANDA";
}

.gps-footer-brand .gps-socials a:nth-child(3)::after {
  content: "TANZANIA";
}

.gps-footer-brand .gps-socials a i {
  display: none;
}

.gps-footer-brand .gps-socials a:nth-child(4) {
  display: none !important;
}

.gps-footer-brand .gps-socials a:hover {
  transform: translateX(4px);

  border-color: rgba(250, 204, 21, .30);

  background: rgba(250, 204, 21, .08);

  color: #fff;
}


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

.gps-footer-column,
.gps-footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
}

.gps-footer-column h4,
.gps-footer-contact h4 {
  margin: 3px 0 10px;

  color: #fff;

  font-size: 15px;
  font-weight: 800;

  letter-spacing: .1px;
}

.gps-footer-line {
  width: 32px;
  height: 3px;

  display: block;

  margin-bottom: 20px;
  margin-inline: auto;

  border-radius: 10px;

  background: var(--gps-yellow);
}

.gps-footer-column a {
  display: block;

  width: fit-content;

  margin: 0 auto 13px;

  color: #9eafb6;

  font-size: 13px;
  line-height: 1.5;

  transition:
    color .2s ease,
    transform .2s ease;
}

.gps-footer-column a:hover {
  color: var(--gps-yellow);

  transform: translateX(4px);
}


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

.gps-contact-item {
  display: flex;
  align-items: flex-start;

  gap: 13px;

  margin-bottom: 18px;

  text-align: left;
}

.gps-contact-icon {
  width: 36px;
  height: 36px;

  flex: 0 0 36px;

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

  border-radius: 8px;

  background: rgba(250, 204, 21, .09);

  color: var(--gps-yellow);

  font-size: 13px;
}

.gps-contact-item small {
  display: block;

  margin-bottom: 3px;

  color: #687f88;

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 1.1px;
}

.gps-contact-item p {
  margin: 0;

  color: #c0cbd0;

  font-size: 12px;

  line-height: 1.5;
}

.gps-contact-item a {
  color: #c0cbd0;

  transition: color .2s ease;
}

.gps-contact-item a:hover {
  color: var(--gps-yellow);
}


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

.gps-footer-cta {
  min-width: 190px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;

  gap: 25px;

  margin: 5px auto 0;

  padding: 12px 16px;

  border-radius: 8px;

  background: var(--gps-yellow);

  color: #102a2f !important;

  font-size: 12px !important;
  font-weight: 850 !important;

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.gps-footer-cta span {
  font-size: 16px;

  transition:
    transform .2s ease;
}

.gps-footer-cta:hover {
  transform: translateY(-3px) !important;

  box-shadow:
    0 12px 28px rgba(250, 204, 21, .18);
}

.gps-footer-cta:hover span {
  transform: translateX(4px);
}


/* =========================================================
   FOOTER TRUST STRIP
========================================================= */

.gps-footer-trust {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  padding: 25px 0;

  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);

  text-align: center;
}

.gps-footer-trust > div {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 13px;

  padding: 0 28px;

  border-right: 1px solid rgba(255, 255, 255, .07);

  text-align: left;
}

.gps-footer-trust > div:first-child {
  padding-left: 0;
}

.gps-footer-trust > div:last-child {
  border-right: 0;
}

.gps-trust-icon {
  width: 40px;
  height: 40px;

  flex: 0 0 40px;

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

  border-radius: 50%;

  background: rgba(250, 204, 21, .08);

  color: var(--gps-yellow);

  font-size: 14px;
}

.gps-footer-trust strong {
  display: block;

  margin-bottom: 3px;

  color: #e8eef0;

  font-size: 12px;
}

.gps-footer-trust small {
  display: block;

  color: #71868e;

  font-size: 10px;
}


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

.gps-footer-bottom {
  position: relative;

  z-index: 2;

  min-height: 74px;

  display: grid;

  grid-template-columns:
    1fr
    auto
    1fr;

  align-items: center;

  gap: 25px;

  color: #71868e;

  font-size: 10px;

  text-align: center;
}

.gps-footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;
}

.gps-footer-legal a {
  color: #82959c;

  transition: color .2s ease;
}

.gps-footer-legal a:hover {
  color: var(--gps-yellow);
}

.gps-footer-legal span {
  color: #405860;
}

.gps-footer-tagline {
  justify-self: end;

  color: #667b83;

  font-size: 8px;
  font-weight: 800;

  letter-spacing: .7px;

  white-space: nowrap;
}

.gps-footer-tagline span {
  margin: 0 4px;

  color: var(--gps-yellow);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1150px) {

  .container {
    width: min(
      1380px,
      calc(100% - 48px)
    );
  }

  .nav-in {
    gap: 18px;
  }

  .brand img {
    width: 195px;
  }

  .nav-links {
    gap: 16px;
  }

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

  .header-cta {
    padding-left: 15px;
    padding-right: 15px;
  }

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

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

  .about-grid {
    gap: 45px;
  }

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

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

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

  .gps-footer-main {
    grid-template-columns:
      1.4fr
      1fr
      1fr;

    gap: 45px;
  }

  .gps-footer-brand {
    grid-column: 1 / -1;

    max-width: 600px;
  }

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

  .gps-footer-tagline {
    display: none;
  }
}


/* =========================================================
   TABLET / SMALL DESKTOP
========================================================= */

@media (max-width: 950px) {

  .nav-links {
    gap: 13px;
  }

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

  .brand img {
    width: 175px;
  }

  .header-cta {
    font-size: 11px;
  }

  .hero {
    min-height: 620px;
  }

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

  .hero h1 {
    font-size: clamp(48px, 7vw, 70px);
  }

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

  .about-photo {
    height: 480px;
  }

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

  .project:nth-child(1) {
    grid-row: auto;
    height: 340px;
  }

  .project {
    height: 300px;
  }

  .cta-in {
    align-items: flex-start;
  }
}


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

@media (max-width: 760px) {

  html {
    scroll-padding-top: 75px;
  }

  .container {
    width: calc(100% - 36px);
  }


  /* -------------------------------------------------------
     TOPBAR
  ------------------------------------------------------- */

  .topbar {
    display: none;
  }


  /* -------------------------------------------------------
     HEADER
  ------------------------------------------------------- */

  .site-header {
    height: var(--mobile-header-height);
  }

  .nav-in {
    height: var(--mobile-header-height);

    gap: 10px;
  }

  .brand {
    padding: 5px 7px;
  }

  .brand img {
    width: 185px;
    height: 54px;
  }

  .nav-links,
  .header-cta,
  .search-btn {
    display: none;
  }

  .menu-btn {
    display: block;

    margin-left: auto;

    color: var(--ink);
  }


  /* -------------------------------------------------------
     MOBILE MENU
  ------------------------------------------------------- */

  .nav-links.open {
    position: absolute;

    top: var(--mobile-header-height);
    left: 0;
    right: 0;

    display: flex;

    flex-direction: column;
    align-items: flex-start;

    gap: 0;

    padding: 16px 22px 22px;

    background: var(--gps-yellow);

    border-top:
      1px solid rgba(8, 26, 36, .08);

    box-shadow:
      0 20px 35px rgba(0, 0, 0, .16);

    animation:
      gpsMenuOpen .2s ease both;
  }

  .nav-links.open a {
    width: 100%;

    padding: 14px 0;

    color: var(--ink);

    font-size: 15px;
    font-weight: 800;
  }

  .nav-links.open a:hover,
  .nav-links.open a.active {
    color: var(--ink);
  }

  .nav-links.open a.active::after {
    left: 0;
    right: auto;

    bottom: 4px;

    width: 35px;

    background: var(--ink);
  }

  @keyframes gpsMenuOpen {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }


  /* -------------------------------------------------------
     HERO
  ------------------------------------------------------- */

  .hero,
  .hero .container {
    min-height: 650px;
  }

  .hero-slide {
    background-position: 63% center;
  }

  .hero .container {
    justify-content: center;
  }

  .hero-copy {
    width: 100%;
    max-width: 700px;

    margin-inline: auto;

    padding: 65px 0 120px;

    text-align: center;
  }

  .hero-copy .eyebrow {
    display: block;
  }

  .hero h1 {
    margin-top: 14px;

    font-size: 45px;

    line-height: .98;

    letter-spacing: -2px;
  }

  .hero h2 {
    font-size: 22px;

    line-height: 1.35;
  }

  .hero p {
    font-size: 15px;

    line-height: 1.7;

    margin-inline: auto;
  }

  .hero .buttons {
    flex-wrap: wrap;

    justify-content: center;

    gap: 10px;
  }

  .hero .btn {
    min-height: 47px;

    padding: 13px 20px;
  }

  .hero-nav {
    left: 12px;
    right: 12px;
  }

  .hero-arrow {
    width: 42px;
    height: 42px;

    font-size: 23px;
  }

  .hero-count {
    display: none;
  }


  /* -------------------------------------------------------
     GENERAL SECTIONS
  ------------------------------------------------------- */

  .section {
    padding: 72px 0;
  }

  .section-head {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 12px;

    margin-bottom: 30px;

    text-align: center;
  }

  .section-head h2,
  .about-copy h2 {
    font-size: 39px;

    letter-spacing: -1.8px;
  }

  .section-head h2,
  .section-head p {
    margin-left: auto;
    margin-right: auto;
  }

  .section-head p {
    font-size: 14px;
  }

  .section-head .more,
  .section-head .btn {
    display: inline-flex;

    margin-top: 16px;
  }


  /* -------------------------------------------------------
     ABOUT PAGE HERO
  ------------------------------------------------------- */

  .about-pagehero {
    min-height: 350px;

    padding: 70px 0;
  }

  .about-pagehero > .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-hero-inner {
    max-width: 700px;
  }

  .about-hero-inner .breadcrumbs {
    margin-bottom: 20px;
  }

  .about-hero-inner h1 {
    font-size: clamp(36px, 9vw, 52px);

    line-height: 1.06;
  }

  .about-hero-inner > p {
    font-size: 16px;

    line-height: 1.7;
  }


  /* -------------------------------------------------------
     CARDS
  ------------------------------------------------------- */

  .cards {
    grid-template-columns: 1fr;

    justify-items: center;
  }

  .card {
    width: 100%;

    text-align: center;
  }

  .card-img {
    height: 220px;
  }

  .card-body {
    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
  }

  .card-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .card p {
    margin-left: auto;
    margin-right: auto;
  }

  .card a {
    margin-left: auto;
    margin-right: auto;
  }


  /* -------------------------------------------------------
     VALUES
  ------------------------------------------------------- */

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

    gap: 20px;
  }

  .value {
    text-align: center;
  }

  .value .vicon {
    margin-left: auto;
    margin-right: auto;
  }


  /* -------------------------------------------------------
     STATS
  ------------------------------------------------------- */

  .stats {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .stats .stat {
    border-right: 0;

    border-bottom:
      1px solid var(--line);
  }

  .stats .stat:last-child {
    border-bottom: 0;
  }

  .stat {
    padding: 28px;

    display: flex;
    flex-direction: column;
    align-items: center;

    justify-content: center;

    text-align: center;
  }

  .stat strong {
    font-size: 42px;
  }


  /* -------------------------------------------------------
     MINERALS
  ------------------------------------------------------- */

  .mineral-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 14px;
  }

  .mineral {
    min-height: 230px;

    border-radius: 13px;

    text-align: center;
  }

  .mineral-content {
    padding: 18px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
  }

  .mineral-content b {
    font-size: 18px;
  }

  .mineral-content span {
    font-size: 9px;
  }

  .mineral-content small {
    font-size: 9px;
  }


  /* -------------------------------------------------------
     PROJECTS
  ------------------------------------------------------- */

  .projects-grid {
    grid-template-columns: 1fr;

    justify-items: center;
  }

  .project,
  .project:nth-child(1) {
    width: 100%;

    height: 285px;

    grid-row: auto;
  }

  .project-content {
    left: 20px;
    right: 20px;
    bottom: 20px;

    text-align: center;
  }

  .project-content .tag {
    margin-inline: auto;
  }

  .project h3 {
    font-size: 21px;
  }

  .project h3,
  .project p {
    margin-left: auto;
    margin-right: auto;
  }


  /* -------------------------------------------------------
     PAGE HERO
  ------------------------------------------------------- */

  .pagehero {
    min-height: 320px;

    padding: 75px 0;
  }

  .pagehero h1 {
    font-size: 39px;

    letter-spacing: -1.8px;
  }

  .pagehero p {
    font-size: 14px;
  }

  .breadcrumbs {
    justify-content: center;

    margin-bottom: 18px;

    font-size: 12px;
  }

  .projects-page .pagehero {
    min-height: 320px;

    padding: 70px 0;
  }

  .projects-page .pagehero h1 {
    font-size: 42px;

    letter-spacing: -1.8px;
  }


  /* -------------------------------------------------------
     SPLIT / FORMS
  ------------------------------------------------------- */

  .split {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .split > div {
    text-align: center;
  }

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

  .full {
    grid-column: auto;
  }

  .form-card {
    padding: 24px;
  }


  /* -------------------------------------------------------
     TEAM
  ------------------------------------------------------- */

  .team-grid {
    grid-template-columns: 1fr;

    justify-items: center;
  }

  .team-card {
    width: 100%;
  }

  .team-photo {
    height: 390px;
  }


  /* -------------------------------------------------------
     MAP
  ------------------------------------------------------- */

  .map-box {
    height: 330px;
  }

  .map-box::before {
    font-size: 55px;

    letter-spacing: 5px;
  }


  /* -------------------------------------------------------
     CTA
  ------------------------------------------------------- */

  .cta {
    padding: 62px 0;
  }

  .cta-in {
    display: flex;
    flex-direction: column;

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

    text-align: center;
  }

  .cta h2 {
    font-size: 39px;
  }

  .cta p {
    margin-bottom: 25px;

    font-size: 14px;
  }

  .projects-page .cta-box {
    align-items: center;

    flex-direction: column;

    padding: 42px 30px;
  }


  /* -------------------------------------------------------
     PARTNERS
  ------------------------------------------------------- */

  .partners {
    padding: 45px 0 42px;
  }

  .partners-in {
    margin-bottom: 28px;
  }

  .partner-copy h3 {
    font-size: 25px;
  }

  .partner-copy p {
    font-size: 12px;
  }

  .partner-track {
    gap: 13px;

    animation-duration: 28s;
  }

  .partner-item {
    min-width: 150px;
    height: 60px;

    padding: 0 18px;

    font-size: 14px;
  }


  /* -------------------------------------------------------
     STANDARD FOOTER
  ------------------------------------------------------- */

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

    gap: 35px;
  }

  .footer-bottom {
    display: block;

    text-align: center;
  }

  .footer-bottom span {
    display: block;

    margin-top: 8px;
  }


  /* -------------------------------------------------------
     GPS FOOTER
  ------------------------------------------------------- */

  .gps-footer {
    padding-top: 58px;
  }

  .gps-footer-main {
    grid-template-columns: 1fr;

    gap: 38px;

    padding-bottom: 42px;

    justify-items: center;

    text-align: center;
  }

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

    max-width: 100%;

    min-height: 250px;

    padding: 24px;
  }

  .gps-footer-brand::before {
    top: 21px;
    left: 24px;
  }

  .gps-footer-brand::after {
    width: 155px;
    height: 155px;

    top: 72px;
    right: 15px;

    opacity: .10;
  }

  .gps-footer-brand .gps-socials {
    left: 50%;
    right: auto;

    max-width: 245px;

    transform: translateX(-50%);

    align-items: center;
  }

  .gps-footer-brand .gps-socials a:nth-child(1)::before,
  .gps-footer-brand .gps-socials a:nth-child(2)::before,
  .gps-footer-brand .gps-socials a:nth-child(3)::before {
    font-size: 9px;
  }

  .gps-footer-column h4,
  .gps-footer-contact h4 {
    font-size: 14px;
  }

  .gps-footer-column,
  .gps-footer-contact {
    align-items: center;

    text-align: center;
  }

  .gps-footer-trust {
    grid-template-columns: 1fr;

    gap: 20px;

    padding: 25px 0;
  }

  .gps-footer-trust > div,
  .gps-footer-trust > div:first-child {
    padding: 0;

    border-right: 0;

    justify-content: center;

    text-align: center;
  }

  .gps-footer-bottom {
    grid-template-columns: 1fr;

    gap: 12px;

    padding: 22px 0;

    text-align: center;
  }

  .gps-footer-legal {
    justify-content: center;
  }

  .gps-footer-tagline {
    display: none;
  }

  .gps-footer-cta {
    width: 100%;
  }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 520px) {

  .container {
    width: calc(100% - 30px);
  }

  .brand img {
    width: 175px;
  }

  .hero,
  .hero .container {
    min-height: 620px;
  }

  .hero-copy {
    padding-top: 55px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero h2 {
    font-size: 21px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero .buttons {
    width: 100%;

    flex-direction: column;

    align-items: center;
  }

  .hero .btn {
    width: 100%;
    max-width: 360px;
  }

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

  .mineral-grid {
    gap: 10px;
  }

  .mineral {
    min-height: 220px;
  }

  .mineral-content {
    padding: 15px;
  }

  .mineral-content b {
    font-size: 16px;
  }

  .mineral-content span {
    display: none;
  }

  .project,
  .project:nth-child(1) {
    height: 270px;
  }

  .projects-page .pagehero h1 {
    font-size: 39px;
  }

  .projects-page .pagehero p {
    font-size: 14px;
  }

  .cta h2 {
    font-size: 35px;
  }

  .projects-page .cta-box {
    padding: 32px 24px;
  }

  .team-photo {
    height: 350px;
  }

  .map-box {
    height: 280px;
  }

  .gps-footer {
    padding-top: 48px;
  }

  .gps-footer-main {
    gap: 32px;
  }

  .gps-footer-brand {
    min-height: 245px;
  }

  .gps-footer-trust strong {
    font-size: 11px;
  }

  .about-pagehero {
    min-height: 330px;

    padding: 60px 0;
  }

  .about-hero-inner .breadcrumbs {
    margin-bottom: 20px;

    font-size: 13px;
  }

  .about-hero-inner h1 {
    font-size: 34px;

    line-height: 1.08;

    letter-spacing: -.025em;
  }

  .about-hero-inner > p {
    font-size: 15px;

    line-height: 1.7;
  }

  .gps-footer-brand .gps-socials {
    max-width: 100%;
  }

  .gps-footer-brand .gps-socials a {
    padding-left: 20px;
    padding-right: 55px;
  }
}


/* =========================================================
   EXTRA SMALL PHONES
========================================================= */

@media (max-width: 420px) {

  .container {
    width: calc(100% - 28px);
  }

  .brand img {
    width: 165px;
  }

  .hero h1 {
    font-size: 38px;

    letter-spacing: -1.8px;
  }

  .hero h2 {
    font-size: 20px;
  }

  .hero p {
    font-size: 14px;
  }

  .section-head h2,
  .about-copy h2 {
    font-size: 34px;
  }

  .about-content h2 {
    font-size: 34px;
  }

  .cta h2 {
    font-size: 33px;
  }

  .projects-page .pagehero h1 {
    font-size: 36px;
  }

  .mineral-grid {
    gap: 8px;
  }

  .mineral {
    min-height: 205px;

    border-radius: 11px;
  }

  .mineral-content {
    padding: 13px;
  }

  .mineral-content small {
    font-size: 8px;

    letter-spacing: 1.5px;
  }

  .mineral-content b {
    font-size: 15px;
  }

  .project,
  .project:nth-child(1) {
    height: 250px;
  }

  .project h3 {
    font-size: 19px;
  }

  .tag {
    padding: 6px 9px;

    font-size: 9px;
  }

  .gps-footer-brand .gps-socials {
    max-width: 100%;
  }

  .gps-footer-brand .gps-socials a {
    padding-left: 20px;
    padding-right: 55px;
  }

  .about-pagehero {
    min-height: 315px;

    padding: 52px 0;
  }

  .about-hero-inner h1 {
    font-size: 32px;
  }

  .about-hero-inner > p {
    font-size: 14px;
  }
}


/* =========================================================
   REDUCED MOTION
   IMPORTANT:
   This media query is properly closed.
========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

