/*
 * GeoSync Group — Main Stylesheet
 * Clean, consolidated, readable version.
 *
 * Page order: Global → Home → Projects → About → Shared utilities →
 * Import/Export → Products → Shared Navbar/Hero → Sticky Hero → Contact.
 * Exact duplicate rules and duplicate declarations inside the same rule
 * were removed. Breakpoint/page-specific cascade rules are retained when
 * they materially change the rendered behaviour.
 */

:root {
  --ink: #0c1712;
  --ink-soft: #122019;
  --forest: #15462f;
  --green: #2f8f5b;
  --green-light: #59c98a;
  --gold: #c9a15a;
  --sand: #e7dfc9;
  --paper: #f6f4ee;
  --paper-dim: #eeebe1;
  --ink-text: #101a15;
  --muted: #5b6b60;
  --line: rgba(16, 26, 21, 0.1);
  --line-light: rgba(255, 255, 255, 0.14);
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container: 1240px;
  --radius: 14px;
  --ease: cubic-bezier(.16, .84, .44, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

h1,
h2,
h3 {
  font-family: var(--font-head);
  line-height: .95;
  letter-spacing: 0;
}

.eyebrow {
  margin-bottom: 13px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow-gold {
  color: var(--green);
}

.eyebrow-light,
.text-gold {
  color: var(--green-light);
}

.mission .eyebrow-gold,
.split--dark .eyebrow-gold,
.companies .eyebrow-gold {
  color: var(--green-light);
}

.banner-panel .text-gold,
.trade-feature .text-gold {
  color: var(--green);
}

.section-title {
  margin-bottom: 24px;
  max-width: 520px;
  font-size: clamp(2.35rem, 4.7vw, 4.4rem);
  font-weight: 800;
  text-transform: uppercase;
}

.text-light {
  color: var(--paper);
}

.body-text {
  max-width: 46ch;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.text-muted-light {
  color: rgba(246, 244, 238, .7);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 40px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: .25s var(--ease);
}

.btn-gold {
  background: var(--green);
  color: #fff;
  box-shadow: 0 8px 20px rgba(47, 143, 91, .3);
}

.btn-gold:hover {
  background: var(--green-light);
  color: #fff;
}

.btn-outline {
  border-color: var(--line-light);
  color: var(--paper);
}

.btn-outline:hover,
.btn-outline--dark:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.btn-outline--dark {
  border-color: rgba(89, 201, 138, .42);
  color: var(--paper);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  transition: background .25s var(--ease), backdrop-filter .25s var(--ease);
}

.site-header .products-nav {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  padding: 17px 0;
  background: linear-gradient(180deg, rgba(12, 23, 18, .72), rgba(12, 23, 18, 0));
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 70px);
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand-logo {
  width: 106px;
  height: auto;
}

.main-nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
  color: rgba(246, 244, 238, .82);
  font-size: .72rem;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--green-light);
}

.nav-cta {
  min-height: 34px;
  padding: 9px 16px;
  font-size: .62rem;
}

.nav-toggle {
  display: none;
}

/* ================= STICKY HERO SCROLL ================= */
.hero-sticky-wrap {
  position: relative;
  height: 140vh;
}

.hero-sticky-wrap>.hero,
.hero-sticky-wrap>.about-hero,
.hero-sticky-wrap>.proj-hero,
.hero-sticky-wrap>.impex-hero,
.hero-sticky-wrap>.products-hero,
.hero-sticky-wrap>.contact-hero {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 520px;
  max-height: none;
}

.hero-sticky-wrap .hero-video,
.hero-sticky-wrap .about-hero-img,
.hero-sticky-wrap .proj-hero-img,
.hero-sticky-wrap .impex-hero-image {
  --hero-y: 0px;
  --hero-scale: 1.04;
  transform: translate3d(0, var(--hero-y), 0) scale(var(--hero-scale));
  will-change: transform;
}

.hero-sticky-wrap .products-hero-image {
  --hero-y: 0px;
  --hero-scale: 1.04;
  transform: translate3d(0, var(--hero-y), 0) scale(var(--hero-scale));
  will-change: transform;
}

.hero {
  position: relative;
  min-height: unset;
  height: 100vh;
  overflow: hidden;
  background: var(--ink);
}

.hero-video {
  position: absolute;
  inset: -6%;
  width: 112%;
  height: 112%;
  object-fit: cover;
  opacity: .86;
}

.hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(1deg, #00000000 4.906825015419408%, rgb(0 0 0 / 0%) 34.942412794682014%, rgb(0 0 0 / 0%) 100%), linear-gradient(0deg, rgb(12 23 18 / 0%) 0%, rgb(255 255 255 / 0%) 18%, rgba(12, 23, 18, .18) 42%, rgb(12 23 18 / 0%) 100%), linear-gradient(1deg, rgb(0 0 0) 0%, rgb(0 0 0 / 70%) 31%, rgba(12, 23, 18, .08) 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  height: 100%;
  margin: 0 auto;
  padding: 126px clamp(24px, 5vw, 70px) 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title {
  max-width: 720px;
  color: var(--paper);
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  font-weight: 300;
  text-transform: uppercase;
}

.hero-title .text-gold {
  font-weight: 800;
}

.hero-sub {
  max-width: 560px;
  margin-top: 18px;
  color: rgba(246, 244, 238, .78);
  font-size: .9rem;
  line-height: 1.7;
}

/* ================= MISSION SECTION ================= */
.mission {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  padding: 105px clamp(24px, 7vw, 120px) 92px;
  background: #000;
  border-bottom-left-radius: 150px;
  overflow: hidden;
}

.mission-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 70px;
  align-items: center;
}

/* LEFT CONTENT */
.mission-copy {
  position: relative;
  z-index: 2;
}

.mission-copy .section-title {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.mission-copy .body-text {
  max-width: 560px;
}

/* ICON ROW */
.icon-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 560px;
  margin-top: 38px;
}

.icon-row li {
  position: relative;
  min-height: 82px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--green-light);
  font-size: .65rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

/* ================= MISSION SVG ICONS ================= */
.icon-row li {
  position: relative;
  min-height: 82px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  color: var(--green-light);
  font-size: .65rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

/* SVG ICON WRAPPER */
.mission-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  transition: transform .25s var(--ease),
    filter .25s var(--ease);
}

/* ACTUAL SVG */
.mission-icon svg {
  width: 48px;
  height: 48px;
  display: block;
  flex-shrink: 0;
}

/* HOVER */
.icon-row li:hover .mission-icon {
  transform: translateY(-3px);
  filter: drop-shadow(0 8px 16px rgba(89, 201, 138, .20));
}

/* TEXT */
.icon-row li>span {
  display: block;
  color: var(--green-light);
}

/* RIGHT IMAGE */
.mission-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.mineral-cluster {
  width: min(100%, 520px);
  height: auto;
  filter: drop-shadow(0 0 36px rgba(89, 201, 138, .13)) drop-shadow(0 15px 30px rgba(0, 0, 0, .35));
  transition: transform .5s var(--ease),
    filter .5s var(--ease);
}

.mission-visual:hover .mineral-cluster {
  transform: scale(1.025);
  filter: drop-shadow(0 0 48px rgba(89, 201, 138, .20)) drop-shadow(0 18px 35px rgba(0, 0, 0, .4));
}

/* ================= MISSION TABLET ================= */
@media (max-width: 980px) {
  .mission {
    padding: 80px clamp(24px, 6vw, 70px) 75px;
    border-bottom-left-radius: 100px;
  }

  .mission-inner {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .mission-icon {
    width: 42px;
    height: 42px;
  }

  .mission-icon svg {
    width: 42px;
    height: 42px;
  }

  .mission-copy {
    max-width: 720px;
  }

  .mission-visual {
    justify-content: center;
  }

  .mineral-cluster {
    width: min(100%, 480px);
  }
}

/* ================= MISSION MOBILE ================= */
@media (max-width: 640px) {
  .mission {
    padding: 65px 24px 60px;
    border-bottom-left-radius: 34px;
  }

  .mission-inner {
    gap: 42px;
  }

  .mission-copy .section-title {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .mission-copy .body-text {
    font-size: .9rem;
    line-height: 1.65;
  }

  .icon-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 18px;
    margin-top: 30px;
  }

  .icon-row li {
    min-height: 76px;
    font-size: .6rem;
  }

  .mission-icon {
    width: 40px;
    height: 40px;
  }

  .mission-icon svg {
    width: 40px;
    height: 40px;
  }

  .mission-icon img {
    width: 21px;
    height: 21px;
  }

  .mission-visual {
    margin-top: 5px;
  }

  .mineral-cluster {
    width: min(100%, 390px);
  }
}

.banner-panel {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  padding: 42px clamp(24px, 7vw, 120px);
  background: var(--paper);
  border-top-right-radius: 200px;
  border-top-left-radius: 200px;
  border-bottom-left-radius: 200px;
  border-bottom-right-radius: 200px;
}

.banner-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 58px;
  align-items: center;
}

.banner-left {
  padding-right: 42px;
  border-right: 1px solid var(--line);
}

.banner-left .section-title {
  font-size: clamp(1.9rem, 3.1vw, 3rem);
  text-transform: none;
}

.banner-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.banner-right .body-text {
  margin: 0;
  font-size: .96rem;
  line-height: 1.7;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  overflow: hidden;
}

.split--light {
  background: var(--paper-dim);
}

.split--dark,
.split--reverse {
  background: var(--ink);
}

.split-text {
  padding: clamp(62px, 8vw, 120px) clamp(44px, 9vw, 170px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split--light .split-text {
  background: var(--paper-dim);
}

.split--reverse .split-text {
  background: var(--paper-dim);
}

.split--reverse .split-text .section-title {
  color: var(--ink-text);
}

.split--reverse .split-text .body-text {
  color: var(--muted);
}

.split-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--ink-soft);
}

.split-img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(.92) contrast(1.03);
}

.split:nth-of-type(4) {
  border-top-right-radius: 56px;
  border-bottom-left-radius: 56px;
}

.split:nth-of-type(5) {
  border-top-right-radius: 56px;
  border-bottom-right-radius: 56px;
}

.split:nth-of-type(6) {
  border-top-left-radius: 56px;
  border-bottom-right-radius: 56px;
}

.stat-strip {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  width: min(78%, 520px);
  min-height: 86px;
  padding: 19px 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(12, 23, 18, .74);
  border: 1px solid rgba(89, 201, 138, .22);
  border-radius: 4px;
  backdrop-filter: blur(8px);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid rgba(89, 201, 138, .34);
}

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

.stat-num {
  color: var(--green-light);
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  font-weight: 800;
  line-height: 1;
}

.stat-label {
  margin-top: 7px;
  color: rgba(246, 244, 238, .74);
  font-size: .58rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.image-band {
  height: 44vh;
  min-height: 360px;
  background: var(--paper-dim);
  overflow: hidden;
  border-top-right-radius: 56px;
  border-bottom-right-radius: 56px;
}

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

.trade-feature {
  background: var(--paper);
  border-top-left-radius: 56px;
  border-bottom-left-radius: 56px;
  overflow: hidden;
}

.trade-feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
}

.trade-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.trade-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(5px) brightness(.82) saturate(1.06);
  transform: scale(1.035);
}

.trade-text {
  padding: clamp(62px, 8vw, 120px) clamp(44px, 9vw, 160px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--paper);
}

.trade-text .section-title {
  color: var(--ink-text);
}

.trade-text .body-text {
  color: var(--muted);
}

.trade-divider {
  width: 1px;
  height: 86%;
  position: absolute;
  right: 50%;
  margin-top: 50px;
  background: var(--line);
}

.trade-text .btn {
  margin-top: 12px;
  background: var(--ink);
  color: var(--green-light);
  border-color: var(--ink);
}

.companies {
  padding: 100px clamp(24px, 7vw, 120px) 70px;
  text-align: center;
  background: radial-gradient(circle at 12% 18%, rgba(47, 143, 91, .22), transparent 32%),
    linear-gradient(180deg, var(--ink-soft) 0%, var(--ink) 100%);
}

.companies-eyebrow {
  text-align: center;
}

.companies-title {
  max-width: 760px;
  margin: 0 auto 20px;
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  text-transform: none;
}

.companies-sub {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.companies-grid {
  max-width: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 52px;
}

.company-tile {
  min-height: 104px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(89, 201, 138, .25);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .03);
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}

.company-tile:hover {
  transform: translateY(-4px);
  border-color: var(--green-light);
  background: rgba(47, 143, 91, .12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .22);
}

.company-tile img {
  max-height: 100px;
  width: auto;
  object-fit: contain;
}

.companies-tagline {
  margin: 44px auto 26px;
  max-width: 720px;
  color: var(--green-light);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.7;
  text-transform: uppercase;
}

.companies-ctas {
  display: flex;
  justify-content: center;
  gap: 70px;
}

.site-footer {
  position: relative;
  z-index: 5;
  padding: 58px clamp(22px, 6vw, 90px) 24px;
  border-top: 1px solid rgba(89, 201, 138, .18);
  background:
    radial-gradient(circle at 18% 8%, rgba(89, 201, 138, .18), transparent 30%),
    radial-gradient(circle at 88% 0%, rgba(47, 143, 91, .12), transparent 28%),
    linear-gradient(180deg, #0b1711 0%, #050806 100%);
  color: rgba(246, 244, 238, .68);
  font-size: .78rem;
}

.site-footer-inner {
  max-width: var(--container);
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) .75fr 1fr;
  gap: 54px;
  align-items: start;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
}

.footer-logo img {
  width: 128px;
  height: auto;
}

.footer-brand p,
.footer-contact p {
  max-width: 420px;
  color: rgba(246, 244, 238, .66);
  line-height: 1.75;
}

.footer-column h3 {
  margin: 0 0 18px;
  color: #fff;
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-column ul {
  display: grid;
  gap: 10px;
}

.footer-column li,
.footer-contact p + p {
  margin-top: 0;
}

.site-footer a {
  color: rgba(246, 244, 238, .72);
  font-weight: 700;
  transition: color .22s ease;
}

.site-footer a:hover {
  color: var(--green-light);
}

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, .10);
  color: rgba(246, 244, 238, .50);
  font-size: .68rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--green-light);
  font-weight: 800;
}

@media (max-width: 980px) {
  .nav-inner {
    gap: 20px;
  }

  .site-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    display: none;
  }

  .nav-cta {
    margin-left: auto;
  }

  .mission-inner,
  .banner-inner,
  .split,
  .trade-feature-inner {
    grid-template-columns: 1fr;
  }

  .banner-left {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 26px;
  }

  .banner-right {
    grid-template-columns: 1fr;
  }

  .split--reverse .split-media {
    order: 2;
  }

  .split--reverse .split-text {
    order: 1;
  }

  .trade-divider {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-sticky-wrap {
    height: 120vh;
  }

  .hero-sticky-wrap>.hero,
  .hero-sticky-wrap>.about-hero,
  .hero-sticky-wrap>.proj-hero,
  .hero-sticky-wrap>.impex-hero,
  .hero-sticky-wrap>.products-hero {
    min-height: 480px;
  }

  .hero {
    height: 100vh;
    min-height: 480px;
  }

  .hero-content {
    padding: 100px 20px 56px;
  }

  .hero-title {
    font-size: clamp(2.4rem, 12vw, 3.8rem);
  }

  .hero-sub {
    font-size: .9rem;
    max-width: 100%;
  }

  .mission,
  .banner-panel,
  .companies {
    border-radius: 34px 34px 0 0;
  }

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

  .split-text,
  .trade-text {
    padding: 58px 26px;
  }

  .stat-strip {
    width: calc(100% - 34px);
    bottom: 18px;
  }

  .stat-label {
    font-size: .5rem;
  }

  .companies-ctas {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .banner-panel {
    border-radius: 34px;
    padding: 36px 20px;
  }

  .split {
    grid-template-columns: 1fr;
    border-radius: 0;
  }

  .split>.split-text {
    order: 1;
  }

  .split-media {
    order: 2;
    min-height: 260px;
    margin-top: 0;
    border-radius: 0 0 34px 34px;
  }

  .split+.split {
    margin-top: 10px;
  }

  .trade-feature-inner {
    padding: 0 20px;
  }

  .trade-media {
    max-width: 100%;
  }

  .companies {
    padding: 60px 20px;
  }

  .companies-title {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .site-footer {
    padding: 44px 22px 22px;
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-logo img {
    width: 116px;
  }
}

/* ================= PROJECTS PAGE ================= */
/* ================= PROJECTS HERO ================= */
.proj-hero {
  position: relative;
  min-height: unset;
  padding: 120px clamp(24px, 5vw, 70px) 70px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

/* HERO IMAGE */
.proj-hero-img {
  position: absolute;
  inset: -6%;
  width: 112%;
  height: 112%;
  object-fit: cover;
  filter: saturate(.88) contrast(1.06) brightness(.88);
}

/* HERO OVERLAY */
.proj-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(360deg,
      #000000 0%,
      rgba(0, 0, 0, 0) 28%,
      rgba(0, 0, 0, 0) 70%),

    linear-gradient(90deg,
      rgba(12, 23, 18, .94) 0%,
      rgba(12, 23, 18, 0) 38%,
      rgba(12, 23, 18, 0) 72%,
      rgba(12, 23, 18, .12) 100%),

    linear-gradient(180deg,
      rgba(12, 23, 18, 0),
      rgba(12, 23, 18, .12));
}

/* HERO CONTENT */
.proj-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  margin: 0 auto 0 0;
}

/* EYEBROW */
.proj-hero-inner .eyebrow {
  margin-bottom: 14px;
  color: var(--green-light);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .15em;
}

/* MAIN HEADING */
.proj-hero h1 {
  max-width: 12ch;
  color: #fff;
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 6.2rem);
  font-weight: 800;
  line-height: .95;
  letter-spacing: 0;
  text-transform: uppercase;
}

/* GOLD/GREEN ACCENT */
.proj-hero h1 span {
  color: var(--green-light);
}

/* DESCRIPTION */
.proj-hero-description {
  max-width: 550px;
  margin-top: 20px;
  color: rgba(246, 244, 238, .78);
  font-size: .9rem;
  line-height: 1.7;
}

/* SMALL ACCENT LINE */
.proj-hero-inner::after {
  content: "";
  display: block;
  width: 74px;
  height: 2px;
  margin-top: 28px;
  background: var(--green);
}

.proj-grid-section {
  position: relative;
  padding: 82px clamp(24px, 7vw, 120px) 120px;
  background: linear-gradient(180deg,
      var(--paper-dim) 0%,
      var(--paper) 100%);
}

.proj-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.proj-card {
  background: #fff;
  border: 1px solid rgba(16, 26, 21, .08);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease),
    box-shadow .3s var(--ease),
    border-color .3s var(--ease);
}

.proj-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(16, 26, 21, .13);
  border-color: rgba(47, 143, 91, .45);
}

.proj-card-media {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: var(--ink-soft);
}

.proj-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

/* ========================================================= PROJECT GALLERY ========================================================= */
.proj-gallery {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}

.proj-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.proj-card:hover .proj-gallery img {
  transform: scale(1.06);
}

/* ========================================================= PROJECT LIGHTBOX SLIDER ========================================================= */
.project-lightbox-slider {
  position: relative;
  z-index: 2;
  width: min(1200px, 94vw);
  height: min(82vh, 760px);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* IMAGE */
.project-slider-image {
  display: block;
  max-width: 100%;
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
  user-select: none;
}

/* LEFT / RIGHT BUTTONS */
.project-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  background: rgba(12, 23, 18, .78);
  color: #fff;
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background .25s ease,
    border-color .25s ease,
    transform .25s ease;
}

.project-slider-prev {
  left: 20px;
}

.project-slider-next {
  right: 20px;
}

.project-slider-btn:hover {
  background: var(--green);
  border-color: var(--green);
}

.project-slider-prev:hover {
  transform: translateY(-50%) translateX(-3px);
}

.project-slider-next:hover {
  transform: translateY(-50%) translateX(3px);
}

/* PROJECT NAME */
.project-slider-project {
  position: absolute;
  left: 50%;
  bottom: -42px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .75);
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* IMAGE COUNTER */
.project-slider-counter {
  position: absolute;
  left: 50%;
  bottom: -68px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .5);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .08em;
  white-space: nowrap;
}

/* ========================================================= MOBILE ========================================================= */
@media (max-width: 640px) {
  .project-lightbox-slider {
    width: 96vw;
    height: 78vh;
  }

  .project-slider-image {
    max-width: 96vw;
    max-height: 76vh;
    border-radius: 4px;
  }

  .project-slider-btn {
    width: 42px;
    height: 42px;
    font-size: 25px;
  }

  .project-slider-prev {
    left: 5px;
  }

  .project-slider-next {
    right: 5px;
  }

  .project-slider-project {
    bottom: -38px;
    font-size: .62rem;
  }

  .project-slider-counter {
    bottom: -60px;
    font-size: .58rem;
  }
}

.proj-card:hover .proj-card-media img {
  transform: scale(1.06);
}

.proj-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 8px;
  background: rgba(12, 23, 18, .78);
  backdrop-filter: blur(6px);
  border-radius: 40px;
  color: var(--paper);
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
}

.proj-badge-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  border-radius: 50%;
  color: #fff;
}

.proj-badge-icon svg {
  width: 15px;
  height: 15px;
}

.proj-card-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.proj-loc {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 600;
}

.proj-pin {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--green);
}

.proj-divider {
  height: 1px;
  margin: 16px 0 18px;
  background: var(--line);
}

.proj-meta {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.proj-meta-label {
  display: block;
  color: var(--ink-text);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.proj-meta-value {
  display: block;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.5;
}

.proj-btn {
  margin-top: auto;
  width: 100%;
  color: var(--forest);
  border-color: var(--forest);
}

.proj-btn:hover {
  background: var(--forest);
  color: #fff;
  border-color: var(--forest);
}

@media (max-width: 780px) {
  .proj-grid {
    grid-template-columns: 1fr;
  }

  .proj-hero {
    min-height: 500px;
    padding: 126px 24px 70px;
  }

  .proj-hero h1 {
    max-width: 11ch;
    font-size: clamp(2.65rem, 15vw, 4rem);
  }

  .proj-hero-description {
    max-width: 480px;
    font-size: .9rem;
    line-height: 1.65;
  }
}

@media (max-width: 560px) {
  .proj-hero {
    min-height: 500px;
    padding: 126px 24px 64px;
  }

  .proj-hero-overlay {
    background: linear-gradient(360deg,
        #000 0%,
        rgba(0, 0, 0, .58) 35%,
        rgba(0, 0, 0, .12) 100%),
      linear-gradient(90deg,
        rgba(12, 23, 18, .92),
        rgba(12, 23, 18, .48));
  }
}

/* ================= ABOUT PAGE ================= */
.about-page {
  background: var(--paper);
}

.about-wrap {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}

.about-centered {
  text-align: center;
}

.about-centered>h2 {
  margin: 0 auto 14px;
  max-width: 760px;
  color: var(--ink-text);
  font-size: clamp(1.65rem, 3vw, 2.65rem);
  font-weight: 800;
  line-height: 1.08;
}

.about-centered>p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.about-hero {
  position: relative;
  min-height: unset;
  padding: 120px clamp(24px, 5vw, 70px) 70px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.about-hero-img {
  position: absolute;
  inset: -6%;
  width: 112%;
  height: 112%;
  object-fit: cover;
  filter: saturate(.96) contrast(1.05);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(360deg, #000000 4.906825015419408%, rgba(0, 0, 0, 0) 34.942412794682014%, rgba(0, 0, 0, 0) 100%),
    linear-gradient(90deg, rgba(12, 23, 18, .9) 0%, rgba(12, 23, 18, .6) 42%, rgba(12, 23, 18, .18) 100%),
    linear-gradient(180deg, rgba(12, 23, 18, .48), rgba(12, 23, 18, .18));
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.about-hero h1 {
  max-width: 12ch;
  color: #fff;
  font-size: clamp(3rem, 7vw, 6.4rem);
  font-weight: 800;
  line-height: .95;
  text-transform: uppercase;
}

.about-hero p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 18px;
  color: rgba(246, 244, 238, .78);
  line-height: 1.65;
}

.about-intro {
  padding: 52px 0 62px;
  background: var(--paper);
}

.about-pillars {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.about-pillars article {
  padding: 22px 32px 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px 18px;
  text-align: left;
  background: var(--paper);
}

.about-icon {
  width: 54px;
  height: 54px;
  grid-row: span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--green-light);
  border: 1px solid rgba(89, 201, 138, .3);
  box-shadow: inset 0 0 0 8px rgba(89, 201, 138, .08),
    0 8px 20px rgba(12, 23, 18, .08);
  transition: transform .25s var(--ease),
    background .25s var(--ease),
    color .25s var(--ease),
    box-shadow .25s var(--ease);
}

.about-icon svg {
  width: 25px;
  height: 25px;
  display: block;
}

/* Hover */
.about-pillars article:hover .about-icon {
  background: var(--forest);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(47, 143, 91, .18),
    inset 0 0 0 1px rgba(89, 201, 138, .55);
}

.about-pillars article {
  transition: background .25s var(--ease);
}

.about-pillars article:hover {
  background: #fff;
}

.about-pillars h3 {
  color: var(--forest);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.about-pillars p {
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.65;
}

.about-journey {
  position: relative;
  min-height: 520px;
  padding: 0 clamp(24px, 6vw, 96px) 54px;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}

.about-journey-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  padding-top: 18px;
}

.about-journey-head span {
  height: 1px;
  background: var(--green);
}

.about-journey-head .eyebrow {
  margin: 0;
}
.journey-track {
  min-height: 420px;
  width: min(100%, 1240px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: stretch;
}

.journey-track article {
  padding: 26px 16px;
  border: 1px solid rgba(89, 201, 138, .24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .035);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.journey-track strong {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--green-light);
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  flex-shrink: 0;
}

.journey-track h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.2;
}

.journey-track p {
  color: rgba(246, 244, 238, .68);
  font-size: .88rem;
  line-height: 1.62;
}

.about-team {
  padding: 64px 0 86px;
  background: var(--paper-dim);
}

.team-leadership {
  width: min(100%, 640px);
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 44px;
}

.team-grid {
  width: min(100%, 1120px);
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px 36px;
}

.team-card {
  position: relative;
  min-width: 0;
}

.team-photo {
  aspect-ratio: 1 / 1.08;
  display: grid;
  place-items: center;
  border: 1px solid rgba(47, 143, 91, .34);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(89, 201, 138, .22), rgba(12, 23, 18, .7)),
    var(--ink-soft);
  color: rgba(246, 244, 238, .92);
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.team-card--lead .team-photo {
  border-color: var(--green-light);
  box-shadow: 0 12px 28px rgba(12, 23, 18, .12);
}

.team-info {
  width: calc(100% - 26px);
  margin: -30px auto 0;
  position: relative;
  z-index: 2;
  padding: 14px 16px 16px;
  background: #fff;
  border-left: 3px solid var(--green);
  box-shadow: 0 18px 34px rgba(16, 26, 21, .08);
  text-align: left;
}

.team-card--lead .team-info {
  border-left: 3px solid var(--green-light);
}

.team-info h3 {
  color: var(--ink-text);
  font-size: .95rem;
  font-weight: 800;
  line-height: 1.15;
}

.team-info p {
  margin-top: 5px;
  color: var(--green);
  font-size: .76rem;
  font-weight: 800;
}

.about-stats {
  padding: 70px 0 88px;
  background: #fff;
  border-top-left-radius: 72px;
  border-top-right-radius: 72px;
}

/* ================= ABOUT STATISTICS ================= */
.numbers-grid {
  margin: 58px auto 0;
  width: min(100%, 1000px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 52px 70px;
}

.numbers-grid article {
  position: relative;
  min-width: 0;
  padding-left: 76px;
  text-align: left;
}

/* SVG ICON CIRCLE */
.number-icon {
  position: absolute;
  left: 0;
  top: 2px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--green-light);
  box-shadow: inset 0 0 0 1px rgba(89, 201, 138, .35),
    0 8px 18px rgba(12, 23, 18, .08);
  transition: background .25s var(--ease),
    color .25s var(--ease),
    transform .25s var(--ease),
    box-shadow .25s var(--ease);
}

.number-icon svg {
  width: 24px;
  height: 24px;
  display: block;
  color: var(--green-light);
}

/* HOVER */
.numbers-grid article:hover .number-icon {
  background: var(--forest);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(47, 143, 91, .18),
    inset 0 0 0 1px rgba(89, 201, 138, .55);
}

.numbers-grid article:hover .number-icon svg {
  color: #fff;
}

/* BIG NUMBER */
.numbers-grid article>span {
  display: block;
  color: var(--ink-text);
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
}

/* TITLE */
.numbers-grid h3 {
  margin-top: 9px;
  color: var(--ink-text);
  font-size: .98rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

/* DESCRIPTION */
.numbers-grid article>p {
  margin-top: 12px;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.65;
}

/* ================= TABLET ================= */
@media (max-width: 980px) {
  .about-pillars {
    grid-template-columns: 1fr;
  }

  .journey-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 40px 0;
    min-height: auto;
    width: 100%;
  }

  .team-leadership {
    grid-template-columns: repeat(2, 1fr);
    width: min(100%, 580px);
  }

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

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 36px;
  }

  .about-journey {
    min-height: 0;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 640px) {
  .about-wrap {
    width: min(100% - 32px, var(--container));
  }

  .about-hero {
    min-height: 480px;
    padding: 110px 20px 50px;
    align-items: center;
  }

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

  .about-hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 8.5vw, 2.75rem);
    line-height: 1.05;
    word-break: break-word;
  }

  .about-hero p:not(.eyebrow) {
    max-width: 100%;
    font-size: .88rem;
    line-height: 1.6;
    margin-top: 14px;
  }

  .about-journey {
    padding: 0 16px 40px;
  }

  .journey-track {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 30px 0;
    width: 100%;
  }

  .journey-track article {
    padding: 22px 18px;
  }

  .about-stats {
    padding: 50px 0 60px;
    border-top-left-radius: 36px;
    border-top-right-radius: 36px;
  }

  .numbers-grid {
    width: 100%;
    margin-top: 36px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .numbers-grid article {
    padding-left: 64px;
  }

  .number-icon {
    width: 48px;
    height: 48px;
    top: 2px;
  }

  .number-icon svg {
    width: 22px;
    height: 22px;
  }

  .numbers-grid article>span {
    font-size: 1.95rem;
  }

  .numbers-grid h3 {
    font-size: .92rem;
  }

  .numbers-grid article>p {
    font-size: .84rem;
  }

  .team-leadership,
  .team-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    width: 100%;
    margin-top: 32px;
  }

  .about-icon {
    width: 48px;
    height: 48px;
  }

  .about-icon svg {
    width: 22px;
    height: 22px;
  }
}

/* ================= PROJECT IMAGE LIGHTBOX ================= */
.proj-card-media img {
  cursor: zoom-in;
}

/* LIGHTBOX OVERLAY */
.project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  visibility: hidden;
  opacity: 0;
  transition: opacity .3s ease,
    visibility .3s ease;
}

/* OPEN STATE */
.project-lightbox.is-open {
  visibility: visible;
  opacity: 1;
}

/* DARK BACKGROUND */
.project-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 8, .94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* IMAGE CONTAINER */
.project-lightbox-content {
  position: relative;
  z-index: 2;
  max-width: min(1200px, 94vw);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(.94);
  transition: transform .35s var(--ease);
}

/* IMAGE OPEN ANIMATION */
.project-lightbox.is-open .project-lightbox-content {
  transform: scale(1);
}

/* FULL IMAGE */
.project-lightbox-image {
  display: block;
  max-width: 100%;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
}

/* CLOSE BUTTON */
.project-lightbox-close {
  position: absolute;
  top: -52px;
  right: -4px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  background: rgba(12, 23, 18, .75);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: background .25s ease,
    border-color .25s ease,
    transform .25s ease;
}

.project-lightbox-close:hover {
  background: var(--green);
  border-color: var(--green);
  transform: rotate(90deg);
}

/* STOP PAGE SCROLL WHEN LIGHTBOX IS OPEN */
body.lightbox-open {
  overflow: hidden;
}

/* ================= LIGHTBOX MOBILE ================= */
@media (max-width: 640px) {
  .project-lightbox {
    padding: 20px;
  }

  .project-lightbox-content {
    max-width: 96vw;
    max-height: 86vh;
  }

  .project-lightbox-image {
    max-width: 96vw;
    max-height: 82vh;
    border-radius: 4px;
  }

  .project-lightbox-close {
    top: -52px;
    right: 0;
    width: 40px;
    height: 40px;
    font-size: 28px;
  }
}

/* ============================================================ GEOSYNC IMPEX PAGE CLEAN FINAL CSS ============================================================ */
/* ============================================================ IMPEX BASE ============================================================ */
.impex-page {
  background: var(--ink);
  color: var(--ink-text);
}

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

/* ============================================================ HERO ============================================================ */
.impex-hero {
  position: relative;
  min-height: unset;
  height: 100%;
  max-height: none;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.impex-hero-image {
  position: absolute;
  inset: -6%;
  width: 112%;
  height: 112%;
  object-fit: cover;
  filter: brightness(.62) contrast(1.08) saturate(.82);
}

.impex-hero-overlay {
  position: absolute;
  inset: 0;
 
}

.impex-hero-content {
  position: relative;
  z-index: 2;
  width: min(1240px,
      calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  padding: 100px clamp(24px, 7vw, 120px) 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.impex-hero-content .impex-eyebrow {
  margin: 0 0 14px;
  color: var(--green-light);
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.impex-hero-content h1 {
  max-width: 720px;
  margin: 0;
  color: var(--paper);
  font-family: var(--font-head);
  font-size: clamp(3.4rem, 7.5vw, 6.6rem);
  font-weight: 800;
  line-height: .91;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.impex-hero-content h1 span {
  color: var(--green-light);
}

.impex-hero-text {
  max-width: 510px;
  margin-top: 24px;
  color: rgba(246, 244, 238, .76);
  font-family: var(--font-body);
  font-size: .92rem;
  line-height: 1.7;
}

.impex-hero-content::after {
  content: "";
  display: block;
  width: 70px;
  height: 2px;
  margin-top: 28px;
  background: var(--green);
}

/* ============================================================ SHARED IMPEX EYEBROW ============================================================ */
.impex-eyebrow {
  margin: 0 0 8px;
  color: var(--green);
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .20em;
  line-height: 1.35;
  text-transform: uppercase;
}

.impex-heading-line {
  width: 48px;
  height: 2px;
  background: var(--green);
}

/* ============================================================ WHAT WE DO ============================================================ */
.impex-what {
  position: relative;
  z-index: 2;
  padding: 68px 24px 72px;
  background: linear-gradient(180deg,
      var(--paper) 0%,
      var(--paper-dim) 100%);
  color: var(--ink-text);
}

.impex-section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 42px;
  text-align: center;
}

/* ============================================================ SERVICE GRID ============================================================ */
.impex-service-grid {
  width: min(100%,
      1080px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* ============================================================ SERVICE CARD ============================================================ */
.impex-service-card {
  position: relative;
  min-height: 245px;
  padding: 28px 24px 26px;
  background: #fff;
  border: 1px solid rgba(47, 143, 91, .42);
  border-radius: 5px;
  box-shadow: 0 10px 28px rgba(12, 23, 18, .07);
  transition: transform .28s var(--ease),
    border-color .28s var(--ease),
    box-shadow .28s var(--ease);
}

.impex-service-card:hover {
  transform: translateY(-6px);
  border-color: var(--green);
  box-shadow: 0 20px 42px rgba(12, 23, 18, .13);
}

/* ============================================================ SERVICE ICON ============================================================ */
.impex-service-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  color: var(--green);
}

.impex-service-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ============================================================ SERVICE NUMBER ============================================================ */
.impex-service-number {
  position: absolute;
  top: 24px;
  right: 22px;
  color: rgba(47, 143, 91, .18);
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
}

/* ============================================================ SERVICE TITLE ============================================================ */
.impex-service-card h3 {
  max-width: 18ch;
  margin: 0 0 13px;
  color: var(--ink-text);
  font-family: var(--font-head);
  font-size: .90rem;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

/* ============================================================ SERVICE DESCRIPTION ============================================================ */
.impex-service-card p {
  max-width: 31ch;
  margin: 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: .88rem;
  line-height: 1.7;
}

/* ============================================================ MARKET SECTION KEEPING ORIGINAL DESIGN ============================================================ */
.impex-market-section {
  position: relative;
  padding: 0 24px 78px;
  background: linear-gradient(180deg,
      var(--paper-dim) 0%,
      #c5c9c4 42%,
      var(--ink) 100%);
}

/* ============================================================ MARKET PANEL ============================================================ */
.impex-market-panel {
  width: min(100%,
      1080px);
  margin: 0 auto;
  padding: 34px 36px 38px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  background: rgba(255, 255, 255, .98);
  border: 1px solid rgba(47, 143, 91, .40);
  border-radius: 4px;
  box-shadow: 0 18px 45px rgba(12, 23, 18, .13);
}

/* ============================================================ MARKET COLUMNS ============================================================ */
.impex-market-column {
  min-width: 0;
}

.impex-column-title {
  margin: 0 0 11px;
  color: var(--green);
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.impex-column-line {
  width: 100%;
  height: 1px;
  margin-bottom: 10px;
  background: rgba(47, 143, 91, .22);
}

/* ============================================================ MARKET ITEMS ============================================================ */
.impex-market-item {
  min-height: 62px;
  margin-bottom: 7px;
  padding: 10px 13px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(16, 26, 21, .14);
  border-radius: 3px;
  transition: background .25s ease,
    border-color .25s ease,
    transform .25s ease;
}

.impex-market-item:hover {
  background: rgba(89, 201, 138, .055);
  border-color: rgba(47, 143, 91, .45);
  transform: translateX(2px);
}

.impex-market-item span {
  color: var(--green);
  font-family: var(--font-head);
  font-size: 1.32rem;
  font-weight: 700;
  line-height: 1;
}

.impex-market-item p {
  margin: 0;
  color: var(--ink-text);
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.5;
}

/* ============================================================ LARGE DESKTOP — MARKET SCALE ============================================================ */
@media (min-width: 1200px) {
  .impex-market-panel {
    width: min(100%,
        1120px);
    padding: 38px 42px 42px;
    gap: 36px;
  }

  .impex-market-item {
    min-height: 66px;
    grid-template-columns: 52px 1fr;
  }

  .impex-market-item span {
    font-size: 1.42rem;
  }

  .impex-market-item p {
    font-size: .88rem;
    line-height: 1.5;
  }

  .impex-column-title {
    font-size: .74rem;
  }
}

/* ============================================================ MARKET DIVIDER ============================================================ */
.impex-market-divider {
  width: 1px;
  background: linear-gradient(180deg,
      transparent,
      rgba(47, 143, 91, .28) 10%,
      rgba(47, 143, 91, .28) 90%,
      transparent);
}

/* ============================================================ WHY GEOSYNC GROUP IMPEX ============================================================ */
.impex-why {
  position: relative;
  padding: 72px 24px 88px;
  background: radial-gradient(circle at 15% 15%,
      rgba(47, 143, 91, .14),
      transparent 30%),
    linear-gradient(180deg,
      var(--ink-soft) 0%,
      var(--ink) 100%);
  color: var(--paper);
}

.impex-why-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
  text-align: center;
}

.impex-why-heading .impex-eyebrow {
  color: var(--green-light);
}

/* ============================================================ WHY GRID ============================================================ */
.impex-why-grid {
  width: min(100%,
      1120px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

/* ============================================================ WHY ITEM ============================================================ */
.impex-why-item {
  min-height: 220px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid rgba(89, 201, 138, .22);
}

.impex-why-item:last-child {
  border-right: 0;
}

/* ============================================================ WHY ICON ============================================================ */
.impex-why-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  color: var(--green-light);
}

.impex-why-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ============================================================ WHY TITLE ============================================================ */
.impex-why-item h3 {
  min-height: 46px;
  margin: 0 0 12px;
  color: var(--paper);
  font-family: var(--font-head);
  font-size: .74rem;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

/* ============================================================ WHY DESCRIPTION ============================================================ */
.impex-why-item p {
  max-width: 155px;
  margin: 0;
  color: rgba(246, 244, 238, .58);
  font-family: var(--font-body);
  font-size: .88rem;
  line-height: 1.65;
}

/* ============================================================ FOOTER ============================================================ */
.impex-page .site-footer {
  padding: 26px 32px;
  background: var(--ink);
  color: rgba(246, 244, 238, .55);
  text-align: center;
  font-family: var(--font-body);
  font-size: .68rem;
}

/* ============================================================ TABLET ============================================================ */
@media (max-width: 980px) {

  /* WHAT WE DO */
  .impex-service-grid {
    width: min(100%,
        760px);
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .impex-service-card {
    min-height: 220px;
  }

  /* WHY */
  .impex-why-grid {
    width: min(100%,
        780px);
    grid-template-columns: repeat(3, 1fr);
    row-gap: 34px;
  }

  .impex-why-item {
    min-height: 195px;
    padding: 0 18px;
  }

  .impex-why-item:nth-child(3) {
    border-right: 0;
  }

  .impex-why-item:nth-child(n + 4) {
    padding-top: 34px;
    border-top: 1px solid rgba(89, 201, 138, .18);
  }
}

/* ============================================================ TABLET / MOBILE ============================================================ */
@media (max-width: 760px) {
  .impex-hero {
    min-height: 580px;
    height: 74vh;
  }

  .impex-hero-content {
    width: min(calc(100% - 42px),
        700px);
    padding: 90px 0 55px;
  }

  .impex-hero-content h1 {
    font-size: clamp(3.2rem,
        14vw,
        5.2rem);
  }

  .impex-hero-text {
    max-width: 470px;
    font-size: .86rem;
  }

  /* MARKET */
  .impex-market-panel {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 26px 20px 28px;
  }

  .impex-market-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(47, 143, 91, .35),
        transparent);
  }
}

/* ============================================================ MOBILE ============================================================ */
@media (max-width: 640px) {

  /* HERO */
  .impex-hero {
    min-height: 560px;
  }

  .impex-hero-image {
    object-position: 58% center;
  }

  .impex-hero-overlay {
    background: linear-gradient(90deg,
        rgba(5, 10, 8, .93) 0%,
        rgba(5, 10, 8, .70) 55%,
        rgba(5, 10, 8, .35) 100%),
      linear-gradient(180deg,
        rgba(12, 23, 18, .30) 0%,
        rgba(0, 0, 0, .82) 100%);
  }

  .impex-hero-content {
    width: calc(100% - 36px);
    padding: 90px 0 48px;
  }

  .impex-hero-content h1 {
    font-size: clamp(3rem,
        15.5vw,
        4.7rem);
    letter-spacing: -.04em;
  }

  .impex-hero-text {
    font-size: .81rem;
    line-height: 1.65;
  }

  /* WHAT WE DO */
  .impex-what {
    padding: 48px 16px 52px;
  }

  .impex-section-heading {
    margin-bottom: 30px;
  }

  .impex-service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .impex-service-card {
    min-height: 205px;
    padding: 20px 16px 18px;
  }

  .impex-service-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 15px;
  }

  .impex-service-number {
    top: 17px;
    right: 15px;
    font-size: .68rem;
  }

  .impex-service-card h3 {
    font-size: .67rem;
    line-height: 1.3;
  }

  .impex-service-card p {
    font-size: .88rem;
    line-height: 1.6;
  }

  /* MARKET */
  .impex-market-section {
    padding: 0 15px 58px;
  }

  .impex-market-panel {
    padding: 24px 16px 26px;
  }

  .impex-column-title {
    font-size: .64rem;
    letter-spacing: .15em;
  }

  .impex-market-item {
    min-height: 58px;
    grid-template-columns: 42px 1fr;
    padding: 9px 10px;
  }

  .impex-market-item span {
    font-size: 1.08rem;
  }

  .impex-market-item p {
    font-size: .88rem;
    line-height: 1.48;
  }

  /* WHY */
  .impex-why {
    padding: 54px 16px 64px;
  }

  .impex-why-heading {
    margin-bottom: 34px;
  }

  .impex-why-grid {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 0;
  }

  .impex-why-item {
    min-height: 190px;
    padding: 20px 12px;
    border-right: 1px solid rgba(89, 201, 138, .16);
    border-bottom: 1px solid rgba(89, 201, 138, .16);
  }

  .impex-why-item:nth-child(2n) {
    border-right: 0;
  }

  .impex-why-item:nth-child(5),
  .impex-why-item:nth-child(6) {
    border-bottom: 0;
  }

  .impex-why-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
  }

  .impex-why-item h3 {
    min-height: 40px;
    font-size: .60rem;
    line-height: 1.35;
  }

  .impex-why-item p {
    max-width: 135px;
    font-size: .88rem;
    line-height: 1.55;
  }
}

/* ============================================================ VERY SMALL MOBILE ============================================================ */
@media (max-width: 420px) {
  .impex-service-grid {
    grid-template-columns: 1fr;
  }

  .impex-service-card {
    min-height: 165px;
  }

  .impex-service-card h3 {
    font-size: .70rem;
  }

  .impex-service-card p {
    max-width: 42ch;
    font-size: .88rem;
  }

  .impex-why-grid {
    grid-template-columns: 1fr;
  }

  .impex-why-item,
  .impex-why-item:nth-child(n + 4) {
    min-height: auto;
    padding: 26px 15px;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid rgba(89, 201, 138, .16);
  }

  .impex-why-item:last-child {
    border-bottom: 0;
  }

  .impex-why-item p {
    max-width: 260px;
  }
}

/* ========================================================= GEOSYNC PRODUCTS PAGE SCREENSHOT STRUCTURE GEOSYNC GREEN THEME ========================================================= */
/* ========================================================= PAGE BASE ========================================================= */
.products-page {
  background: var(--paper);
  color: var(--ink-text);
  overflow-x: hidden;
}

.products-page main {
  overflow: hidden;
}

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

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

.products-page a {
  text-decoration: none;
}

/* ========================================================= CONTAINER ========================================================= */
.products-container {
  width: min(1240px,
      calc(100% - 48px));
  margin: 0 auto;
}

/* ========================================================= NAVBAR ========================================================= */
.products-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.products-nav {
  width: 100%;
  padding: 17px 0;
  background: linear-gradient(180deg,
      rgba(12, 23, 18, .72),
      rgba(12, 23, 18, 0));
}

.products-nav-inner {
  width: min(1240px,
      calc(100% - 48px));
  min-height: 54px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

/* LOGO */
.products-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.products-logo img {
  width: 106px;
  height: auto;
}

/* NAV LINKS */
.products-nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 27px;
}

.products-nav-links li {
  margin: 0;
}

.products-nav-links a {
  position: relative;
  color: rgba(246,
      244,
      238,
      .82);
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 700;
  transition: color .25s var(--ease);
}

.products-nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--green-light);
  transition: width .25s var(--ease);
}

.products-nav-links a:hover,
.products-nav-links a.active {
  color: var(--green-light);
}

.products-nav-links a:hover::after,
.products-nav-links a.active::after {
  width: 100%;
}

/* NAV CTA */
.products-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 15px;
  border: 1px solid rgba(89,
      201,
      138,
      .42);
  border-radius: 3px;
  color: var(--paper);
  background: rgba(12,
      23,
      18,
      .28);
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .25s ease,
    border-color .25s ease,
    transform .25s ease;
}

.products-nav-cta i {
  color: var(--green-light);
  font-size: .55rem;
}

.products-nav-cta:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  transform: translateY(-2px);
}

.products-nav-cta:hover i {
  color: #fff;
}

/* MOBILE NAV BUTTON */
.products-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  padding: 8px;
  border: 1px solid rgba(89,
      201,
      138,
      .35);
  border-radius: 4px;
  background: rgba(12,
      23,
      18,
      .7);
  cursor: pointer;
}

.products-nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--paper);
}

/* ========================================================= HERO ========================================================= */
.products-hero {
  position: relative;
  min-height: 560px;
  height: 68vh;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

/* HERO IMAGE */
.products-hero-image {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/mining-hero.png");
  background-size: cover;
  background-position: center center;
  transform: scale(1.02);
  filter: saturate(.88) contrast(1.05) brightness(.78);
}

/* If your mining hero image has another filename, change ONLY the URL above. */
/* HERO OVERLAY */
.products-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(360deg,
      #000000 0%,
      rgba(0, 0, 0, 0) 28%,
      rgba(0, 0, 0, 0) 70%),

    linear-gradient(90deg,
      rgba(12, 23, 18, .94) 0%,
      rgba(12, 23, 18, 0) 38%,
      rgba(12, 23, 18, 0) 72%,
      rgba(12, 23, 18, .12) 100%),

    linear-gradient(180deg,
      rgba(12, 23, 18, 0),
      rgba(12, 23, 18, .12));
}

/* HERO INNER */
.products-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1240px,
      calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

/* HERO CONTENT */
.products-hero-content {
  max-width: 580px;
  padding-top: 55px;
}

.products-eyebrow,
.products-section-eyebrow {
  margin-bottom: 12px;
  color: var(--green-light);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

/* HERO TITLE */
.products-hero h1 {
  margin: 0;
  color: var(--paper);
  font-family: var(--font-head);
  font-size: clamp(3.1rem,
      6.5vw,
      6rem);
  font-weight: 700;
  line-height: .89;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.products-hero h1 span {
  color: var(--green-light);
  font-weight: 800;
}

/* HERO DESCRIPTION */
.products-hero-copy {
  max-width: 500px;
  margin-top: 22px;
  color: rgba(246,
      244,
      238,
      .88);
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.55;
}

.products-hero-subcopy {
  max-width: 530px;
  margin-top: 9px;
  color: rgba(246,
      244,
      238,
      .62);
  font-size: .92rem;
  line-height: 1.65;
}

/* HERO GREEN LINE */
.products-hero-accent {
  width: 72px;
  height: 2px;
  margin-top: 22px;
  background: var(--green);
}

/* ========================================================= MAIN PRODUCTS AREA ========================================================= */
.products-main {
  position: relative;
  padding: 48px 0 65px;
  background: var(--paper);
}

/* ========================================================= INTRO ========================================================= */
.products-intro {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 32px;
}

.products-intro .products-section-eyebrow {
  margin-bottom: 10px;
  color: var(--green);
  font-size: .66rem;
  letter-spacing: .20em;
}

.products-intro h2 {
  margin: 0;
  color: var(--ink-text);
  font-family: var(--font-head);
  font-size: clamp(1.8rem,
      3vw,
      2.7rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.03em;
}

.products-intro h2 span {
  color: var(--forest);
}

.products-intro-text {
  max-width: 650px;
  margin: 13px auto 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.65;
}

.products-intro-line {
  width: 46px;
  height: 2px;
  margin: 13px auto 0;
  background: var(--green);
}

/* ========================================================= CATEGORY ========================================================= */
.product-category {
  margin-top: 31px;
  padding-top: 5px;
}

/* CATEGORY HEADING */
.product-category-heading {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-bottom: 19px;
}

.category-line {
  flex: 1;
  height: 1px;
  background: rgba(47,
      143,
      91,
      .35);
}

.category-icon {
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(47,
      143,
      91,
      .45);
  border-radius: 50%;
  background: var(--ink);
  color: var(--green-light);
  font-size: .65rem;
  box-shadow: 0 5px 12px rgba(12,
      23,
      18,
      .10);
}

.category-heading-text {
  text-align: center;
  min-width: max-content;
}

.category-heading-text h3 {
  margin: 0;
  color: var(--forest);
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.1;
}

.category-heading-text p {
  margin-top: 4px;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.3;
}

/* ========================================================= CARD GRID ========================================================= */
.products-card-grid {
  display: grid;
  align-items: stretch;
  justify-content: center;
  gap: 21px;
}

/* INDUSTRIAL = 5 */
.industrial-grid {
  grid-template-columns: repeat(5,
      minmax(0,
        1fr));
}

/* SPECIALTY = 3 */
.specialty-grid {
  width: min(680px,
      100%);
  margin: 0 auto;
  grid-template-columns: repeat(3,
      minmax(0,
        1fr));
}

/* STONES = 4 */
.stones-grid {
  width: min(920px,
      100%);
  margin: 0 auto;
  grid-template-columns: repeat(4,
      minmax(0,
        1fr));
}

/* ========================================================= PRODUCT CARD ========================================================= */
.product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(47,
      143,
      91,
      .24);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 25px rgba(12,
      23,
      18,
      .12);
  transition: transform .30s var(--ease),
    border-color .30s var(--ease),
    box-shadow .30s var(--ease);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--green);
  box-shadow: 0 20px 38px rgba(12,
      23,
      18,
      .18);
}

/* ========================================================= CATEGORY SEPARATION ========================================================= */
.product-category+.product-category {
  margin-top: 42px;
}

.product-category+.product-category::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin: 0 0 25px;
  background: rgba(47,
      143,
      91,
      .25);
}

/* ========================================================= ENQUIRY STRIP ========================================================= */
.products-enquiry {
  width: min(100%,
      950px);
  margin: 31px auto 0;
  min-height: 70px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 17px;
  border: 1px solid rgba(47,
      143,
      91,
      .28);
  border-radius: 5px;
  background: rgba(255,
      255,
      255,
      .80);
  box-shadow: 0 8px 24px rgba(12,
      23,
      18,
      .07);
}

/* ICON */
.enquiry-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(47,
      143,
      91,
      .35);
  border-radius: 5px;
  color: var(--green);
  background: rgba(47,
      143,
      91,
      .05);
  font-size: .75rem;
}

/* CONTENT */
.enquiry-content {
  flex: 1;
}

.enquiry-content h3 {
  margin: 0;
  color: var(--ink-text);
  font-family: var(--font-head);
  font-size: .84rem;
  font-weight: 600;
}

.enquiry-content p {
  margin-top: 3px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.45;
}

/* BUTTON */
.enquiry-button {
  min-width: 125px;
  min-height: 32px;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--green);
  border-radius: 4px;
  color: var(--green);
  background: transparent;
  font-size: .56rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: background .25s ease,
    color .25s ease;
}

.enquiry-button:hover {
  background: var(--green);
  color: #fff;
}

.enquiry-button i {
  font-size: .48rem;
}

/* ========================================================= WHY GEOSYNC ========================================================= */
.products-why {
  padding: 82px 0 90px;
  background: radial-gradient(circle at 12% 15%,
      rgba(47,
        143,
        91,
        .18),
      transparent 30%),

    linear-gradient(180deg,
      var(--ink-soft),
      var(--ink));
}

.why-heading {
  max-width: 650px;
  margin: 0 auto 48px;
  text-align: center;
}

.why-heading .products-section-eyebrow {
  color: var(--green-light);
}

.why-heading h2 {
  margin: 0;
  color: var(--paper);
  font-family: var(--font-head);
  font-size: clamp(2rem,
      4vw,
      3.3rem);
  line-height: .98;
}

.why-heading h2 span {
  color: var(--green-light);
}

.why-heading>p:last-child {
  max-width: 560px;
  margin: 15px auto 0;
  color: rgba(246,
      244,
      238,
      .56);
  font-size: .9rem;
  line-height: 1.65;
}

/* WHY GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5,
      1fr);
  border-top: 1px solid rgba(89,
      201,
      138,
      .16);
  border-bottom: 1px solid rgba(89,
      201,
      138,
      .16);
}

.why-grid article {
  min-height: 190px;
  padding: 27px 20px;
  border-right: 1px solid rgba(89,
      201,
      138,
      .16);
  transition: background .25s ease;
}

.why-grid article:last-child {
  border-right: 0;
}

.why-grid article:hover {
  background: rgba(47,
      143,
      91,
      .07);
}

.why-grid article>i {
  margin-bottom: 22px;
  color: var(--green-light);
  font-size: 1.1rem;
}

.why-grid h3 {
  margin: 0;
  color: var(--paper);
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
}

.why-grid p {
  margin-top: 9px;
  color: rgba(246,
      244,
      238,
      .48);
  font-size: .84rem;
  line-height: 1.65;
}

/* ========================================================= FINAL CTA ========================================================= */
.products-final-cta {
  padding: 85px 0 90px;
  text-align: center;
  background: var(--paper);
}

.products-final-cta .products-section-eyebrow {
  color: var(--green);
}

.products-final-cta h2 {
  max-width: 720px;
  margin: 0 auto;
  color: var(--ink-text);
  font-family: var(--font-head);
  font-size: clamp(2.2rem,
      4.5vw,
      3.9rem);
  line-height: .97;
  letter-spacing: -.035em;
}

.products-final-cta h2 span {
  color: var(--forest);
}

.products-final-cta>p:not(.products-section-eyebrow) {
  max-width: 560px;
  margin: 16px auto 24px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.65;
}

/* CTA BUTTON */
.products-main-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 40px;
  padding: 11px 19px;
  border: 1px solid var(--green);
  border-radius: 3px;
  background: var(--green);
  color: #fff;
  font-size: .60rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: background .25s ease,
    border-color .25s ease,
    transform .25s ease;
}

.products-main-button:hover {
  background: var(--forest);
  border-color: var(--forest);
  transform: translateY(-2px);
}

.products-main-button i {
  font-size: .50rem;
}

/* ========================================================= FOOTER ========================================================= */
.products-footer {
  padding: 23px 20px;
  background: var(--ink);
  color: rgba(246,
      244,
      238,
      .45);
  text-align: center;
  font-size: .56rem;
}

.products-footer p {
  margin: 0;
}

/* ========================================================= BACK TO TOP ========================================================= */
.products-back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(47,
      143,
      91,
      .25);
  border-radius: 4px;
  background: var(--paper);
  color: var(--green);
  box-shadow: 0 8px 22px rgba(0,
      0,
      0,
      .18);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s ease,
    visibility .25s ease,
    transform .25s ease,
    background .25s ease,
    color .25s ease;
}

.products-back-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.products-back-top:hover {
  background: var(--green);
  color: #fff;
}

/* ========================================================= LARGE DESKTOP ========================================================= */
@media (min-width: 1300px) {

  .products-container,
  .products-nav-inner,
  .products-hero-inner {
    width: min(1240px,
        calc(100% - 80px));
  }

  .product-card-image {
    height: 155px;
  }

  .product-card-bottom {
    min-height: 68px;
  }
}

/* ========================================================= TABLET ========================================================= */
@media (max-width: 1100px) {
  .industrial-grid {
    grid-template-columns: repeat(4,
        minmax(0,
          1fr));
  }

  .industrial-grid .product-card:last-child {
    grid-column: 2 / span 1;
  }

  .specialty-grid {
    width: min(650px,
        100%);
  }

  .stones-grid {
    width: min(850px,
        100%);
  }

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

  .why-grid article:nth-child(3) {
    border-right: 0;
  }

  .why-grid article:nth-child(n + 4) {
    border-top: 1px solid rgba(89,
        201,
        138,
        .16);
  }
}

/* ========================================================= NAV MOBILE ========================================================= */
@media (max-width: 820px) {
  .products-nav-inner {
    width: calc(100% - 32px);
  }

  .products-nav-toggle {
    display: block;
  }

  .products-nav-links {
    position: absolute;
    top: 68px;
    left: 16px;
    right: 16px;
    margin: 0;
    padding: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(89,
        201,
        138,
        .25);
    border-radius: 5px;
    background: rgba(12,
        23,
        18,
        .98);
    box-shadow: 0 20px 40px rgba(0,
        0,
        0,
        .35);
  }

  .products-nav-links.is-open {
    display: flex;
  }

  .products-nav-links a {
    display: block;
    padding: 12px 8px;
    font-size: .72rem;
  }

  .products-nav-cta {
    display: none;
  }
}

/* ========================================================= TABLET / SMALL ========================================================= */
@media (max-width: 760px) {
  .products-container {
    width: calc(100% - 32px);
  }

  .products-hero {
    min-height: 570px;
    height: 76vh;
  }

  .products-hero-inner {
    width: calc(100% - 32px);
  }

  .products-hero-content {
    max-width: 500px;
    padding-top: 60px;
  }

  .products-hero h1 {
    font-size: clamp(3rem,
        12vw,
        5rem);
  }

  .products-main {
    padding: 42px 0 55px;
  }

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

  .industrial-grid .product-card:last-child {
    grid-column: auto;
  }

  .specialty-grid {
    width: 100%;
    grid-template-columns: repeat(3,
        minmax(0,
          1fr));
  }

  .stones-grid {
    width: 100%;
    grid-template-columns: repeat(2,
        minmax(0,
          1fr));
  }

  .products-enquiry {
    flex-wrap: wrap;
    padding: 14px;
  }

  .enquiry-content {
    min-width: calc(100% - 55px);
  }

  .enquiry-button {
    width: 100%;
  }

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

  .why-grid article:nth-child(2n) {
    border-right: 0;
  }

  .why-grid article:nth-child(3) {
    border-right: 1px solid rgba(89,
        201,
        138,
        .16);
  }

  .why-grid article:nth-child(5) {
    grid-column: span 2;
    border-right: 0;
  }
}

/* ========================================================= MOBILE ========================================================= */
@media (max-width: 560px) {

  .products-container,
  .products-hero-inner {
    width: calc(100% - 26px);
  }

  .products-hero {
    min-height: 555px;
  }

  .products-hero-image {
    background-position: 60% center;
  }

  .products-hero-overlay {
    background: linear-gradient(180deg,
        rgba(12,
          23,
          18,
          .58),
        rgba(12,
          23,
          18,
          .82) 58%,
        rgba(0,
          0,
          0,
          .88));
  }

  .products-hero-content {
    padding-top: 75px;
  }

  .products-hero h1 {
    font-size: clamp(2.8rem,
        15vw,
        4.4rem);
  }

  .products-hero-copy {
    font-size: .95rem;
  }

  .products-hero-subcopy {
    font-size: .92rem;
  }

  .products-intro h2 {
    font-size: 1.8rem;
  }

  .products-intro-text {
    font-size: .92rem;
  }

  /* CATEGORY */
  .category-line {
    display: none;
  }

  .product-category-heading {
    gap: 10px;
  }

  .category-heading-text {
    min-width: 0;
  }

  .category-heading-text h3 {
    font-size: .62rem;
  }

  .category-heading-text p {
    font-size: .82rem;
  }

  /* INDUSTRIAL */
  .industrial-grid {
    grid-template-columns: 1fr;
  }

  /* SPECIALTY */
  .specialty-grid {
    grid-template-columns: 1fr;
  }

  /* STONES */
  .stones-grid {
    grid-template-columns: 1fr;
  }

  /* CARDS */
  .product-card-image {
    height: 205px;
  }

  .product-card-bottom {
    min-height: 65px;
  }

  .product-card-bottom h4 {
    font-size: .72rem;
  }

  .product-card-bottom p {
    max-height: none;
    margin-top: 5px;
    opacity: 1;
    font-size: .78rem;
  }

  /* WHY */
  .products-why {
    padding: 65px 0 70px;
  }

  .why-heading {
    margin-bottom: 35px;
  }

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

  .why-grid article,
  .why-grid article:nth-child(3),
  .why-grid article:nth-child(5) {
    grid-column: auto;
    min-height: auto;
    padding: 23px 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(89,
        201,
        138,
        .16);
  }

  .why-grid article:last-child {
    border-bottom: 0;
  }

  /* CTA */
  .products-final-cta {
    padding: 65px 0 70px;
  }
}

/* ========================================================= VERY SMALL ========================================================= */
@media (max-width: 380px) {
  .products-hero h1 {
    font-size: 2.65rem;
  }

  .product-card-image {
    height: 185px;
  }

  .products-enquiry {
    gap: 11px;
  }

  .enquiry-content h3 {
    font-size: .76rem;
  }

  .enquiry-content p {
    font-size: .9rem;
  }
}

/* ========================================================= GEOSYNC COMMON NAVBAR + INNER PAGE HERO ADD-ON — SAFE: EXISTING PAGE CSS IS KEPT ========================================================= */
/* ---------- COMMON NAVBAR ---------- */
.products-nav {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  color: #fff;
  padding: 17px 0;
  background: linear-gradient(180deg, rgba(12, 23, 18, .72), rgba(12, 23, 18, 0));
}

.products-nav-inner {
  width: min(1500px, calc(100% - 48px));
  min-height: 54px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

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

.products-logo img {
  display: block;
  width: 150px;
  height: auto;
}

.products-nav-links {
  margin: 0 0 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 27px;
  list-style: none;
}

.products-nav-links li {
  margin: 0;
  padding: 0;
}

.products-nav-links a {
  position: relative;
  display: inline-block;
  color: rgba(246, 244, 238, .82);
  font-family: var(--font-body);
  font-size: .90rem;
  font-weight: 700;
  text-decoration: none;
  transition: color .25s var(--ease);
}

.products-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 15px;
  border: 1px solid rgba(89, 201, 138, .42);
  border-radius: 3px;
  color: var(--paper);
  background: rgba(12, 23, 18, .28);
  font-family: var(--font-body);
  font-size: .90rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.products-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  padding: 8px;
  border: 1px solid rgba(89, 201, 138, .35);
  border-radius: 4px;
  background: rgba(12, 23, 18, .70);
  cursor: pointer;
}

.products-nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  transition: .25s ease;
}

/* ---------- COMMON INNER PAGE HERO ---------- */
.inner-page-hero {
  --hero-y: 0px;
  position: relative;
  min-height: 620px;
  height: 78vh;
  max-height: 900px;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
  color: var(--paper);
}

.inner-page-hero-image {
  position: absolute;
  inset: -6%;
  z-index: -2;
  width: 112%;
  height: 112%;
  object-fit: cover;
  transform: translate3d(0, var(--hero-y), 0) scale(1.04);
  transform-origin: center;
  filter: brightness(.62) contrast(1.08) saturate(.90);
  will-change: transform;
}

.inner-page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg,
      rgba(12, 23, 18, .94) 0%,
      rgba(12, 23, 18, .72) 38%,
      rgba(12, 23, 18, .30) 72%,
      rgba(12, 23, 18, .16) 100%),
    linear-gradient(180deg,
      rgba(12, 23, 18, .42) 0%,
      rgba(12, 23, 18, .08) 45%,
      rgba(0, 0, 0, .82) 100%);
}

.inner-page-hero-content {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  padding: 100px clamp(24px, 7vw, 120px) 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.inner-page-hero-eyebrow {
  margin: 0 0 14px;
  color: var(--green-light);
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.inner-page-hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--paper);
  font-family: var(--font-head);
  font-size: clamp(3.4rem, 7.5vw, 6.6rem);
  font-weight: 800;
  line-height: .91;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.inner-page-hero h1 span {
  color: var(--green-light);
}

.inner-page-hero-text {
  max-width: 510px;
  margin-top: 24px;
  color: rgba(246, 244, 238, .76);
  font-family: var(--font-body);
  font-size: .92rem;
  line-height: 1.7;
}

.inner-page-hero-content::after {
  content: "";
  display: block;
  width: 70px;
  height: 2px;
  margin-top: 28px;
  background: var(--green);
}

/* ---------- NAV + HERO RESPONSIVE ---------- */
@media (max-width:1050px) {
  .products-nav-inner {
    gap: 18px;
  }

  .products-nav-links {
    gap: 18px;
  }
}

@media (max-width:820px) {
  .products-nav-inner {
    width: calc(100% - 32px);
    min-height: 54px;
  }

  .products-nav-toggle {
    display: block;
  }

  .products-nav-links {
    position: absolute;
    top: 68px;
    left: 16px;
    right: 16px;
    margin: 0;
    padding: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(89, 201, 138, .25);
    border-radius: 5px;
    background: rgba(12, 23, 18, .98);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .35);
  }

  .products-nav-links.is-open {
    display: flex;
  }

  .products-nav-links li {
    width: 100%;
  }

  .products-nav-links a {
    display: block;
    width: 100%;
    padding: 12px 8px;
    font-size: .72rem;
  }

  .products-nav-cta {
    display: none;
  }

  .inner-page-hero {
    min-height: 580px;
    height: 74vh;
  }

  .inner-page-hero-content {
    width: calc(100% - 42px);
    padding: 90px 0 55px;
  }

  .inner-page-hero h1 {
    font-size: clamp(3.2rem, 14vw, 5.2rem);
  }

  .inner-page-hero-text {
    max-width: 470px;
    font-size: .86rem;
  }
}

@media (max-width:560px) {
  .products-nav {
    padding: 12px 0;
  }

  .products-logo img {
    width: 102px;
  }

  .inner-page-hero {
    min-height: 555px;
    height: 72vh;
  }

  .inner-page-hero-image {
    inset: -8%;
    width: 116%;
    height: 116%;
    transform: translate3d(0, var(--hero-y), 0) scale(1.08);
  }

  .inner-page-hero-overlay {
    background: linear-gradient(180deg,
        rgba(12, 23, 18, .60) 0%,
        rgba(12, 23, 18, .38) 35%,
        rgba(12, 23, 18, .82) 68%,
        rgba(0, 0, 0, .90) 100%);
  }

  .inner-page-hero-content {
    width: calc(100% - 26px);
    padding: 75px 0 50px;
  }

  .inner-page-hero h1 {
    font-size: clamp(2.8rem, 15vw, 4.4rem);
  }

  .inner-page-hero-text {
    font-size: .78rem;
  }
}

/* ---------- ACCESSIBILITY / PERFORMANCE ---------- */
@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }

  .inner-page-hero-image {
    transform: scale(1.04);
    transition: none;
  }

  .products-nav-links a,
  .products-nav-cta,
  .products-nav-toggle span {
    transition: none;
  }
}

/* ========================================================= END COMMON GEOSYNC ADD-ON ========================================================= */
/* ---------- FINAL OVERRIDES (navbar + sticky hero) ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0;
}

.site-header .products-nav {
  position: relative;
  top: auto;
  left: auto;
  z-index: auto;
}

@media (max-width: 820px) {
  .site-header .products-nav-links {
    top: 68px;
    z-index: 210;
  }
}

.hero-sticky-wrap+section,
.hero-sticky-wrap+div,
main>.hero-sticky-wrap+section {
  position: relative;
  z-index: 3;
}

.products-nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.products-nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.products-nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (prefers-reduced-motion: reduce) {
  .hero-sticky-wrap {
    height: auto;
  }

  .hero-sticky-wrap>.hero,
  .hero-sticky-wrap>.about-hero,
  .hero-sticky-wrap>.proj-hero,
  .hero-sticky-wrap>.impex-hero,
  .hero-sticky-wrap>.products-hero {
    position: relative;
    height: auto;
    min-height: 520px;
  }

  .hero-sticky-wrap .hero-video,
  .hero-sticky-wrap .about-hero-img,
  .hero-sticky-wrap .proj-hero-img,
  .hero-sticky-wrap .impex-hero-image,
  .hero-sticky-wrap .products-hero-image {
    transform: none;
  }
}

/* ---------- CLIPPED STICKY HERO REVEAL ---------- */
.hero-sticky-wrap {
  position: relative;
  height: 112vh;
  overflow: clip;
  background: #000;
  isolation: isolate;
}

.hero-sticky-wrap>.hero,
.hero-sticky-wrap>.about-hero,
.hero-sticky-wrap>.proj-hero,
.hero-sticky-wrap>.impex-hero,
.hero-sticky-wrap>.products-hero {
  position: sticky;
  top: 0;
  z-index: 1;
  height: 100vh;
  min-height: 620px;
  max-height: none;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}

.hero-sticky-wrap .hero-video,
.hero-sticky-wrap .about-hero-img,
.hero-sticky-wrap .proj-hero-img,
.hero-sticky-wrap .impex-hero-image,
.hero-sticky-wrap .products-hero-image,
.hero-sticky-wrap .contact-hero-image {
  position: absolute;
  inset: -6%;
  z-index: 0;
  width: 112%;
  height: 112%;
  max-width: none;
  transform: none;
  object-fit: cover;
  will-change: auto;
}

.hero-sticky-wrap .products-hero-image {
  background-size: cover;
  background-position: center;
}

.hero-fade,
.about-hero-overlay,
.proj-hero-overlay,
.impex-hero-overlay,
.products-hero-overlay,
.contact-hero-overlay {
  z-index: 1;
}

.hero-content,
.about-hero-inner,
.proj-hero-inner,
.impex-hero-content,
.products-hero-inner,
.contact-hero-inner {
  position: relative;
  z-index: 2;
}

.hero-sticky-wrap+section,
.hero-sticky-wrap+div,
main>.hero-sticky-wrap+section {
  position: relative;
  z-index: 4;
  margin-top: -12vh;
}

@media (max-width: 760px) {
  .hero-sticky-wrap {
    height: 108vh;
  }

  .hero-sticky-wrap>.hero,
  .hero-sticky-wrap>.about-hero,
  .hero-sticky-wrap>.proj-hero,
  .hero-sticky-wrap>.impex-hero,
  .hero-sticky-wrap>.products-hero,
  .hero-sticky-wrap>.contact-hero {
    min-height: 555px;
    height: 100svh;
  }

  .hero-sticky-wrap+section,
  .hero-sticky-wrap+div,
  main>.hero-sticky-wrap+section {
    margin-top: -8vh;
  }
}

@supports not (overflow: clip) {
  .hero-sticky-wrap {
    overflow: hidden;
  }
}

/* ---------- PROJECTS + PRODUCTS POLISH ---------- */
.proj-section-intro {
  width: min(100%, 980px);
  margin: 0 auto 54px;
  display: grid;
  grid-template-columns: minmax(80px, 1fr) minmax(0, 520px) minmax(80px, 1fr);
  align-items: center;
  gap: 28px;
  text-align: center;
}

.proj-intro-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 143, 91, .52), transparent);
}

.proj-intro-content {
  min-width: 0;
}

.proj-intro-content .eyebrow {
  justify-content: center;
  text-align: center;
}

.proj-intro-title {
  margin: 0 auto 14px;
  color: var(--ink-text);
  font-size: clamp(1.95rem, 3.6vw, 3.3rem);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.proj-intro-title span {
  color: var(--green);
}

.proj-intro-text {
  max-width: 56ch;
  margin: 0 auto;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.7;
  text-align: center;
}

.products-hero-image {
  background-image: url("../assets/img/products-hero.png");
}

.products-card-grid {
  gap: 28px;
}

.stones-grid {
  width: min(1080px, 100%);
}

.product-card-bottom {
  min-height: 82px;
  padding: 15px 15px 14px;
}

.product-card-bottom h4 {
  font-size: .82rem;
  line-height: 1.18;
}

.product-card-bottom p {
  font-size: .78rem;
  line-height: 1.55;
}

.product-card-arrow {
  width: 31px;
  height: 31px;
  flex-basis: 31px;
}

@media (max-width: 1100px) {
  .industrial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .proj-section-intro {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 38px;
  }

  .proj-intro-line {
    width: min(180px, 70%);
    margin: 0 auto;
  }

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

  .product-card-image {
    height: 190px;
  }
}

@media (max-width: 560px) {

  .industrial-grid,
  .stones-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================================= GEOSYNC — INDUSTRIAL MINERALS PREMIUM PRODUCT CARD SYSTEM ========================================================= */
.industrial-products-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

/* ========================================================= CARD ========================================================= */
.industrial-product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(21, 70, 47, .16);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(12, 23, 18, .07);
  transition: transform .35s var(--ease),
    box-shadow .35s var(--ease),
    border-color .35s var(--ease);
}

.industrial-product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(47, 143, 91, .48);
  box-shadow: 0 24px 55px rgba(12, 23, 18, .14);
}

/* ========================================================= IMAGE ========================================================= */
.industrial-product-media {
  position: relative;
  height: 270px;
  overflow: hidden;
  background: var(--ink-soft);
}

.industrial-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease),
    filter .7s var(--ease);
}

.industrial-product-card:hover .industrial-product-media img {
  transform: scale(1.055);
  filter: saturate(1.05) contrast(1.03);
}

/* IMAGE DARK GRADIENT */
.industrial-product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg,
      rgba(12, 23, 18, .08) 0%,
      rgba(12, 23, 18, .04) 42%,
      rgba(12, 23, 18, .68) 100%);
}

/* ========================================================= NUMBER ========================================================= */
.industrial-product-number {
  position: absolute;
  top: 17px;
  left: 17px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .30);
  border-radius: 50%;
  background: rgba(12, 23, 18, .72);
  color: #ffffff;
  font-family: var(--font-head);
  font-size: .66rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

/* ========================================================= TYPE BADGE ========================================================= */
.industrial-product-type {
  position: absolute;
  right: 17px;
  bottom: 17px;
  z-index: 2;
  padding: 7px 10px;
  border: 1px solid rgba(89, 201, 138, .38);
  border-radius: 3px;
  background: rgba(12, 23, 18, .72);
  color: var(--green-light);
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

/* ========================================================= CONTENT ========================================================= */
.industrial-product-content {
  min-height: 250px;
  padding: 24px 25px 23px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg,
      #ffffff 0%,
      #f8f7f2 100%);
}

/* ========================================================= HEADING ========================================================= */
.industrial-product-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 13px;
}

.industrial-product-kicker {
  display: block;
  margin-bottom: 6px;
  color: var(--green);
  font-size: .56rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.industrial-product-heading h4 {
  margin: 0;
  color: var(--ink-text);
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.05;
}

/* ========================================================= DESCRIPTION ========================================================= */
.industrial-product-content>p {
  display: block;
  max-height: none !important;
  margin: 0;
  overflow: visible !important;
  opacity: 1 !important;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.72;
}

/* ========================================================= META TAGS ========================================================= */
.industrial-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 17px;
}

.industrial-product-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 9px;
  border: 1px solid rgba(47, 143, 91, .18);
  border-radius: 3px;
  background: rgba(47, 143, 91, .055);
  color: var(--forest);
  font-size: .53rem;
  font-weight: 800;
  letter-spacing: .035em;
  text-transform: uppercase;
}

/* ========================================================= APPLICATIONS ========================================================= */
.industrial-product-applications {
  margin-top: auto;
  padding-top: 17px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  border-top: 1px solid rgba(16, 26, 21, .08);
}

.industrial-product-applications strong {
  width: 100%;
  margin-bottom: 2px;
  color: var(--ink-text);
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.industrial-product-applications span {
  color: var(--muted);
  font-size: .57rem;
  line-height: 1.3;
}

.industrial-product-applications span:not(:last-child)::after {
  content: "·";
  margin-left: 6px;
  color: var(--green);
}

/* ========================================================= ARROW ========================================================= */
.industrial-product-arrow {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(47, 143, 91, .30);
  border-radius: 50%;
  background: rgba(47, 143, 91, .045);
  color: var(--green);
  font-size: .75rem;
  transition: background .3s var(--ease),
    color .3s var(--ease),
    transform .3s var(--ease),
    border-color .3s var(--ease);
}

.industrial-product-arrow:hover {
  background: var(--green);
  border-color: var(--green);
  color: #ffffff;
  transform: translateX(3px);
}

/* ========================================================= CUSTOM / OTHER MINERALS ========================================================= */
.industrial-custom-media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 25%,
      rgba(89, 201, 138, .24),
      transparent 30%),
    radial-gradient(circle at 75% 70%,
      rgba(201, 161, 90, .10),
      transparent 35%),
    linear-gradient(135deg,
      #12251b,
      #07100b);
}

.industrial-custom-symbol {
  position: relative;
  z-index: 2;
  width: 92px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(89, 201, 138, .34);
  border-radius: 50%;
  background: rgba(255, 255, 255, .035);
  color: var(--green-light);
  font-size: 2rem;
  box-shadow: 0 0 50px rgba(89, 201, 138, .10);
}

/* ========================================================= DESKTOP — SLIGHTLY TALLER ========================================================= */
@media (min-width: 1100px) {
  .industrial-product-media {
    height: 500px;
  }

  .industrial-product-content {
    min-height: 270px;
    padding: 26px 27px 25px;
  }
}

/* ========================================================= TABLET ========================================================= */
@media (max-width: 900px) {
  .industrial-products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .industrial-product-media {
    height: 235px;
  }

  .industrial-product-content {
    min-height: 265px;
    padding: 21px 20px 20px;
  }
}

/* ========================================================= MOBILE ========================================================= */
@media (max-width: 680px) {
  .industrial-products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .industrial-product-media {
    height: 245px;
  }

  .industrial-product-content {
    min-height: auto;
    padding: 22px 20px 21px;
  }

  .industrial-product-heading h4 {
    font-size: 1.4rem;
  }

  .industrial-product-content>p {
    font-size: .9rem;
  }
}

/* ========================================================= SMALL MOBILE ========================================================= */
@media (max-width: 420px) {
  .industrial-product-media {
    height: 220px;
  }

  .industrial-product-number {
    top: 13px;
    left: 13px;
    width: 34px;
    height: 34px;
  }

  .industrial-product-type {
    right: 13px;
    bottom: 13px;
    font-size: .48rem;
  }

  .industrial-product-arrow {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }
}

/* ========================================================= CONTACT PAGE ========================================================= */
.contact-page {
  background: #000;
}

/* ---------- HERO ---------- */
.contact-hero {
  position: relative;
  min-height: 620px;
  height: 100vh;
  overflow: hidden;
  background: radial-gradient(circle at 78% 34%, rgba(89, 201, 138, .18), transparent 28%),
    linear-gradient(120deg, #08100c 0%, #101a15 46%, #050806 100%);
  color: var(--paper);
}

.contact-hero-image {
  background: linear-gradient(90deg, rgba(8, 16, 12, .90), rgba(8, 16, 12, .40), rgba(8, 16, 12, .70)),
    url("../assets/img/contact-hero.png") center / cover;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(180deg, rgba(0, 0, 0, .12) 0%, rgba(0, 0, 0, .20) 48%, rgba(0, 0, 0, .82) 100%),
    linear-gradient(90deg, rgba(12, 23, 18, .88) 0%, rgba(12, 23, 18, .45) 54%, rgba(12, 23, 18, .72) 100%); */

}

.contact-hero-inner {
  width: min(1240px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  padding: 118px 0 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.contact-eyebrow {
  margin: 0 0 13px;
  color: var(--green-light);
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.contact-hero h1 {
  max-width: 820px;
  color: #fff;
  font-size: clamp(3rem, 6vw, 5.9rem);
  font-weight: 800;
  line-height: .98;
  text-transform: uppercase;
}

.contact-hero h1 span {
  display: block;
  color: var(--green-light);
}

.contact-hero-copy>p:not(.contact-eyebrow) {
  max-width: 560px;
  margin-top: 24px;
  color: rgba(246, 244, 238, .78);
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.7;
}

/* ---------- CONTACT INFO STRIP ---------- */
.contact-info-strip {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .85fr .85fr 1fr 1.3fr;
  background: rgba(12, 23, 18, .98);
  border: 1px solid rgba(89, 201, 138, .18);
  border-top: 2px solid var(--green);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}

.contact-info-item {
  min-width: 0;
  min-height: 105px;
  padding: 24px 26px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  border-right: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  line-height: 1.45;
}

.contact-info-item:last-child {
  border-right: 0;
}

.contact-info-item small {
  display: block;
  margin-bottom: 5px;
  color: rgba(246, 244, 238, .62);
  font-size: .58rem;
  letter-spacing: .12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.contact-info-item>span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-info-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid rgba(89, 201, 138, .52);
  color: var(--green-light);
  font-size: 1.28rem;
}

/* INTERNATIONAL OFFICES */
.contact-international {
  align-items: start;
}

.contact-international-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-international-content>small {
  margin-bottom: 2px;
}

.international-office {
  display: block;
  color: rgba(246, 244, 238, .72);
  font-size: .68rem;
  font-weight: 500;
  line-height: 1.4;
}

.international-office strong {
  display: inline-block;
  min-width: 62px;
  margin-right: 4px;
  color: var(--green-light);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ---------- INQUIRY ---------- */
.contact-inquiry {
  position: relative;
  z-index: 4;
  padding: 86px clamp(24px, 7vw, 120px) 92px;
  background: #000;
  color: var(--paper);
}

.contact-inquiry-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 72px;
  align-items: start;
}

.contact-inquiry-copy h2 {
  max-width: 430px;
  color: #fff;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  font-weight: 800;
  line-height: 1.02;
  text-transform: uppercase;
}

.contact-inquiry-copy>p {
  max-width: 390px;
  margin-top: 78px;
  color: rgba(246, 244, 238, .72);
  font-size: .92rem;
  line-height: 1.8;
}

.contact-confidential {
  max-width: 280px;
  margin-top: 32px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  color: rgba(246, 244, 238, .78);
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.45;
}

.contact-confidential i {
  color: var(--green-light);
  font-size: 1.45rem;
}

/* ---------- FORM ---------- */
.contact-form {
  padding: 34px;
  border: 1px solid rgba(89, 201, 138, .20);
  background: rgba(255, 255, 255, .035);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .32);
}

.contact-form,
.contact-form label {
  display: grid;
  gap: 12px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  color: rgba(246, 244, 238, .72);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(89, 201, 138, .22);
  border-radius: 3px;
  background: rgba(3, 7, 5, .78);
  color: #fff;
  font: inherit;
  font-size: .9rem;
  line-height: 1.4;
  outline: 0;
}

.contact-form input,
.contact-form select {
  height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 132px;
  padding: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(89, 201, 138, .12);
}

.contact-submit {
  justify-self: start;
  min-height: 44px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--green);
  border-radius: 3px;
  background: var(--green);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}

.contact-submit:hover {
  background: var(--green-light);
  border-color: var(--green-light);
}

/* ---------- PRESENCE / MAP ---------- */
.contact-presence {
  padding: 58px 24px;
  background: linear-gradient(90deg, rgba(7, 12, 9, .92), rgba(7, 12, 9, .68)),
    url("../assets/img/naturals.jpeg") center / cover;
  color: #fff;
  text-align: center;
}

.contact-presence-inner {
  max-width: 820px;
  margin: 0 auto;
}

.contact-presence h2 {
  margin: 0 auto 22px;
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.08;
}

.contact-map-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(89, 201, 138, .55);
  color: var(--green-light);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ---------- CONTACT RESPONSIVE ---------- */
@media (max-width: 900px) {

  .contact-info-strip,
  .contact-inquiry-inner,
  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-info-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .contact-info-item:last-child {
    border-bottom: 0;
  }

  .contact-inquiry-copy>p {
    margin-top: 24px;
  }
}

@media (max-width: 560px) {
  .contact-hero-inner {
    width: calc(100% - 30px);
    padding: 96px 0 30px;
  }

  .contact-hero h1 {
    font-size: clamp(2.45rem, 13vw, 3.9rem);
  }

  .contact-info-item {
    min-height: 88px;
    padding: 18px;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
  }

  .contact-info-icon {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .contact-international {
    align-items: start;
  }

  .international-office {
    font-size: .66rem;
  }

  .international-office strong {
    min-width: 56px;
  }

  .contact-inquiry {
    padding: 66px 20px 72px;
  }

  .contact-form {
    padding: 22px;
  }
}

.team-photo {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #eee;
}

.team-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}

.team-card:hover .team-photo img {
  transform: scale(1.04);
}

/* ========================================================= GEOSYNC PRODUCTS — CATEGORY / STONE CARD FIX PRODUCT PAGE ONLY ========================================================= */
.products-page .product-category-heading {
  gap: 18px;
  margin-bottom: 28px;
}

.products-page .category-icon {
  width: 40px;
  height: 40px;
  flex-basis: 40px;
  font-size: .78rem;
}

.products-page .category-heading-text {
  min-width: 0;
  max-width: 760px;
}

.products-page .category-heading-text h3 {
  font-size: clamp(.88rem, 1.2vw, 1.05rem);
  line-height: 1.15;
  letter-spacing: .08em;
}

.products-page .category-heading-text p {
  max-width: 560px;
  margin: 7px auto 0;
  font-size: .78rem;
  line-height: 1.55;
}

.products-page .stones-category {
  margin-top: 72px;
  padding-top: 8px;
}

.products-page .stones-category .product-category-heading {
  margin-bottom: 32px;
}

.products-page .stones-grid {
  width: min(1120px, 100%);
  gap: 26px;
}

.products-page .stones-grid .product-card {
  min-width: 0;
}

.products-page .stones-grid .product-card-image {
  height: 245px;
  overflow: hidden;
  background: #e9e6dc;
}

.products-page .stones-grid .product-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform .55s var(--ease);
}

.products-page .stones-grid .product-card:hover .product-card-image img {
  transform: scale(1.045);
}

.products-page .stones-grid .product-card-bottom {
  min-height: 108px;
  padding: 18px 18px 17px;
}

.products-page .stones-grid .product-card-bottom h4 {
  font-size: .88rem;
  line-height: 1.2;
}

.products-page .stones-grid .product-card-bottom p {
  margin-top: 6px;
  font-size: .78rem;
  line-height: 1.55;
  max-height: none;
  opacity: 1;
}

.products-page .industrial-products-grid {
  gap: 30px;
}

.products-page .industrial-product-content {
  padding-top: 24px;
}

.products-page .industrial-product-heading h4 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.products-page .industrial-product-content>p {
  font-size: .84rem;
  line-height: 1.65;
}

@media (max-width: 760px) {
  .products-page .product-category-heading {
    gap: 12px;
    margin-bottom: 24px;
  }

  .products-page .category-icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .products-page .category-heading-text h3 {
    font-size: .82rem;
  }

  .products-page .category-heading-text p {
    font-size: .78rem;
    line-height: 1.5;
  }

  .products-page .stones-category {
    margin-top: 52px;
  }

  .products-page .stones-grid {
    gap: 20px;
  }

  .products-page .stones-grid .product-card-image {
    height: 230px;
  }
}

@media (max-width: 560px) {
  .products-page .category-heading-text h3 {
    font-size: .78rem;
  }

  .products-page .category-heading-text p {
    font-size: .78rem;
  }

  .products-page .stones-grid .product-card-image {
    height: 245px;
  }

  .products-page .stones-grid .product-card-bottom {
    min-height: 100px;
  }
}

/* ========================================================= GEOSYNC — STONE GALLERY PAGES (Marble / Granite / Sandstone / Quartzite) ========================================================= */
.gallery-breadcrumb {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(246, 244, 238, .55);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.gallery-breadcrumb a {
  color: rgba(246, 244, 238, .78);
  transition: color .25s var(--ease);
}

.gallery-breadcrumb a:hover {
  color: var(--green-light);
}

.gallery-breadcrumb i {
  font-size: .55rem;
  color: rgba(246, 244, 238, .4);
}

.gallery-breadcrumb span {
  color: var(--green-light);
}

/* ========================================================= FILTER BAR ========================================================= */
.gallery-filters {
  padding: 34px 0;
  background: var(--paper-dim);
  border-bottom: 1px solid var(--line);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.filter-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filter-item label {
  color: var(--muted);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.filter-item select {
  min-width: 170px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--ink-text);
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  outline: 0;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.filter-item select:focus,
.filter-item select:hover {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(47, 143, 91, .12);
}

.filter-count {
  margin-left: auto;
  color: var(--muted);
  font-size: .74rem;
  font-weight: 700;
}

.filter-count span {
  color: var(--forest);
  font-weight: 800;
}

@media (max-width: 640px) {
  .filter-bar {
    gap: 16px;
  }

  .filter-count {
    margin-left: 0;
    width: 100%;
  }

  .filter-item select {
    min-width: 140px;
  }
}

/* ========================================================= STONE GRID + CARDS ========================================================= */
.stone-gallery-grid {
  padding: 60px 0 90px;
  background: var(--paper);
}

.stone-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.stone-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: default;
  box-shadow: 0 10px 28px rgba(12, 23, 18, .10);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.stone-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 55px rgba(12, 23, 18, .20);
}

.stone-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

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

.stone-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg,
      rgba(12, 23, 18, 0) 42%,
      rgba(12, 23, 18, .55) 76%,
      rgba(12, 23, 18, .92) 100%);
}

.stone-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 11px;
  border: 1px solid rgba(89, 201, 138, .4);
  border-radius: 3px;
  background: rgba(12, 23, 18, .68);
  backdrop-filter: blur(6px);
  color: var(--green-light);
  font-size: .56rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.stone-color-dot {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .85);
  box-shadow: 0 3px 8px rgba(0, 0, 0, .3);
}

.stone-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 20px 18px;
}

.stone-card-body h3 {
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -.01em;
}

.stone-card-body span {
  display: block;
  margin-top: 4px;
  color: var(--green-light);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* Empty state */
.gallery-empty {
  display: none;
  grid-column: 1 / -1;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 70px 20px;
  color: var(--muted);
  text-align: center;
}

.gallery-empty i {
  font-size: 1.6rem;
  color: var(--green);
}

.gallery-empty p {
  max-width: 320px;
  font-size: .9rem;
  line-height: 1.6;
}

/* ========================================================= BACK LINK ========================================================= */
.gallery-back-wrap {
  padding: 0 0 70px;
  text-align: center;
  background: var(--paper);
}

.gallery-back-btn {
  color: var(--forest);
  border-color: var(--forest);
}

.gallery-back-btn:hover {
  background: var(--forest);
  color: #fff;
}

/* ========================================================= TABLET ========================================================= */
@media (max-width: 1050px) {
  .stone-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .stone-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .stone-gallery-grid {
    padding: 44px 0 70px;
  }

  .gallery-filters {
    padding: 26px 0;
  }
}

/* ========================================================= MOBILE ========================================================= */
@media (max-width: 480px) {
  .stone-grid {
    grid-template-columns: 1fr;
  }

  .stone-card-body h3 {
    font-size: .95rem;
  }
}

/* ========================================================= INTERNATIONAL OFFICES ========================================================= */
.contact-international {
  align-items: flex-start;
}

.contact-international-content {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.international-office {
  display: block;
  color: rgba(246, 244, 238, .78);
  font-size: .72rem;
  font-weight: 500;
  line-height: 1.4;
}

.international-office strong {
  display: inline-block;
  min-width: 58px;
  margin-right: 4px;
  color: var(--green-light);
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .contact-info-strip {
    grid-template-columns: 1fr 1fr;
  }

  .contact-info-item {
    border-right: 1px solid rgba(255, 255, 255, .10);
    border-bottom: 1px solid rgba(255, 255, 255, .10);
  }

  .contact-info-item:nth-child(2n) {
    border-right: 0;
  }

  .contact-info-item:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 900px) {
  .contact-info-strip {
    grid-template-columns: 1fr;
  }

  .contact-info-item,
  .contact-info-item:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
  }

  .contact-info-item:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .contact-info-section {
    padding: 0 13px;
  }

  .contact-info-item {
    min-height: 88px;
    padding: 18px;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 13px;
    font-size: .76rem;
  }

  .contact-info-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .contact-info-item small {
    font-size: .52rem;
  }

  .international-office {
    font-size: .7rem;
  }

  .international-office strong {
    min-width: 55px;
  }
}

/* ---------- MOBILE SPLIT ORDER FIX ---------- */

@media (max-width: 760px) {
  .split {
    display: grid;
    grid-template-columns: 1fr;
  }

  .split > .split-text {
    order: 1 !important;
  }

  .split > .split-media {
    order: 2 !important;
    min-height: 270px;
  }

  .split + .split {
    margin-top: 12px;
  }
}

/* =========================================================
   ABOUT TEAM — SECTION HEADING / LAYOUT FIX
   Scoped to About page team section so other pages remain untouched.
========================================================= */
.about-team .team-section-head {
  width: min(100%, 760px);
  margin: 0 auto 42px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-team .team-section-head .eyebrow {
  display: block;
  margin: 0 0 14px;
  line-height: 1.2;
}

.about-team .team-section-head h2 {
  display: block;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  color: var(--ink-text);
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.025em;
  text-transform: none;
}

.about-team .team-section-head > p:last-child {
  display: block;
  width: 100%;
  max-width: 650px;
  margin: 15px auto 0;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 400;
  line-height: 1.7;
}

.about-team .team-leadership {
  width: min(100%, 760px);
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.about-team .team-section-head--experts {
  margin-top: 105px;
}

.about-team .team-section-head--team {
  margin-top: 115px;
}

.about-team .team-grid {
  width: min(100%, 1120px);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
}

.about-team .team-grid--experts,
.about-team .team-grid--members {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Keep the About team photos consistent even with the later shared photo rule. */
.about-team .team-photo {
  aspect-ratio: 1 / 1.08;
  width: 100%;
  height: auto;
  min-height: 0;
}

@media (max-width: 980px) {
  .about-team .team-leadership {
    width: min(100%, 640px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-team .team-grid,
  .about-team .team-grid--experts,
  .about-team .team-grid--members {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-team .team-section-head--experts {
    margin-top: 85px;
  }

  .about-team .team-section-head--team {
    margin-top: 95px;
  }
}

@media (max-width: 640px) {
  .about-team {
    padding: 65px 0 80px;
  }

  .about-team .team-section-head {
    width: min(100% - 32px, 760px);
    margin-bottom: 30px;
  }

  .about-team .team-section-head h2 {
    font-size: clamp(1.9rem, 9vw, 2.35rem);
    line-height: 1.08;
  }

  .about-team .team-section-head > p:last-child {
    max-width: 100%;
    font-size: .86rem;
    line-height: 1.65;
  }

  .about-team .team-leadership,
  .about-team .team-grid,
  .about-team .team-grid--experts,
  .about-team .team-grid--members {
    width: min(100% - 32px, 560px);
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-team .team-section-head--experts {
    margin-top: 70px;
  }

  .about-team .team-section-head--team {
    margin-top: 78px;
  }
}
