/* ═══════════════════════════════════════════════════════════
   ALL KINDS OF MAGIC — Luxury Style System
   ═══════════════════════════════════════════════════════════ */

/* @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&family=Inter:wght@200;300;400;500;600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap'); */

.seo-hidden {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}



/* ── SENTINEL FONT ─────────────────────────────────────── */
@font-face {
  font-family: 'Sentinel';
  src: url('fonts/santinel-font/Sentinel-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Sentinel';
  src: url('fonts/santinel-font/Sentinel-LightItal.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'Sentinel';
  src: url('fonts/santinel-font/Sentinel-Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Sentinel';
  src: url('fonts/santinel-font/Sentinel-BookItal.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Sentinel';
  src: url('fonts/santinel-font/Sentinel-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Sentinel';
  src: url('fonts/santinel-font/Sentinel-MediumItal.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'Sentinel';
  src: url('fonts/santinel-font/Sentinel-Semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Sentinel';
  src: url('fonts/santinel-font/Sentinel-SemiboldItal.otf') format('opentype');
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: 'Sentinel';
  src: url('fonts/santinel-font/Sentinel-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Sentinel';
  src: url('fonts/santinel-font/Sentinel-BoldItal.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'Sentinel';
  src: url('fonts/santinel-font/Sentinel-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Sentinel';
  src: url('fonts/santinel-font/Sentinel-BlackItal.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
}

/* ── ARCHIVO FONT ──────────────────────────────────────── */
@font-face {
  font-family: 'Archivo';
  src: url('fonts/archivo-font/Archivo-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Archivo';
  src: url('fonts/archivo-font/Archivo-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Archivo';
  src: url('fonts/archivo-font/Archivo-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Archivo';
  src: url('fonts/archivo-font/Archivo-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Archivo';
  src: url('fonts/archivo-font/Archivo-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Archivo';
  src: url('fonts/archivo-font/Archivo-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Archivo';
  src: url('fonts/archivo-font/Archivo-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Archivo';
  src: url('fonts/archivo-font/Archivo-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}


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

:root {
  --navy: #1e3a8a;
  --navy-deep: #1e3a8a;
  --navy-mid: #1e40af;
  --charcoal: #2a3444;
  --cream: #f8f5f0;
  --white-light: #fafafa;
  --cream-warm: #f0ebe3;
  --cream-dark: #e5dfd5;
  --gold: #c9a96e;
  --gold-light: #c9a96e;
  --gold-dark: #c9a96e;
  --blue-ink: #1e3a8a;
  --green-sage: #5a8a72;
  --white: #fafafa;
  --text-dark: #1e3a8a;
  --text-body: #333333;
  --text-light: #8a8a9a;
  --text-grey: #bcaaa4;
  --border: rgba(30, 58, 138, 0.08);

  --font-display: 'Sentinel', Georgia, serif;
  --font-body: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Sentinel', Georgia, serif;

  --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 1.2s var(--ease-luxury);
  --transition-med: 0.8s var(--ease-luxury);
  --transition-fast: 0.4s var(--ease-luxury);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
  font-family: var(--font-display) !important;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: #ffffff;
  line-height: 1.8;
  font-size: 20px;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

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

::selection {
  background: rgba(13, 27, 42, 0.1);
  color: var(--navy);
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(13, 27, 42, 0.15);
  border-radius: 4px;
}

.container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
}

/* ── UTILITIES ─────────────────────────────────────────── */
.has-pattern {
  position: relative !important;
  isolation: isolate;
  /* Ensures blend modes work relative to this container */
}

.pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
  background-repeat: repeat;
  mix-blend-mode: normal;
}

#nav-links .pattern-overlay {
  display: none;
  /* Hide by default on desktop */
}

.section-tag {
  font-family: var(--font-accent);
  font-size: 13px;
  /* Slightly larger base */
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-block;
}

.section-tag::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-top: 12px;
  transition: width 0.8s var(--ease-luxury);
}

.section-tag.visible::after {
  width: 60px;
}

.section-tag-light {
  color: rgba(248, 245, 240, 0.7);
  /* Much higher visibility for dark backgrounds */
  font-size: 14px;
  /* Even larger for priority sections */
}

.section-tag-light::after {
  background: var(--gold-dark);
}

/* ── SCROLL REVEAL ─────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s var(--ease-luxury), transform 1s var(--ease-luxury);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

.delay-3 {
  transition-delay: 0.36s;
}

.delay-4 {
  transition-delay: 0.48s;
}

.delay-5 {
  transition-delay: 0.6s;
}

.fade-in {
  opacity: 0;
  transition: opacity 1.2s var(--ease-luxury);
}

.fade-in.visible {
  opacity: 1;
}

.slide-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 1s var(--ease-luxury), transform 1s var(--ease-luxury);
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 1s var(--ease-luxury), transform 1s var(--ease-luxury);
}

.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── NAVIGATION ────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  /* Elevate above backdrop */
  padding: 22px 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(30, 58, 138, 0.06);
  transition: all 0.6s var(--ease-luxury);
}

#navbar.scrolled {
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.06);
}

.nav-inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 48px;
  width: auto;
  transition: all 0.5s var(--ease-luxury);
}

#navbar.scrolled .nav-logo img {
  height: 38px;
}

/* Mobile logo in nav — hidden by default, shown in open menu overlay */
.mobile-nav-logo {
  display: none;
  max-width: 200px;
  margin-bottom: 2rem;
}

.mobile-menu-footer {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 56px;
  /* High-end breathing room */
}

.nav-link {
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--text-light);
  transition: color 0.4s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.5s var(--ease-luxury);
}

.nav-link:hover {
  color: var(--text-dark);
}

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

.nav-linkedin {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 13px;
  transition: all 0.4s ease;
}

.nav-linkedin:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10002;
  width: 28px;
  height: 20px;
  position: relative;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-dark);
  transition: all 0.4s var(--ease-luxury);
  position: absolute;
  left: 0;
  border-radius: 2px;
}

.hamburger span:nth-child(1) {
  top: 0;
  width: 28px;
}

.hamburger span:nth-child(2) {
  top: 9px;
  width: 22px;
}

.hamburger span:nth-child(3) {
  top: 18px;
  width: 28px;
}

.hamburger.open span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
  width: 28px;
  background: var(--white);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger.open span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
  width: 28px;
  background: var(--white);
}

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Clear patterns and glows */
.hero::before,
.hero::after {
  display: none !important;
}

.hero-grid {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  padding: 150px 0 80px;
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
}

.hero-text {
  flex: 1;
  min-width: 0;
}

.hero-visual {
  flex: 1;
  min-width: 0;
  position: relative;
}

@media (min-width: 1025px) {
  .hero-video-container {
    border: 1px solid var(--border);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
  }
}

.hero-overline {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: none;
  color: var(--text-body);
  margin-bottom: 12px;
  opacity: 0;
  animation: heroFadeIn 1s 0.3s var(--ease-luxury) forwards;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--navy);
}

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

.hero-text h1 .line-inner {
  display: block;
  transform: translateY(110%);
  animation: lineReveal 1.2s var(--ease-luxury) forwards;
}

.hero-text h1 .line:nth-child(2) .line-inner {
  animation-delay: 0.1s;
}

.hero-text h1 .line:nth-child(3) .line-inner {
  animation-delay: 0.2s;
}

.hero-text h1 .line:nth-child(4) .line-inner {
  animation-delay: 0.3s;
}

.hero-text h1 .accent {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  /* Smaller as requested */
  margin-bottom: 2rem;
}

.hero-divider {
  width: 0;
  height: 1px;
  background: var(--gold);
  margin-top: 40px;
  animation: drawLine 1s 1s var(--ease-luxury) forwards;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.8;
  max-width: 420px;
  margin-top: 24px;
  opacity: 0;
  animation: heroFadeIn 1s 1.2s var(--ease-luxury) forwards;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  padding: 16px 32px;
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--gold);
  transition: all 0.6s var(--ease-luxury);
  opacity: 0;
  animation: heroFadeIn 1s 1.4s var(--ease-luxury) forwards;
}

.hero-cta:hover {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
  letter-spacing: 0.35em;
  padding: 16px 38px;
}

.hero-cta svg {
  transition: transform 0.4s var(--ease-luxury);
}

.hero-cta:hover svg {
  transform: translate(3px, -3px);
}

/* Hero Video Container */
.hero-video-container {
  position: relative;
  width: 100%;
  margin-left: 0;
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
  background: transparent;
}

.hero-video-container video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 1s var(--ease-luxury);
}

.hero-video-overlay {
  display: none;
}

/* Video Controls/Titles */
.video-titles {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  justify-content: flex-start;
}

.video-title-item {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-light);
  cursor: pointer;
  position: relative;
  transition: var(--transition-fast);
  padding-bottom: 8px;
}

.video-title-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition-med);
}

.video-title-item.active {
  color: var(--navy);
}

.video-title-item.active::after {
  width: 100%;
}

.video-title-item:hover {
  color: var(--navy);
}

.hero-dots {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  justify-content: center;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cream-dark);
  border: none;
  cursor: pointer;
  transition: all 0.5s var(--ease-luxury);
  padding: 0;
}

.hero-dot.active {
  width: 28px;
  border-radius: 3px;
  background: var(--gold);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  animation: heroFadeIn 1s 2s var(--ease-luxury) forwards;
}

.hero-scroll span {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-light);
}

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

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

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

@keyframes drawLine {
  to {
    width: 60px;
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.6);
    transform-origin: top;
  }

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

.mobile-only {
  display: none !important;
}

/* ── Pattern Overlay ── */
.has-pattern {
  position: relative;
}

.pattern-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-repeat: repeat;
  background-size: 200px 200px;
  /* Small repeating tile */
  opacity: 0.04;
  z-index: 0;
}

.has-pattern>.container,
.has-pattern>.pattern-overlay+.container {
  position: relative;
  z-index: 1;
}

/* ── INTRODUCTION ──────────────────────────────────────── */
.section-intro {
  padding: clamp(40px, 6vw, 80px) 0;
  background: var(--white);
  position: relative;
}

.section-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--cream-dark), transparent);
}

.intro-layout {
  display: flex;
  gap: clamp(40px, 6vw, 100px);
  margin-top: 48px;
}

.intro-sticky {
  flex: 0 0 40%;
  position: sticky;
  top: 120px;
  height: fit-content;
}

.intro-scrollable {
  flex: 1;
}

.intro-headline h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--navy);
}

.intro-body p {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 12px;
}

.intro-body p:last-child {
  margin-bottom: 0;
}

.intro-body strong {
  font-weight: 500;
  color: var(--text-dark);
}

/* ── MANAGING CONSULTANT ──────────────────────────────── */
.section-leadership {
  padding: clamp(40px, 6vw, 80px) 0;
  background: #ffffff;
}

.leader-layout {
  display: flex;
  align-items: flex-start;
  gap: clamp(40px, 8vw, 100px);
  margin-top: 48px;
}

.leader-content {
  flex: 1;
}

.leader-header {
    margin-bottom: 32px;
}

.leader-photo-column {
  flex: 0 0 clamp(300px, 35%, 420px);
  position: sticky;
  top: 120px;
  height: fit-content;
}

@media (max-width: 991px) {
  .leader-photo {
    float: none;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 80px;
    /* Increased margin to prevent outline overlap */
  }

  .leader-name {
    margin-top: 40px;
    /* Ensure gap between photo outlines and title */
  }

  .photo-overlay {
    display: none !important;
  }
  .leader-photo-column {
    position: static;
    height: auto;
  }
}

.leader-name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 0px;
}

.leader-occupation {
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--navy); /* Blue as requested */
  margin-bottom: 40px;
}

.photo-frame {
  position: relative;
  overflow: visible;
  /* Allow frames to bleed out */
  cursor: pointer;
  background: var(--cream-warm);
  box-shadow:
    20px 20px 60px rgba(0, 0, 0, 0.1),
    -10px -10px 40px rgba(0, 0, 0, 0.05);
}

/* Luxury Squares Effect */
.photo-frame::before {
  content: '';
  position: absolute;
  top: -25px;
  right: -25px;
  width: 100%;
  height: 100%;
  border: 1.5px solid var(--gold);
  opacity: 0.6;
  /* Visible by default */
  pointer-events: none;
  z-index: -1;
  transition: all 0.8s var(--ease-luxury);
}

.photo-frame::after {
  content: '';
  position: absolute;
  top: 15px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold);
  opacity: 0.4;
  /* Visible by default */
  pointer-events: none;
  z-index: -1;
  transition: all 1s var(--ease-luxury);
}

.photo-frame:hover::before {
  transform: translate(-10px, 10px) rotate(1deg);
  opacity: 0.3;
}

.photo-frame img {
  width: 100%;
  aspect-ratio: 3/4;
  display: block;
  object-fit: cover;
  transition: all 1.2s var(--ease-luxury);
}

.photo-frame:hover img {
  transform: scale(1.04);
  filter: brightness(0.8);
}

.photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 28px 28px;
  background: linear-gradient(to top, rgba(30, 58, 138, 0.4), transparent);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.7s var(--ease-luxury);
}

.photo-frame:hover .photo-overlay {
  opacity: 1;
  transform: translateY(0);
}

.photo-overlay h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--cream);
}

.photo-overlay span {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248, 245, 240, 0.6);
  margin-top: 4px;
  display: block;
}

/* Photo border accent */
.photo-frame::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border: 1px solid var(--gold);
  opacity: 0;
  transform: scale(1.02);
  transition: all 0.7s var(--ease-luxury);
  z-index: 2;
  pointer-events: none;
}

.photo-frame:hover::before {
  opacity: 0.5;
  transform: scale(1);
}

.photo-name {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.photo-name h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
}

.photo-name span {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
  display: block;
}

.leader-bio h2 {
  font-family: var(--font-accent);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 28px;
}

.leader-bio p {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  color: #333333; /* Darker grey */
  line-height: 1.6;
  margin-bottom: 24px;
}

.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 14px 28px;
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dark);
  transition: all 0.6s var(--ease-luxury);
}

.linkedin-btn:hover {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
  letter-spacing: 0.3em;
}

/* ── ENGAGEMENTS ───────────────────────────────────────── */
.section-engagements {
  padding: clamp(60px, 8vw, 100px) 0;
  background: #020612;
  /* Deepest near-black navy */
  position: relative;
}

.section-engagements::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(ellipse, rgba(201, 169, 110, 0.04), transparent 60%);
  pointer-events: none;
}

.eng-intro {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
  font-style: normal;
  color: rgba(248, 245, 240, 0.9);
  max-width: 1140px;
  /* Widened to match engagement grid width */
  margin-top: 24px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.eng-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(248, 245, 240, 0.12);
  /* Brighter hairline */
  position: relative;
  z-index: 1;
  border: 1px solid rgba(248, 245, 240, 0.12);
}

.eng-card {
  background: rgba(2, 6, 18, 0.55);
  /* Increased to 5.5 for even better visibility */
  padding: clamp(40px, 6vw, 72px);
  border: 1px solid rgba(248, 245, 240, 0.1);
  /* Slightly more prominent border */
  transition: all 0.8s var(--ease-luxury);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  backdrop-filter: blur(4px);
  /* Luxury glass effect */
}

.eng-card:hover {
  background: rgba(2, 6, 18, 0.8);
  /* Darker on hover for contrast */
  border-color: rgba(201, 169, 110, 0.5);
  /* Stronger gold glow */
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

/* Corner accent */
.eng-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 1px solid var(--gold-dark);
  border-right: 1px solid var(--gold-dark);
  transition: all 0.7s var(--ease-luxury);
  opacity: 0;
}

.eng-card:hover::after {
  width: 50px;
  height: 50px;
  opacity: 0.5;
}

/* Bottom glow on hover */
.eng-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dark), transparent);
  opacity: 0;
  transition: opacity 0.7s var(--ease-luxury);
}

.eng-card:hover::before {
  opacity: 0.4;
}

.eng-num {
  font-family: var(--font-accent);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--gold);
  opacity: 0.8;
}

.eng-body h3 {
  font-family: var(--font-accent);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  /* Slightly more elegant sizing */
  font-weight: 500;
  color: var(--white);
  /* Brighter for title pop */
  margin-top: 24px;
  margin-bottom: 12px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.eng-sub {
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.eng-tag {
  font-family: var(--font-body);
  font-size: 16px;
  font-style: italic;
  color: var(--cream);
  /* Higher readability cream */
  margin-bottom: 20px;
  line-height: 1.5;
  opacity: 0.95;
}

.eng-body>p:last-child {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  /* Boosted contrast for visibility */
  line-height: 1.8;
  margin-top: auto;
  max-width: 100%;
}

/* ── TESTIMONIALS ──────────────────────────────────────── */
.section-clients {
  padding: clamp(40px, 6vw, 80px) 0 200px;
  background: #ffffff;
  position: relative;
}

.clients-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(40px, 6vw, 80px);
}

.clients-left {
  position: sticky;
  top: 120px;
}

.clients-left .section-tag {
  font-size: 16px;
  letter-spacing: 0.15em;
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 240px;
}

.clients-left .section-tag::after {
  display: none;
}

.slide-counter {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 28px;
}

.slide-counter #t-current {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
}

.counter-sep {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-light);
  margin: 0 4px;
}

#t-total {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-light);
}

.slide-arrows {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.arrow-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s var(--ease-luxury);
  color: var(--text-body);
}

.arrow-btn:hover {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}

.slide-progress {
  margin-top: 28px;
  height: 1px;
  background: rgba(13, 27, 42, 0.06);
  overflow: hidden;
}

.slide-progress-fill {
  height: 100%;
  background: var(--gold);
  width: 12.5%;
  transition: width 0.6s var(--ease-luxury);
}

/* Testimonial viewport */
.testimonial-viewport {
  position: relative;
  min-height: 320px;
}

.t-slide {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s var(--ease-luxury);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}

.t-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.t-top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.t-logo {
  max-width: 120px;
  max-height: 80px;
  object-fit: contain;
  border-radius: 4px;
}

.t-logo-placeholder {
  width: 80px;
  height: 80px;
  background: var(--navy);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--cream);
  flex-shrink: 0;
}

.t-info strong {
  font-family: var(--font-body);
  font-size: 17px;
  /* Enlarged name */
  font-weight: 500;
  color: var(--text-dark);
  display: block;
  margin-bottom: 4px;
}

.t-info span {
  font-family: var(--font-body);
  font-size: 14px;
  /* Slightly larger for luxury legibility */
  color: var(--text-body);
  /* More prominent color than text-light */
  line-height: 1.5;
  display: block;
}

.t-loc {
  font-size: 10px !important;
  color: var(--text-light) !important;
  opacity: 0.6;
}

.t-hr {
  border: none;
  height: 1px;
  background: var(--border);
  margin-bottom: 28px;
}

.t-slide blockquote {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-style: normal;
  font-weight: 400;
  color: #000000;
  line-height: 1.7;
  opacity: 1;
}

/* Swipe Hint */
.swipe-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.8;
}

.swipe-hand {
  font-size: 14px;
  color: var(--gold);
  animation: swipeHand 2.5s infinite var(--ease-luxury);
}

@keyframes swipeHand {
  0% { transform: translateX(-15px); opacity: 0; }
  20% { opacity: 1; }
  80% { transform: translateX(15px); opacity: 1; }
  100% { transform: translateX(15px); opacity: 0; }
}

/* ── CONTACT ───────────────────────────────────────────── */
/* ── CONTACT (CTA CARD) ────────────────────────────────── */
/* ── CONTACT (CTA CARD) ────────────────────────────────── */
.section-cta-card {
  margin-top: -125px;
  margin-bottom: -125px;
  position: relative;
  z-index: 10;
  padding: 0;
  background: transparent !important;
}

/* ── Responsive Navigation Logic ── */

/* 1. Desktop & Tablet View (Horizontal) */
@media (min-width: 769px) {
  #navbar #nav-links {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  /* Compact Mode (Tablet) */
  @media (max-width: 1150px) {

    #navbar #nav-links,
    .nav-links-scroll {
      gap: 32px !important;
    }
  }

  /* Extreme Luxury Mode (Desktop) */
  @media (min-width: 1151px) {

    #navbar #nav-links,
    .nav-links-scroll {
      gap: 20px !important;
    }
  }

  .nav-links-scroll {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    background: transparent !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .hamburger {
    display: none !important;
  }

  .mobile-only {
    display: none !important;
  }
}

/* 2. Mobile View (Slide-in) */
@media (max-width: 768px) {
  /* Existing Mobile Styles handled in media query below */
}

/* Base link styles */

#navbar .nav-link {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  /* Luftig letter spacing */
  text-transform: none;
  color: var(--navy-deep);
  /*opacity: 0.8; */
  display: flex;
  align-items: center;
  position: relative;
  transition: all 0.4s var(--ease-luxury);
}

#navbar .nav-link i {
  margin-right: 12px;
  font-size: 0.85em;
  opacity: 0.6;
  transition: all 0.4s var(--ease-luxury);
}

#navbar .nav-link:hover {
  opacity: 1;
  color: var(--gold);
  letter-spacing: 0.18em;
  /* Subtle expansion on hover */
}

#navbar .nav-link:hover i {
  opacity: 1;
  transform: scale(1.1);
}

.nav-linkedin {
  display: flex !important;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(30, 58, 138, 0.1);
  border-radius: 0;
  /* Squared as requested */
  align-items: center;
  justify-content: center;
  color: var(--navy-deep);
  transition: all 0.3s ease;
  margin-left: 20px;
  /* Better spacing */
}

.nav-linkedin:hover {
  background: var(--navy-deep);
  color: var(--white);
  border-color: var(--navy-deep);
}

.cta-card-inner {
  background: #020612;
  /* Deepest near-black navy */
  border-radius: 6px;
  padding: 40px clamp(24px, 5vw, 64px);
  color: var(--white);
  overflow: hidden;
  position: relative;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.25),
    0 -20px 50px rgba(0, 0, 0, 0.15);
  max-width: 1200px;
  margin: 0 auto;
  isolation: isolate;
  /* Local stacking context for pattern overlay */
}

.cta-flex-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.cta-text-left {
  text-align: left;
}

.cta-main-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}

.cta-sub-title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.cta-button-right {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch;
  gap: 12px;
}

.btn-boxy-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #ffffff;
  height: 52px;
  padding: 0 32px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease-luxury);
  border: 1px solid var(--gold);
  white-space: nowrap;
}

.btn-boxy-contact:hover {
  background: var(--white);
  color: var(--navy-deep);
  border-color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-boxy-linkedin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: transparent;
  color: #ffffff;
  border: 1px solid var(--gold);
  font-size: 18px;
  transition: all 0.4s var(--ease-luxury);
  border-radius: 0;
}

.btn-boxy-linkedin:hover {
  background: #ffffff;
  color: var(--gold);
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* also keep generic .btn-luxury for hero CTA */
.btn-luxury {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  padding: 16px 36px;
  border: 1px solid var(--navy);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--navy);
  background: transparent;
  transition: all 0.6s var(--ease-luxury);
  border-radius: 0;
}

.btn-luxury:hover {
  background: var(--navy);
  color: #ffffff;
  padding: 16px 42px;
}

/* ── FOOTER ────────────────────────────────────────────── */
#footer {
  padding: 160px 0 40px;
  background: #ffffff;
  border-top: 1px solid var(--border);
  color: var(--navy);
}

.footer-inner {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 20px;
}

.footer-col-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-icon-mini {
  height: 48px;
  width: auto;
  display: block;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: #000000;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1.2;
}

.footer-brand-tagline {
  font-family: var(--font-accent);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  color: #000000;
  line-height: 1.2;
}

.footer-col-nav {
  display: flex;
  gap: 32px;
}

.footer-col-nav a {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-body);
  transition: color 0.4s ease;
}

.footer-col-nav a:hover {
  color: var(--gold);
}

.footer-col-copy {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  color: var(--text-light);
}

.footer-col-copy a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.4s ease;
}

.footer-col-copy a:hover {
  color: var(--gold);
}

/* ── BACK TO TOP ────────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.6s var(--ease-luxury);
  z-index: 99;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: visible;
}

.progress-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  pointer-events: none;
}

.progress-ring__circle {
  transition: stroke-dashoffset 0.1s linear;
  stroke-linecap: round;
}

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

#back-to-top:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-5px);
}

/* (duplicate footer rules removed) */

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {

  /* Hero stacks: text top, video bottom, centered */
  .hero-grid {
    flex-direction: column;
    text-align: center;
    padding: 140px 0 80px;
    gap: 40px;
  }

  .hero-text {
    order: 1;
    flex: none;
    width: 100%;
  }

  .hero-visual {
    order: 2;
    flex: none;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
  }

  .hero-text h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-bottom: 0;
  }

  .hero-subtitle {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-video-container {
    width: 100%;
    margin: 0;
  }

  .video-titles {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero-scroll {
    display: none;
  }

  /* Intro stacks */
  .intro-layout {
    flex-direction: column !important;
    gap: 32px;
  }

  .intro-sticky {
    position: static !important;
    width: 100% !important;
    flex: none !important;
  }

  /* Managing Consultant: image top, text under */
  .leader-layout {
    flex-direction: column-reverse !important;
    gap: 40px;
  }

  .leader-photo-column {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }

  .leader-content {
    width: 100%;
  }

  /* Engagements single col */
  .eng-grid {
    grid-template-columns: 1fr;
  }

  /* Testimonials */
  .clients-layout {
    grid-template-columns: 1fr;
  }

  .clients-left {
    position: static;
    margin-bottom: 40px;
  }

  .swipe-hint.mobile-only {
    display: flex !important;
  }

  .testimonial-viewport {
    min-height: 400px;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column !important;
    gap: 32px;
    text-align: center;
  }

  .footer-col-nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
}

@media (max-width: 768px) {

  /* Navbar container */
  #navbar {
    padding: 16px 0;
  }

  #navbar.scrolled {
    padding: 12px 0;
  }

  #navbar .nav-inner {
    justify-content: space-between;
    flex-direction: row;
    display: flex;
    align-items: center;
    min-height: 56px;
    position: relative;
  }

  .nav-logo img {
    height: 36px !important;
  }

  #navbar.scrolled .nav-logo img {
    height: 32px !important;
  }

  .hamburger {
    display: block !important;
    position: relative;
    width: 44px;
    height: 44px;
    z-index: 10020;
    flex-shrink: 0;
    cursor: pointer;
  }

  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.4s var(--ease-luxury);
    position: absolute;
    left: 4px;
    border-radius: 2px;
  }

  .hamburger span:nth-child(1) {
    top: 8px;
  }

  .hamburger span:nth-child(2) {
    top: 15px;
    width: 18px;
  }

  .hamburger span:nth-child(3) {
    top: 22px;
  }

  .hamburger.open span:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
    width: 24px;
    background: var(--white);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
    width: 0;
  }

  .hamburger.open span:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
    width: 24px;
    background: var(--white);
  }

  /* Full-Screen Mobile Menu - Slide from right */
  #navbar #nav-links {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: #0a192f;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    z-index: 10001;
    overflow: hidden;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.3);
    text-align: center;
  }

  #navbar #nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  #navbar #nav-links .pattern-overlay {
    display: block;
    background-image: url('images/patterns/dark.png');
    background-size: 1200px;
    opacity: 0.3 !important;
    z-index: -1;
    pointer-events: none;
  }

  /* Logo inside menu */
  .mobile-only {
    display: block !important;
  }

  #navbar .mobile-nav-hero {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
    margin-top: 22px;
    /* Aligned with hamburger/X */
  }

  #navbar .mobile-nav-logo {
    display: block !important;
    max-width: 120px;
    margin-top: 0;
    margin-bottom: 0px;
    /* Extremely close to text */
    opacity: 1;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
  }

  .mobile-nav-brand-content {
    margin-top: 1.5rem;
    /* Gap after logo */
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
  }

  .mobile-nav-overline {
    display: block;
    font-family: var(--font-accent);
    font-size: 10px;
    text-transform: capitalize;
    /* Better fit for Cormorant */
    letter-spacing: 0.1em;
    color: #3b82f6;
    margin-bottom: 0px;
    opacity: 0.9;
  }

  .mobile-nav-title {
    display: block;
    font-family: var(--font-accent);
    font-size: clamp(14px, 4.5vw, 18px);
    line-height: 1.3;
    color: var(--cream);
    font-weight: 400;
    white-space: normal;
    font-style: italic;
    max-width: 90%;
    margin: 0 auto;
  }

  .mobile-only-br {
    display: none;
  }

  @media (max-width: 380px) {
    .mobile-only-br {
      display: block;
    }
  }

  /* Nav links - smaller, elegant */
  .nav-links-scroll {
    flex: 1;
    overflow-y: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    -webkit-overflow-scrolling: touch;
  }

  #navbar .nav-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
    padding: 3px 0;
    position: relative;
    z-index: 2;
    width: auto;
  }

  #navbar .nav-link:hover {
    color: #c9a96e;
    padding-left: 8px;
  }

  #navbar .nav-link::before {
    display: none;
  }

  /* Hide desktop linkedin on mobile list */
  #navbar .nav-linkedin {
    display: none !important;
  }

  /* Mobile Menu Footer */
  .mobile-menu-footer {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    width: 100%;
    padding: 30px 20px calc(24px + env(safe-area-inset-bottom));
    background: rgba(10, 25, 47, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(248, 245, 240, 0.1);
    gap: 16px;
    position: relative;
    z-index: 10010;
    flex-shrink: 0;
  }

  .mobile-menu-email {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    height: 44px;
    border: 1px solid #c9a96e;
    /* Golden as requested */
    color: #c9a96e;
    background: transparent;
    font-size: 9px;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
  }

  .mobile-footer-linkedin {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid #c9a96e;
    /* Unified gold square */
    color: #c9a96e;
    border-radius: 0;
    transition: all 0.3s ease;
  }

  /* Reveal animation for links */
  #navbar #nav-links.open .nav-link {
    opacity: 1;
    transform: translateX(0);
  }

  /* Sequential Stagger Reveal */
  #navbar #nav-links.open .nav-link:nth-child(3) {
    transition-delay: 0.15s;
  }

  #navbar #nav-links.open .nav-link:nth-child(4) {
    transition-delay: 0.2s;
  }

  #navbar #nav-links.open .nav-link:nth-child(5) {
    transition-delay: 0.25s;
  }

  #navbar #nav-links.open .nav-link:nth-child(6) {
    transition-delay: 0.3s;
  }

  #navbar #nav-links.open .mobile-menu-footer {
    transition-delay: 0.4s;
    opacity: 1;
  }

  .nav-links.open .nav-link::after {
    display: none;
  }

  /* Menu overlay backdrop */
  body.menu-overlay::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
  }

  body.menu-overlay.open::before {
    opacity: 1;
    visibility: visible;
  }

  .hero-grid {
    padding: 120px 0 60px;
  }

  .hero-text h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .eng-card {
    padding: 28px 20px;
  }

  .footer-inner {
    gap: 24px;
  }

  .footer-col-nav {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }

  .footer-col-brand {
    flex-direction: row;
    justify-content: center;
  }

  .section-cta-card {
    margin-top: -80px;
    margin-bottom: -80px;
  }

  .cta-card-inner {
    padding: 60px 24px;
    border-radius: 0 !important;
  }

  .cta-flex-container {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .cta-button-right {
    flex-direction: row !important;
    justify-content: center;
    width: 100%;
    gap: 10px;
  }

  .btn-boxy-contact {
    flex: 1;
    min-width: 0;
    padding: 0 12px;
    font-size: 10px;
  }

  .btn-boxy-linkedin {
    flex: 0 0 52px;
    width: 52px;
  }

  .cta-main-title {
    font-size: 24px;
  }

  #footer {
    padding-top: 120px;
  }

  .section-clients {
    padding-bottom: 120px;
  }

  .btn-massive-mail {
    font-size: clamp(14px, 5vw, 18px);
    letter-spacing: 0.06em;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .leader-photo {
    max-width: 100%;
  }

  .footer-center {
    gap: 10px;
  }
}

/* ── Developer Credit ───────────────────────────────────── */
.dev-credit {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: all 0.4s ease;
}

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

.dev-credit:hover {
  color: var(--gold);
}

.dev-credit:hover::after {
  width: 100%;
}