/* ==========================================================================
   Jurosh Global Contracting Co. — Stylesheet
   ========================================================================== */


/* ==========================================================================
   ROOT / GLOBAL
   ========================================================================== */

:root {
  --navy-950: #081426;
  --navy-900: #0C2238;

  --ink: #182430;
  --ink-soft: #4C5A67;

  --line: #DCE1E6;
  --line-dark: rgba(255,255,255,0.14);

  --gold-700: #A67C00;
  --gold-600: #D4A017;
  --gold-500: #E8C547;

  --paper: #FFFFFF;
  --grey-50: #F5F6F8;
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


html {
  scroll-behavior: smooth;
}


body {
  background: var(--paper);
  color: var(--ink);

  font-family: 'Public Sans', sans-serif;
  font-size: 16px;

  -webkit-font-smoothing: antialiased;
}


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


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


.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}


h1,
h2,
h3,
h4 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.12;
  font-weight: 600;
}


.kicker {
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  color: var(--gold-600);
  font-weight: 600;

  display: flex;
  align-items: center;
  gap: 10px;
}


.kicker::before {
  content: "";
  width: 26px;
  height: 2px;

  background: var(--gold-600);
}


.kicker.center {
  justify-content: center;
}


.ar {
  font-family: 'Noto Kufi Arabic', sans-serif;
  direction: rtl;
}


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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  font-family: 'Public Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;

  padding: 13px 24px;

  border: 1.5px solid var(--gold-600);

  color: var(--gold-700);

  transition:
    background .15s,
    color .15s,
    border-color .15s;
}


.btn:hover {
  background: var(--gold-600);
  color: var(--navy-950);
  border-color: var(--gold-600);
}


.btn.solid {
  background: var(--gold-600);
  border-color: var(--gold-600);
  color: var(--navy-950);
}


.btn.solid:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-950);
}


.btn.ghost-lt {
  border-color: var(--gold-500);
  color: var(--gold-500);
}


.btn.ghost-lt:hover {
  background: var(--gold-500);
  color: var(--navy-950);
  border-color: var(--gold-500);
}


.btn.sm {
  padding: 10px 18px;
  font-size: 12.5px;
}


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

header {
  position: sticky;
  top: 0;
  z-index: 100;

  background: var(--navy-950);

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


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

  padding: 20px 32px;

  max-width: 1180px;
  margin: 0 auto;
}


.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}


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

  object-fit: contain;
}


.brand-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;

  font-size: 19px;
  letter-spacing: 0.01em;

  color: #fff;

  text-transform: uppercase;
  line-height: 1.25;
}


.brand-text small {
  display: block;

  font-family: 'Public Sans', sans-serif;
  font-weight: 500;

  font-size: 12px;
  letter-spacing: 0.1em;

  color: #AEB9C3;

  text-transform: uppercase;

  margin-top: 3px;
}


.navlinks {
  display: flex;
  gap: 28px;
  align-items: center;
}


.navlinks > a {
  font-size: 14.5px;
  font-weight: 600;
  color: #FFFFFF;
}


.navlinks > a:hover {
  color: var(--gold-500);
}


.has-drop {
  position: relative;
}


.dropdown {
  position: absolute;

  top: 32px;
  left: 0;

  background: var(--navy-950);

  border: 1px solid var(--gold-700);

  min-width: 210px;

  padding: 8px 0;

  opacity: 0;
  visibility: hidden;

  transform: translateY(-4px);

  transition:
    opacity .15s,
    transform .15s,
    visibility .15s;

  box-shadow: 0 16px 32px rgba(0,0,0,0.4);

  z-index: 200;
}


.dropdown.open {
  opacity: 1;
  visibility: visible;

  transform: translateY(0);
}


.dropdown a {
  display: block;

  padding: 11px 20px;

  font-size: 13.5px;
  font-weight: 600;

  color: #FFFFFF;
}


.dropdown a:hover {
  color: var(--navy-950);
  background: var(--gold-500);
}


.has-drop > a[aria-expanded="true"] {
  color: var(--gold-500);
}


.navtoggle {
  display: none;

  flex-direction: column;
  gap: 5px;

  background: none;
  border: none;

  cursor: pointer;
}


.navtoggle span {
  width: 24px;
  height: 2px;

  background: #fff;
}


/* ==========================================================================
   FLOATING CONTACT RAIL
   ========================================================================== */

.rail {
  position: fixed;

  right: 18px;
  bottom: 22px;

  z-index: 90;

  display: flex;
  flex-direction: column;

  gap: 10px;
}


.rail a {
  width: 46px;
  height: 46px;

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

  background: var(--navy-950);

  color: #fff;

  font-size: 18px;
}


.rail a.wa {
  background: #1F8A4C;
}


.rail a svg {
  width: 20px;
  height: 20px;

  stroke: currentColor;
  fill: none;

  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* ==========================================================================
   PAGE LOADER
   ========================================================================== */

.page-loader {
  position: fixed;
  inset: 0;

  z-index: 999;

  background: var(--navy-950);

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

  opacity: 0;
  visibility: hidden;

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


.page-loader.active {
  opacity: 1;
  visibility: visible;
}


.loader-ring {
  width: 104px;
  height: 104px;

  position: relative;

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


.loader-ring::before {
  content: "";

  position: absolute;
  inset: 0;

  border: 3px solid rgba(255,255,255,0.12);

  border-top-color: var(--gold-500);

  border-radius: 50%;

  animation: loader-spin 0.85s linear infinite;
}


.loader-logo {
  width: 54px;
  height: 54px;

  object-fit: contain;

  animation:
    loader-pulse 1.6s ease-in-out infinite;
}


.loader-caption {
  position: absolute;

  bottom: 38%;
  left: 50%;

  transform: translateX(-50%);

  font-family: 'IBM Plex Mono', monospace;

  font-size: 11px;
  letter-spacing: 0.16em;

  text-transform: uppercase;

  color: #9AA7B2;

  white-space: nowrap;
}


@keyframes loader-spin {
  to {
    transform: rotate(360deg);
  }
}


@keyframes loader-pulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.95);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}


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

.hero {
  position: relative;

  height: 100vh;
  min-height: 640px;

  overflow: hidden;

  color: #fff;

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

  text-align: center;
}


.slideshow {
  position: absolute;
  inset: 0;
}


.slide {
  position: absolute;
  inset: 0;

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

  opacity: 0;

  animation:
    slideshow 40s infinite,
    kenburns 40s infinite;
}


/* Slide 1 is a branded composite graphic. Uses the same full-bleed
   "cover" treatment as every other slide, but the crop position is
   shifted from dead-center (which centers on the crane/tower) to
   where the two "JUROSH GLOBAL CONTRACTING CO." signs actually sit
   — on the building at upper-left and on the crane lower-middle —
   so both stay in frame across common screen sizes. */

.slide:nth-child(1) {
  background-image:
    url('../images/hero-jurosh-render.jpg');

  background-position: 34% 58%;

  animation-delay: 0s, 0s;
}


.slide:nth-child(2) {
  background-image:
    url('../images/tamimi-storefront-wide.jpg');

  animation-delay: 4s, 4s;
}


.slide:nth-child(3) {
  background-image:
    url('../images/slide-2-spimaco-hq.jpg');

  animation-delay: 8s, 8s;
}


.slide:nth-child(4) {
  background-image:
    url('../images/slide-3-west-avenue-mall.jpg');

  animation-delay: 12s, 12s;
}


.slide:nth-child(5) {
  background-image:
    url('../images/slide-4-qiddiya.jpg');

  animation-delay: 16s, 16s;
}


.slide:nth-child(6) {
  background-image:
    url('../images/slide-5-steel-warehouse.jpg');

  animation-delay: 20s, 20s;
}


.slide:nth-child(7) {
  background-image:
    url('../images/tamimi-freshfoods.jpg');

  animation-delay: 24s, 24s;
}


.slide:nth-child(8) {
  background-image:
    url('../images/tamimi-night-pour.jpg');

  animation-delay: 28s, 28s;
}


.slide:nth-child(9) {
  background-image:
    url('../images/tamimi-formwork-wide.jpg');

  animation-delay: 32s, 32s;
}


.slide:nth-child(10) {
  background-image:
    url('../images/tamimi-reinforced-slab.jpg');

  animation-delay: 36s, 36s;
}


@keyframes slideshow {

  0% {
    opacity: 0;
  }

  3% {
    opacity: 1;
  }

  14% {
    opacity: 1;
  }

  18% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}


@keyframes kenburns {

  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.09);
  }
}


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

  background:
    linear-gradient(
      180deg,
      rgba(8,20,38,0.72) 0%,
      rgba(8,20,38,0.55) 45%,
      rgba(8,20,38,0.88) 100%
    );
}


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

  max-width: 820px;

  padding: 0 32px;
}


.hero-inner .kicker {
  margin: 0 auto 22px;
}


.hero h1 {
  font-size: clamp(30px,5.4vw,58px);
  line-height: 1.15;
}


.hero h1 em {
  font-style: normal;

  color: var(--gold-500);
}


.hero p {
  margin: 22px auto 0;

  max-width: 540px;

  font-size: 15.5px;

  color: #C6CFD7;

  line-height: 1.7;
}


.hero-ctas {
  display: flex;

  gap: 14px;

  justify-content: center;

  margin-top: 36px;

  flex-wrap: wrap;
}


.hero-scroll {
  position: absolute;

  bottom: 28px;
  left: 50%;

  transform: translateX(-50%);

  z-index: 2;

  font-family: 'IBM Plex Mono', monospace;

  font-size: 11px;
  letter-spacing: 0.12em;

  color: #9AA7B2;

  text-transform: uppercase;
}


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

section {
  padding: 96px 0;
}


.section-head {
  margin-bottom: 48px;

  max-width: 680px;
}


.section-head.center {
  margin-left: auto;
  margin-right: auto;

  text-align: center;
}


.section-head h2 {
  font-size: clamp(26px,3vw,36px);

  color: var(--navy-950);

  margin-top: 14px;
}


.section-head p {
  margin-top: 16px;

  font-size: 15px;

  color: var(--ink-soft);

  line-height: 1.7;
}


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

.about {
  background: var(--grey-50);

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

  position: relative;

  overflow: hidden;
}


.about-watermark {
  position: absolute;

  top: 50%;
  left: 50%;

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

  width: 640px;
  height: 640px;

  object-fit: contain;

  opacity: 0.05;

  pointer-events: none;

  z-index: 0;

  filter: grayscale(1);
}


.about-grid {
  position: relative;

  z-index: 1;

  max-width: 720px;

  margin: 0 auto;

  text-align: center;
}


.about-copy p {
  font-size: 15px;

  line-height: 1.8;

  color: var(--ink-soft);

  margin-bottom: 16px;

  text-align: left;
}


/* ==========================================================================
   SECTORS
   ========================================================================== */

.sectors {
  background: var(--grey-50);

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


.sector-grid {
  display: grid;

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

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

  border-left:
    1px solid var(--line);

  background: #fff;
}


.sector-card {
  border-right:
    1px solid var(--line);

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

  padding: 34px 28px;

  scroll-margin-top: 100px;

  position: relative;

  overflow: hidden;
}


.sector-card h3 {
  font-size: 16.5px;

  color: var(--navy-950);

  margin-bottom: 10px;

  text-transform: none;

  letter-spacing: 0;
}


.sector-card p {
  font-size: 13.5px;

  color: var(--ink-soft);

  line-height: 1.6;
}


.sector-card .mk {
  font-size: 11px;

  font-weight: 700;

  letter-spacing: 0.08em;

  color: var(--gold-600);

  text-transform: uppercase;

  margin-bottom: 12px;

  display: block;
}


.sector-icon {
  width: 40px;
  height: 40px;

  margin-bottom: 16px;

  color: var(--gold-600);

  display: block;
}


.sector-icon svg {
  width: 100%;
  height: 100%;

  stroke: currentColor;

  fill: none;

  stroke-width: 1.6;

  stroke-linecap: round;
  stroke-linejoin: round;
}


/* ==========================================================================
   LEADERSHIP MESSAGE
   ========================================================================== */

.message {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}


.msg-inner {
  max-width: 760px;

  margin: 0 auto;

  text-align: center;
}


.msg-mark {
  width: 52px;
  height: 40px;

  color: var(--gold-500);

  opacity: 0.9;

  margin: 0 auto 20px;
}


.msg-mark svg {
  width: 100%;
  height: 100%;

  fill: currentColor;
}


.msg-quote {
  font-family: 'Oswald', sans-serif;

  font-weight: 500;

  text-transform: none;

  font-size: clamp(19px,2.4vw,26px);

  line-height: 1.55;

  color: var(--navy-950);

  letter-spacing: 0;
}


.msg-rule {
  width: 50px;
  height: 3px;

  background: var(--gold-600);

  margin: 26px auto;
}


.msg-attrib b {
  display: block;

  font-size: 14.5px;

  color: var(--navy-950);
}


.msg-attrib span {
  font-size: 12.5px;

  color: var(--ink-soft);
}


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

.rp-grid {
  display: grid;

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

  gap: 26px;
}


.rp-card {
  position: relative;

  display: block;

  height: 340px;

  overflow: hidden;

  background: var(--navy-950);

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


.rp-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform .5s ease;

  opacity: 0.88;
}


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

  box-shadow:
    0 24px 48px rgba(8,20,38,0.28);
}


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


.rp-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(8,20,38,0.05) 30%,
      rgba(8,20,38,0.92) 100%
    );

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  padding: 22px;
}


.rp-overlay .tag {
  font-size: 10.5px;

  letter-spacing: 0.08em;

  text-transform: uppercase;

  color: var(--gold-500);

  font-weight: 700;

  margin-bottom: 8px;
}


.rp-overlay h4 {
  color: #fff;

  font-size: 16px;

  text-transform: none;

  letter-spacing: 0;

  line-height: 1.3;
}


.rp-more {
  margin-top: 40px;

  text-align: center;
}


/* ==========================================================================
   PARTNERS & CLIENTS CAROUSEL
   ========================================================================== */

.partners {
  background: #ffffff;
  text-align: center;
  overflow: hidden;
}


/* Main carousel */

.partner-carousel {
  position: relative;

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

  margin: 0 auto;

  display: flex;
  align-items: center;

  gap: 18px;
}


/* Window that hides logos outside carousel */

.partner-viewport {
  width: 100%;
  overflow: hidden;

  padding: 12px 2px 20px;
}


/* Sliding row */

.partner-track {
  display: flex;

  transition:
    transform 0.65s
    cubic-bezier(.22,.61,.36,1);

  will-change: transform;
}


/* Individual card */

.partner-card {
  flex: 0 0 20%;

  padding: 8px;
}


/* Shared visual frame for either an <img> or a text wordmark */

.partner-card img,
.partner-card .wordmark {
  width: 100%;
  height: 120px;

  background: #ffffff;

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

  padding: 22px;

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


.partner-card img {
  object-fit: contain;
}


/* Text wordmark variant — used until real partner logo files are supplied */

.partner-card .wordmark {
  display: flex;
  align-items: center;
  justify-content: center;

  font-family: 'Oswald', sans-serif;
  font-weight: 600;

  font-size: 14px;
  letter-spacing: 0.02em;

  text-transform: uppercase;

  color: var(--ink-soft);

  text-align: center;
}


/* Hover effect */

.partner-card:hover img,
.partner-card:hover .wordmark {
  transform: translateY(-5px);

  border-color: rgba(212,160,23,.45);

  box-shadow:
    0 16px 35px
    rgba(8,20,38,.10);
}


.partner-card:hover .wordmark {
  color: var(--gold-700);
}


/* ==========================================================================
   ARROWS
   ========================================================================== */

.partner-arrow {
  flex: none;

  width: 46px;
  height: 46px;

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

  background: #ffffff;

  color: var(--navy-950);

  font-size: 21px;

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

  cursor: pointer;

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

  z-index: 5;
}


.partner-arrow:hover {
  background: var(--gold-600);

  border-color: var(--gold-600);

  color: var(--navy-950);

  transform: scale(1.05);
}


/* ==========================================================================
   DOT NAVIGATION
   ========================================================================== */

.partner-dots {
  margin-top: 28px;

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

  gap: 8px;
}


.partner-dot {
  width: 7px;
  height: 7px;

  padding: 0;

  border: none;

  border-radius: 50%;

  background: #C9CED4;

  cursor: pointer;

  transition:
    width .25s ease,
    background .25s ease,
    border-radius .25s ease;
}


.partner-dot.active {
  width: 26px;

  border-radius: 10px;

  background: var(--gold-600);
}


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

@media (max-width: 900px) {

  .partner-card {
    flex-basis: 33.333333%;
  }


  .partner-card img,
  .partner-card .wordmark {
    height: 110px;

    padding: 18px;
  }


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

    font-size: 18px;
  }

}


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

@media (max-width: 600px) {

  .partner-carousel {
    gap: 7px;
  }


  .partner-card {
    flex-basis: 50%;
  }


  .partner-card img,
  .partner-card .wordmark {
    height: 100px;

    padding: 15px;
  }


  .partner-arrow {
    width: 36px;
    height: 36px;

    font-size: 16px;
  }


  .partner-dots {
    margin-top: 20px;
  }

}


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

@media (max-width: 380px) {

  .partner-card {
    flex-basis: 100%;
  }

}


/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */

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

  .partner-track {
    transition: none;
  }

}


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

.cta {
  background: var(--navy-950);

  color: #fff;
}


.cta-grid {
  display: flex;

  justify-content: space-between;

  align-items: flex-end;

  gap: 40px;

  flex-wrap: wrap;
}


.cta h2 {
  color: #fff;

  font-size:
    clamp(26px,3.6vw,42px);

  max-width: 560px;
}


.cta-ctas {
  display: flex;

  gap: 14px;

  flex-wrap: wrap;
}


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

footer {
  background: var(--navy-950);

  color: #8A97A3;

  padding: 56px 0 26px;

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


.foot-grid {
  display: grid;

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

  gap: 44px;

  padding-bottom: 40px;

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


.foot-brand {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 16px;
}


.foot-brand img {
  width: 32px;
  height: 32px;

  object-fit: contain;
}


.foot-brand span {
  color: #fff;

  font-family:
    'Oswald', sans-serif;

  font-weight: 600;

  font-size: 13.5px;

  text-transform: uppercase;
}


footer p.desc {
  font-size: 13px;

  line-height: 1.7;

  max-width: 270px;
}


footer h5 {
  font-weight: 700;

  font-size: 11.5px;

  letter-spacing: 0.08em;

  text-transform: uppercase;

  color: #fff;

  margin-bottom: 16px;
}


footer ul {
  list-style: none;
}


footer li {
  margin-bottom: 11px;

  font-size: 13px;
}


footer a:hover {
  color: var(--gold-500);
}


.foot-bottom {
  display: flex;

  justify-content: space-between;

  padding-top: 22px;

  font-size: 12px;

  flex-wrap: wrap;

  gap: 10px;
}


/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-hero {
  position: relative;

  height: 38vh;

  min-height: 260px;

  color: #fff;

  display: flex;

  align-items: flex-end;

  background: var(--navy-950);
}


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

  position: absolute;

  inset: 0;

  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(212,160,23,0.14),
      transparent 55%
    );
}


.contact-hero-inner {
  position: relative;

  z-index: 2;

  padding:
    0 32px 40px;

  max-width: 1180px;

  margin: 0 auto;

  width: 100%;
}


.contact-hero-inner h1 {
  font-size:
    clamp(28px,4.2vw,46px);
}


.contact-wrap {
  display: grid;

  grid-template-columns:
    0.9fr 1.1fr;

  gap: 48px;

  padding: 80px 0;
}


.contact-card {
  background: var(--grey-50);

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

  padding: 34px;
}


.contact-card + .contact-card {
  margin-top: 22px;
}


.contact-card h3 {
  font-size: 12px;

  letter-spacing: 0.1em;

  color: var(--gold-700);

  margin-bottom: 16px;

  text-transform: uppercase;
}


.contact-row {
  display: flex;

  gap: 16px;

  align-items: flex-start;

  padding: 14px 0;

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


.contact-row:first-of-type {
  border-top: none;

  padding-top: 0;
}


.contact-row .ic {
  width: 38px;
  height: 38px;

  flex: none;

  display: flex;

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

  background: #fff;

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

  font-size: 16px;

  color: var(--gold-700);
}


.contact-row .ic svg {
  width: 18px;
  height: 18px;

  stroke: currentColor;

  fill: none;

  stroke-width: 1.7;

  stroke-linecap: round;
  stroke-linejoin: round;
}


.contact-row .txt .lbl {
  font-size: 10.5px;

  letter-spacing: 0.08em;

  text-transform: uppercase;

  color: var(--ink-soft);

  margin-bottom: 4px;
}


.contact-row .txt .val {
  font-size: 15px;

  font-weight: 600;

  color: var(--navy-950);

  line-height: 1.5;
}


.contact-row .txt .val a:hover {
  color: var(--gold-700);
}


.map-wrap {
  border:
    1px solid var(--line);

  overflow: hidden;

  height: 420px;
}


.map-wrap iframe {
  width: 100%;
  height: 100%;

  border: 0;

  display: block;

  filter:
    grayscale(0.15)
    contrast(1.02);
}


.contact-form {
  background: #fff;

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

  padding: 36px;
}


.contact-form h3 {
  font-size: 19px;

  color: var(--navy-950);

  margin-bottom: 6px;

  text-transform: none;

  letter-spacing: 0;
}


.contact-form .sub {
  font-size: 13.5px;

  color: var(--ink-soft);

  margin-bottom: 26px;
}


.f-row {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 16px;

  margin-bottom: 16px;
}


.f-field {
  display: flex;

  flex-direction: column;

  gap: 6px;
}


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


.f-field label {
  font-size: 11.5px;

  font-weight: 600;

  letter-spacing: 0.04em;

  text-transform: uppercase;

  color: var(--ink-soft);
}


.f-field input,
.f-field textarea {
  border:
    1.5px solid var(--line);

  padding: 12px 14px;

  font-family:
    'Public Sans', sans-serif;

  font-size: 14.5px;

  color: var(--ink);

  background: var(--grey-50);

  resize: vertical;
}


.f-field input:focus,
.f-field textarea:focus {
  outline: none;

  border-color:
    var(--gold-600);

  background: #fff;
}


.f-note {
  font-size: 12px;

  color: var(--ink-soft);

  margin-top: 14px;
}


/* ==========================================================================
   PROJECT GALLERY
   ========================================================================== */

.proj-gallery {
  display: grid;

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

  gap: 16px;

  margin-top: 18px;
}


.proj-gallery figure {
  margin: 0;
}


.proj-gallery img {
  width: 100%;

  height: 220px;

  object-fit: cover;

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

  cursor: zoom-in;

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


.proj-gallery img:hover {
  opacity: 0.9;

  transform: scale(1.01);
}


.proj-gallery figcaption {
  font-size: 12px;

  color: var(--ink-soft);

  line-height: 1.45;

  margin-top: 9px;
}


/* ==========================================================================
   LIGHTBOX
   ========================================================================== */

.lightbox {
  position: fixed;

  inset: 0;

  z-index: 998;

  background:
    rgba(8,20,38,0.95);

  display: flex;

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

  opacity: 0;

  visibility: hidden;

  transition:
    opacity .25s,
    visibility .25s;
}


.lightbox.active {
  opacity: 1;

  visibility: visible;
}


.lightbox-inner {
  max-width:
    min(1000px,88vw);

  width: 100%;

  padding: 0 76px;

  box-sizing: border-box;
}


.lightbox-frame {
  position: relative;

  background: #000;

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


.lightbox-frame img {
  width: 100%;

  max-height: 70vh;

  object-fit: contain;

  display: block;

  margin: 0 auto;
}


.lightbox-caption {
  color: #fff;

  text-align: center;

  font-size: 14.5px;

  line-height: 1.6;

  margin-top: 18px;

  max-width: 680px;

  margin-left: auto;
  margin-right: auto;
}


.lightbox-count {
  color: var(--gold-500);

  font-family:
    'IBM Plex Mono', monospace;

  font-size: 11.5px;

  text-align: center;

  margin-top: 10px;

  letter-spacing: 0.1em;
}


.lightbox-close {
  position: absolute;

  top: 22px;
  right: 26px;

  z-index: 2;

  color: #fff;

  font-size: 30px;

  line-height: 1;

  background: none;

  border: none;

  cursor: pointer;

  opacity: 0.8;
}


.lightbox-close:hover {
  opacity: 1;
}


.lightbox-prev,
.lightbox-next {
  position: absolute;

  top: 50%;

  transform:
    translateY(-50%);

  z-index: 2;

  background:
    rgba(255,255,255,0.08);

  border:
    1px solid rgba(255,255,255,0.3);

  color: #fff;

  width: 48px;
  height: 48px;

  border-radius: 50%;

  font-size: 22px;

  cursor: pointer;

  display: flex;

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

  transition:
    background .15s,
    border-color .15s,
    color .15s;
}


.lightbox-prev:hover,
.lightbox-next:hover {
  background:
    var(--gold-600);

  border-color:
    var(--gold-600);

  color:
    var(--navy-950);
}


.lightbox-prev {
  left: 0;
}


.lightbox-next {
  right: 0;
}


/* ==========================================================================
   PROJECT DETAIL PAGE
   ========================================================================== */

.proj-hero {
  position: relative;

  height: 52vh;

  min-height: 360px;

  color: #fff;

  display: flex;

  align-items: flex-end;
}


.proj-hero img {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
}


.proj-hero .scrim {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(8,20,38,0.35) 0%,
      rgba(8,20,38,0.92) 100%
    );
}


.proj-hero-inner {
  position: relative;

  z-index: 2;

  padding:
    0 32px 44px;

  max-width: 1180px;

  margin: 0 auto;

  width: 100%;
}


.proj-back {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  font-size: 13.5px;

  font-weight: 600;

  color: var(--gold-500);

  margin-bottom: 18px;
}


.proj-hero-inner h1 {
  font-size:
    clamp(26px,4vw,44px);

  max-width: 820px;
}


.proj-tag {
  display: inline-block;

  font-size: 11.5px;

  font-weight: 700;

  letter-spacing: 0.08em;

  text-transform: uppercase;

  color: var(--navy-950);

  background: var(--gold-500);

  padding: 7px 13px;

  margin-bottom: 16px;
}


.proj-info {
  position: relative;

  background: var(--grey-50);

  overflow: hidden;
}


.proj-watermark {
  position: absolute;

  top: 50%;
  right: -6%;

  transform:
    translateY(-50%);

  width: 560px;
  height: 560px;

  object-fit: contain;

  opacity: 0.10;

  pointer-events: none;

  z-index: 0;
}


.proj-body {
  position: relative;

  z-index: 1;

  display: grid;

  grid-template-columns:
    1.5fr 1fr;

  gap: 48px;

  padding: 80px 0;
}


.proj-copy {
  background: #fff;

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

  padding: 40px 44px;
}


.proj-copy h2 {
  font-size: 21px;

  color: var(--navy-950);

  margin-bottom: 20px;

  letter-spacing: 0.01em;
}


.proj-copy p {
  font-size: 16px;

  line-height: 1.85;

  color: var(--ink);

  margin-bottom: 20px;
}


.proj-copy p:last-child {
  margin-bottom: 0;
}


.proj-copy ul {
  list-style: none;

  margin-bottom: 6px;
}


.proj-copy li {
  position: relative;

  padding-left: 24px;

  margin-bottom: 15px;

  font-size: 15.5px;

  line-height: 1.75;

  color: var(--ink);
}


.proj-copy li::before {
  content: "";

  position: absolute;

  left: 0;
  top: 9px;

  width: 9px;
  height: 2px;

  background: var(--gold-600);
}


.proj-facts {
  background: #fff;

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

  padding: 32px;

  align-self: start;
}


.proj-facts .row {
  padding: 16px 0;

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


.proj-facts .row:first-child {
  border-top: none;

  padding-top: 0;
}


.proj-facts .row span {
  display: block;
}


.proj-facts .row .lbl {
  font-size: 11px;

  letter-spacing: 0.08em;

  text-transform: uppercase;

  color: var(--ink-soft);

  margin-bottom: 6px;

  font-weight: 600;
}


.proj-facts .row .val {
  font-size: 15.5px;

  line-height: 1.5;

  font-weight: 600;

  color: var(--navy-950);
}


.proj-nav {
  border-top:
    1px solid var(--line);

  padding: 30px 0;

  display: flex;

  justify-content: space-between;

  align-items: center;

  flex-wrap: wrap;

  gap: 16px;
}


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

.reveal {
  opacity: 0;

  transform:
    translateY(28px);

  transition:
    opacity .7s cubic-bezier(.2,.7,.2,1),
    transform .7s cubic-bezier(.2,.7,.2,1);
}


.reveal.in-view {
  opacity: 1;

  transform:
    translateY(0);
}


.reveal-stagger.in-view
.reveal-item {
  opacity: 1;

  transform:
    translateY(0);
}


.reveal-item {
  opacity: 0;

  transform:
    translateY(24px);

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


.reveal-stagger.in-view
.reveal-item:nth-child(1) {
  transition-delay: .02s;
}


.reveal-stagger.in-view
.reveal-item:nth-child(2) {
  transition-delay: .09s;
}


.reveal-stagger.in-view
.reveal-item:nth-child(3) {
  transition-delay: .16s;
}


.reveal-stagger.in-view
.reveal-item:nth-child(4) {
  transition-delay: .23s;
}


.reveal-stagger.in-view
.reveal-item:nth-child(5) {
  transition-delay: .30s;
}


.reveal-stagger.in-view
.reveal-item:nth-child(6) {
  transition-delay: .37s;
}


/* ==========================================================================
   CARD HOVER EFFECTS
   ========================================================================== */

.sector-card,
.group-card,
.rp-card,
.cert-card,
.contact-card {
  transition:
    transform .3s ease,
    box-shadow .3s ease;
}


.sector-card:hover,
.group-card:hover {
  transform:
    translateY(-4px);

  box-shadow:
    0 18px 34px rgba(8,20,38,0.08);

  position: relative;

  z-index: 1;
}


/* ==========================================================================
   ANIMATED COUNTERS
   ========================================================================== */

.hero-facts b.counting {
  position: relative;
}


/* ==========================================================================
   SUBTLE SECTION TEXTURE
   ========================================================================== */

.about,
.certs,
.partners {
  position: relative;
}


.dot-texture::after {
  content: "";

  position: absolute;

  inset: 0;

  pointer-events: none;

  opacity: 0.5;

  z-index: 0;

  background-image:
    radial-gradient(
      circle,
      rgba(11,32,54,0.06) 1px,
      transparent 1px
    );

  background-size:
    22px 22px;

  mask-image:
    linear-gradient(
      180deg,
      transparent,
      #000 15%,
      #000 85%,
      transparent
    );
}


/* ==========================================================================
   RESPONSIVE — TABLET
   ========================================================================== */

@media (max-width: 900px) {

  .navlinks {
    display: none;
  }


  .navtoggle {
    display: flex;
  }


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


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


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


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


  .rail {
    right: 12px;
    bottom: 12px;
  }


  .hero {
    height: 92vh;
  }


  .proj-body {
    grid-template-columns: 1fr;
  }


  .proj-copy {
    padding: 28px 24px;
  }


  .proj-watermark {
    width: 340px;
    height: 340px;

    right: -20%;
  }


  .brand img {
    width: 48px;
    height: 48px;
  }


  .brand-text {
    font-size: 16px;
  }


  .contact-wrap {
    grid-template-columns: 1fr;
  }


  .f-row {
    grid-template-columns: 1fr;
  }


  .proj-gallery {
    grid-template-columns: 1fr;
  }


  .proj-gallery img {
    height: 240px;
  }

}


/* ==========================================================================
   RESPONSIVE — MOBILE
   ========================================================================== */

@media (max-width: 640px) {

  .slide:nth-child(1) {
    background-position: 28% 55%;
  }


  .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }


  section {
    padding: 72px 0;
  }


  .nav {
    padding-left: 20px;
    padding-right: 20px;
  }


  .brand img {
    width: 42px;
    height: 42px;
  }


  .brand-text {
    font-size: 14px;
  }


  .brand-text small {
    font-size: 10px;
  }


  .hero-inner {
    padding: 0 20px;
  }


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


  .lightbox-inner {
    padding: 0 52px;
  }


  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;

    font-size: 17px;
  }


  .lightbox-close {
    top: 14px;
    right: 16px;

    font-size: 26px;
  }

}


/* ==========================================================================
   REDUCED MOTION ACCESSIBILITY
   ========================================================================== */

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

  html {
    scroll-behavior: auto;
  }


  * {
    transition: none !important;
  }


  .slide {
    animation: none !important;

    opacity: 1 !important;
  }


  .slide:nth-child(n+2) {
    display: none;
  }


  .loader-ring::before,
  .loader-logo {
    animation: none !important;
  }


  .reveal,
  .reveal-item {
    opacity: 1 !important;

    transform: none !important;

    transition: none !important;
  }

}

/* ==========================================================================
   EMAIL PROVIDER POPOVER
   ========================================================================== */

.email-popover {
  position: absolute;
  z-index: 500;

  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 32px rgba(8,20,38,0.18);

  min-width: 190px;
  padding: 6px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);

  transition: opacity .15s, transform .15s, visibility .15s;
}

.email-popover.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.email-popover button {
  display: flex;
  align-items: center;
  gap: 10px;

  width: 100%;
  text-align: left;

  padding: 10px 12px;

  background: none;
  border: none;

  font-family: 'Public Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);

  cursor: pointer;
}

.email-popover button:hover {
  background: var(--grey-50);
  color: var(--gold-700);
}

.email-popover .ep-label {
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 8px 12px 4px;
}
