/* ============================================
   IMPERIUM MARITIME — FULL DESIGN SYSTEM v2
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Manrope:wght@200;300;400;500;600;700;800&display=swap');

/* ====== TOKENS ====== */
:root {
  --bg: #07111C;
  --bg2: #0D1A27;
  --bg3: #0A1520;
  --gold: #C9A34A;
  --gold-light: #E0C477;
  --warm-white: #F4F1EA;
  --white: #FFFFFF;
  --silver: #B7BEC7;
  --dark: #111820;
  --muted: rgba(183, 190, 199, 0.55);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Manrope', -apple-system, sans-serif;

  --margin: clamp(1.5rem, 5vw, 5rem);
  --sec-gap: clamp(6rem, 12vw, 14rem);
  --sec-sm: clamp(4rem, 8vw, 9rem);

  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-circ: cubic-bezier(0.85, 0, 0.15, 1);

  --disp: clamp(4rem, 9vw, 11rem);
  --h1: clamp(3rem, 7vw, 8.5rem);
  --h2: clamp(2.5rem, 5.5vw, 6.5rem);
  --h3: clamp(2rem, 4vw, 4.5rem);
  --h4: clamp(1.5rem, 2.5vw, 2.75rem);
  --h5: clamp(1.125rem, 1.5vw, 1.5rem);
  --body: clamp(0.9375rem, 1vw, 1.0625rem);
  --sm: clamp(0.75rem, 0.875vw, 0.875rem);
  --lbl: clamp(0.6875rem, 0.75vw, 0.8125rem);
}

/* ====== RESET ====== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background: var(--bg);
  scroll-behavior: auto;
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

body {
  font-family: var(--sans);
  font-size: var(--body);
  color: var(--warm-white);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

ul,
ol {
  list-style: none;
}

/* ====== ACCESSIBILITY ====== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ====== LAYOUT ====== */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--margin);
}

/* ====== SPLIT TEXT ====== */
.split-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.split-word-inner {
  display: inline-block;
}

/* ============================================
   PAGE TRANSITION GRID  (48 columns like ref)
   ============================================ */
.page-transition-grid {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(6, 1fr);
  pointer-events: auto;
}

.tr-block {
  background: var(--bg);
  transform-origin: top center;
}

/* ====== LOADER ====== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: opacity 0.5s var(--ease-expo), visibility 0.5s;
}

.loader--gone {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  width: min(280px, 60vw);
  animation: loaderIn 1.0s var(--ease-expo) 0.3s both;
}

.loader-line {
  width: 0;
  height: 1px;
  background: var(--gold);
  animation: lineGrow 0.8s var(--ease-expo) 1.1s forwards;
}

@keyframes loaderIn {
  from {
    opacity: 0;
    transform: scale(0.94);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes lineGrow {
  from {
    width: 0;
  }

  to {
    width: min(280px, 60vw);
  }
}

/* ====== SCROLL PROGRESS ====== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 9990;
  pointer-events: none;
}

.scroll-progress-bar {
  height: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
}

/* ====== CURSOR ====== */
.cur-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9989;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

.cur-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 163, 74, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9988;
  transform: translate(-50%, -50%);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem var(--margin);
  transition: padding 0.6s var(--ease-expo), background 0.6s, backdrop-filter 0.6s;
}

.nav--scrolled {
  padding: 1rem var(--margin);
  background: rgba(7, 17, 28, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 163, 74, 0.08);
}

.nav-logo {
  height: 75px;
  width: auto;
  object-fit: contain;
  transition: height 0.6s var(--ease-expo);
}

.nav--scrolled .nav-logo {
  height: 56px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-cta-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: var(--lbl);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 163, 74, 0.35);
  padding: 0.6rem 1.2rem;
  transition: all 0.4s var(--ease-expo);
}

.nav-cta-btn:hover {
  background: var(--gold);
  color: var(--dark);
}

.menu-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--sans);
  font-size: var(--lbl);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-white);
  transition: color 0.3s;
}

.menu-btn:hover {
  color: var(--gold);
}

.menu-btn-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 26px;
}

.menu-btn-lines span {
  display: block;
  height: 1px;
  background: currentColor;
  transition: transform 0.45s var(--ease-expo), width 0.45s var(--ease-expo);
}

.menu-btn-lines span:nth-child(1) {
  width: 26px;
}

.menu-btn-lines span:nth-child(2) {
  width: 16px;
}

.menu-btn.is-open .menu-btn-lines span:nth-child(1) {
  transform: translateY(3px) rotate(45deg);
  width: 26px;
}

.menu-btn.is-open .menu-btn-lines span:nth-child(2) {
  transform: translateY(-3px) rotate(-45deg);
  width: 26px;
}

.menu-btn-label {
  display: none;
}

@media (min-width: 768px) {
  .menu-btn-label {
    display: inline;
  }
}

/* ============================================
   FULLSCREEN MENU  (Aquamare-style)
   ============================================ */
.fs-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg2);
  transform: translateY(-100%);
  transition: transform 1s var(--ease-circ);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.fs-menu--open {
  transform: translateY(0);
}

.fs-menu-inner {
  width: 100%;
  margin: auto 0;
  padding: 10rem var(--margin) 4rem;
  display: flex;
  flex-direction: column;
}

/* Gold line that expands on open */
.fs-menu-gold-line {
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.9s var(--ease-expo) 0.3s;
}

.fs-menu--open .fs-menu-gold-line {
  width: 100%;
}

.fs-menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 3rem;
}

.fs-menu-item {
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Aquamare text-shadow slide trick on menu links */
.fs-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  overflow: hidden;
  position: relative;
}

.fs-menu-link-text,
.fs-menu-link-shadow {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  transition: transform 0.4s var(--ease-expo) 0.15s;
  display: block;
}

.fs-menu-link-text {
  color: var(--warm-white);
  transform: translateY(0);
}

.fs-menu-link-shadow {
  position: absolute;
  left: 0;
  color: var(--gold);
  transform: translateY(calc(100% + 1.1rem));
}

.fs-menu-link:hover .fs-menu-link-text {
  transform: translateY(calc(-100% - 1.1rem));
}

.fs-menu-link:hover .fs-menu-link-shadow {
  transform: translateY(0%);
}

/* Staggered reveal on menu open */
.fs-menu-item {
  transform: translateY(60px);
  opacity: 0;
  transition: transform 0.8s var(--ease-expo), opacity 0.8s var(--ease-expo);
}

.fs-menu--open .fs-menu-item {
  transform: translateY(0);
  opacity: 1;
}

.fs-menu--open .fs-menu-item:nth-child(1) {
  transition-delay: 0.15s;
}

.fs-menu--open .fs-menu-item:nth-child(2) {
  transition-delay: 0.22s;
}

.fs-menu--open .fs-menu-item:nth-child(3) {
  transition-delay: 0.29s;
}

.fs-menu--open .fs-menu-item:nth-child(4) {
  transition-delay: 0.36s;
}

.fs-menu--open .fs-menu-item:nth-child(5) {
  transition-delay: 0.43s;
}

.fs-menu--open .fs-menu-item:nth-child(6) {
  transition-delay: 0.50s;
}

.fs-menu-arrow {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 163, 74, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-expo), border-color 0.3s, background 0.3s;
  color: var(--gold);
}

.fs-menu-link:hover .fs-menu-arrow {
  transform: rotate(-45deg);
  border-color: var(--gold);
  background: var(--gold);
  color: var(--dark);
}

.fs-menu-bottom {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s var(--ease-expo) 0.65s, transform 0.6s var(--ease-expo) 0.65s;
}

.fs-menu--open .fs-menu-bottom {
  opacity: 1;
  transform: translateY(0);
}

.fs-menu-util {
  font-family: var(--sans);
  font-size: var(--lbl);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
  transition: color 0.3s;
}

.fs-menu-util:hover {
  color: var(--gold);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-img,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 17, 28, 0.85) 0%, rgba(7, 17, 28, 0.35) 45%, rgba(7, 17, 28, 0.2) 70%, rgba(2, 2, 2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--margin) 0;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-top-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1.5rem;
  width: 100%;
}

/* label */
.hero-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  overflow: hidden;
}

.hero-label-bar {
  display: inline-block;
  width: 0;
  height: 1px;
  background: var(--gold);
  animation: barExpand 0.6s var(--ease-expo) 1.7s forwards;
}

.hero-label-text {
  font-family: var(--sans);
  font-size: var(--lbl);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  transform: translateY(110%);
  display: inline-block;
  animation: slideUp 0.8s var(--ease-expo) 1.8s forwards;
}

@keyframes barExpand {
  to {
    width: 40px;
  }
}

@keyframes slideUp {
  to {
    transform: translateY(0);
  }
}

.hero-headline-wrap {
  position: relative;
  width: 100%;
}

.hero-editorial-note {
  position: absolute;
  right: 0;
  top: 12%;
  z-index: 3;
  font-family: var(--sans);
  font-size: clamp(0.8125rem, 0.95vw, 0.9375rem);
  font-weight: 400;
  color: rgba(244, 241, 234, 0.9);
  line-height: 1.6;
  text-align: right;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-expo) 2.2s forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* Headline — Massive Reference-Style BEYOND BORDERS flush to bottom */
.hero-h1--grotesk {
  font-family: var(--sans);
  font-size: clamp(4.5rem, 14vw, 16.5rem);
  font-weight: 800;
  line-height: 0.84;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0;
  padding-bottom: 0;
  width: 100%;
}

.hero-line {
  display: block;
  overflow: hidden;
}

.hero-line-inner {
  display: block;
  transform: translateY(110%);
}

.hero-line:nth-child(1) .hero-line-inner {
  animation: slideUp 1.1s var(--ease-expo) 1.9s forwards;
}

.hero-line:nth-child(2) .hero-line-inner {
  animation: slideUp 1.1s var(--ease-expo) 2.05s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: var(--margin);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 0.8s ease 2.8s forwards;
}

.hero-scroll-label {
  writing-mode: vertical-rl;
  font-family: var(--sans);
  font-size: var(--lbl);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite 3.2s;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 1;
    transform: scaleY(1)
  }

  50% {
    opacity: 0.35;
    transform: scaleY(0.5)
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* ============================================
   SHEET MARQUEE (Live Updates)
   ============================================ */
.sheet-marquee {
  background: var(--gold);
  color: var(--dark);
  overflow: hidden;
  display: flex;
  align-items: stretch;
  position: relative;
  z-index: 5;
  height: 46px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}

.sheet-marquee-fixed-badge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #060e17;
  color: var(--warm-white);
  padding: 0 1.5rem;
  white-space: nowrap;
  flex-shrink: 0;
  z-index: 2;
  border-right: 2px solid rgba(197, 160, 89, 0.7);
  box-shadow: 4px 0 16px rgba(0, 0, 0, 0.35);
}

.sheet-marquee-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e53e3e;
  box-shadow: 0 0 0 0 rgba(229, 62, 62, 0.7);
  animation: liveBeacon 1.8s infinite;
  flex-shrink: 0;
}

@keyframes liveBeacon {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(229, 62, 62, 0.8);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 7px rgba(229, 62, 62, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(229, 62, 62, 0);
  }
}

.sheet-marquee-live-text {
  font-family: var(--sans);
  font-size: var(--lbl);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f4f1ea;
}

.sheet-marquee-content-wrap {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 1.5%, black 98.5%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent, black 1.5%, black 98.5%, transparent 100%);
}

.sheet-marquee-content-wrap:hover .sheet-marquee-track {
  animation-play-state: paused;
}

.sheet-marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: marquee-scroll 32s linear infinite;
  will-change: transform;
}

.sheet-marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.sheet-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0 1.75rem;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.sheet-marquee-bullet {
  color: #07111c;
  opacity: 0.4;
  font-size: 0.75rem;
}

.sheet-marquee-value {
  color: var(--dark);
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .sheet-marquee {
    height: 40px;
  }
  .sheet-marquee-fixed-badge {
    padding: 0 0.85rem;
    gap: 0.4rem;
  }
  .sheet-marquee-live-text {
    font-size: 0.6875rem;
  }
  .sheet-marquee-item {
    font-size: 0.75rem;
    padding: 0 1rem;
    gap: 0.75rem;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--sans);
  font-size: var(--lbl);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 1.75rem;
  transition: all 0.5s var(--ease-expo);
  cursor: pointer;
  white-space: nowrap;
}

.btn svg {
  transition: transform 0.4s var(--ease-expo);
}

.btn:hover svg {
  transform: translateX(5px);
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border: 1px solid var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--warm-white);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-ghost-light {
  background: transparent;
  color: var(--warm-white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-ghost-light:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ============================================
   SECTION LABEL
   ============================================ */
.sec-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--sans);
  font-size: var(--lbl);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.sec-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.sec-label--center {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.sec-label--center::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.sec-label--dark {
  color: var(--gold) !important;
}

/* ============================================
   INTRODUCTION
   ============================================ */
.intro-sec {
  background: var(--warm-white);
  color: var(--dark);
  padding: var(--sec-gap) var(--margin);
  position: relative;
  z-index: 2;
  text-align: center;
}

.intro-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.intro-gold-line {
  width: 160px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 2.5rem;
  transform-origin: center;
  transform: scaleX(0);
}

.intro-stack-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.intro-h2 {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6.5vw, 7.25rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--dark);
  text-align: center;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto 3rem;
  overflow: hidden;
}

.intro-body {
  font-family: var(--sans);
  font-size: var(--body);
  font-weight: 400;
  line-height: 1.9;
  color: #3a4a5a;
  text-align: center;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

/* ============================================
   OCEAN EDITORIAL
   ============================================ */
.ocean-sec {
  background: var(--bg);
  padding: var(--sec-gap) var(--margin);
  position: relative;
  z-index: 2;
}

.ocean-phrase {
  font-family: var(--serif);
  font-size: var(--disp);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--warm-white);
  margin-bottom: clamp(1rem, 3vw, 3rem);
  will-change: opacity, transform;
}

.ocean-phrase em {
  font-style: italic;
  color: var(--gold);
}

/* ============================================
   SERVICES
   ============================================ */
.svc-sec {
  background: var(--warm-white);
  color: var(--dark);
  padding: var(--sec-gap) 0;
  position: relative;
}

.svc-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(3rem, 5vw, 5.5rem);
  align-items: stretch;
}

.svc-left {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.svc-img-wrap {
  flex: 1;
  width: 100%;
  min-height: 520px;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 20px 50px rgba(17, 24, 32, 0.08);
}

.svc-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: inset(0 0% 0 0);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.svc-img--active {
  opacity: 1;
}

/* Service list */
.svc-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem 0;
}

.svc-item {
  display: grid;
  grid-template-columns: 3rem 1fr 2.5rem;
  gap: 1.5rem;
  align-items: center;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(17, 24, 32, 0.1);
  cursor: pointer;
  position: relative;
  transition: padding-left 0.4s var(--ease-expo);
}

.svc-item:hover {
  padding-left: 0.5rem;
}

.svc-underline {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.5s var(--ease-expo);
}

.svc-item:hover .svc-underline,
.svc-item--active .svc-underline {
  width: 100%;
}

.svc-num {
  font-family: var(--serif);
  font-size: var(--h5);
  font-weight: 300;
  color: rgba(201, 163, 74, 0.7);
}

.svc-title {
  font-family: var(--serif);
  font-size: var(--h4);
  font-weight: 500;
  color: var(--dark);
  transition: color 0.3s;
  line-height: 1.2;
}

.svc-item:hover .svc-title,
.svc-item--active .svc-title {
  color: var(--gold);
}

.svc-sub {
  font-family: var(--sans);
  font-size: var(--lbl);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8a9aa8;
  margin-top: 0.2rem;
}

.svc-arrow {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(17, 24, 32, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease-expo), border-color 0.3s, background 0.3s;
}

.svc-item:hover .svc-arrow {
  transform: rotate(-45deg);
  border-color: var(--gold);
  background: var(--gold);
  color: var(--dark);
}

/* ============================================
   CARD STACK  (pinned scroll stacking - full width)
   ============================================ */
.stack-sec {
  position: relative;
  background: var(--bg);
  width: 100%;
  overflow: hidden;
}

.stack-pin-wrap {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.stack-cards {
  position: relative;
  width: 100vw;
  height: 100vh;
}

.stack-card {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  overflow: hidden;
  border-top: 1px solid rgba(201, 163, 74, 0.25);
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.5);
  will-change: transform, opacity;
}

.stack-card:nth-child(1) {
  z-index: 1;
  border-top: none;
}

.stack-card:nth-child(2) {
  z-index: 2;
}

.stack-card:nth-child(3) {
  z-index: 3;
}

.stack-card:nth-child(4) {
  z-index: 4;
}

.stack-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.stack-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.stack-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(7, 17, 28, 0.5) 0%, transparent 70%);
}

.stack-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 9rem);
  position: relative;
}

.stack-card-step {
  font-family: var(--serif);
  font-size: clamp(6rem, 12vw, 14rem);
  font-weight: 300;
  color: rgba(201, 163, 74, 0.12);
  line-height: 0.9;
  margin-bottom: -0.5rem;
  letter-spacing: -0.04em;
}

.stack-card-title {
  font-family: var(--serif);
  font-size: var(--h2);
  font-weight: 400;
  color: var(--warm-white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.stack-card-gold-line {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 2rem;
}

.stack-card-body {
  font-family: var(--sans);
  font-size: var(--body);
  font-weight: 300;
  color: var(--silver);
  line-height: 1.85;
  max-width: 480px;
}

.stack-card-count {
  position: absolute;
  bottom: clamp(2rem, 4vw, 4rem);
  right: clamp(2rem, 5vw, 6rem);
  font-family: var(--sans);
  font-size: var(--lbl);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================
   STATISTICS
   ============================================ */
.stats-sec {
  background: var(--bg2);
  padding: var(--sec-sm) 0;
  border-top: 1px solid rgba(201, 163, 74, 0.12);
  border-bottom: 1px solid rgba(201, 163, 74, 0.12);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
}

.stat-item+.stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(201, 163, 74, 0.15);
}

.stat-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.25rem;
  transform-origin: left;
  transform: scaleX(0);
}

.stat-val {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5.5vw, 6rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-lbl {
  font-family: var(--sans);
  font-size: var(--lbl);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 0.75rem;
  display: block;
}

/* ============================================
   GLOBAL REACH
   ============================================ */
.reach-sec {
  background: var(--bg);
  padding: var(--sec-gap) 0;
  position: relative;
  z-index: 2;
}

.reach-h2 {
  font-family: var(--serif);
  font-size: var(--h1);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--warm-white);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.reach-sub {
  font-family: var(--sans);
  font-size: var(--body);
  font-weight: 300;
  color: var(--silver);
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 3rem;
}

.reach-map-wrap {
  overflow: hidden;
  margin-bottom: 2rem;
}

.reach-map {
  width: 100%;
  height: auto;
}

.reach-regions {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(201, 163, 74, 0.1);
}

.reach-region {
  background: var(--bg);
  padding: 1.25rem 1rem;
  text-align: center;
  font-family: var(--sans);
  font-size: var(--lbl);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}

.reach-region:hover {
  color: var(--gold);
}

.reach-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: dotPulse 2.5s ease-in-out infinite;
}

@keyframes dotPulse {

  0%,
  100% {
    box-shadow: 0 0 6px rgba(201, 163, 74, 0.4)
  }

  50% {
    box-shadow: 0 0 18px rgba(201, 163, 74, 0.8)
  }
}

/* ============================================
   CARGO HORIZONTAL CAROUSEL (ScrollTrigger)
   ============================================ */
.cargo-sec {
  background: var(--bg);
  overflow: hidden;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cargo-header {
  padding: var(--sec-sm) 0 2rem;
}

.cargo-h2 {
  font-family: var(--serif);
  font-size: var(--h2);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--warm-white);
  margin-bottom: 2rem;
  overflow: hidden;
}

.cargo-progress-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cargo-progress-track {
  width: 200px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.cargo-progress-fill {
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform-origin: left;
  transform: scaleX(0);
}

.cargo-scroll-wrap {
  padding-left: var(--margin);
  padding-bottom: clamp(3rem, 6vw, 6rem);
}

.cargo-track {
  display: flex;
  gap: 1.25rem;
  will-change: transform;
}

.cargo-card {
  flex-shrink: 0;
  width: clamp(260px, 28vw, 400px);
  position: relative;
  overflow: hidden;
  background: var(--bg2);
}

.cargo-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.8s var(--ease-expo);
}

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

.cargo-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 17, 28, 0.9) 30%, transparent 70%);
}

.cargo-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem;
}

.cargo-card-cat {
  font-family: var(--sans);
  font-size: var(--lbl);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.cargo-card-title {
  font-family: var(--serif);
  font-size: var(--h5);
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
}

.cargo-card-gold-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.5s var(--ease-expo);
}

.cargo-card:hover .cargo-card-gold-bar {
  width: 100%;
}

/* ============================================
   MOVEMENTS
   ============================================ */
.mv-sec {
  background: var(--bg);
  padding: var(--sec-gap) 0;
}

.mv-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.mv-h2 {
  font-family: var(--serif);
  font-size: var(--h2);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--warm-white);
  overflow: hidden;
}

.mv-sub {
  font-family: var(--sans);
  font-size: var(--body);
  font-weight: 300;
  color: var(--silver);
  max-width: 320px;
  text-align: right;
  line-height: 1.7;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.mv-card {
  position: relative;
  overflow: hidden;
  background: var(--bg2);
  cursor: pointer;
}

.mv-card-img-wrap {
  overflow: hidden;
}

.mv-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.8s var(--ease-expo);
}

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

.mv-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 17, 28, 0.92) 40%, rgba(7, 17, 28, 0.2) 100%);
}

.mv-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  transform: translateY(8px);
  transition: transform 0.5s var(--ease-expo);
}

.mv-card:hover .mv-card-content {
  transform: translateY(0);
}

.mv-card-type {
  font-family: var(--sans);
  font-size: var(--lbl);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.mv-card-title {
  font-family: var(--serif);
  font-size: var(--h5);
  font-weight: 500;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.mv-card-desc {
  font-family: var(--sans);
  font-size: var(--sm);
  font-weight: 300;
  color: var(--silver);
  line-height: 1.65;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s 0.1s, transform 0.4s 0.1s;
}

.mv-card:hover .mv-card-desc {
  opacity: 1;
  transform: translateY(0);
}

.mv-card-bar {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: width 0.5s var(--ease-expo);
}

.mv-card:hover .mv-card-bar {
  width: 100%;
}

/* ============================================
   WHY IMPERIUM
   ============================================ */
.why-sec {
  background: var(--warm-white);
  color: var(--dark);
  padding: var(--sec-gap) 0;
}

.why-h2 {
  font-family: var(--serif);
  font-size: var(--h1);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 4rem;
  max-width: 800px;
  overflow: hidden;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(17, 24, 32, 0.08);
}

.why-item {
  background: var(--warm-white);
  padding: 2.5rem 2rem;
  transition: background 0.4s;
  position: relative;
}

.why-item:hover {
  background: rgba(201, 163, 74, 0.04);
}

.why-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(201, 163, 74, 0.25);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.why-title {
  font-family: var(--serif);
  font-size: var(--h5);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.why-desc {
  font-family: var(--sans);
  font-size: var(--sm);
  color: #6a7a8a;
  line-height: 1.7;
}

.why-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transform-origin: left;
}

/* ============================================
   PROCESS
   ============================================ */
.proc-sec {
  background: var(--bg);
  padding: var(--sec-gap) 0;
}

.proc-h2 {
  font-family: var(--serif);
  font-size: var(--h2);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--warm-white);
  margin-bottom: 4rem;
  overflow: hidden;
}

.proc-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.04);
}

.proc-step {
  background: var(--bg);
  padding: 2.5rem 1.5rem;
  border-top: 2px solid transparent;
  transition: border-color 0.4s, background 0.4s;
}

.proc-step:hover {
  border-top-color: var(--gold);
  background: rgba(201, 163, 74, 0.03);
}

.proc-num {
  font-family: var(--sans);
  font-size: var(--lbl);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.proc-gold-line {
  width: 0;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.25rem;
  transform-origin: left;
}

.proc-title {
  font-family: var(--serif);
  font-size: var(--h5);
  font-weight: 500;
  color: var(--warm-white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.proc-desc {
  font-family: var(--sans);
  font-size: var(--sm);
  font-weight: 300;
  color: var(--silver);
  line-height: 1.7;
}

/* ============================================
   CTA
   ============================================ */
.cta-sec {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.cta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 17, 28, 0.88) 0%, rgba(7, 17, 28, 0.72) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--margin);
  max-width: 900px;
  margin: 0 auto;
}

.cta-h2 {
  font-family: var(--serif);
  font-size: var(--h2);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.cta-body {
  font-family: var(--sans);
  font-size: var(--body);
  font-weight: 300;
  color: var(--silver);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-sec {
  background: var(--bg2);
  padding: var(--sec-gap) 0;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: start;
}

.contact-h2 {
  font-family: var(--serif);
  font-size: var(--h2);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--warm-white);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.contact-sub {
  font-family: var(--sans);
  font-size: var(--body);
  font-weight: 300;
  color: var(--silver);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-detail-label {
  font-family: var(--sans);
  font-size: var(--lbl);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.contact-detail-val {
  font-family: var(--sans);
  font-size: var(--sm);
  font-weight: 300;
  color: var(--silver);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

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

.form-label {
  font-family: var(--sans);
  font-size: var(--lbl);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(183, 190, 199, 0.7);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--warm-white);
  font-family: var(--sans);
  font-size: var(--body);
  padding: 0.875rem 1rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 163, 74, 0.04);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(183, 190, 199, 0.3);
}

.form-select option {
  background: var(--bg);
}

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

.form-submit-btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg);
  border-top: 1px solid rgba(201, 163, 74, 0.1);
  padding: var(--sec-sm) 0 2rem;
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--margin);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo {
  width: 200px;
}

.footer-tagline {
  font-family: var(--sans);
  font-size: var(--sm);
  font-weight: 300;
  color: var(--silver);
  line-height: 1.7;
  max-width: 240px;
}

.footer-certs {
  display: flex;
  gap: 0.75rem;
}

.footer-cert {
  font-family: var(--sans);
  font-size: var(--lbl);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 163, 74, 0.3);
  padding: 0.3rem 0.7rem;
}

.footer-col-title {
  font-family: var(--sans);
  font-size: var(--lbl);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-family: var(--sans);
  font-size: var(--sm);
  font-weight: 400;
  color: var(--silver);
  transition: color 0.3s;
  position: relative;
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-expo);
}

.footer-link:hover {
  color: var(--gold);
}

.footer-link:hover::after {
  width: 100%;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-family: var(--sans);
  font-size: var(--lbl);
  font-weight: 400;
  color: rgba(183, 190, 199, 0.45);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .svc-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .svc-left {
    position: static;
  }

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

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

@media (max-width: 1024px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .intro-pillars {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .stack-card {
    grid-template-columns: 1fr;
  }

  .stack-card-img-wrap {
    height: 50vh;
  }
}

@media (max-width: 768px) {
  :root {
    --margin: 1.25rem;
    --sec-gap: 5rem;
  }

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

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

  .stat-item+.stat-item::before {
    display: none;
  }

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

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

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

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

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

  .mv-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .mv-sub {
    text-align: left;
    max-width: none;
  }

  .cur-dot,
  .cur-ring {
    display: none;
  }

  .hero-h1 {
    font-size: clamp(2.5rem, 9vw, 5rem);
  }

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

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

  .svc-item {
    grid-template-columns: 2.5rem 1fr;
  }

  .svc-arrow {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-btns-inner {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-btns {
    flex-direction: column;
    width: 100%;
  }

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

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

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

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  padding: 12rem 0 5rem;
  background: var(--bg);
}

.about-h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.about-h1 span {
  color: var(--gold);
  font-style: italic;
}

.about-lead {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  line-height: 1.5;
  color: var(--white);
  max-width: 900px;
  margin-bottom: 2rem;
}

.about-desc {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
}

.about-section {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--bg2);
}

.about-section--dark {
  background: var(--bg);
}

.about-h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 3rem;
  font-weight: 400;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 3rem;
}

.about-stat-val {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.about-stat-lbl {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
}

.about-why-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.about-why-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  transition: background 0.3s ease;
}

.about-why-card:hover {
  background: rgba(255, 255, 255, 0.05);
}

.about-why-num {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 1rem;
}

.about-why-title {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 500;
}

.about-why-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.about-mission-sec {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--bg2);
}

.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 900px) {
  .about-mission-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-mission-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
}

.about-mission-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-mission-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg2), transparent);
}

.about-mission-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.about-values-sec {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--bg);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.about-value-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 2rem;
  text-align: center;
  transition: transform 0.4s ease, background 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-value-card:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-5px);
}

.about-value-icon {
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
}

.about-value-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.about-value-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-hero {
  padding: 12rem 0 5rem;
  background: var(--bg);
}

.contact-h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.contact-h1 span {
  color: var(--gold);
  font-style: italic;
  padding-right: 0.1em;
}

.contact-lead {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  max-width: 900px;
  margin-bottom: 2rem;
}

.contact-main {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--bg2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
  }
}

.info-block {
  margin-bottom: 3rem;
}

.info-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 400;
}

.info-desc {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.info-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.info-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.info-link:hover {
  color: var(--warm-white);
}

.info-link:hover::after {
  width: 100%;
}

.form-title {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 2rem;
  font-weight: 400;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem;
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease, background 0.3s ease;
  outline: none;
}

.form-input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23C9A34A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  color: rgba(255, 255, 255, 0.6);
}

.form-select:focus,
.form-select:not(:invalid) {
  color: var(--white);
}

.form-select option {
  background: var(--bg);
  color: var(--white);
}

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

.form-submit {
  align-self: flex-start;
  margin-top: 1rem;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-hero {
  padding: 12rem 0 5rem;
  background: var(--bg);
}

.services-h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.services-h1 span {
  color: var(--gold);
  font-style: italic;
  padding-right: 0.1em;
}

.services-lead {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  max-width: 900px;
  margin-bottom: 2rem;
}

.services-main {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--bg2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.4s ease;
  overflow: hidden;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
}

.service-card-img-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg2), transparent);
}

.service-card-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-num {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 1rem;
}

.service-card-title {
  font-family: var(--serif);
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.service-card-sub {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.service-card-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-top: auto;
}

/* ============================================
   SOLUTIONS PAGE
   ============================================ */
.solutions-hero {
  padding: 12rem 0 5rem;
  background: var(--bg);
}

.solutions-h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.solutions-h1 span {
  color: var(--gold);
  font-style: italic;
  padding-right: 0.1em;
}

.solutions-lead {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  max-width: 900px;
  margin-bottom: 2rem;
}

.industries-sec {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--bg);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.industry-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  transition: transform 0.4s ease, background 0.4s ease;
  display: flex;
  flex-direction: column;
}

.industry-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
}

.industry-icon {
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.industry-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 400;
}

.industry-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.problems-sec {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--bg2);
}

.problems-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.problem-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-left: 3px solid var(--gold);
  transition: background 0.3s ease;
}

.problem-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.problem-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 400;
}

.problem-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.wa-float-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 990;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  outline: none;
}

.wa-float-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 2px 6px rgba(0, 0, 0, 0.4), inset 0 1px 1.5px rgba(255, 255, 255, 0.4);
  border: 1.5px solid rgba(201, 163, 74, 0.7);
  transition: transform 0.4s var(--ease-expo), box-shadow 0.4s var(--ease-expo), border-color 0.3s ease;
  position: relative;
  z-index: 2;
}

.wa-float-icon-wrap .wa-icon {
  width: 30px;
  height: 30px;
  fill: #ffffff;
  transition: transform 0.4s var(--ease-expo);
}

.wa-float-btn:hover .wa-float-icon-wrap {
  transform: scale(1.08) translateY(-2px);
  border-color: var(--gold-light);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55), 0 0 16px rgba(201, 163, 74, 0.5), inset 0 1px 2px rgba(255, 255, 255, 0.6);
}

.wa-float-btn:hover .wa-icon {
  transform: scale(1.06);
}

.wa-float-btn:active .wa-float-icon-wrap {
  transform: scale(0.95) translateY(0);
}

/* Subtle maritime radar pulse animation */
.wa-float-pulse {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.75);
  pointer-events: none;
  z-index: 1;
  animation: waRadarPulse 2.8s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

@keyframes waRadarPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.9;
  }
  70% {
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Floating tooltip badge */
.wa-float-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  background: rgba(7, 17, 28, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 163, 74, 0.35);
  color: var(--warm-white);
  padding: 8px 14px;
  border-radius: 40px;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateX(8px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.35s var(--ease-expo), transform 0.35s var(--ease-expo), border-color 0.3s ease;
  z-index: 1;
}

.wa-tooltip-status {
  width: 7px;
  height: 7px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 0 6px #25D366;
}

.wa-float-btn:hover .wa-float-tooltip {
  opacity: 1;
  transform: translateX(0) scale(1);
  border-color: rgba(201, 163, 74, 0.6);
}

@media (max-width: 768px) {
  .wa-float-btn {
    bottom: 22px;
    right: 20px;
  }
  .wa-float-icon-wrap {
    width: 52px;
    height: 52px;
  }
  .wa-float-icon-wrap .wa-icon {
    width: 26px;
    height: 26px;
  }
  .wa-float-tooltip {
    display: none;
  }
}

/* ============================================
   FORM FEEDBACK & SUBMISSION STATES
   ============================================ */
/* Honeypot Spam Trap */
.form-trap {
  display: none !important;
  visibility: hidden !important;
  position: absolute !important;
  left: -9999px !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Feedback Alert Container */
.form-feedback {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 0.9375rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  animation: feedbackSlideIn 0.35s var(--ease-expo) forwards;
}

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

.form-feedback--success {
  background: rgba(13, 38, 25, 0.85);
  border: 1px solid rgba(37, 211, 102, 0.5);
  color: #E2F9EB;
}

.form-feedback--success svg {
  color: #25D366;
  flex-shrink: 0;
}

.form-feedback--error {
  background: rgba(45, 15, 18, 0.85);
  border: 1px solid rgba(229, 62, 62, 0.5);
  color: #FDE8E8;
}

.form-feedback--error svg {
  color: #E53E3E;
  flex-shrink: 0;
}

/* Submit Button Loading State */
.btn--loading {
  opacity: 0.75;
  cursor: not-allowed !important;
  pointer-events: none;
}

.btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
  animation: btnSpin 0.75s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes btnSpin {
  to {
    transform: rotate(360deg);
  }
}