:root {
  --gold: #C9A96E;
  --gold-dark: #B8860B;
  --text: #f5f5f5;
  --text-dim: #d0d0d0;
  --bg: #0a0a0a;
  --progress: 0;
  --orange: #FFA500;
  --card: #000000;
  --navbar-height: 120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  padding-top: var(--navbar-height, 120px);
  background: var(--bg);
  color: var(--text);
  font-family: 'Georgia', serif;
  line-height: 1.6;
  overflow-x: hidden;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

section, div {
  max-width: 100%;
}

a { color: var(--gold); text-decoration: none; }


/* ── Nav Container ── */
nav.nav-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.92);
  z-index: 99999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1.25rem clamp(1.5rem, 5vw, 5rem);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.4s ease, padding 0.4s ease;
}

nav.nav-container.scrolled {
  background: rgba(10, 10, 10, 0.96);
  padding: 0.9rem clamp(1.5rem, 5vw, 5rem);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

header.header {
  position: relative;
  z-index: 99999;
}

/* ── Logo ── */
.logo img {
  height: 80px;
  width: auto;
  display: block;
}

/* ── Desktop Nav Links ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  color: var(--gold);
}

.nav-links a {
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold-dark);
  text-shadow: 0 0 12px rgba(255,255,255,0.4);
  text-decoration: underline 2px var(--gold);
  text-underline-offset: 4px;
  text-transform: uppercase;
}

/* ── Hamburger & Checkbox ── */
.nav-toggle,
input#nav-toggle {
  display: none;
}

.hamburger {
  display: none;
  position: fixed;
  top: 32px;
  right: 24px;
  z-index: 100001;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  cursor: pointer;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.4s ease;
  transform-origin: center;
}

/* ── Mobile Menu ── */
@media (max-width: 1024px) {
  .hamburger {
    display: flex;
    position: fixed;
    top: 32px;
    right: 24px;
    z-index: 100001;
  }

  .nav-links {
    position: fixed;
    inset: 0 0 0 30%;
    width: 70%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 2.5rem;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 7rem 2rem 4rem;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.77, 0.2, 0.05, 1);
    z-index: 100000;
    box-sizing: border-box;
    height: 100vh;
    overflow-y: auto;
  }

  #nav-toggle:checked ~ .nav-links {
    transform: translateX(0);
  }

  #nav-toggle:checked + .hamburger span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
  }

  #nav-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.3);
  }

  #nav-toggle:checked + .hamburger span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
  }

  .nav-links a {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
  }

  #nav-toggle:checked ~ .nav-links a {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links a:nth-child(1) { transition-delay: 0.1s; }
  .nav-links a:nth-child(2) { transition-delay: 0.15s; }
  .nav-links a:nth-child(3) { transition-delay: 0.2s; }
  .nav-links a:nth-child(4) { transition-delay: 0.25s; }
}

.hero-wrapper,
#showcase,
.insights-wrapper,
.Cultural-Intelligence-wrapper,
.leadership-tease,
.services-preview,
.final-cta {
  position: relative;
  z-index: 1;
}


/* ═══════════════════════════════════════════════════════════
   PINNED HERO — INDEX PAGE ONLY
   Scoped to .hero-wrapper so these rules never bleed
   into subpages (services, contact, about, etc.)
═══════════════════════════════════════════════════════════ */

/* ── Wrapper: perspective stage ── */
.hero-wrapper {
  height: 200vh;
  position: relative;
  perspective: 1400px;
  perspective-origin: 50% 38%;
}

/* ── Sticky hero — SCOPED to .hero-wrapper ── */
.hero-wrapper .hero {
  position: sticky;
  top: 0;
  height: 100dvh;
  overflow: clip;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10;
  background: black;
  transform-style: preserve-3d;
}

/* ── h1 opacity driven by scroll progress — SCOPED to .hero-wrapper ── */
.hero-wrapper h1 {
  font-family: Georgia, serif;
  font-size: clamp(3rem, 6.5vw, 8rem);
  line-height: 1.1;
  margin: 0;
  color: var(--white);
  opacity: var(--progress, 0);
  transform: translateZ(0);
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

/* ── MOBILE PORTRAIT (phones < 768px) ── */
@media (max-width: 767px) and (orientation: portrait) {
  .hero-video {
    width: clamp(115%, calc((100vh * 0.88) + 5vw), 170%);
    height: auto;
    min-height: 100vh;
    object-fit: contain;
    object-position: center 25%;
  }
}

/* ── TABLETS & larger phones in portrait ── */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .hero-video {
    width: clamp(100%, calc((100vh * 0.78) + 4vw), 135%);
    height: auto;
    min-height: 100vh;
    object-fit: contain;
    object-position: center 20%;
  }
}

/* ── TABLETS in LANDSCAPE ── */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .hero-video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
  }
}

.hero-content {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 20%;
  z-index: 3;
  text-align: center;
  width: 100%;
  max-width: 400px;
  padding: 0 1.5rem;
  pointer-events: none;
}

.hero-layout {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.logo-image {
  width: 36px;
  height: auto;
  position: absolute;
  top: 16px;
  left: 20px;
  z-index: 5;
  pointer-events: auto;
}

@media (min-width: 769px) {
  .logo-image {
    display: none;
  }
}

@media (max-width: 768px) and (orientation: portrait) {
  .logo-image { width: 150px; top: 12px; left: 16px; }
}

@media (max-width: 768px) and (orientation: portrait) {
  .hero-content .logo-image {
    width: 32px;
    top: 12px;
    left: 16px;
    order: 1;
  }
}

.hero-content .cta {
  pointer-events: auto;
}

.cta {
  padding: 1.1rem 3rem;
  border: 2px solid var(--orange);
  color: var(--orange);
  outline: var(--text);
  text-shadow: var(--text);
  opacity: 1;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  background: var(--bg);
  cursor: pointer;
  transition: all 0.5s ease;
  font-size: 1rem;
}

.cta:hover,
.cta:focus {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.35);
}

.hero-content .scroll-hint {
  font-size: 1rem;
  opacity: 0.6;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ── Spacer sections ── */
.spacer {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ── 3D Canvas Section ── */
.Canvas-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
}

.three-canvas-section {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.three-canvas-section canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}


/* ══════════════════════════════════════
   SHOWCASE SECTION
══════════════════════════════════════ */
#showcase {
  position: relative;
  width: 100%;
  height: auto;
  min-height: unset;
  overflow: visible;
  padding: 0;
  display: flex;
  flex-direction: column;
}

#showcase .media {
  position: relative;
  inset: unset;
  width: 100%;
  aspect-ratio: 16 / 9;
  flex-shrink: 0;
  opacity: 1 !important;
  z-index: 0;
  padding-top: 0;
}

#showcase .media video {
  padding-top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #0a0a0a;
  filter: brightness(0.85) contrast(1.05);
}

/* showcase mute button */
.video-audio-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;

  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid #ffd700;
  background: rgba(0, 0, 0, 0.45);
  color: white;
  font-size: 1.4rem;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.3s ease;

  opacity: 1;
  pointer-events: auto;
}

.video-audio-btn.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.video-audio-btn:hover {
  transform: translate(-50%, -50%) scale(1.06);
}

#showcase .media:hover .video-audio-btn {
  opacity: 1;
  pointer-events: auto;
}

/* MOBILE: keep button always visible in bottom-right */
@media (max-width: 768px) {
  .video-audio-btn {
    top: auto;
    left: auto;
    right: 16px;
    bottom: 16px;
    transform: none;
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .video-audio-btn.is-hidden {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .video-audio-btn:hover {
    transform: scale(1.06);
  }
}

#showcase .showcase-content {
  position: relative;
  inset: unset;
  z-index: 2;
  width: 100%;
  min-height: unset;
  padding: clamp(3rem, 6vh, 6rem) 1.5rem;
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

#showcase .wrapper {
  width: 100%;
  max-width: 1780px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  background: rgba(12, 12, 14, 0.48);
  border: 1px solid rgba(201, 169, 110, 0.14);
  border-radius: 14px;
  padding: clamp(2.8rem, 5vh, 4rem) clamp(2rem, 4vw, 3.2rem);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.38),
              inset 0 1px 0 rgba(255,255,255,0.04);
}

@media (min-width: 1200px) {
  #showcase .wrapper {
    margin-top: -2rem;
  }
}

.narration {
  width: 100%;
  max-width: 100%;
  background: rgba(84, 68, 47, 0.5);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 14px;
  padding: 2.4rem 2.6rem;
  backdrop-filter: blur(12px);
}

.narration h2 {
  font-family: 'Georgia', serif;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.8rem;
  background: linear-gradient(90deg, var(--gold), #e8c88a, var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.narration p {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  line-height: 1.8;
  color: rgba(248,248,248,0.88);
  margin-bottom: 1.3rem;
}

@media (max-width: 1024px) {
  #showcase .wrapper {
    flex-direction: column;
    gap: 4rem;
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 640px) {
  #showcase {
    padding: 0 1rem 1rem;
  }

  #showcase .wrapper {
    padding: 2rem 1.5rem;
    border-radius: 12px;
  }

  .narration {
    padding: 2rem 1.8rem;
  }

  .narration h2 {
    font-size: clamp(2rem, 7.5vw, 3.2rem);
  }
}

@media (max-width: 768px) {
  #showcase .showcase-content {
    display: none;
  }

  #showcase .media {
    margin-bottom: 0.5rem;
  }
}

@media ((max-width: 1024px) and (orientation: portrait)) {
  #showcase {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 100vh;
    overflow: visible;
    padding: 0;
  }

  #showcase .media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    flex-shrink: 0;
    opacity: 1;
  }

  #showcase .media video {
    object-fit: contain;
    background: #0a0a0a;
  }

  #showcase .media::after {
    content: '';
    position: absolute;
    inset: 0;
  }

  #showcase .showcase-content {
    display: flex;
    flex-direction: column;
    position: relative;
    inset: unset;
    z-index: 2;
    min-height: unset;
    padding: 0;
    opacity: 1;
    transform: none;
    filter: none;
  }

  #showcase .wrapper {
    display: contents;
  }
}

@media (prefers-reduced-motion: reduce) {
  #showcase .showcase-content,
  #showcase .mask img {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}


/* ══════════════════════════════════════
   Infometrics SECTION
══════════════════════════════════════ */
.insights-wrapper {
  max-width: 1100px;
  width: 100%;
  text-align: center;
  padding: clamp(3rem, 8vw, 5rem) 1.5rem;
  margin: 0 auto;
  background: var(--bg);
}

.insights-wrapper .title {
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 1.2rem;
  background: linear-gradient(90deg, var(--gold), #e8c88a, var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.insights-wrapper .subtitle {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  opacity: 0.7;
  font-weight: 400;
  margin-bottom: 4rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.insights-wrapper .stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem 2rem;
  padding: 0 1rem;
}

.insights-wrapper .stat-card {
  background: var(--card);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  border: 1px solid rgba(201, 169, 110, 0.12);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.insights-wrapper .stat-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35),
              0 0 0 1px rgba(201, 169, 110, 0.15) inset;
}

.prefix {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.insights-wrapper .number {
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 900;
  background: linear-gradient(90deg, var(--gold), #e8c88a, var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.insights-wrapper .number.visible {
  opacity: 1;
  transform: translateY(0);
}

.number .suffix {
  font-size: 0.6em;
  opacity: 1;
  margin-left: 2px;
  color: white;
}

.underline-trace {
  position: relative;
  display: inline-block;
}

.underline-trace::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), #e8c88a, var(--gold-dark));
  border-radius: 2px;
  animation: traceIn 2.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.5s;
}

@keyframes traceIn {
  0%   { width: 0; left: 0; }
  60%  { width: 100%; left: 0; }
  100% { width: 100%; left: 0; }
}

.insights-wrapper .cta {
  margin-top: 5rem;
  display: inline-block;
  padding: 1rem 2.6rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--orange);
  background: var(--bg);
  border: 1px solid var(--gold-dark);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
}

.insights-wrapper .cta:hover {
  color: #0f0f12;
  background: linear-gradient(90deg, var(--gold), #e8c88a, var(--gold-dark));
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(201, 169, 110, 0.28);
}

@media (max-width: 640px) {
  .stats {
    gap: 2rem 1.2rem;
  }

  .stat-card {
    padding: 2rem 1.5rem;
  }
}


/* ════════════════════════════════════
   CULTURAL INTELLIGENCE SECTION
════════════════════════════════════ */
.Cultural-Intelligence-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #0a0a0a;
}

.Cultural-Intelligence {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.Cultural-Intelligence .title {
  font-size: clamp(2.4rem, 6.5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin: 3rem 0 0.5rem;
  background: linear-gradient(90deg, var(--gold, #c9a96e), #e8c88a, var(--gold-dark, #b5893c));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
}

.Cultural-Intelligence .subtitle {
  font-size: clamp(1.2rem, 3.5vw, 1.6rem);
  opacity: 0.75;
  font-weight: 400;
  margin: 0 0 3rem;
  max-width: 720px;
  text-align: center;
}

.ci-split {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 1;
}

.Cultural-Intelligence .media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 400px;
  overflow: hidden;
}

.Cultural-Intelligence-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.65) contrast(1.18) saturate(1.12);
}

.Cultural-Intelligence .media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, transparent 30%, rgba(0,0,0,0.55) 85%);
  pointer-events: none;
  z-index: 1;
}

#unmute-btn {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 5;
  background: rgba(15, 15, 18, 0.72);
  color: var(--gold, #c9a96e);
  border: 1px solid rgba(201, 169, 110, 0.5);
  border-radius: 50%;
  width: 72px;
  height: 72px;
  font-size: 1.7rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: all 0.35s ease;
  box-shadow: 0 6px 28px rgba(0,0,0,0.5);
}

#unmute-btn:hover,
#unmute-btn:focus-visible {
  background: rgba(201, 169, 110, 0.25);
  border-color: var(--gold);
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.35);
}

#unmute-btn.muted::after { content: "🔊"; }
#unmute-btn:not(.muted)::after { content: "🔇"; }

.Cultural-Intelligence .ci-content {
  width: 100%;
  background: #0a0a0a;
  padding: clamp(3.5rem, 8vh, 9rem) clamp(1.5rem, 5vw, 5rem);
  z-index: 2;
  color: #f8f8f8;
}

.Cultural-Intelligence .ci-wrapper {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.Cultural-Intelligence .ci-narration {
  max-width: 920px;
  margin: 0 auto;
  background: rgba(12, 12, 14, 0.72);
  border: 1px solid rgba(201, 169, 110, 0.20);
  border-radius: 16px;
  padding: clamp(2.8rem, 6vh, 5rem) clamp(2.2rem, 5vw, 4.5rem);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.5);
}

.ci-narration h3 {
  font-size: clamp(2.3rem, 6vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0 0 1.6rem;
  background: linear-gradient(90deg, var(--gold, #c9a96e), #e8c88a, var(--gold-dark, #b5893c));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ci-narration p {
  font-size: clamp(0.82rem, 2.4vw, 1.18rem);
  line-height: 1.75;
  color: rgba(248,248,248,0.92);
  margin-bottom: 1.6rem;
}

.ci-narration .highlight-last {
  color: var(--gold, #c9a96e);
  font-weight: 600;
  font-size: clamp(1.25rem, 3.2vw, 1.7rem);
  margin-top: 2.4rem;
  display: block;
}

@media (min-width: 1025px) {
  .ci-split {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
  }

  .ci-split > .media,
  .ci-split > .ci-content {
    flex: 1 1 50%;
  }

  .Cultural-Intelligence .media {
    height: auto;
    aspect-ratio: auto;
    min-height: unset;
    position: relative;
    top: auto;
    z-index: 1;
    margin-top: 3.5rem;
  }

  .Cultural-Intelligence .media .Cultural-Intelligence-video {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    filter: brightness(0.65) contrast(1.18) saturate(1.12);
  }

  .Cultural-Intelligence .ci-content {
    display: flex;
    align-items: center;
    padding: clamp(6rem, 12vh, 14rem) clamp(5rem, 9vw, 12rem);
  }

  #unmute-btn {
    bottom: 3.5rem;
    right: 3.5rem;
    width: 80px;
    height: 80px;
    font-size: 1.9rem;
  }
}

@media (max-width: 480px) {
  .Cultural-Intelligence .title {
    margin-top: 2rem;
  }

  .Cultural-Intelligence .ci-narration {
    padding: 2rem 1.3rem 4rem;
  }
}


/* ════════════════════════════════════
   LEADERSHIP SECTION
════════════════════════════════════ */
.leadership-tease {
  padding: 8rem 1rem;
  text-align: center;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  background: linear-gradient(90deg, var(--gold), #e8c88a, var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1.5rem;
}

.intro {
  font-size: 1.3rem;
  max-width: 680px;
  margin: 0 auto 4rem;
  opacity: 0.9;
}

.founders-split {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  position: relative;
  margin: 4rem 0;
}

@media (max-width: 1024px) {
  .founders-split {
    flex-direction: column;
    gap: 3.5rem;
  }

  .founder {
    max-width: 380px;
  }

  .founder-img {
    width: 260px;
    height: 260px;
  }

  .founder .role {
    white-space: nowrap;
    font-size: clamp(1rem, 1.35vw, 1.3rem);
    line-height: 1.4;
  }
}

.founder {
  text-align: center;
  max-width: 460px;
}

.founder .role {
  white-space: nowrap;
  font-size: clamp(1rem, 1.35vw, 1rem);
  line-height: 1.4;
}

.founder-img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: contain;
  border: 4px solid rgba(201,169,110,0.2);
  margin-bottom: 1.2rem;
}

.gold-path {
  width: 180px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), #e8c88a, var(--gold-dark));
  position: relative;
}

.gold-path::before,
.gold-path::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 100%;
  background: inherit;
  top: -50%;
  border-radius: 50%;
  box-shadow: 0 0 20px var(--gold);
}

.gold-path::before { left: -90px; transform: rotate(-30deg); }
.gold-path::after  { right: -90px; transform: rotate(30deg); }


/* ════════════════════════════════════
   SERVICES SECTION
════════════════════════════════════ */
.services-preview {
  padding: 8rem 1rem;
  background:
    url("assets/City-Background.png");
  background-blend-mode: overlay !important;
  background-size: cover;
  background-position: center;
  color: white;
  padding: clamp(4rem, 8vw, 8rem) 1.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 4rem auto 0;
}

.service-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  padding-bottom: 6.5rem;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 15%;
  right: -1.25rem;
  width: 2px;
  height: 90%;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--gold), var(--gold-dark),
    transparent
  );
  opacity: 1;
}

@media (min-width: 1024px) {
  .service-card:nth-child(3n)::after { display: none; }
}

@media (min-width: 600px) and (max-width: 1023px) {
  .service-card:nth-child(2n)::after { display: none; }
}

@media (max-width: 599px) {
  .service-card::after { display: none; }
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.service-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  min-height: 6rem;
  background: linear-gradient(90deg, var(--gold), #e8c88a, var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.service-cta {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  width: max-content;
  margin: 0 auto;
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background: transparent;
  border: 1px solid var(--gold-dark);
  color: var(--gold-dark);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.35s;
}

.service-cta:hover {
  background: linear-gradient(90deg, var(--gold), #e8c88a, var(--gold-dark));
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(201, 169, 110, 0.28);
  color: #0f0f12;
}


/* ════════════════════════════════════
   CONTACT SECTION
════════════════════════════════════ */
.final-cta {
  padding: 10rem 1rem;
  text-align: center;
  background: #0f0f12;
  color: white;
}

.final-cta h2 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  margin-bottom: 2.5rem;
  background: linear-gradient(90deg, var(--gold), #e8c88a, var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.big-cta {
  display: inline-block;
  padding: 1.4rem 4rem;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--gold), #e8c88a, var(--gold-dark));
  color: #0f0f12;
  border-radius: 60px;
  text-decoration: none;
  box-shadow: 0 15px 40px rgba(201,169,110,0.3);
  transition: all 0.4s;
}

.big-cta:hover {
  transform: scale(1.06);
  box-shadow: 0 25px 60px rgba(201,169,110,0.4);
}

.cta-white {
  color: white;
}




/* ════════════════════════════════════
   FOOTER SECTION
════════════════════════════════════ */
.site-footer {
  padding: 4rem 1rem 2rem;
  background: #0a0a0d;
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.socials a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: background 0.3s ease, transform 0.3s ease;
}

.socials a:hover {
  background: rgba(201, 169, 110, 0.15);
  transform: translateY(-3px);
}

.socials i {
  font-size: 1.4rem;
  color: var(--gold);
  transition: color 0.3s ease;
}

.socials a:hover i {
  color: #e8c88a;
}

.socials a:hover { color: #e8c88a; }

/* ════════════════════════════════════
   LARI PAGE V2 CINEMATIC
════════════════════════════════════ */
.lari-page {
  background:
    radial-gradient(circle at 50% 16%, rgba(201, 169, 110, 0.10), transparent 30%),
    linear-gradient(180deg, #040404 0%, #0a0a0a 50%, #050505 100%);
}

.lari-experience {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.lari-panel {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  isolation: isolate;
}

.lari-inner {
  position: relative;
  z-index: 4;
  width: min(100%, 1040px);
  margin: 0 auto;
}

.lari-eyebrow,
.lari-kicker {
  display: inline-block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  opacity: 0.95;
}

.lari-title,
.lari-stat {
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
  background: linear-gradient(90deg, var(--gold), #f0d59f 50%, var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lari-title {
  font-size: clamp(3rem, 8vw, 7.2rem);
  font-weight: 700;
}

.lari-title span {
  display: inline-block;
}

.lari-title-medium {
  font-size: clamp(2.3rem, 6vw, 5.1rem);
}

.lari-stat {
  font-size: clamp(4rem, 14vw, 9.6rem);
  font-weight: 800;
}

.lari-copy {
  margin: 1.35rem auto 0;
  max-width: 720px;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.75;
  color: rgba(245, 245, 245, 0.88);
}

.lari-copy strong {
  color: var(--gold);
  font-weight: 700;
}

.lari-copy-wide {
  max-width: 860px;
}

.lari-note {
  margin: 1rem auto 0;
  max-width: 740px;
  color: rgba(201, 169, 110, 0.92);
  font-size: clamp(0.96rem, 1.8vw, 1.1rem);
  letter-spacing: 0.01em;
}

.lari-cta {
  margin-top: 2rem;
}

.lari-bg {
  position: absolute;
  inset: -10%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.8;
}

.lari-bg-grid {
  background:
    linear-gradient(rgba(201,169,110,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black 35%, transparent 80%);
}

.lari-bg-glow {
  background:
    radial-gradient(circle at 50% 44%, rgba(201,169,110,0.20), transparent 24%),
    radial-gradient(circle at 28% 30%, rgba(255,255,255,0.04), transparent 18%),
    radial-gradient(circle at 72% 72%, rgba(201,169,110,0.08), transparent 26%);
  filter: blur(12px);
}

.lari-bg-lines {
  background:
    repeating-linear-gradient(
      135deg,
      rgba(201,169,110,0.08) 0 2px,
      transparent 2px 22px
    );
  mask-image: radial-gradient(circle at center, black 30%, transparent 82%);
  -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 82%);
}

.lari-bg-final {
  background:
    radial-gradient(circle at 50% 38%, rgba(201,169,110,0.24), transparent 26%),
    linear-gradient(180deg, rgba(201,169,110,0.08), transparent 42%);
  filter: blur(7px);
}

.lari-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.22;
  z-index: 2;
  pointer-events: none;
}

.lari-orb-1 {
  width: 22vw;
  height: 22vw;
  min-width: 180px;
  min-height: 180px;
  top: 18%;
  left: 10%;
  background: radial-gradient(circle, rgba(201,169,110,0.65), transparent 70%);
}

.lari-orb-2 {
  width: 16vw;
  height: 16vw;
  min-width: 140px;
  min-height: 140px;
  bottom: 16%;
  right: 14%;
  background: radial-gradient(circle, rgba(255,255,255,0.22), transparent 70%);
}

.lari-panel::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.18), transparent);
  z-index: 3;
}

.lari-role-toggle {
  display: inline-flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1.5rem 0 1.8rem;
}

.lari-role-btn,
.lari-score-btn {
  appearance: none;
  border: 1px solid rgba(201,169,110,0.26);
  background: rgba(255,255,255,0.02);
  color: rgba(245,245,245,0.92);
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  font-size: 0.98rem;
}

.lari-role-btn:hover,
.lari-score-btn:hover,
.lari-role-btn.is-active,
.lari-score-btn.is-active {
  background: linear-gradient(90deg, rgba(201,169,110,0.18), rgba(232,200,138,0.18));
  border-color: rgba(201,169,110,0.6);
  color: #fff;
  transform: translateY(-2px);
}

.lari-role-copy {
  display: none;
}

.lari-role-copy.is-active {
  display: block;
}

.lari-score-options {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1.5rem 0 1.5rem;
}

.lari-hero::after,
.lari-final::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 40%, rgba(0,0,0,0.38) 100%);
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .lari-panel {
    padding: 2rem 1.35rem;
  }

  .lari-title {
    font-size: clamp(2.4rem, 11vw, 4.8rem);
  }

  .lari-title-medium {
    font-size: clamp(2rem, 9vw, 4rem);
  }

  .lari-stat {
    font-size: clamp(3.3rem, 16vw, 6.5rem);
  }

  .lari-copy {
    font-size: 1rem;
    line-height: 1.65;
    max-width: 95%;
  }

  .lari-note {
    font-size: 0.95rem;
    max-width: 95%;
  }

  .lari-bg-grid {
    background-size: 46px 46px;
  }

  .lari-role-toggle,
  .lari-score-options {
    gap: 0.65rem;
  }

  .lari-role-btn,
  .lari-score-btn {
    width: 100%;
    max-width: 420px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lari-panel {
    min-height: 72vh;
    height: auto;
  }
}



/* ════════════════════════════════════
   LARI V3 VISUAL SYSTEM
════════════════════════════════════ */

.lari-panel {
  perspective: 1200px;
}

.lari-media-layer,
.lari-overlay-layer,
.lari-noise-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.lari-media-layer {
  z-index: 1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.22;
  transform: scale(1.02);
}

.lari-overlay-layer {
  z-index: 2;
  mix-blend-mode: screen;
  opacity: 0.18;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.lari-noise-layer {
  z-index: 3;
  opacity: 0.06;
  background-image: url("assets/lari/gold-noise.png");
  background-size: 420px auto;
  background-repeat: repeat;
}

.lari-inner {
  z-index: 5;
}

.lari-stat-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.lari-stat-line {
  width: min(220px, 40vw);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform-origin: center;
  opacity: 0.7;
}

.lari-reveal-mask {
  overflow: hidden;
  display: inline-block;
}

.lari-reveal-mask > span {
  display: inline-block;
  will-change: transform, opacity;
}

.lari-panel.is-dark .lari-media-layer {
  opacity: 0.14;
}

.lari-panel.is-bright .lari-media-layer {
  opacity: 0.28;
}

.lari-panel.has-photo .lari-overlay-layer {
  background-image:
    radial-gradient(circle at center, rgba(201,169,110,0.20), transparent 36%);
}

.lari-panel.has-grid .lari-overlay-layer {
  background-image: url("assets/lari/la-grid-overlay.png");
  opacity: 0.14;
}

.lari-horizontal-band {
  display: flex;
  gap: 2rem;
  width: max-content;
  align-items: stretch;
  padding-inline: 8vw;
}

.lari-mini-card {
  width: min(70vw, 420px);
  min-height: 260px;
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(201,169,110,0.18);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  text-align: left;
}

.lari-mini-card h3 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--gold), #f0d59f, var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lari-mini-card p {
  color: rgba(245,245,245,0.84);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .lari-mini-card {
    width: 82vw;
    min-height: 220px;
    padding: 1.5rem;
  }
}

@media (max-width: 1024px) {
  .lari-panel {
    padding: 2rem 1.35rem;
  }

  .lari-stat {
    font-size: clamp(3.3rem, 15vw, 6.2rem);
  }

  .lari-title {
    font-size: clamp(2.4rem, 11vw, 4.6rem);
  }

  .lari-title-medium {
    font-size: clamp(2.1rem, 9vw, 3.8rem);
  }

  .lari-copy {
    font-size: 1rem;
    line-height: 1.65;
    max-width: 94%;
  }

  .lari-title span {
    white-space: normal;
  }

  .lari-bg-grid {
    background-size: 42px 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lari-panel {
    height: auto;
    min-height: 70vh;
  }
}


  .newsletter-signup {
    padding: clamp(4rem, 8vw, 7rem) 5vw clamp(10rem, 16vw, 14rem);
    background: #0e0e0e;
    border-top: 1px solid rgba(201, 169, 110, 0.12);
  }

  .newsletter-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 3rem);
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(201, 169, 110, 0.10);
    border-radius: 18px;
    backdrop-filter: blur(6px);
  }

  .newsletter-copy {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .newsletter-eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    color: #c9a96e;
    opacity: 0.82;
  }

  .newsletter-copy h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #c9a96e, #e8c88a, #b5893c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .newsletter-copy p,
  .newsletter-success p {
    max-width: 620px;
    margin: 0 auto;
    color: rgba(248, 248, 248, 0.6);
    line-height: 1.8;
    font-size: 1rem;
  }

  .newsletter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

  @media (max-width: 680px) {
    .newsletter-grid {
      grid-template-columns: 1fr;
    }
  }

  /* ═════════════════════════════════════
   NEWSLETTER SECTION
═════════════════════════════════════ */

  .newsletter-form .field-group {
    margin-bottom: 1rem;
  }

  .newsletter-form .field-label {
    display: block;
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
    color: rgba(248, 248, 248, 0.75);
  }

  .newsletter-form .field-input {
    width: 100%;
    padding: 1rem 1.2rem;
    background: #161616;
    border: 1px solid rgba(201, 169, 110, 0.16);
    border-radius: 10px;
    color: #f8f8f8;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
  }

  .newsletter-form .field-input::placeholder {
    color: rgba(248, 248, 248, 0.28);
  }

  .newsletter-form .field-input:focus {
    outline: none;
    border-color: rgba(201, 169, 110, 0.5);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.08);
  }

  .newsletter-submit-area {
    margin-top: 1rem;
    text-align: center;
  }

  .newsletter-submit-btn {
    display: inline-block;
    padding: 0.85rem 1.8rem;
    background: linear-gradient(90deg, #c9a96e, #b5893c);
    color: #000;
    border: none;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    box-shadow: 0 12px 40px rgba(201, 169, 110, 0.18);
    transition: all 0.35s ease;
    letter-spacing: 0.02em;
  }

  .newsletter-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 55px rgba(201, 169, 110, 0.28);
  }

  .newsletter-note {
    margin-top: 1rem;
    font-size: 0.92rem;
    color: rgba(248, 248, 248, 0.42);
  }

  .newsletter-success {
    text-align: center;
    padding: 1rem 0;
  }

  .newsletter-success h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 0.8rem;
    color: #f8f8f8;
  }

.page-end-spacer {
  height: clamp(6rem, 10vw, 10rem);
}

/* ═════════════════════════════════════
   MOBILE HEADER HARD RESET
   Put this at the VERY BOTTOM of style.css
═════════════════════════════════════ */
@media (max-width: 1024px) {
  header.header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 999999 !important;
  }

  nav.nav-container {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    min-height: 96px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 1.1rem 1.25rem !important;
    background: rgba(10, 10, 10, 0.96) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 999999 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35) !important;
  }

  .logo {
    position: relative !important;
    z-index: 1000000 !important;
    flex: 0 0 auto !important;
  }

  .logo img {
    height: 56px !important;
    width: auto !important;
    display: block !important;
  }

  .hamburger {
    display: flex !important;
    position: fixed !important;
    top: 34px !important;
    right: 20px !important;
    width: 34px !important;
    height: 24px !important;
    justify-content: space-between !important;
    flex-direction: column !important;
    cursor: pointer !important;
    z-index: 1000001 !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .hamburger span {
    display: block !important;
    width: 100% !important;
    height: 3px !important;
    background: var(--gold) !important;
    border-radius: 2px !important;
    transition: all 0.35s ease !important;
  }

  .nav-links {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    width: 78vw !important;
    max-width: 360px !important;
    height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 1.5rem !important;
    padding: 7rem 2rem 2rem !important;
    background: rgba(10, 10, 10, 0.98) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transform: translateX(100%) !important;
    transition: transform 0.35s ease !important;
    z-index: 1000000 !important;
    overflow-y: auto !important;
  }

  #nav-toggle:checked ~ .nav-links {
    transform: translateX(0) !important;
  }

  .nav-links a {
    opacity: 1 !important;
    transform: none !important;
    font-size: 1rem !important;
    width: 100% !important;
    white-space: normal !important;
  }

  #nav-toggle:checked + .hamburger span:nth-child(1) {
    transform: translateY(10px) rotate(45deg) !important;
  }

  #nav-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0 !important;
  }

  #nav-toggle:checked + .hamburger span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg) !important;
  }

  body {
    padding-top: 96px !important;
  }
}