*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --gold: #c9a84c;
  --gold2: #e8c97a;
  --black: #000;
  --off-black: #0a0a0a;
  --dark: #111;
  --mid: #1a1a1a;
  --text: #e0ddd6;
  --muted: #7a7672;
  --white: #f5f3ef;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--black);
  color: var(--text);
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: auto;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  transition:
    background 0.5s,
    backdrop-filter 0.5s;
}
nav.bg {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}
.nav-logo {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-mark {
  width: 28px;
  height: 28px;
  position: relative;
  flex-shrink: 0;
}
.nav-logo-mark svg {
  width: 100%;
  height: 100%;
}
.nav-center {
  display: flex;
  gap: 0;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-center a {
  font-family: "Barlow Condensed";
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  padding: 0 20px;
  line-height: 72px;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
  display: block;
}
.nav-center a:hover,
.nav-center a.active {
  color: var(--white);
  border-bottom-color: var(--gold);
}
.nav-right {
  display: flex;
  gap: 16px;
  align-items: center;
}
.nav-toggle {
  display: none;
}
.nav-cta {
  font-family: "Barlow Condensed";
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 10px 24px;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover {
  background: var(--gold2);
}

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/site-image-ac10b9ad728a.webp");
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  animation: heroKen 18s ease-in-out infinite alternate;
  filter: brightness(0.38);
}
@keyframes heroKen {
  from {
    transform: scale(1.04) translateX(0);
  }
  to {
    transform: scale(1) translateX(-1%);
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.1) 60%,
      transparent 100%
    ),
    linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 900px;
}
.hero-eyebrow {
  font-family: "Barlow Condensed";
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: "Cormorant Garamond";
  font-size: clamp(72px, 9vw, 130px);
  font-weight: 300;
  font-style: italic;
  line-height: 0.9;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 32px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
  font-weight: 300;
}
.hero-sub {
  font-family: "Barlow";
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.55);
  max-width: 480px;
  margin-bottom: 56px;
}
.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}
.btn-ghost {
  font-family: "Barlow Condensed";
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 16px 40px;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-solid {
  font-family: "Barlow Condensed";
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 16px 40px;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid var(--gold);
}
.btn-solid:hover {
  background: transparent;
  color: var(--gold);
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 80px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-scroll span {
  font-family: "Barlow Condensed";
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 72px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 2.2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%,
  100% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* ── STAT BAR ── */
.stat-bar {
  background: var(--off-black);
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
}
.stat-cell {
  padding: 40px 48px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s;
}
.stat-cell:hover {
  background: rgba(201, 168, 76, 0.04);
}
.stat-cell:last-child {
  border-right: none;
}
.stat-val {
  font-family: "Cormorant Garamond";
  font-size: 64px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -2px;
}
.stat-unit {
  font-family: "Barlow Condensed";
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 1px;
  margin-left: 2px;
}
.stat-label {
  font-family: "Barlow Condensed";
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

/* ── FULLBLEED IMAGE SECTION ── */
.fullbleed {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.fullbleed-img {
  width: 100%;
  display: block;
  filter: brightness(0.45);
  transition: transform 8s ease;
}
.fullbleed:hover .fullbleed-img {
  transform: scale(1.02);
}
.fullbleed-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.1) 60%,
    transparent 100%
  );
}
.fullbleed-tag {
  font-family: "Barlow Condensed";
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.fullbleed-title {
  font-family: "Cormorant Garamond";
  font-size: clamp(48px, 6vw, 90px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -1px;
  max-width: 700px;
  margin-bottom: 24px;
}
.fullbleed-desc {
  font-family: "Barlow";
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.5);
  max-width: 460px;
  margin-bottom: 40px;
}

/* ── SECTION COMMON ── */
.sec {
  padding: 120px 80px;
}
.sec-tag {
  font-family: "Barlow Condensed";
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.sec-tag::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.sec-title {
  font-family: "Cormorant Garamond";
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 300;
  font-style: italic;
  line-height: 0.93;
  letter-spacing: -1px;
  color: var(--white);
}
.sec-title em {
  font-style: normal;
  color: var(--gold);
}

/* ── SERVICES HORIZONTAL SCROLL ── */
#services {
  padding: 0;
  overflow: hidden;
  background: var(--off-black);
}
.srv-header {
  padding: 100px 80px 60px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.srv-scroll-wrap {
  overflow-x: auto;
  padding: 0 80px 80px;
  scrollbar-width: none;
  display: flex;
  gap: 4px;
}
.srv-scroll-wrap::-webkit-scrollbar {
  display: none;
}
.srv-card {
  flex: 0 0 360px;
  position: relative;
  height: 520px;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark);
}
.srv-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
  transition:
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 0.5s;
}
.srv-card:hover .srv-img {
  transform: scale(1.06);
  filter: brightness(0.55);
}
.srv-img-maintenance {
  background-image: url("../images/site-image-641c005f05ca.webp");
}
.srv-img-solar {
  background-image: url("../images/site-image-08eb3da1d33f.webp");
}
.srv-img-fuel {
  background-image: url("../images/site-image-0fef97d39fcd.webp");
}
.srv-img-response {
  background-image: url("../images/site-image-60aeb01ef06b.webp");
}
.srv-img-fleet {
  background-image: url("../images/site-image-3b72f0b8ffb0.webp");
}
.srv-img-upgrades {
  background-image: url("../images/site-image-ac10b9ad728a.webp");
  background-position: center bottom;
}
.srv-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 36px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
  transition: padding 0.3s;
}
.srv-num {
  font-family: "Cormorant Garamond";
  font-size: 80px;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.08);
  line-height: 1;
  position: absolute;
  top: 24px;
  right: 24px;
}
.srv-name {
  font-family: "Cormorant Garamond";
  font-size: 32px;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 10px;
}
.srv-desc {
  font-family: "Barlow";
  font-size: 12px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    margin 0.3s;
}
.srv-card:hover .srv-desc {
  max-height: 100px;
  margin-top: 8px;
}
.srv-arrow {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  transition:
    background 0.3s,
    border-color 0.3s;
}
.srv-card:hover .srv-arrow {
  background: var(--gold);
  border-color: var(--gold);
}
.srv-arrow svg {
  width: 14px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  transition: stroke 0.3s;
}
.srv-card:hover .srv-arrow svg {
  stroke: var(--black);
}

/* ── TWO-COL SPLIT ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.split-img {
  position: relative;
  overflow: hidden;
}
.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
  transition: transform 6s ease;
}
.split:hover .split-img img {
  transform: scale(1.03);
}
.split-img-overlay {
  position: absolute;
  inset: 0;
}
.split-content {
  background: var(--off-black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
}
.split-content.right {
  background: var(--dark);
}

/* ── VALUES GRID ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.05);
  margin-top: 80px;
}
.val-card {
  background: var(--off-black);
  padding: 48px 40px;
  transition: background 0.3s;
}
.val-card:hover {
  background: var(--dark);
}
.val-icon {
  font-size: 28px;
  margin-bottom: 20px;
}
.val-name {
  font-family: "Barlow Condensed";
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.val-desc {
  font-family: "Barlow";
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted);
}

/* ── PRESENCE ── */
#presence {
  background: var(--black);
  padding: 0;
}
.presence-hero {
  position: relative;
  height: 70vh;
  overflow: hidden;
}
.presence-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3);
}
.presence-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
  display: flex;
  align-items: center;
  padding: 0 80px;
}
.presence-countries {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201, 168, 76, 0.1);
}
.country {
  background: var(--off-black);
  padding: 56px 48px;
  transition: background 0.3s;
}
.country:hover {
  background: var(--dark);
}
.country-flag {
  font-size: 48px;
  margin-bottom: 20px;
}
.country-name {
  font-family: "Cormorant Garamond";
  font-size: 44px;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  margin-bottom: 8px;
}
.country-status {
  font-family: "Barlow Condensed";
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.country-status.active {
  color: var(--gold);
}
.country-status.soon {
  color: var(--muted);
}

/* ── GALLERY STRIP ── */
.gallery-strip {
  display: flex;
  gap: 4px;
  height: 480px;
  background: var(--black);
}
.gallery-cell {
  flex: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-cell:first-child {
  flex: 2;
}
.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
  transition:
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 0.5s;
}
.gallery-cell:hover img {
  transform: scale(1.06);
  filter: brightness(0.75);
}
.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  font-family: "Barlow Condensed";
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transform: translateY(4px);
  transition:
    transform 0.3s,
    color 0.3s;
}
.gallery-cell:hover .gallery-label {
  transform: translateY(0);
  color: var(--gold);
}

/* ── CLIENTS ── */
#clients {
  background: var(--off-black);
}
.clients-marquee {
  overflow: hidden;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0;
}
.clients-track {
  display: flex;
  gap: 0;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.clients-track:hover {
  animation-play-state: paused;
}
.client-pill {
  flex: 0 0 auto;
  padding: 28px 48px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  font-family: "Barlow Condensed";
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s;
  cursor: pointer;
}
.client-pill:hover {
  color: var(--gold);
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ── CAPABILITIES ── */
.cap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.05);
  margin-top: 64px;
}
.cap-item {
  background: var(--off-black);
  padding: 40px 48px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  transition: background 0.3s;
}
.cap-item:hover {
  background: var(--dark);
}
.cap-num {
  font-family: "Cormorant Garamond";
  font-size: 40px;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.2);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}
.cap-name {
  font-family: "Barlow Condensed";
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.cap-desc {
  font-family: "Barlow";
  font-size: 12px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted);
}

/* ── CONTACT ── */
#contact {
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
.contact-left {
  position: relative;
  overflow: hidden;
}
.contact-left-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3);
}
.contact-left-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent 60%);
}
.contact-right {
  background: var(--off-black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
}
.form-field {
  margin-bottom: 24px;
}
.form-label {
  font-family: "Barlow Condensed";
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  display: block;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: "Barlow";
  font-size: 14px;
  font-weight: 300;
  padding: 12px 0;
  outline: none;
  transition: border-color 0.3s;
  cursor: text;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-bottom-color: var(--gold);
}
.form-select {
  cursor: pointer;
}
.form-textarea {
  height: 80px;
  resize: none;
}
.form-select option {
  background: var(--off-black);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ci-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ci-label {
  font-family: "Barlow Condensed";
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.ci-val {
  font-family: "Barlow";
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding: 48px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: "Barlow Condensed";
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--white);
}
.footer-logo span {
  color: var(--gold);
}
.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.footer-links a {
  font-family: "Barlow Condensed";
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-copy {
  font-family: "Barlow";
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 1px;
}

/* ── ANIMATE IN ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.on {
  opacity: 1;
  transform: none;
}
.reveal-d1 {
  transition-delay: 0.1s;
}
.reveal-d2 {
  transition-delay: 0.2s;
}
.reveal-d3 {
  transition-delay: 0.3s;
}

/* Horizontal rule gold */
.gold-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 20px;
}

/* ── UTILITY AND EXTRACTED INLINE STYLES ── */
.nav-logo-accent,
.gold-text {
  color: var(--gold);
}
.align-start {
  align-self: flex-start;
}
.split-img-overlay-right {
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.15));
}
.split-img-overlay-left {
  background: linear-gradient(to left, transparent, rgba(0, 0, 0, 0.1));
}
.values-copy {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted);
  margin-top: 24px;
  margin-bottom: 48px;
}
.values-grid-compact {
  grid-template-columns: 1fr 1fr;
  margin-top: 0;
}
.val-card-compact {
  padding: 28px 24px;
}
.services-intro {
  max-width: 380px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted);
  align-self: flex-end;
}
.presence-copy {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.45);
  max-width: 420px;
  margin-top: 16px;
}
.country-muted {
  opacity: 0.5;
}
#clients {
  background: var(--off-black);
  padding-bottom: 0;
}
.clients-marquee-spaced {
  margin-top: 60px;
}
.contact-title {
  font-size: clamp(40px, 5vw, 72px);
}
.contact-info-spaced {
  margin-top: 48px;
}
.contact-form-tag {
  margin-bottom: 40px;
}
.contact-submit {
  border: none;
  width: 100%;
  text-align: center;
  font-size: 12px;
  cursor: pointer;
  margin-top: 8px;
}
#products {
  background: var(--black);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.05);
  margin-top: 64px;
}
.product-card {
  background: var(--off-black);
  padding: 40px 36px;
  transition: background 0.3s;
}
.product-card:hover {
  background: var(--dark);
}
.product-category {
  font-family: "Cormorant Garamond";
  font-size: 13px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.product-name {
  font-family: "Barlow Condensed";
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 10px;
}
.product-desc {
  font-family: "Barlow";
  font-size: 12px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
}

@media (max-width: 900px) {
  nav {
    padding: 0 24px;
  }
  .nav-center {
    display: none;
  }
  .hero-content {
    padding: 0 32px;
  }
  .hero h1 {
    font-size: 56px;
  }
  .hero-scroll {
    left: 32px;
  }
  .stat-bar {
    grid-template-columns: 1fr 1fr;
  }
  .sec {
    padding: 80px 32px;
  }
  .srv-header {
    padding: 80px 32px 40px;
  }
  .srv-scroll-wrap {
    padding: 0 32px 60px;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .split-img {
    height: 55vw;
  }
  .split-content {
    padding: 56px 32px;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .presence-hero-overlay {
    padding: 0 32px;
  }
  .presence-countries {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-strip {
    height: 320px;
  }
  .cap-grid {
    grid-template-columns: 1fr;
  }
  #contact {
    grid-template-columns: 1fr;
  }
  .contact-left {
    height: 60vw;
  }
  .contact-right {
    padding: 56px 32px;
  }
  footer {
    flex-direction: column;
    gap: 24px;
    padding: 40px 32px;
    text-align: center;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ── CORPORATE REFRESH ── */
:root {
  --navy: #0f1f2e;
  --navy-2: #142c3f;
  --surface: #ffffff;
  --surface-2: #f5f7f9;
  --line: #d9e1e8;
  --ink: #162332;
  --ink-soft: #5d6b78;
  --accent: #c9a84c;
  --accent-dark: #9b7b24;
  --black: var(--navy);
  --off-black: var(--surface);
  --dark: var(--surface-2);
  --mid: #e9eef2;
  --text: var(--ink);
  --muted: var(--ink-soft);
  --white: #ffffff;
  --gold: var(--accent);
  --gold2: #d8b95f;
}

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

body {
  background: var(--surface);
  color: var(--ink);
  cursor: auto;
  font-weight: 400;
}

.brand-logo {
  display: block;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.hero-scroll {
  display: none;
}

a,
button,
input,
select,
textarea,
.srv-card,
.gallery-cell,
.client-pill {
  cursor: pointer;
}

nav {
  height: 76px;
  padding: 0 clamp(24px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

nav.bg {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--line);
}

.nav-logo {
  color: var(--ink);
  font-family: "Barlow", sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  min-width: 0;
}

.nav-logo-mark {
  width: 26px;
  height: 26px;
}

.nav-brand-logo {
  width: 146px;
}

.nav-center {
  gap: 4px;
}

.nav-center a {
  color: var(--ink-soft);
  font-family: "Barlow", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 76px;
  padding: 0 12px;
  text-transform: none;
}

.nav-center a:hover,
.nav-center a.active {
  color: var(--navy);
  border-bottom-color: var(--accent);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.nav-toggle span + span {
  margin-top: 4px;
}

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

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

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

.nav-cta,
.btn-solid,
.btn-ghost {
  border-radius: 4px;
  font-family: "Barlow", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
}

.nav-cta,
.btn-solid {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--navy);
}

.nav-cta:hover,
.btn-solid:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.btn-ghost:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy);
}

.hero {
  min-height: 720px;
  height: 92vh;
  align-items: center;
}

.hero-bg {
  animation: none;
  filter: brightness(0.72) saturate(0.82);
  transform: none;
}

.hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(15, 31, 46, 0.95) 0%,
      rgba(15, 31, 46, 0.78) 48%,
      rgba(15, 31, 46, 0.22) 100%
    ),
    linear-gradient(0deg, rgba(15, 31, 46, 0.2), rgba(15, 31, 46, 0.2));
}

.hero-content {
  max-width: 820px;
  padding: 96px clamp(24px, 6vw, 88px) 0;
}

.hero-eyebrow,
.sec-tag,
.fullbleed-tag {
  color: var(--accent);
  font-family: "Barlow", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero h1,
.sec-title,
.fullbleed-title,
.country-name {
  font-family: "Barlow", sans-serif;
  font-style: normal;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(44px, 5.6vw, 76px);
  font-weight: 700;
  line-height: 1.02;
}

.hero-sub {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0;
  margin-bottom: 32px;
}

.hero-actions {
  gap: 14px;
  flex-wrap: wrap;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 680px;
  margin-top: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.16);
}

.hero-proof div {
  min-height: 92px;
  padding: 18px 20px;
  background: rgba(15, 31, 46, 0.62);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.35;
}

.hero-proof span {
  display: block;
  color: var(--white);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 4px;
}

.stat-bar {
  background: var(--surface);
  border-color: var(--line);
}

.stat-cell {
  padding: 34px clamp(24px, 4vw, 56px);
  border-right: 1px solid var(--line);
}

.stat-cell:hover {
  background: var(--surface-2);
}

.stat-val {
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: 0;
}

.stat-unit,
.stat-label {
  color: var(--accent-dark);
}

.stat-label {
  font-family: "Barlow", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.sec,
.srv-header,
.split-content {
  padding-left: clamp(24px, 6vw, 88px);
  padding-right: clamp(24px, 6vw, 88px);
}

.sec {
  padding-top: 92px;
  padding-bottom: 92px;
}

.sec-title,
.fullbleed-title {
  color: var(--ink);
  max-width: 760px;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.08;
}

.sec-title em,
.fullbleed-title em,
.gold-text {
  color: var(--accent-dark);
}

.fullbleed {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.72fr);
  background: var(--surface);
}

.fullbleed-img {
  height: 560px;
  object-fit: cover;
  filter: none;
}

.fullbleed:hover .fullbleed-img,
.split:hover .split-img img,
.gallery-cell:hover img,
.srv-card:hover .srv-img {
  transform: none;
}

.fullbleed-caption {
  position: static;
  justify-content: center;
  padding: 72px clamp(24px, 5vw, 80px);
  background: var(--surface);
}

.fullbleed-desc,
.values-copy,
.services-intro,
.presence-copy,
.srv-desc,
.val-desc,
.cap-desc,
.product-desc,
.ci-val {
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.7;
}

.fullbleed-caption .btn-ghost {
  border-color: var(--navy);
  color: var(--navy);
}

.fullbleed-caption .btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
}

.split {
  min-height: 0;
  background: var(--surface-2);
}

.split-content,
.split-content.right {
  background: var(--surface-2);
}

.split-img img {
  filter: none;
}

#services {
  background: var(--surface-2);
}

.srv-header {
  align-items: flex-start;
  padding-top: 92px;
  padding-bottom: 36px;
  gap: 32px;
}

.srv-scroll-wrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  overflow: visible;
  padding: 0 clamp(24px, 6vw, 88px) 92px;
}

.srv-card {
  height: auto;
  min-height: 360px;
  flex: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  cursor: pointer;
}

.srv-img {
  position: relative;
  height: 150px;
  filter: none;
}

.srv-card:hover .srv-img {
  filter: none;
}

.srv-body {
  position: static;
  min-height: 210px;
  justify-content: flex-start;
  padding: 26px;
  background: var(--surface);
}

.srv-num {
  position: static;
  margin-bottom: 14px;
  color: var(--accent-dark);
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.srv-name {
  color: var(--ink);
  font-family: "Barlow", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.18;
}

.srv-desc {
  max-height: none;
  margin-top: 10px;
}

.srv-card:hover .srv-desc {
  max-height: none;
}

.srv-arrow {
  margin-top: auto;
  border-color: var(--line);
  border-radius: 4px;
}

.srv-arrow svg {
  stroke: var(--accent-dark);
}

.values-grid,
.cap-grid,
.products-grid,
.presence-countries {
  gap: 18px;
  background: transparent;
}

.val-card,
.cap-item,
.product-card,
.country {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.val-card:hover,
.cap-item:hover,
.product-card:hover,
.country:hover {
  background: var(--surface);
  border-color: rgba(155, 123, 36, 0.45);
}

.val-name,
.cap-name,
.product-name {
  color: var(--ink);
  font-family: "Barlow", sans-serif;
  letter-spacing: 0;
  text-transform: none;
}

.product-category,
.ci-label,
.country-status,
.client-pill {
  font-family: "Barlow", sans-serif;
  letter-spacing: 0.05em;
}

.cap-num,
.product-category,
.ci-label,
.country-status.active {
  color: var(--accent-dark);
}

#products,
#presence,
#clients,
#contact,
footer {
  background: var(--surface);
}

.presence-hero {
  height: 520px;
}

.presence-hero-img {
  filter: brightness(0.74) saturate(0.88);
}

.presence-hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(15, 31, 46, 0.9),
    rgba(15, 31, 46, 0.18)
  );
  padding: 0 clamp(24px, 6vw, 88px);
}

.presence-hero-overlay .sec-title,
.presence-hero-overlay .fullbleed-title,
.presence-copy {
  color: var(--white);
}

.country {
  padding: 34px;
}

.country-code {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 18px;
}

.country-flag {
  display: none;
}

.country-name {
  color: var(--ink);
  font-size: 30px;
  font-weight: 700;
}

.gallery-strip {
  height: 380px;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.gallery-cell {
  cursor: pointer;
}

.gallery-cell img {
  filter: none;
}

.gallery-cell:hover img {
  filter: none;
}

.gallery-label {
  color: var(--white);
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}

#clients {
  padding-bottom: 92px;
}

.clients-marquee {
  border: 1px solid var(--line);
  border-radius: 6px;
}

.clients-track {
  animation: none;
  flex-wrap: wrap;
  white-space: normal;
}

.client-pill {
  flex: 1 1 220px;
  padding: 22px 28px;
  color: var(--ink-soft);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

#contact {
  grid-template-columns: 0.86fr 1.14fr;
  min-height: 0;
  border-top: 1px solid var(--line);
}

.contact-left-img {
  filter: brightness(0.82) saturate(0.86);
}

.contact-left-overlay {
  background: linear-gradient(
    to top,
    rgba(15, 31, 46, 0.92),
    rgba(15, 31, 46, 0.2)
  );
  padding: clamp(40px, 6vw, 80px);
}

.contact-brand-logo {
  width: min(260px, 72vw);
  padding: 12px 16px;
  margin-bottom: 28px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 6px;
}

.contact-left-overlay .sec-title,
.contact-left-overlay .ci-val {
  color: var(--white);
}

.contact-right {
  background: var(--surface-2);
  padding: clamp(40px, 6vw, 80px);
}

.form-input,
.form-select,
.form-textarea {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
  color: var(--ink);
  cursor: text;
  padding: 14px 16px;
}

.form-select {
  cursor: pointer;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent-dark);
}

.form-label {
  color: var(--ink-soft);
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.form-select option {
  background: var(--surface);
  color: var(--ink);
}

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

.footer-logo {
  color: var(--ink);
  display: block;
  font-family: "Barlow", sans-serif;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.footer-brand-logo {
  width: 176px;
}

.footer-copy {
  color: var(--ink-soft);
}

.footer-links a {
  color: var(--ink-soft);
  font-family: "Barlow", sans-serif;
  letter-spacing: 0.04em;
}

.reveal {
  transform: translateY(18px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

/* ── PREMIUM BRAND POLISH ── */
:root {
  --logo-navy: #111743;
  --logo-navy-2: #18245d;
  --logo-gold: #e79a16;
  --logo-gold-soft: #f3c15b;
  --logo-red: #e91f2d;
  --logo-blue: #2397b7;
  --surface: #fffdf8;
  --surface-2: #f6f2ea;
  --line: rgba(17, 23, 67, 0.13);
  --ink: #101633;
  --ink-soft: #5c6274;
  --accent: var(--logo-gold);
  --accent-dark: #b8750c;
  --navy: var(--logo-navy);
  --navy-2: var(--logo-navy-2);
  --gold: var(--logo-gold);
  --gold2: var(--logo-gold-soft);
  --premium-shadow: 0 22px 70px rgba(17, 23, 67, 0.13);
  --premium-shadow-soft: 0 14px 38px rgba(17, 23, 67, 0.09);
}

body {
  background:
    radial-gradient(
      circle at top left,
      rgba(231, 154, 22, 0.09),
      transparent 34rem
    ),
    linear-gradient(180deg, #fffdf8 0%, #f7f2e8 100%);
}

nav {
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid rgba(17, 23, 67, 0.11);
  box-shadow: 0 12px 42px rgba(17, 23, 67, 0.08);
}

nav::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--logo-gold),
    var(--logo-red),
    var(--logo-blue)
  );
}

nav.bg {
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 16px 48px rgba(17, 23, 67, 0.11);
}

.nav-brand-logo {
  width: 156px;
  filter: drop-shadow(0 8px 14px rgba(17, 23, 67, 0.1));
}

.nav-center a {
  color: rgba(17, 23, 67, 0.68);
}

.nav-center a:hover,
.nav-center a.active {
  color: var(--logo-navy);
  border-bottom-color: var(--logo-gold);
}

.nav-toggle,
.nav-center {
  background: rgba(255, 253, 248, 0.98);
}

.nav-cta,
.btn-solid {
  background: linear-gradient(135deg, var(--logo-gold), var(--logo-gold-soft));
  border: 1px solid rgba(184, 117, 12, 0.32);
  color: var(--logo-navy);
  box-shadow: 0 12px 26px rgba(231, 154, 22, 0.25);
}

.nav-cta:hover,
.btn-solid:hover {
  background: linear-gradient(135deg, var(--logo-red), #ff5a62);
  border-color: rgba(233, 31, 45, 0.45);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(233, 31, 45, 0.24);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.hero-bg {
  filter: brightness(0.62) saturate(0.95) contrast(1.05);
}

.hero-overlay {
  background:
    linear-gradient(
      92deg,
      rgba(17, 23, 67, 0.98) 0%,
      rgba(17, 23, 67, 0.9) 46%,
      rgba(17, 23, 67, 0.42) 100%
    ),
    radial-gradient(
      circle at 18% 26%,
      rgba(231, 154, 22, 0.25),
      transparent 21rem
    ),
    radial-gradient(
      circle at 55% 78%,
      rgba(35, 151, 183, 0.18),
      transparent 24rem
    );
}

.hero-eyebrow,
.sec-tag,
.fullbleed-tag {
  color: var(--logo-gold);
}

.hero h1 {
  text-wrap: balance;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.36);
}

.hero-sub {
  color: rgba(255, 255, 255, 0.82);
}

.hero-proof {
  border: 1px solid rgba(231, 154, 22, 0.34);
  background: rgba(231, 154, 22, 0.18);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
}

.hero-proof div {
  background: rgba(17, 23, 67, 0.72);
  border-top: 2px solid rgba(231, 154, 22, 0.45);
}

.hero-proof span {
  color: var(--logo-gold-soft);
}

.stat-bar {
  background: var(--logo-navy);
  border: 0;
  box-shadow: var(--premium-shadow);
}

.stat-cell {
  border-right: 1px solid rgba(255, 255, 255, 0.11);
}

.stat-cell:hover {
  background: rgba(255, 255, 255, 0.05);
}

.stat-val {
  color: var(--white);
}

.stat-unit,
.stat-label {
  color: var(--logo-gold-soft);
}

.sec-title,
.fullbleed-title {
  color: var(--logo-navy);
}

.sec-title em,
.fullbleed-title em,
.gold-text {
  color: var(--logo-red);
}

.fullbleed,
.split,
#services,
#products,
#clients,
#contact {
  background:
    linear-gradient(
      180deg,
      rgba(255, 253, 248, 0.98),
      rgba(246, 242, 234, 0.96)
    ),
    radial-gradient(
      circle at 85% 10%,
      rgba(35, 151, 183, 0.08),
      transparent 24rem
    );
}

.fullbleed-img,
.split-img img,
.presence-hero-img,
.contact-left-img,
.gallery-cell img {
  filter: saturate(0.93) contrast(1.03);
}

.fullbleed-caption,
.split-content,
.split-content.right {
  background: linear-gradient(
    180deg,
    rgba(255, 253, 248, 0.98),
    rgba(246, 242, 234, 0.98)
  );
}

.fullbleed-caption .btn-ghost {
  border-color: var(--logo-navy);
  background: var(--logo-navy);
  color: var(--white);
  box-shadow: var(--premium-shadow-soft);
}

.fullbleed-caption .btn-ghost:hover {
  background: var(--logo-red);
  border-color: var(--logo-red);
}

.srv-card,
.val-card,
.cap-item,
.product-card,
.country,
.clients-marquee {
  border: 1px solid rgba(17, 23, 67, 0.1);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--premium-shadow-soft);
}

.srv-card,
.product-card,
.val-card,
.cap-item,
.country {
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.srv-card:hover,
.product-card:hover,
.val-card:hover,
.cap-item:hover,
.country:hover {
  transform: translateY(-4px);
  border-color: rgba(231, 154, 22, 0.5);
  box-shadow: 0 24px 72px rgba(17, 23, 67, 0.16);
}

.srv-img::after,
.gallery-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(17, 23, 67, 0.04),
    rgba(17, 23, 67, 0.34)
  );
}

.srv-num,
.product-category,
.ci-label,
.country-status.active {
  color: var(--logo-red);
}

.srv-name,
.val-name,
.cap-name,
.product-name,
.country-name {
  color: var(--logo-navy);
}

.srv-arrow {
  border-color: rgba(231, 154, 22, 0.42);
  background: rgba(231, 154, 22, 0.08);
}

.srv-arrow svg {
  stroke: var(--logo-red);
}

.cap-num {
  color: rgba(35, 151, 183, 0.62);
}

.presence-hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 23, 67, 0.94), rgba(17, 23, 67, 0.28)),
    radial-gradient(
      circle at 16% 50%,
      rgba(231, 154, 22, 0.22),
      transparent 24rem
    );
}

.country-code {
  background: linear-gradient(135deg, var(--logo-navy), var(--logo-navy-2));
  box-shadow: inset 0 0 0 1px rgba(231, 154, 22, 0.22);
}

.gallery-strip {
  border-color: rgba(17, 23, 67, 0.12);
  box-shadow: var(--premium-shadow);
}

.gallery-label {
  background: linear-gradient(transparent, rgba(17, 23, 67, 0.88));
}

.client-pill {
  background: rgba(255, 253, 248, 0.98);
}

.client-pill:hover {
  color: var(--logo-red);
}

.contact-left-overlay {
  background:
    linear-gradient(to top, rgba(17, 23, 67, 0.96), rgba(17, 23, 67, 0.35)),
    radial-gradient(
      circle at 35% 12%,
      rgba(231, 154, 22, 0.22),
      transparent 18rem
    );
}

.contact-brand-logo {
  background: rgba(255, 253, 248, 0.95);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.contact-right {
  background:
    linear-gradient(
      180deg,
      rgba(246, 242, 234, 0.98),
      rgba(255, 253, 248, 0.98)
    ),
    radial-gradient(
      circle at top right,
      rgba(231, 154, 22, 0.08),
      transparent 19rem
    );
}

.form-input,
.form-select,
.form-textarea {
  border-color: rgba(17, 23, 67, 0.16);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--logo-blue);
  box-shadow: 0 0 0 3px rgba(35, 151, 183, 0.12);
}

footer {
  background: var(--logo-navy);
  border-top: 3px solid var(--logo-gold);
}

footer .footer-links a,
footer .footer-copy {
  color: rgba(255, 255, 255, 0.68);
}

footer .footer-links a:hover {
  color: var(--logo-gold-soft);
}

.footer-brand-logo {
  padding: 8px 10px;
  background: rgba(255, 253, 248, 0.96);
  border-radius: 6px;
}

/* ── PREMIUM HEADER ── */
nav {
  height: 84px;
  padding: 0 clamp(20px, 5vw, 76px);
  background:
    linear-gradient(90deg, rgba(17, 23, 67, 0.97), rgba(24, 36, 93, 0.94)),
    rgba(17, 23, 67, 0.96);
  border-bottom: 1px solid rgba(231, 154, 22, 0.24);
  box-shadow: 0 18px 54px rgba(17, 23, 67, 0.26);
}

nav::before {
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--logo-gold) 0%,
    var(--logo-gold-soft) 28%,
    var(--logo-red) 57%,
    var(--logo-blue) 100%
  );
}

nav::after {
  content: "";
  position: absolute;
  left: clamp(20px, 5vw, 76px);
  right: clamp(20px, 5vw, 76px);
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.28),
    transparent
  );
  pointer-events: none;
}

nav.bg {
  background:
    linear-gradient(90deg, rgba(17, 23, 67, 0.985), rgba(24, 36, 93, 0.97)),
    rgba(17, 23, 67, 0.98);
  border-bottom-color: rgba(231, 154, 22, 0.28);
  box-shadow: 0 22px 60px rgba(17, 23, 67, 0.31);
}

.nav-logo {
  height: 58px;
  padding: 7px 14px;
  background: rgba(255, 253, 248, 0.98);
  border: 1px solid rgba(231, 154, 22, 0.3);
  border-radius: 7px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 14px 34px rgba(0, 0, 0, 0.18);
}

.nav-brand-logo {
  width: 164px;
  max-height: 44px;
  filter: none;
}

.nav-center {
  gap: 6px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  backdrop-filter: blur(14px);
}

.nav-center a {
  line-height: 1;
  padding: 12px 14px;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 700;
}

.nav-center a:hover,
.nav-center a.active {
  color: var(--logo-navy);
  background: linear-gradient(135deg, var(--logo-gold), var(--logo-gold-soft));
  border-bottom-color: transparent;
  box-shadow: 0 8px 22px rgba(231, 154, 22, 0.24);
}

.nav-right {
  position: relative;
  z-index: 1;
}

.nav-cta {
  padding: 13px 20px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  box-shadow:
    0 12px 28px rgba(231, 154, 22, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.nav-toggle {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  background: var(--white);
}

@media (max-width: 1100px) {
  .nav-center {
    top: 90px;
    left: 18px;
    right: 18px;
    padding: 10px;
    border-radius: 10px;
    background: rgba(17, 23, 67, 0.98);
    border: 1px solid rgba(231, 154, 22, 0.25);
    box-shadow: 0 24px 70px rgba(17, 23, 67, 0.32);
  }

  .nav-center a {
    color: rgba(255, 255, 255, 0.82);
    border-radius: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 15px 14px;
  }

  .nav-center li:last-child a {
    border-bottom: 0;
  }
}

@media (max-width: 900px) {
  nav {
    height: 74px;
    padding: 0 16px;
  }

  nav::after {
    left: 16px;
    right: 16px;
  }

  .nav-logo {
    height: 50px;
    padding: 6px 10px;
  }

  .nav-brand-logo {
    width: 132px;
    max-height: 38px;
  }

  .nav-center {
    top: 80px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 520px) {
  .nav-brand-logo {
    width: 118px;
  }

  .nav-logo {
    padding: 6px 8px;
  }
}

@media (max-width: 1100px) {
  .nav-center {
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 6px;
    box-shadow: 0 18px 48px rgba(15, 31, 46, 0.16);
    transform: none;
  }

  nav.open .nav-center {
    display: flex;
  }

  .nav-center a {
    line-height: 1.2;
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
  }

  .nav-center li:last-child a {
    border-bottom: 0;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-right {
    margin-left: auto;
    margin-right: 10px;
  }

  .srv-scroll-wrap,
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fullbleed,
  #contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 68px;
  }

  nav {
    height: 68px;
    padding: 0 18px;
  }

  .nav-logo {
    min-width: 0;
    font-size: 14px;
    letter-spacing: 0.05em;
  }

  .nav-brand-logo {
    width: 128px;
  }

  .nav-logo-mark {
    width: 24px;
    height: 24px;
  }

  .nav-center {
    top: 68px;
  }

  .nav-cta {
    padding: 9px 12px;
    font-size: 11px;
  }

  .hero {
    height: auto;
    min-height: 0;
    padding: 0;
  }

  .hero-bg {
    background-position: 58% center;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(15, 31, 46, 0.96) 0%,
      rgba(15, 31, 46, 0.9) 58%,
      rgba(15, 31, 46, 0.7) 100%
    );
  }

  .hero-content {
    padding: 116px 22px 46px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 11vw, 44px);
    line-height: 1.08;
  }

  .hero-eyebrow {
    align-items: flex-start;
    gap: 10px;
    font-size: 11px;
    line-height: 1.4;
  }

  .hero-eyebrow::before {
    width: 28px;
    margin-top: 7px;
    flex: 0 0 auto;
  }

  .hero-sub {
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-actions a {
    width: 100%;
    text-align: center;
    padding: 14px 18px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .hero-proof div {
    min-height: 72px;
    padding: 14px 16px;
  }

  .srv-header {
    display: block;
    padding-top: 64px;
    padding-bottom: 24px;
  }

  .srv-scroll-wrap,
  .products-grid,
  .presence-countries,
  .stat-bar {
    grid-template-columns: 1fr;
  }

  .stat-cell {
    padding: 24px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .sec,
  .split-content,
  .contact-right {
    padding: 58px 22px;
  }

  .sec-title,
  .fullbleed-title {
    font-size: clamp(28px, 9vw, 36px);
    line-height: 1.14;
  }

  .sec-tag,
  .fullbleed-tag {
    font-size: 11px;
    line-height: 1.35;
  }

  .fullbleed-img {
    height: 300px;
  }

  .fullbleed-caption {
    padding: 46px 22px 56px;
  }

  .values-grid-compact,
  .cap-grid {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .val-card,
  .cap-item,
  .product-card,
  .country {
    padding: 24px;
  }

  .srv-scroll-wrap {
    padding: 0 22px 58px;
  }

  .srv-card {
    min-height: 0;
  }

  .srv-body {
    min-height: 0;
    padding: 24px;
  }

  .srv-name {
    font-size: 20px;
  }

  .split-img {
    height: 320px;
  }

  .presence-hero {
    height: auto;
    min-height: 440px;
  }

  .presence-hero-overlay {
    padding: 82px 22px 46px;
    align-items: flex-end;
    background: linear-gradient(
      180deg,
      rgba(15, 31, 46, 0.22),
      rgba(15, 31, 46, 0.92)
    );
  }

  .gallery-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: auto;
  }

  .gallery-cell {
    min-height: 220px;
  }

  .clients-marquee-spaced {
    margin-top: 32px;
  }

  .client-pill {
    flex-basis: 100%;
    padding: 18px 20px;
  }

  .contact-left {
    height: auto;
    min-height: 420px;
  }

  .contact-left-overlay {
    padding: 48px 22px;
  }

  .contact-brand-logo {
    width: min(230px, 76vw);
    margin-bottom: 24px;
  }

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

  .form-input,
  .form-select,
  .form-textarea {
    font-size: 16px;
  }

  footer {
    align-items: flex-start;
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 16px 22px;
  }
}

@media (max-width: 520px) {
  .nav-right {
    display: none;
  }

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

  .nav-center {
    left: 10px;
    right: 10px;
  }

  .hero-content {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-proof span {
    font-size: 24px;
  }

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

  .gallery-cell {
    min-height: 240px;
  }

  .footer-logo {
    font-size: 15px;
  }

  .footer-brand-logo {
    width: 150px;
  }
}

@media (max-width: 380px) {
  .nav-logo {
    font-size: 12px;
  }

  .nav-brand-logo {
    width: 108px;
  }

  .nav-logo-mark {
    width: 22px;
    height: 22px;
  }

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

  .sec,
  .split-content,
  .contact-right {
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* ── CLEAN PREMIUM HEADER ── */
html {
  scroll-padding-top: 82px;
}

nav {
  height: 82px;
  padding: 0 clamp(20px, 5vw, 76px);
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 1px solid rgba(17, 23, 67, 0.1);
  box-shadow: 0 14px 44px rgba(17, 23, 67, 0.1);
  backdrop-filter: blur(18px);
}

nav::before {
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--logo-gold) 0%,
    var(--logo-red) 52%,
    var(--logo-blue) 100%
  );
}

nav::after {
  content: "";
  position: absolute;
  left: clamp(20px, 5vw, 76px);
  right: clamp(20px, 5vw, 76px);
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(17, 23, 67, 0.18),
    transparent
  );
  pointer-events: none;
}

nav.bg {
  background: rgba(255, 253, 248, 0.99);
  border-bottom-color: rgba(17, 23, 67, 0.14);
  box-shadow: 0 18px 54px rgba(17, 23, 67, 0.14);
}

.nav-logo {
  height: auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.nav-brand-logo {
  width: 178px;
  max-height: 58px;
  filter: drop-shadow(0 8px 14px rgba(17, 23, 67, 0.1));
}

.nav-center {
  gap: 4px;
  padding: 5px;
  background: rgba(17, 23, 67, 0.045);
  border: 1px solid rgba(17, 23, 67, 0.08);
  border-radius: 999px;
  backdrop-filter: none;
}

.nav-center a {
  line-height: 1;
  padding: 11px 14px;
  border: 0;
  border-radius: 999px;
  color: rgba(17, 23, 67, 0.68);
  font-size: 12px;
  font-weight: 700;
}

.nav-center a:hover,
.nav-center a.active {
  color: var(--logo-navy);
  background: rgba(231, 154, 22, 0.14);
  border-bottom-color: transparent;
  box-shadow: inset 0 0 0 1px rgba(231, 154, 22, 0.32);
}

.nav-cta {
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--logo-red), #ff545d);
  border: 1px solid rgba(233, 31, 45, 0.4);
  color: var(--white);
  box-shadow:
    0 12px 28px rgba(233, 31, 45, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--logo-gold), var(--logo-gold-soft));
  border-color: rgba(231, 154, 22, 0.44);
  color: var(--logo-navy);
  box-shadow: 0 14px 32px rgba(231, 154, 22, 0.24);
}

.nav-toggle {
  border-color: rgba(17, 23, 67, 0.12);
  background: rgba(17, 23, 67, 0.05);
}

.nav-toggle span {
  background: var(--logo-navy);
}

@media (max-width: 1100px) {
  .nav-center {
    top: 88px;
    left: 18px;
    right: 18px;
    padding: 10px;
    border-radius: 10px;
    background: rgba(255, 253, 248, 0.99);
    border: 1px solid rgba(17, 23, 67, 0.13);
    box-shadow: 0 24px 70px rgba(17, 23, 67, 0.18);
  }

  .nav-center a {
    color: rgba(17, 23, 67, 0.76);
    border-radius: 6px;
    border-bottom: 1px solid rgba(17, 23, 67, 0.08);
    padding: 15px 14px;
  }

  .nav-center li:last-child a {
    border-bottom: 0;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 72px;
  }

  nav {
    height: 72px;
    padding: 0 16px;
  }

  nav::after {
    left: 16px;
    right: 16px;
  }

  .nav-brand-logo {
    width: 136px;
    max-height: 48px;
  }

  .nav-center {
    top: 78px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 520px) {
  .nav-brand-logo {
    width: 122px;
  }

  .nav-center {
    left: 10px;
    right: 10px;
  }
}

/* ── HERO VIEWPORT FIT ── */
.hero {
  height: auto;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
}

.hero-content {
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 112px;
  padding-bottom: 44px;
}

.hero-proof {
  margin-top: 34px;
}

.hero-proof div {
  min-height: 82px;
}

@media (max-width: 900px) {
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
  }

  .hero-content {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    justify-content: center;
    padding: 92px 22px 24px;
  }

  .hero h1 {
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.06;
    margin-bottom: 16px;
  }

  .hero-sub {
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 1.5;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions a {
    padding: 12px 16px;
  }

  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 20px;
  }

  .hero-proof div {
    min-height: 64px;
    padding: 10px 8px;
    font-size: 11px;
    text-align: center;
  }

  .hero-proof span {
    font-size: 20px;
  }
}

@media (max-width: 520px) {
  .hero-content {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 29px;
  }

  .hero-sub {
    font-size: 13px;
  }

  .hero-proof div {
    font-size: 10px;
  }

  .hero-proof span {
    font-size: 18px;
  }
}

@media (max-height: 680px) and (max-width: 900px) {
  .hero-content {
    justify-content: flex-start;
    padding-top: 86px;
  }

  .hero-proof {
    margin-top: 14px;
  }
}

/* ── PREMIUM FOOTER ── */
footer {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(
      circle at 14% 0%,
      rgba(231, 154, 22, 0.2),
      transparent 24rem
    ),
    radial-gradient(
      circle at 88% 25%,
      rgba(35, 151, 183, 0.18),
      transparent 22rem
    ),
    linear-gradient(135deg, #0b102f 0%, var(--logo-navy) 54%, #070b22 100%);
  border-top: 0;
  color: var(--white);
}

footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 72%);
}

.footer-topline {
  position: relative;
  height: 18px;
  background:
    linear-gradient(90deg, var(--logo-gold), var(--logo-red), var(--logo-blue)),
    var(--logo-gold);
}

.footer-topline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 20px;
  background: var(--logo-navy);
  clip-path: polygon(
    0 55%,
    12% 76%,
    25% 42%,
    40% 66%,
    56% 36%,
    72% 68%,
    88% 44%,
    100% 60%,
    100% 100%,
    0 100%
  );
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(160px, 0.8fr));
  gap: clamp(28px, 5vw, 70px);
  padding: 86px clamp(24px, 6vw, 88px) 44px;
}

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 24px;
}

.footer-brand-logo {
  width: 210px;
  padding: 10px 12px;
  background: rgba(255, 253, 248, 0.98);
  border: 1px solid rgba(231, 154, 22, 0.28);
  border-radius: 8px;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.24);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
  max-width: 330px;
}

.footer-heading {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 12px;
  color: var(--logo-gold-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--logo-gold), var(--logo-red));
}

.footer-links {
  display: grid;
  gap: 12px;
  list-style: none;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
  text-decoration: none;
  text-transform: none;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--logo-gold-soft);
  transform: translateX(3px);
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-cta {
  display: inline-flex;
  justify-content: center;
  width: fit-content;
  margin-top: 10px;
  padding: 11px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--logo-gold), var(--logo-gold-soft));
  color: var(--logo-navy) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  box-shadow: 0 14px 32px rgba(231, 154, 22, 0.2);
}

.footer-cta:hover {
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--logo-red), #ff545d);
  transform: none !important;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(24px, 6vw, 88px);
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    padding-top: 68px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 58px 22px 34px;
  }

  .footer-brand-logo {
    width: 180px;
  }

  .footer-bottom {
    padding: 20px 22px;
  }
}

/* ── SMOOTH MOTION LAYER ── */
:root {
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--logo-gold),
    var(--logo-red),
    var(--logo-blue)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.12s linear;
}

nav,
.nav-center,
.nav-cta,
.btn-solid,
.btn-ghost,
.footer-cta,
.form-input,
.form-select,
.form-textarea {
  transition:
    background 0.28s var(--motion-ease),
    border-color 0.28s var(--motion-ease),
    box-shadow 0.28s var(--motion-ease),
    color 0.28s var(--motion-ease),
    transform 0.28s var(--motion-ease);
}

.hero-bg {
  animation: heroDrift 18s var(--motion-ease) infinite alternate;
  will-change: transform;
}

.hero-eyebrow,
.hero h1,
.hero-sub,
.hero-actions,
.hero-proof {
  animation: heroRise 0.9s var(--motion-ease) both;
}

.hero h1 {
  animation-delay: 0.08s;
}

.hero-sub {
  animation-delay: 0.16s;
}

.hero-actions {
  animation-delay: 0.24s;
}

.hero-proof {
  animation-delay: 0.34s;
}

.hero-proof div {
  transition:
    transform 0.32s var(--motion-ease),
    background 0.32s var(--motion-ease),
    border-color 0.32s var(--motion-ease);
}

.hero-proof div:hover {
  transform: translateY(-4px);
  background: rgba(17, 23, 67, 0.86);
  border-top-color: var(--logo-gold-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition:
    opacity 0.7s var(--motion-ease),
    transform 0.7s var(--motion-ease);
  will-change: opacity, transform;
}

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

.srv-card,
.product-card,
.val-card,
.cap-item,
.country,
.client-pill {
  transition:
    transform 0.35s var(--motion-ease),
    box-shadow 0.35s var(--motion-ease),
    border-color 0.35s var(--motion-ease),
    background 0.35s var(--motion-ease);
}

.srv-card:hover,
.product-card:hover,
.val-card:hover,
.cap-item:hover,
.country:hover {
  transform: translateY(-7px);
}

.srv-img,
.gallery-cell img,
.fullbleed-img,
.split-img img,
.presence-hero-img,
.contact-left-img {
  transition:
    transform 1.05s var(--motion-ease),
    filter 0.45s var(--motion-ease);
  will-change: transform;
}

.srv-card:hover .srv-img,
.gallery-cell:hover img,
.fullbleed:hover .fullbleed-img,
.split-img:hover img,
.presence-hero:hover .presence-hero-img,
.contact-left:hover .contact-left-img {
  transform: scale(1.035);
}

.gallery-label,
.footer-links a,
.footer-contact a {
  transition:
    color 0.25s var(--motion-ease),
    transform 0.25s var(--motion-ease);
}

.footer-topline {
  background-size: 220% 100%;
  animation: footerGlow 9s linear infinite;
}

.footer-heading::after {
  transform-origin: left;
  transition: transform 0.3s var(--motion-ease);
}

.footer-column:hover .footer-heading::after {
  transform: scaleX(1.8);
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.01) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.055) translate3d(-1.2%, -0.6%, 0);
  }
}

@keyframes footerGlow {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 220% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .scroll-progress {
    transition: none;
  }
}

/* ── SEO FAQ DROPDOWNS ── */
.faq-section {
  position: relative;
  background:
    radial-gradient(
      circle at 12% 0%,
      rgba(231, 154, 22, 0.12),
      transparent 28rem
    ),
    linear-gradient(
      180deg,
      rgba(255, 253, 248, 0.98),
      rgba(246, 242, 234, 0.98)
    );
}

.faq-grid {
  display: grid;
  gap: 14px;
  max-width: 980px;
  margin-top: 44px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(17, 23, 67, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: var(--premium-shadow-soft);
  transition:
    border-color 0.3s var(--motion-ease),
    box-shadow 0.3s var(--motion-ease),
    transform 0.3s var(--motion-ease);
}

.faq-item:hover,
.faq-item[open] {
  border-color: rgba(231, 154, 22, 0.48);
  box-shadow: 0 22px 58px rgba(17, 23, 67, 0.13);
}

.faq-item[open] {
  transform: translateY(-2px);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 70px;
  padding: 22px 28px;
  color: var(--logo-navy);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--logo-gold), var(--logo-gold-soft));
  color: var(--logo-navy);
  font-size: 22px;
  line-height: 1;
  transition:
    transform 0.24s var(--motion-ease),
    background 0.24s var(--motion-ease),
    color 0.24s var(--motion-ease);
}

.faq-item[open] summary::after {
  content: "–";
  transform: rotate(180deg);
  background: linear-gradient(135deg, var(--logo-red), #ff545d);
  color: var(--white);
}

.faq-item p {
  margin: 0;
  padding: 0 28px 26px;
  max-width: 820px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

@media (max-width: 640px) {
  .faq-grid {
    margin-top: 30px;
  }

  .faq-item summary {
    min-height: 64px;
    padding: 18px 18px;
    font-size: 15px;
  }

  .faq-item summary::after {
    width: 30px;
    height: 30px;
  }

  .faq-item p {
    padding: 0 18px 22px;
    font-size: 14px;
  }
}

/* ── CORPORATE CONTACT FORM ── */
#contact {
  background:
    linear-gradient(90deg, rgba(17, 23, 67, 0.98), rgba(17, 23, 67, 0.9)),
    var(--logo-navy);
}

.contact-right {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      rgba(255, 253, 248, 0.98),
      rgba(246, 242, 234, 0.98)
    ),
    radial-gradient(
      circle at 88% 8%,
      rgba(35, 151, 183, 0.12),
      transparent 22rem
    );
}

.contact-right::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--logo-gold),
    var(--logo-red),
    var(--logo-blue)
  );
}

.contact-form-panel {
  position: relative;
  width: min(100%, 760px);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(17, 23, 67, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 28px 80px rgba(17, 23, 67, 0.14);
}

.contact-form-panel::before {
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-top: 2px solid rgba(231, 154, 22, 0.5);
  border-right: 2px solid rgba(231, 154, 22, 0.5);
  pointer-events: none;
}

.contact-form-title {
  max-width: 560px;
  margin: 14px 0 12px;
  color: var(--logo-navy);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 600;
  line-height: 1.02;
}

.contact-form-copy {
  max-width: 590px;
  margin: 0 0 30px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.contact-form .form-row {
  gap: 18px;
}

.contact-form .form-field {
  margin-bottom: 18px;
}

.contact-form .form-label {
  margin-bottom: 9px;
  color: rgba(17, 23, 67, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.contact-form .form-input,
.contact-form .form-select,
.contact-form .form-textarea {
  min-height: 54px;
  border: 1px solid rgba(17, 23, 67, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--logo-navy);
  font-size: 15px;
  font-weight: 500;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 28px rgba(17, 23, 67, 0.04);
}

.contact-form .form-input::placeholder,
.contact-form .form-textarea::placeholder {
  color: rgba(17, 23, 67, 0.38);
}

.contact-form .form-input:hover,
.contact-form .form-select:hover,
.contact-form .form-textarea:hover {
  border-color: rgba(35, 151, 183, 0.42);
}

.contact-form .form-input:focus,
.contact-form .form-select:focus,
.contact-form .form-textarea:focus {
  border-color: var(--logo-blue);
  background: #fff;
  box-shadow:
    0 0 0 4px rgba(35, 151, 183, 0.13),
    0 18px 34px rgba(17, 23, 67, 0.08);
}

.contact-form .form-select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--logo-navy) 50%),
    linear-gradient(135deg, var(--logo-navy) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 14px) 50%;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
  padding-right: 46px;
}

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

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 6px;
}

.contact-form .contact-submit {
  min-width: 190px;
  border: 0;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(231, 154, 22, 0.24);
}

.contact-form .contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(231, 154, 22, 0.3);
}

.form-note,
.form-status {
  color: rgba(17, 23, 67, 0.58);
  font-size: 13px;
  line-height: 1.55;
}

.form-note {
  margin: 0;
  max-width: 230px;
}

.form-status {
  min-height: 20px;
  margin: 16px 0 0;
  color: var(--logo-blue);
  font-weight: 700;
}

@media (max-width: 900px) {
  .contact-form-panel {
    padding: 28px 20px;
  }

  .contact-form-panel::before {
    display: none;
  }

  .contact-form .form-row,
  .form-actions {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .contact-form .contact-submit {
    width: 100%;
  }

  .form-note {
    max-width: none;
  }
}

/* ── EXECUTIVE CORPORATE POLISH ── */
:root {
  --executive-navy: #111743;
  --executive-ink: #151a2f;
  --executive-gold: #e79a16;
  --executive-red: #e71d2d;
  --executive-blue: #2397b7;
  --executive-paper: #fffdf8;
  --executive-mist: #f5f1e8;
  --executive-line: rgba(17, 23, 67, 0.12);
}

body {
  color: var(--executive-ink);
  background: var(--executive-paper);
  letter-spacing: 0;
}

body * {
  letter-spacing: 0;
}

nav {
  height: 76px;
  padding: 0 clamp(18px, 5vw, 72px);
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid rgba(17, 23, 67, 0.09);
  box-shadow: 0 18px 58px rgba(17, 23, 67, 0.09);
}

nav.bg {
  background: rgba(255, 253, 248, 0.98);
}

.nav-brand-logo {
  width: 154px;
  max-height: 52px;
}

.nav-center {
  gap: 4px;
}

.nav-center a {
  padding: 11px 12px;
  border-radius: 999px;
  color: rgba(17, 23, 67, 0.64);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.nav-center a:hover,
.nav-center a.active {
  background: rgba(231, 154, 22, 0.1);
  color: var(--executive-navy);
}

.nav-cta,
.btn-solid,
.footer-cta,
.footer-band-link {
  border-radius: 6px;
  background: linear-gradient(135deg, var(--executive-gold), #f4bd4b);
  color: var(--executive-navy);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: 0 18px 42px rgba(231, 154, 22, 0.24);
}

.btn-ghost {
  border-radius: 6px;
  color: var(--executive-paper);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.nav-cta:hover,
.btn-solid:hover,
.footer-cta:hover,
.footer-band-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 58px rgba(231, 154, 22, 0.32);
}

.hero {
  min-height: 100svh;
  background: var(--executive-navy);
}

.hero-bg {
  background-position: center 34%;
  filter: brightness(0.72) saturate(0.86) contrast(1.08);
}

.hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(17, 23, 67, 0.98) 0%,
      rgba(17, 23, 67, 0.92) 44%,
      rgba(17, 23, 67, 0.56) 72%,
      rgba(17, 23, 67, 0.38) 100%
    ),
    linear-gradient(0deg, rgba(17, 23, 67, 0.9) 0%, rgba(17, 23, 67, 0) 42%);
}

.hero-content {
  width: min(100%, 940px);
  padding-top: 116px;
  padding-bottom: 50px;
}

.hero-eyebrow,
.sec-tag,
.fullbleed-tag,
.product-category,
.srv-meta,
.ci-label,
.footer-heading {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.hero-eyebrow {
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(231, 154, 22, 0.34);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.08);
  color: rgba(255, 253, 248, 0.86);
  font-size: 13px;
}

.hero-eyebrow::before {
  display: none;
}

.hero h1 {
  max-width: 860px;
  color: var(--executive-paper);
  font-family: "Barlow", Arial, sans-serif;
  font-size: clamp(42px, 4.7rem, 76px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.hero-sub {
  max-width: 680px;
  color: rgba(255, 253, 248, 0.76);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0;
}

.hero-proof {
  max-width: 760px;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.08);
  backdrop-filter: blur(16px);
}

.hero-proof div {
  min-height: 104px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 253, 248, 0.06);
  color: rgba(255, 253, 248, 0.7);
  font-size: 13px;
}

.hero-proof span {
  color: var(--executive-paper);
  font-family: "Barlow", Arial, sans-serif;
  font-size: 34px;
  font-weight: 800;
}

.hero-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 740px;
  margin-top: 18px;
}

.hero-credentials span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: 999px;
  color: rgba(255, 253, 248, 0.72);
  background: rgba(255, 253, 248, 0.06);
  font-size: 12px;
  font-weight: 700;
}

.sec,
.srv-header,
.split-content {
  padding-top: clamp(72px, 7vw, 112px);
  padding-bottom: clamp(72px, 7vw, 112px);
}

.sec-title,
.fullbleed-title,
.contact-form-title {
  color: var(--executive-navy);
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0;
}

.fullbleed-title,
.presence-hero-overlay .sec-title,
.contact-left-overlay .sec-title {
  color: var(--executive-paper);
}

.sec-tag,
.fullbleed-tag {
  color: var(--executive-gold);
  font-size: 13px;
}

.fullbleed-img,
.split-img img,
.presence-hero-img,
.gallery-cell img,
.contact-left-img,
.srv-img {
  filter: brightness(0.86) saturate(0.84) contrast(1.04);
}

#services {
  background:
    linear-gradient(180deg, #fffdf8 0%, #f6f2ea 100%), var(--executive-paper);
}

.srv-header {
  align-items: end;
  gap: 28px;
}

.services-intro {
  max-width: 520px;
  color: rgba(17, 23, 67, 0.64);
  font-size: 16px;
  line-height: 1.75;
}

.srv-scroll-wrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  overflow: visible;
}

.srv-card {
  min-width: 0;
  min-height: 520px;
  border: 1px solid rgba(17, 23, 67, 0.1);
  border-radius: 8px;
  background: var(--executive-paper);
  box-shadow: 0 22px 58px rgba(17, 23, 67, 0.08);
}

.srv-img {
  height: 210px;
}

.srv-img::after {
  background:
    linear-gradient(180deg, rgba(17, 23, 67, 0) 0%, rgba(17, 23, 67, 0.5) 100%),
    linear-gradient(90deg, rgba(231, 154, 22, 0.18), transparent);
}

.srv-body {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 28px;
}

.srv-num {
  color: rgba(17, 23, 67, 0.36);
  font-size: 13px;
  font-weight: 800;
}

.srv-name {
  color: var(--executive-navy);
  font-family: "Barlow", Arial, sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.srv-desc {
  margin-bottom: 20px;
  color: rgba(17, 23, 67, 0.62);
  font-size: 15px;
  line-height: 1.68;
}

.srv-meta {
  width: fit-content;
  margin-top: auto;
  padding: 7px 10px;
  border: 1px solid rgba(35, 151, 183, 0.22);
  border-radius: 999px;
  color: var(--executive-blue);
  background: rgba(35, 151, 183, 0.08);
  font-size: 12px;
}

.srv-arrow {
  position: absolute;
  right: 24px;
  bottom: 24px;
  border-color: rgba(17, 23, 67, 0.12);
  color: var(--executive-navy);
  background: rgba(17, 23, 67, 0.04);
}

.val-card,
.cap-item,
.product-card,
.faq-item,
.client-pill {
  border-radius: 8px;
  border-color: rgba(17, 23, 67, 0.1);
  box-shadow: 0 18px 48px rgba(17, 23, 67, 0.06);
}

.product-card {
  min-height: 220px;
  background: linear-gradient(180deg, #fffdf8, #f8f4ec);
}

.product-name,
.cap-name,
.val-name {
  color: var(--executive-navy);
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

.product-desc,
.cap-desc,
.val-desc {
  color: rgba(17, 23, 67, 0.62);
}

.contact-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -12px 0 28px;
}

.contact-assurance span {
  padding: 8px 11px;
  border: 1px solid rgba(17, 23, 67, 0.12);
  border-radius: 999px;
  color: rgba(17, 23, 67, 0.68);
  background: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 700;
}

footer {
  background:
    linear-gradient(180deg, #111743 0%, #090d27 100%), var(--executive-navy);
}

.footer-cta-band {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto 34px;
  padding: 26px 28px;
  border: 1px solid rgba(255, 253, 248, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 253, 248, 0.08),
      rgba(255, 253, 248, 0.03)
    ),
    rgba(255, 253, 248, 0.04);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}

.footer-cta-band span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 253, 248, 0.58);
  font-size: 13px;
  font-weight: 700;
}

.footer-cta-band strong {
  display: block;
  color: var(--executive-paper);
  font-size: 24px;
  line-height: 1.2;
}

.footer-band-link {
  flex: 0 0 auto;
  padding: 13px 18px;
  text-decoration: none;
}

@media (max-width: 1080px) {
  .srv-scroll-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  nav {
    height: 68px;
  }

  .nav-brand-logo {
    width: 128px;
  }

  .hero-content {
    padding-top: 104px;
  }

  .hero h1 {
    font-size: clamp(34px, 2.55rem, 42px);
    line-height: 1.06;
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof div {
    min-height: 78px;
  }

  .srv-scroll-wrap {
    grid-template-columns: 1fr;
    padding-left: 22px;
    padding-right: 22px;
  }

  .srv-card {
    min-height: 0;
  }

  .srv-body {
    min-height: 280px;
  }

  .footer-cta-band {
    display: grid;
    width: calc(100% - 36px);
    padding: 22px;
  }

  .footer-band-link {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .hero-credentials {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-credentials span {
    text-align: center;
  }

  .footer-cta-band strong {
    font-size: 20px;
  }
}
