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

:root {
  --bg: #FBF8F1;
  --bg-warm: #F7F1E3;
  --white: #FFFFFF;
  --pale-yellow: #FFF9E6;
  --yellow: #F2C744;
  --yellow-bright: #FFD644;
  --yellow-deep: #E5B52F;
  --orange: #E8754A;
  --orange-deep: #D4612F;
  --orange-light: #F2936E;
  --black: #151210;
  --ink: #1E1B18;
  --grey-900: #2D2A27;
  --grey-700: #4A4641;
  --grey-500: #7A7570;
  --grey-400: #9B9691;
  --grey-300: #B8B3AE;
  --grey-200: #D6D2CD;
  --grey-100: #EDEAE6;
  --border: rgba(30,27,24,0.08);
  --border-med: rgba(30,27,24,0.12);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(30px) saturate(1.8);
  background: rgba(251,248,241,0.88);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s ease;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--orange); font-style: italic; }
.nav-logo-sub { font-family: 'Playfair Display', serif; font-style: normal; font-weight: 800; font-size: 1.5rem; color: var(--ink); letter-spacing: -0.02em; margin-left: 0.4rem; }

.nav-links {
  display: flex; gap: 2.5rem;
  list-style: none; align-items: center;
}

.nav-links a {
  color: var(--grey-500);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--ink); }

.nav-studio {
  color: var(--orange) !important;
  border: 1px solid rgba(232,117,74,0.3);
  border-radius: 100px;
  padding: 0.4rem 1rem !important;
  font-size: 0.72rem !important;
  transition: all 0.3s ease !important;
}
.nav-studio:hover {
  background: rgba(232,117,74,0.08) !important;
  border-color: var(--orange) !important;
  color: var(--orange-deep) !important;
}

.nav-cta {
  padding: 0.65rem 1.8rem !important;
  background: var(--ink) !important;
  color: var(--bg) !important;
  border-radius: 100px;
  font-size: 0.78rem !important;
  transition: all 0.3s ease !important;
}
.nav-cta:hover {
  background: var(--orange) !important;
  color: white !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(232,117,74,0.25);
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; z-index: 200;
}
.hamburger span { width: 26px; height: 2px; background: var(--ink); transition: all 0.3s ease; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 8rem 4rem 4rem 5.5rem;
  position: relative; z-index: 2;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
  opacity: 0; animation: slideIn 0.6s 0.2s forwards;
}
.hero-eyebrow::before {
  content: ''; width: 28px; height: 2px;
  background: var(--orange); border-radius: 2px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(3.2rem, 5.5vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.5rem;
  opacity: 0; animation: slideIn 0.7s 0.35s forwards;
}
.hero-title em {
  font-style: italic; font-weight: 700;
  background: linear-gradient(135deg, var(--orange), var(--yellow-deep));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-title .underline-acc {
  display: inline-block; position: relative;
}
.hero-title .underline-acc::after {
  content: ''; position: absolute;
  bottom: 4px; left: 0; width: 100%; height: 8px;
  background: var(--yellow); opacity: 0.5;
  z-index: -1; border-radius: 4px;
}

.hero-desc {
  font-size: 1.1rem; line-height: 1.75;
  color: var(--grey-500); max-width: 440px;
  font-weight: 300; margin-bottom: 2.5rem;
  opacity: 0; animation: slideIn 0.7s 0.5s forwards;
}

.hero-actions {
  display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
  opacity: 0; animation: slideIn 0.7s 0.65s forwards;
}

.btn-primary {
  padding: 1rem 2.5rem;
  background: var(--ink); color: var(--bg);
  font-family: 'Outfit', sans-serif; font-weight: 600;
  font-size: 0.82rem; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none;
  border: none; border-radius: 100px; cursor: pointer;
  transition: all 0.4s ease;
}
.btn-primary:hover {
  background: var(--orange); color: white;
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(232,117,74,0.3);
}

.btn-ghost {
  padding: 1rem 2.5rem;
  background: transparent; color: var(--ink);
  font-family: 'Outfit', sans-serif; font-weight: 500;
  font-size: 0.82rem; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none;
  border: 1.5px solid var(--grey-200);
  border-radius: 100px; cursor: pointer;
  transition: all 0.4s ease;
}
.btn-ghost:hover {
  border-color: var(--yellow-deep); color: var(--yellow-deep);
  transform: translateY(-2px);
}

/* Hero trust badge - Lionsgate */
.hero-trust-badge {
  display: inline-flex; align-items: center; gap: 0.75rem;
  margin-top: 2rem;
  padding: 0.6rem 1.3rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  opacity: 0; animation: slideIn 0.7s 0.85s forwards;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.htb-label {
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--grey-400);
}
.htb-divider {
  width: 1px; height: 18px;
  background: var(--grey-200);
}
.htb-client {
  font-family: 'Outfit', sans-serif;
  font-weight: 800; font-size: 0.95rem;
  letter-spacing: 0.18em; color: var(--ink);
  text-transform: uppercase;
}
.htb-type {
  font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--white); background: var(--orange);
  padding: 0.2rem 0.55rem; border-radius: 100px;
}

.hero-right {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--yellow) 0%, var(--orange) 100%);
}

.hero-collage {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 5px; padding: 5px;
  opacity: 0; animation: fadeScale 1s 0.4s forwards;
}
.collage-cell { overflow: hidden; position: relative; }
.collage-cell:first-child { grid-row: 1 / 3; }
.collage-cell img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease;
}
.collage-cell:hover img { transform: scale(1.06); }

.hero-float-card {
  position: absolute;
  bottom: 2.5rem; left: 2.5rem;
  background: white;
  padding: 1.1rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  z-index: 3;
  display: flex; align-items: center; gap: 1rem;
  opacity: 0; animation: slideIn 0.6s 1s forwards;
}
.float-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: white;
}
.float-label { font-size: 0.72rem; color: var(--grey-400); }
.float-label strong { display: block; font-weight: 700; font-size: 1.05rem; color: var(--ink); }

/* ===== ACCENT BAR ===== */
.accent-bar { display: flex; height: 5px; }
.accent-bar div { flex: 1; }

/* ===== SECTIONS SHARED ===== */
section { padding: 7rem 3.5rem; position: relative; }

.s-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1.25rem;
}
.s-eyebrow::before {
  content: ''; width: 24px; height: 2px;
  background: var(--orange); border-radius: 2px;
}

.s-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.1; letter-spacing: -0.015em;
  color: var(--ink);
}
.s-heading em { font-style: italic; color: var(--orange); }

/* ===== SHOWREEL ===== */
.reel-section {
  padding: 5rem 3.5rem;
  background: var(--pale-yellow);
}

.reel-wrap {
  max-width: 1100px; margin: 0 auto;
  position: relative; border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 30px 80px rgba(30,27,24,0.1);
  background: var(--black);
}
.reel-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.75) saturate(1.15);
  transition: all 0.7s ease;
}
.reel-wrap:hover img { filter: brightness(0.5) saturate(1.2); transform: scale(1.03); }

.reel-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100px; height: 100px;
  background: var(--yellow); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s ease;
  box-shadow: 0 10px 40px rgba(242,199,68,0.4);
}
.reel-play::after {
  content: ''; width: 0; height: 0;
  border-style: solid;
  border-width: 16px 0 16px 26px;
  border-color: transparent transparent transparent var(--black);
  margin-left: 4px;
}
.reel-wrap:hover .reel-play {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--orange);
}
.reel-wrap:hover .reel-play::after {
  border-color: transparent transparent transparent white;
}

.reel-caption {
  text-align: center; margin-top: 1.5rem;
  font-size: 0.72rem; color: var(--grey-400);
  letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
}

/* ===== LIONSGATE FEATURED CLIENT ===== */
.lg-section {
  padding: 3rem 3.5rem 4rem;
  background: var(--bg);
}

.lg-module {
  max-width: 1200px; margin: 0 auto;
  background: var(--ink);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(30,27,24,0.12);
}

/* --- Hero banner --- */
.lg-hero {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.lg-hero-bg { position: absolute; inset: 0; }
.lg-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.lg-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.1) 80%),
    linear-gradient(0deg, rgba(30,27,24,1) 0%, rgba(30,27,24,0) 35%);
}
.lg-scanlines {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px);
}
.lg-hero-content {
  position: relative; z-index: 2;
  padding: 2.2rem 2.5rem;
  height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
}

.lg-hero-right {
  display: flex; flex-direction: column; gap: 1rem;
  align-items: flex-end;
  flex-shrink: 0;
}

.lg-stat-stack {
  display: flex; align-items: center; gap: 1.2rem;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1rem 1.4rem;
}
.lg-stat {
  display: flex; align-items: center; gap: 0.6rem;
}
.lg-stat-num {
  font-family: 'Playfair Display', serif;
  font-weight: 800; font-size: 1.8rem;
  color: var(--yellow); line-height: 1;
}
.lg-stat-label {
  font-size: 0.52rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}
.lg-stat-divider {
  width: 1px; height: 30px;
  background: rgba(255,255,255,0.1);
}

.lg-franchise-list {
  text-align: right;
}
.lg-fl-label {
  display: block;
  font-size: 0.48rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 0.4rem;
}
.lg-fl-items {
  display: flex; gap: 0.35rem; flex-wrap: wrap;
  justify-content: flex-end;
}
.lg-fl-items span {
  font-size: 0.5rem; font-weight: 500;
  color: rgba(255,255,255,0.4);
  padding: 0.2rem 0.5rem;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 100px;
  white-space: nowrap;
}

.lg-badges {
  display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: 0.8rem; flex-wrap: wrap;
}
.lg-badge-featured {
  font-size: 0.52rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--yellow);
  background: rgba(242,199,68,0.12);
  border: 1px solid rgba(242,199,68,0.25);
  padding: 0.3rem 0.8rem; border-radius: 100px;
}
.lg-badge-ongoing {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.52rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.3rem 0.8rem 0.3rem 0.55rem; border-radius: 100px;
}
.lg-dot {
  width: 6px; height: 6px; background: #4ADE80;
  border-radius: 50%; display: inline-block;
  box-shadow: 0 0 6px rgba(74,222,128,0.6);
  animation: lgDotPulse 2s ease-in-out infinite;
}
@keyframes lgDotPulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

.lg-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.2em;
  color: white; text-transform: uppercase;
  line-height: 1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  margin-bottom: 0.6rem;
}
.lg-intro {
  font-size: 0.78rem; line-height: 1.6;
  color: rgba(255,255,255,0.5);
  font-weight: 300; max-width: 420px;
}

/* --- Projects body --- */
.lg-body {
  padding: 1.5rem 2.5rem 2.5rem;
}
.lg-body-header {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem;
}
.lg-bh-line { flex: 1; height: 1px; background: rgba(255,255,255,0.07); }
.lg-bh-label {
  font-size: 0.55rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

/* --- Project cards (horizontal layout) --- */
.lg-cards {
  display: flex; flex-direction: column; gap: 1.2rem;
}
.lg-card {
  display: grid; grid-template-columns: 200px 1fr;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.35s ease;
}
.lg-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(242,199,68,0.12);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.lg-card-img {
  position: relative; overflow: hidden;
  min-height: 100%;
}
.lg-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.65) saturate(1.1);
  transition: transform 0.5s ease;
}
.lg-card:hover .lg-card-img img { transform: scale(1.06); }
.lg-card-img-poster { background: #0a0907; }
.lg-card-img-poster img {
  object-fit: contain;
  object-position: center center;
  filter: none;
}
.lg-card-img-poster .lg-card-img-ov { display: none; }
.lg-card-img-ov {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(30,27,24,0.6) 100%);
}
.lg-card-num {
  position: absolute; top: 0.8rem; left: 0.8rem;
  font-family: 'Playfair Display', serif;
  font-weight: 800; font-size: 1.5rem;
  color: var(--yellow); opacity: 0.4;
  line-height: 1;
}

.lg-card-info { padding: 1.2rem 1.4rem; }
.lg-card-info h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.05rem;
  color: white; margin-bottom: 0.4rem;
}
.lg-card-info p {
  font-size: 0.72rem; line-height: 1.6;
  color: rgba(255,255,255,0.45);
  font-weight: 300; margin-bottom: 0.7rem;
}
.lg-card-chips {
  display: flex; gap: 0.35rem; flex-wrap: wrap;
  margin-bottom: 0.8rem;
}
.lg-card-chips span {
  font-size: 0.5rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  padding: 0.22rem 0.55rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
}
.lg-card-slot {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 0.8rem;
  background: rgba(255,255,255,0.02);
  border: 1.5px dashed rgba(255,255,255,0.08);
  border-radius: 8px;
}
.lg-slot-icon {
  width: 24px; height: 24px;
  background: rgba(242,199,68,0.08);
  border: 1px solid rgba(242,199,68,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow); font-size: 0.55rem; flex-shrink: 0;
}
.lg-card-slot span:last-child {
  font-size: 0.62rem; font-weight: 500;
  color: rgba(255,255,255,0.25);
}

@media (max-width: 768px) {
  .lg-section { padding: 2rem 1rem 2.5rem; }
  .lg-hero { height: 220px; }
  .lg-hero-content { padding: 1.5rem; }
  .lg-title { font-size: 1.8rem; letter-spacing: 0.12em; }
  .lg-body { padding: 1.2rem 1.2rem 1.8rem; }
  .lg-card { grid-template-columns: 1fr; }
  .lg-card-img { height: 140px; }
}

/* ===== SERVICES ===== */
.services-section { background: var(--bg); }

.services-top {
  max-width: 1200px; margin: 0 auto 4rem;
  display: flex; justify-content: space-between;
  align-items: flex-end; flex-wrap: wrap; gap: 2rem;
}
.services-top p {
  max-width: 380px; color: var(--grey-500);
  line-height: 1.7; font-weight: 300; font-size: 0.95rem;
}

.services-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.svc-card {
  padding: 2.5rem; border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default; overflow: hidden; position: relative;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(30,27,24,0.07);
  border-color: var(--grey-200);
}

.svc-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.5rem; color: white;
}
.si-1 { background: linear-gradient(135deg, var(--orange), var(--orange-light)); }
.si-2 { background: linear-gradient(135deg, var(--yellow-deep), var(--yellow-bright)); color: var(--black); }
.si-3 { background: linear-gradient(135deg, var(--grey-700), var(--grey-500)); }
.si-4 { background: linear-gradient(135deg, var(--orange), var(--yellow)); color: var(--black); }
.si-5 { background: linear-gradient(135deg, var(--ink), var(--grey-700)); }
.si-6 { background: linear-gradient(135deg, var(--yellow), var(--orange-light)); color: var(--black); }


.svc-card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.25rem;
  margin-bottom: 0.6rem; letter-spacing: -0.01em;
}
.svc-card p {
  color: var(--grey-500); font-size: 0.88rem;
  line-height: 1.65; font-weight: 300;
}

/* ===== PORTFOLIO ===== */
.portfolio-section {
  background: var(--ink); color: white;
  padding: 7rem 3.5rem; overflow: hidden;
}

.port-header {
  max-width: 1200px; margin: 0 auto 4rem;
  display: flex; justify-content: space-between;
  align-items: flex-end; flex-wrap: wrap; gap: 2rem;
}
.port-header .s-eyebrow { color: var(--yellow); }
.port-header .s-eyebrow::before { background: var(--yellow); }
.port-header .s-heading { color: white; }
.port-header .s-heading em { color: var(--yellow); }
.port-header p { color: rgba(255,255,255,0.45); max-width: 380px; font-weight: 300; line-height: 1.7; }

.port-mosaic {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px; gap: 0.75rem;
}

.mos {
  position: relative; overflow: hidden;
  border-radius: 14px; cursor: pointer;
}
.mos img {
  width: 100%; height: 100%; object-fit: cover;
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  filter: saturate(1.05);
}
.mos:hover img { transform: scale(1.08); }

.mos-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 3rem 1.5rem 1.25rem;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, transparent 100%);
  opacity: 0; transform: translateY(8px);
  transition: all 0.4s ease;
}
.mos:hover .mos-label { opacity: 1; transform: translateY(0); }
.mos-label h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.05rem; color: white;
}
.mos-label span {
  font-size: 0.65rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--yellow); font-weight: 500;
}

.pm1 { grid-column: 1 / 6; grid-row: 1 / 3; }
.pm2 { grid-column: 6 / 9; grid-row: 1 / 2; }
.pm3 { grid-column: 9 / 13; grid-row: 1 / 3; }
.pm4 { grid-column: 6 / 9; grid-row: 2 / 3; }
.pm5 { grid-column: 1 / 4; grid-row: 3 / 4; }
.pm6 { grid-column: 4 / 8; grid-row: 3 / 4; }
.pm7 { grid-column: 8 / 13; grid-row: 3 / 4; }

.port-cta { text-align: center; margin-top: 3rem; }

.btn-yellow {
  padding: 1rem 2.5rem;
  background: var(--yellow); color: var(--black);
  font-family: 'Outfit', sans-serif; font-weight: 600;
  font-size: 0.82rem; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none;
  border-radius: 100px; transition: all 0.4s ease;
  display: inline-block;
}
.btn-yellow:hover {
  background: var(--yellow-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(242,199,68,0.35);
}

/* ===== CLIENTS ===== */
.clients-section {
  background: var(--ink);
  text-align: center;
  padding: 6rem 3.5rem;
  overflow: hidden;
}

.clients-top {
  margin-bottom: 3.5rem;
}
.clients-top .s-eyebrow { color: var(--yellow); }
.clients-top .s-eyebrow::before { background: var(--yellow); }
.clients-top .s-heading { color: white; }
.clients-top .s-heading em { color: var(--yellow); }

/* Marquee */
.clients-marquee-wrap {
  max-width: 1400px; margin: 0 auto;
}
.clients-marquee-label {
  font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-bottom: 1.5rem;
}
.clients-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
}
.marquee-track {
  display: flex; align-items: center; gap: 0;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-track span {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 2rem;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  padding: 0 2rem;
  transition: color 0.3s, text-shadow 0.3s;
  text-shadow: 0 0 30px rgba(255,255,255,0.08);
}
.marquee-track span:hover { color: var(--yellow); text-shadow: 0 0 25px rgba(242,199,68,0.4); }
.marquee-track .mdot {
  font-size: 0.4rem; color: rgba(255,255,255,0.25);
  padding: 0; text-shadow: none;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.clients-marquee:hover .marquee-track { animation-play-state: paused; }

@media (max-width: 768px) {
  .clients-section { padding: 4rem 1.5rem; }
  .clients-featured { padding: 1.8rem 2rem; }
  .cf-name { font-size: 2.4rem; letter-spacing: 0.15em; }
}

/* ===== TESTIMONIAL ===== */
.testi-section {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 60%, var(--orange-deep) 100%);
  color: var(--black); text-align: center;
  position: relative; overflow: hidden;
}
.testi-section::before {
  content: ''; position: absolute; inset: 0; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.testi-inner { max-width: 750px; margin: 0 auto; position: relative; z-index: 1; }
.tq { font-family: 'Playfair Display', serif; font-size: 5rem; line-height: 1; opacity: 0.25; }
.testi-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; line-height: 1.7;
  font-weight: 400; font-style: italic;
  margin-bottom: 2rem;
}
.testi-author { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.95rem; }
.testi-role { font-family: 'Outfit', sans-serif; font-weight: 400; font-size: 0.8rem; opacity: 0.65; margin-top: 0.25rem; }

/* ===== STATS ===== */
.stats-section { background: var(--bg); padding: 5rem 3.5rem; }

.stats-row {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.stat-box {
  text-align: center; padding: 2rem 1rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 20px; transition: transform 0.3s ease;
}
.stat-box:hover { transform: translateY(-4px); }

.stat-n {
  font-family: 'Playfair Display', serif;
  font-weight: 800; font-size: 2.8rem; letter-spacing: -0.03em;
}
.sn-o { color: var(--orange); }
.sn-y { color: var(--yellow-deep); }
.sn-k { color: var(--ink); }
.sn-g { color: var(--grey-700); }

.stat-d {
  font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--grey-400);
  font-weight: 500; margin-top: 0.3rem;
}

/* ===== GLOBAL â VIDEO HOVER COUNTRIES ===== */
.global-section {
  background: var(--pale-yellow);
  text-align: center;
  padding: 7rem 3.5rem 8rem;
}

.global-intro {
  margin-bottom: 3.5rem;
}

.global-intro p {
  color: var(--grey-500); text-align: center;
  max-width: 500px; margin: 1rem auto 0;
  font-weight: 300; line-height: 1.7;
}

/* ===== INTERACTIVE MAP ===== */
.country-count {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.5rem; padding: 0.5rem 1.2rem;
  background: var(--white); border: 1.5px solid var(--grey-200);
  border-radius: 100px; font-size: 0.75rem; font-weight: 600; color: var(--grey-700);
}
.country-count strong { color: var(--orange); font-size: 1rem; }

.map-wrapper {
  max-width: 1100px; margin: 2.5rem auto 0;
  background: var(--white); border-radius: 24px;
  border: 1px solid var(--border); padding: 2rem;
  box-shadow: 0 8px 40px rgba(30,27,24,0.04);
}
.map-container { position: relative; width: 100%; }
.map-container svg { width: 100%; height: auto; display: block; }
.map-container svg .land { fill: #DDD5C8; stroke: var(--white); stroke-width: 0.4; }
.map-loading { text-align: center; padding: 4rem; color: var(--grey-400); font-size: 0.85rem; }
.map-hint { text-align: center; padding: 0.8rem 0 0; font-size: 0.68rem; color: var(--grey-400); font-weight: 400; letter-spacing: 0.03em; }
.map-hint span { color: var(--orange); font-weight: 600; }

/* Central video zone */
.map-center-video {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -54%);
  width: 52%;
  z-index: 20;
  border-radius: 16px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 25px 70px rgba(0,0,0,0.55);
  opacity: 0; pointer-events: none;
  transition: opacity 0.5s ease;
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
}
.map-center-video.active { opacity: 1; pointer-events: auto; }
.mcv-wrap {
  position: relative; width: 100%;
  aspect-ratio: 16/9; background: #000; overflow: hidden;
}
.mcv-iframe {
  border: 0; width: 100%; height: 100%;
  position: absolute; top: 0; left: 0;
}
.mcv-idle {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,0.25); pointer-events: none;
}
.mcv-idle span { font-size: 2.5rem; }
.mcv-idle p { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; margin-top: 0.5rem; }
.mcv-bar {
  padding: 0.85rem 1.2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.mcv-country {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1rem; color: white;
}
.mcv-tag {
  font-size: 0.5rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--yellow);
  font-weight: 600; margin-top: 0.2rem;
}
.mcv-hint {
  font-size: 0.55rem; color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em; font-weight: 500;
}

.map-pin {
  position: absolute; transform: translate(-50%, -50%);
  z-index: 5; cursor: pointer;
}
.map-pin:hover, .map-pin.hover-active {
  z-index: 50;
}
.pin-dot {
  width: 12px; height: 12px; background: var(--orange);
  border-radius: 50%; border: 2.5px solid var(--white);
  box-shadow: 0 2px 10px rgba(232,117,74,0.4);
  position: relative; transition: all 0.3s ease;
}
.pin-dot::after {
  content: ''; position: absolute; inset: -8px; border-radius: 50%;
  border: 1.5px solid var(--orange); opacity: 0;
  animation: ping 2.5s cubic-bezier(0,0,0.2,1) infinite;
}
.map-pin:hover .pin-dot, .map-pin.hover-active .pin-dot {
  transform: scale(1.5); background: var(--yellow);
  box-shadow: 0 4px 18px rgba(242,199,68,0.6);
}
@keyframes ping { 0%{transform:scale(1);opacity:.5} 100%{transform:scale(2.5);opacity:0} }

.pin-label {
  position: absolute; bottom: calc(100% + 6px); left: 50%; transform: translateX(-50%);
  background: var(--ink); color: white; padding: 0.25rem 0.65rem; border-radius: 6px;
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.05em;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: all 0.3s ease;
}
.pin-label::after { content:''; position:absolute; top:100%; left:50%; transform:translateX(-50%); border:4px solid transparent; border-top-color:var(--ink); }
.map-pin:hover .pin-label, .map-pin.hover-active .pin-label { opacity: 1; bottom: calc(100% + 10px); }

.pin-preview {
  position: absolute; bottom: calc(100% + 30px); left: 50%;
  transform: translateX(-50%) scale(0.85) translateY(8px);
  width: 360px; border-radius: 14px; overflow: hidden;
  opacity: 0; pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 25px 60px rgba(0,0,0,0.3); z-index: 40; background: var(--ink);
}
.pin-preview::after { content:''; position:absolute; bottom:-6px; left:50%; transform:translateX(-50%) rotate(45deg); width:12px; height:12px; background:var(--ink); }
.map-pin:hover .pin-preview, .map-pin.hover-active .pin-preview { opacity:1; pointer-events:auto; transform:translateX(-50%) scale(1) translateY(0); }
.map-pin:hover .pin-label, .map-pin.hover-active .pin-label { opacity: 0; }
.pin-preview.flip-down { bottom:auto; top:calc(100% + 30px); }
.pin-preview.flip-down::after { bottom:auto; top:-6px; }
.pin-preview.nudge-right { transform:translateX(-15%) scale(0.85) translateY(8px); }
.map-pin:hover .pin-preview.nudge-right, .map-pin.hover-active .pin-preview.nudge-right { transform:translateX(-15%) scale(1) translateY(0); }
.pin-preview.nudge-left { transform:translateX(-85%) scale(0.85) translateY(8px); }
.map-pin:hover .pin-preview.nudge-left, .map-pin.hover-active .pin-preview.nudge-left { transform:translateX(-85%) scale(1) translateY(0); }

.pv-video { width:100%; aspect-ratio:16/9; overflow:hidden; position:relative; background:#111; }
.pv-video video { width:100%; height:100%; object-fit:cover; }
.pv-video iframe { border:0; width:100%; height:100%; position:absolute; top:0; left:0; pointer-events:none; }
.pv-info { padding:0.7rem 1rem; display:flex; justify-content:space-between; align-items:center; }
.pv-city { font-family:'Playfair Display',serif; font-weight:700; font-size:0.88rem; color:white; }
.pv-tag { font-size:0.52rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--yellow); font-weight:600; margin-top:0.1rem; }
.pv-play { width:28px; height:28px; background:var(--orange); border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.pv-play::after { content:''; border-style:solid; border-width:4px 0 4px 7px; border-color:transparent transparent transparent white; margin-left:1px; }

.city-panel { max-width:1100px; margin:2rem auto 0; display:flex; gap:0.5rem; flex-wrap:wrap; justify-content:center; }
.city-chip {
  padding:0.45rem 1rem; border:1.5px solid var(--grey-200); border-radius:100px;
  font-size:0.7rem; font-weight:500; color:var(--grey-500); background:var(--white);
  cursor:pointer; transition:all 0.3s ease;
}
.city-chip:hover { border-color:var(--orange); color:var(--orange); }

/* ===== FULLSCREEN VIDEO LIGHTBOX ===== */
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.video-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-inner {
  width: 85vw;
  max-width: 1100px;
  aspect-ratio: 16/9;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  transform: scale(0.85) translateY(20px);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-lightbox.active .lightbox-inner {
  transform: scale(1) translateY(0);
}

.lightbox-inner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: black;
}

.lightbox-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 4rem 2rem 2rem;
  background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.lightbox-info .lb-city {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: white;
}

.lightbox-info .lb-tag {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 600;
  margin-top: 0.25rem;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 5;
  line-height: 1;
}

.lightbox-close:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 5;
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.3);
}

.lightbox-prev { left: -70px; }
.lightbox-next { right: -70px; }

.lightbox-counter {
  position: absolute;
  top: 1.5rem; left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  z-index: 5;
}

/* Click hint on small preview */
.vid-preview .click-hint {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  pointer-events: none;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .lightbox-inner { width: 95vw; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-info .lb-city { font-size: 1.3rem; }
}

/* ===== CONTACT ===== */
.contact-section { background: var(--bg); }

.contact-layout {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 5rem; align-items: start;
}

.contact-left h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1; margin-bottom: 1.25rem;
}
.contact-left h2 em { font-style: italic; color: var(--orange); }
.contact-left > p {
  color: var(--grey-500); line-height: 1.7;
  font-weight: 300; max-width: 420px; margin-bottom: 2.5rem;
}

.c-link {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 0; border-bottom: 1px solid var(--border);
  text-decoration: none; color: var(--ink); transition: all 0.3s ease;
}
.c-link:hover { padding-left: 0.5rem; color: var(--orange); }
.c-link .c-label {
  font-size: 0.62rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--grey-400);
  min-width: 65px; font-weight: 600;
}

.c-form {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 24px; padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.cf-r { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.cf-g { display: flex; flex-direction: column; gap: 0.4rem; }
.cf-g label {
  font-size: 0.68rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--grey-400); font-weight: 600;
}
.cf-g input, .cf-g textarea, .cf-g select {
  background: var(--bg); border: 1.5px solid var(--border);
  color: var(--ink); padding: 0.9rem 1rem;
  font-family: 'Outfit', sans-serif; font-size: 0.9rem;
  border-radius: 12px; transition: border-color 0.3s; outline: none; resize: vertical;
}
.cf-g input:focus, .cf-g textarea:focus, .cf-g select:focus { border-color: var(--orange); }
.cf-g textarea { min-height: 110px; }
.cf-g select option { background: var(--bg); }

.btn-send {
  padding: 1rem 2.5rem;
  background: var(--ink); color: var(--bg);
  font-family: 'Outfit', sans-serif; font-weight: 600;
  font-size: 0.82rem; letter-spacing: 0.12em;
  text-transform: uppercase; border: none;
  border-radius: 100px; cursor: pointer;
  transition: all 0.4s ease; align-self: flex-start;
}
.btn-send:hover {
  background: var(--orange); color: white;
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(232,117,74,0.3);
}

/* ===== FOOTER ===== */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.45);
  padding: 4rem 3.5rem 2rem;
}
.foot-grid {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.foot-brand .nav-logo { color: white; display: block; margin-bottom: 1rem; }
.foot-brand .nav-logo span { color: var(--orange); }
.foot-brand p { max-width: 300px; line-height: 1.65; font-size: 0.85rem; font-weight: 300; }

.foot-socials { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.foot-socials a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); text-decoration: none;
  font-size: 0.72rem; font-weight: 600;
  transition: all 0.3s ease;
}
.foot-socials a:hover {
  border-color: var(--yellow); color: var(--yellow);
  transform: translateY(-2px);
}

.foot-col-t {
  font-size: 0.62rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.25);
  font-weight: 600; margin-bottom: 1.25rem;
}
.foot-col a, .foot-col span {
  display: block; color: rgba(255,255,255,0.45);
  text-decoration: none; font-size: 0.85rem;
  margin-bottom: 0.65rem; font-weight: 300;
  transition: color 0.3s;
}
.foot-col a:hover { color: var(--yellow); }

.foot-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 2rem; display: flex;
  justify-content: space-between; font-size: 0.75rem;
  flex-wrap: wrap; gap: 1rem;
}

/* ===== ANIMATIONS ===== */
@keyframes slideIn {
  from { opacity: 0; transform: translateY(35px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeScale {
  from { opacity: 0; transform: scale(1.05); }
  to { opacity: 1; transform: scale(1); }
}

.reveal {
  opacity: 0; transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.vis { opacity: 1; transform: translateY(0); }

.rstag > * {
  opacity: 0; transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.rstag.vis > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.rstag.vis > *:nth-child(2) { transition-delay: 0.07s; opacity: 1; transform: translateY(0); }
.rstag.vis > *:nth-child(3) { transition-delay: 0.14s; opacity: 1; transform: translateY(0); }
.rstag.vis > *:nth-child(4) { transition-delay: 0.21s; opacity: 1; transform: translateY(0); }
.rstag.vis > *:nth-child(5) { transition-delay: 0.28s; opacity: 1; transform: translateY(0); }
.rstag.vis > *:nth-child(6) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 8rem 3rem 5rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  section { padding: 4.5rem 1.5rem; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%;
    width: 75%; height: 100vh;
    background: var(--white);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 2rem; transition: right 0.4s ease;
    border-left: 1px solid var(--border);
    box-shadow: -20px 0 60px rgba(0,0,0,0.06);
  }
  .nav-links.active { right: 0; }
  .hero-left { padding: 7rem 1.5rem 4rem; }
  .services-grid { grid-template-columns: 1fr; }
  .port-mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .pm1 { grid-column: 1 / 3; } .pm2,.pm3,.pm4,.pm5,.pm6,.pm7 { grid-column: auto; grid-row: auto; }
  .cf-r { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .map-wrapper { padding: 1rem; border-radius: 16px; }
  .pin-preview { display: none; }
  .map-pin:hover .pin-label { opacity: 1; }
  .pin-dot { width: 9px; height: 9px; }
  .city-chip { font-size: 0.62rem; padding: 0.35rem 0.8rem; }
  .map-hint { font-size: 0.6rem; }
  .hero-trust-badge { gap: 0.5rem; padding: 0.5rem 1rem; flex-wrap: wrap; justify-content: center; }
  .htb-client { font-size: 0.8rem; }
  .client-featured { font-size: 1.1rem; padding: 0.45rem 1.2rem 0.45rem 1rem; }
}
