/* ================================================================
   KAP GROUP — AFRICAN CINEMATIC DARK THEME
   Entertainment & Creative Enterprise
================================================================ */

/* ---------------------------------------------------------------
   0. CSS CUSTOM PROPERTIES
--------------------------------------------------------------- */
:root {
  /* Core Palette — Deep cinematic blacks + warm African earth tones */
  --clr-bg:          #060504;
  --clr-bg-2:        #0c0a08;
  --clr-bg-3:        #131009;
  --clr-bg-card:     #100e0b;
  --clr-bg-card-2:   #18150f;

  /* Warm Gold — rich Yoruba bronze/amber */
  --clr-gold:        #d4a843;
  --clr-gold-light:  #f0c96a;
  --clr-gold-dark:   #8a6a1c;
  --clr-gold-pale:   rgba(212,168,67,0.12);

  /* Accent — deep terracotta/rust for cultural warmth */
  --clr-terracotta:  #c4551a;
  --clr-terra-light: #e8784a;
  --clr-terra-pale:  rgba(196,85,26,0.1);

  /* Text */
  --clr-white:       #ffffff;
  --clr-off-white:   #f0ece4;
  --clr-cream:       #d9cdb8;
  --clr-muted:       #7a7060;

  /* Borders */
  --clr-border:      rgba(255,255,255,0.06);
  --clr-border-gold: rgba(212,168,67,0.25);
  --clr-border-warm: rgba(212,168,67,0.15);

  /* Typography — editorial serif + clean sans */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif:   'DM Serif Display', Georgia, serif;
  --font-sans:    'DM Sans', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --section-py: 120px;
  --container:  1320px;

  /* Motion */
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:    cubic-bezier(0.0, 0.0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:    0.2s;
  --dur-med:     0.45s;
  --dur-slow:    0.75s;
}

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

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

body {
  background: var(--clr-bg);
  color: var(--clr-off-white);
  font-family: var(--font-sans);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; }

/* ---------------------------------------------------------------
   2. CUSTOM CURSOR — Film reel inspired
--------------------------------------------------------------- */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--clr-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width var(--dur-fast), height var(--dur-fast);
}
.cursor-follower {
  position: fixed;
  width: 40px; height: 40px;
  border: 1.5px solid rgba(212,168,67,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s var(--ease), width var(--dur-med), height var(--dur-med);
}

/* ---------------------------------------------------------------
   3. PRELOADER — Cinematic countdown style
--------------------------------------------------------------- */
.preloader {
  position: fixed; inset: 0;
  background: var(--clr-bg);
  z-index: 99997;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader__inner { text-align: center; }

.preloader__logo {
  font-family: var(--font-display);
  font-size: clamp(64px, 12vw, 120px);
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  line-height: 1;
}
.preloader__logo span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: preChar 0.6s var(--ease) forwards;
}
.pre-k { color: var(--clr-gold); animation-delay: 0.15s !important; }
.pre-a { color: var(--clr-white); animation-delay: 0.3s !important; }
.pre-p { color: var(--clr-terracotta); animation-delay: 0.45s !important; }

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

.preloader__tagline {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.5s ease 0.8s forwards;
}

.preloader__bar {
  width: 200px; height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 0 auto 20px;
  overflow: hidden;
}
.preloader__fill {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--clr-gold-dark), var(--clr-gold-light));
  animation: loadBar 2s var(--ease) 0.6s forwards;
}
@keyframes loadBar { to { width: 100%; } }
@keyframes fadeUp { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }

.preloader__adinkra {
  font-size: 18px; color: var(--clr-gold);
  opacity: 0;
  animation: fadeUp 0.4s ease 1.2s forwards;
  letter-spacing: 0.5em;
}

/* ---------------------------------------------------------------
   4. TYPOGRAPHY
--------------------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(44px, 7vw, 96px); }
h2 { font-size: clamp(32px, 4.5vw, 64px); }
h3 { font-size: clamp(18px, 2vw, 26px); }

em { font-style: italic; color: var(--clr-gold); }
p { color: var(--clr-muted); font-size: 15px; line-height: 1.85; }

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 20px;
}
.label-ornament { font-size: 8px; opacity: 0.8; }

.section-title {
  color: var(--clr-white);
  margin-bottom: 20px;
  font-weight: 700;
}
.section-sub {
  font-size: 16px;
  color: var(--clr-muted);
  max-width: 520px;
}
.section-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-header .section-label { justify-content: center; }
.section-header .section-sub { margin: 0 auto; }

/* ---------------------------------------------------------------
   5. BUTTONS
--------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  transition: all var(--dur-med) var(--ease);
  position: relative;
  overflow: hidden;
  cursor: none;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  transform: translateX(-101%);
  transition: transform var(--dur-med) var(--ease);
}
.btn:hover::after { transform: translateX(0); }

.btn--primary {
  background: linear-gradient(135deg, var(--clr-gold-dark), var(--clr-gold));
  color: #0c0a08;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(212,168,67,0.28);
}

.btn--outline {
  border: 1px solid var(--clr-border-gold);
  color: var(--clr-gold);
}
.btn--outline:hover {
  background: var(--clr-gold-pale);
  border-color: var(--clr-gold);
  transform: translateY(-2px);
}

.btn--ghost { color: var(--clr-off-white); padding-left: 0; }
.btn--ghost:hover { color: var(--clr-gold); gap: 18px; }

.btn--sm { padding: 10px 22px; font-size: 11px; }
.btn--full { width: 100%; justify-content: center; }

/* ---------------------------------------------------------------
   6. CONTAINER & LAYOUT
--------------------------------------------------------------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 44px; }
.section { padding: var(--section-py) 0; }

/* ---------------------------------------------------------------
   7. NAVIGATION
--------------------------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 52px;
  transition: all var(--dur-med) var(--ease);
}
.nav.scrolled {
  background: rgba(6,5,4,0.96);
  backdrop-filter: blur(24px);
  padding: 14px 52px;
  border-bottom: 1px solid var(--clr-border);
}

.nav__logo a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__logo-mark {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
}
.logo-k { color: var(--clr-gold); }
.logo-a { color: var(--clr-white); }
.logo-p { color: var(--clr-terracotta); }
.logo-group {
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--clr-muted);
}

.nav__links { display: flex; gap: 40px; }
.nav__link {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-muted);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--dur-fast);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--clr-gold);
  transition: width var(--dur-med) var(--ease);
}
.nav__link:hover { color: var(--clr-white); }
.nav__link:hover::after, .nav__link.active-link::after { width: 100%; }
.nav__link.active-link { color: var(--clr-white); }

.nav__hamburger { display: none; flex-direction: column; gap: 5px; width: 28px; }
.nav__hamburger span {
  display: block; height: 1.5px;
  background: var(--clr-off-white);
  transition: all var(--dur-med) var(--ease);
  transform-origin: left;
}
.nav__hamburger.active span:nth-child(1) { transform: rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.active span:nth-child(3) { transform: rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(6,5,4,0.98);
  backdrop-filter: blur(32px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-slow) var(--ease), visibility var(--dur-slow);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu__inner { text-align: center; }
.mobile-menu ul { margin-bottom: 40px; }
.mobile-menu li { margin: 16px 0; }
.mobile-menu__link {
  font-family: var(--font-display);
  font-size: clamp(32px, 8vw, 60px);
  font-weight: 700;
  color: var(--clr-off-white);
  transition: color var(--dur-fast);
}
.mobile-menu__link:hover { color: var(--clr-gold); }
.mobile-menu__sub {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-muted);
}

/* ---------------------------------------------------------------
   8. HERO SECTION
--------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 44px 200px;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 960px;
}

.hero__bg { position: absolute; inset: 0; z-index: 0; }

#heroCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}

.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(212,168,67,0.05) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(196,85,26,0.06) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(6,5,4,0.5) 0%, rgba(6,5,4,0.65) 60%, rgba(6,5,4,0.95) 100%);
}

/* Film grain texture overlay */
.hero__film-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  opacity: 0.4;
}

/* Adinkra-inspired decorative shapes */
.hero__deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.hero__deco--tl {
  top: 80px; left: 52px;
  width: 100px; height: 100px;
  border: 1px solid rgba(212,168,67,0.12);
  border-radius: 50%;
}
.hero__deco--tl::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(212,168,67,0.08);
  border-radius: 50%;
}
.hero__deco--br {
  bottom: 140px; right: 52px;
  width: 60px; height: 60px;
  border: 1px solid rgba(196,85,26,0.2);
  transform: rotate(45deg);
}
.hero__deco--circle {
  top: 50%;
  left: 52px;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--clr-gold);
  box-shadow: 0 0 20px var(--clr-gold);
  opacity: 0.5;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 32px;
}
.eyebrow-ornament { font-size: 8px; opacity: 0.7; }

.hero__title {
  font-size: clamp(52px, 9vw, 112px);
  font-weight: 900;
  line-height: 1.0;
  color: var(--clr-white);
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
}
.hero__title-row { display: block; }
.hero__title-accent em {
  font-style: italic;
  color: var(--clr-gold);
  font-weight: 700;
}

.hero__sub {
  font-size: 17px;
  color: var(--clr-muted);
  line-height: 1.85;
  margin-bottom: 52px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

/* Stats bar */
.hero__stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12,10,8,0.92);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--clr-border);
  padding: 28px 40px;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 52px;
  gap: 6px;
}
.stat__number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  color: var(--clr-white);
  line-height: 1;
}
.stat__suffix {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--clr-gold);
}
.stat__label {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-muted);
}
.stat__divider { width: 1px; height: 52px; background: var(--clr-border); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 112px;
  right: 52px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-muted);
  animation: scrollBob 2s ease-in-out infinite;
}
@keyframes scrollBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
.scroll-indicator__mouse {
  width: 22px; height: 36px;
  border: 1.5px solid rgba(212,168,67,0.3);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-indicator__wheel {
  width: 3px; height: 7px;
  background: var(--clr-gold);
  border-radius: 2px;
  animation: wheelDrop 1.5s ease-in-out infinite;
}
@keyframes wheelDrop {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}

/* ---------------------------------------------------------------
   9. TICKER
--------------------------------------------------------------- */
.ticker-wrap {
  background: var(--clr-bg-2);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  overflow: hidden;
  padding: 16px 0;
}
.ticker {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: ticker 35s linear infinite;
}
.ticker span {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-muted);
  white-space: nowrap;
}
.ticker-dot { color: var(--clr-gold) !important; font-size: 7px !important; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------------------------------------------------------------
   10. ABOUT SECTION
--------------------------------------------------------------- */
.about { background: var(--clr-bg); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: center;
}

/* Film-strip visual */
.about__visual-inner {
  position: relative;
  height: 560px;
}

.about__film-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  height: 100%;
}

.film-frame {
  border: 1px solid var(--clr-border);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--dur-med), transform var(--dur-med);
  cursor: default;
}
.film-frame:hover {
  border-color: var(--clr-border-gold);
  transform: scale(1.02);
  z-index: 1;
}
.film-frame--1 { background: linear-gradient(135deg, #1a0a00, #3d1f00); }
.film-frame--2 { background: linear-gradient(135deg, #0a1400, #1f3d00); }
.film-frame--3 { background: linear-gradient(135deg, #14000a, #3d0020); }
.film-frame--4 { background: linear-gradient(135deg, #00101a, #002040); }

.film-frame__icon {
  font-size: 36px;
  color: rgba(212,168,67,0.3);
  transition: color var(--dur-med);
}
.film-frame:hover .film-frame__icon { color: rgba(212,168,67,0.7); }
.film-frame span {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(212,168,67,0.5);
}

/* Sprocket holes on left/right */
.film-frame::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 16px;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px, transparent 8px,
    rgba(0,0,0,0.4) 8px, rgba(0,0,0,0.4) 14px
  );
  border-right: 1px solid rgba(255,255,255,0.04);
}
.film-frame::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 16px;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px, transparent 8px,
    rgba(0,0,0,0.4) 8px, rgba(0,0,0,0.4) 14px
  );
  border-left: 1px solid rgba(255,255,255,0.04);
}

.about__visual-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  z-index: 5;
}
.about__badge-ring {
  width: 110px; height: 110px;
  background: linear-gradient(135deg, var(--clr-gold-dark), var(--clr-gold));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 50px rgba(212,168,67,0.25);
}
.about__badge-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  color: #0c0a08;
  line-height: 1;
}
.about__badge-text {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(12,10,8,0.65);
}

.about__visual-ornament {
  position: absolute;
  top: -20px; left: -20px;
  width: 80px; height: 80px;
  border: 1px solid rgba(212,168,67,0.15);
  border-radius: 50%;
}
.about__visual-ornament::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(196,85,26,0.12);
  border-radius: 50%;
}

.about__lead {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--clr-off-white);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.about__body { margin-bottom: 40px; font-size: 15px; }

.about__pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 44px;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid var(--clr-border);
  border-left: 2px solid var(--clr-gold);
  background: var(--clr-bg-card);
  border-radius: 2px;
  transition: background var(--dur-med), transform var(--dur-med);
}
.pillar:hover {
  background: var(--clr-bg-card-2);
  transform: translateX(6px);
}
.pillar > i { font-size: 17px; color: var(--clr-gold); margin-top: 2px; flex-shrink: 0; }
.pillar strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 3px;
}
.pillar p { font-size: 13px; margin: 0; }

/* ---------------------------------------------------------------
   11. BUSINESSES SECTION
--------------------------------------------------------------- */
.businesses {
  background: var(--clr-bg-2);
  position: relative;
  overflow: hidden;
}

.businesses__bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(180px, 28vw, 380px);
  font-weight: 900;
  color: rgba(255,255,255,0.018);
  pointer-events: none;
  letter-spacing: 0.05em;
  user-select: none;
  white-space: nowrap;
}

.biz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--clr-border);
  border: 1px solid var(--clr-border);
  border-radius: 4px;
  overflow: hidden;
}

.biz-card {
  background: var(--clr-bg-card);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background var(--dur-med);
}
.biz-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease);
}
.biz-card:hover::before { transform: scaleX(1); }
.biz-card:hover { background: var(--clr-bg-3); }

.biz-card__num {
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 900;
  color: rgba(212,168,67,0.06);
  line-height: 1;
  pointer-events: none;
}

.biz-card__icon-wrap { margin-bottom: 20px; }
.biz-card__icon {
  width: 52px; height: 52px;
  border: 1px solid var(--clr-border-gold);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--clr-gold);
  transition: background var(--dur-med), transform var(--dur-med);
}
.biz-card:hover .biz-card__icon {
  background: var(--clr-gold-pale);
  transform: scale(1.08);
}

.biz-card__body { flex: 1; }
.biz-card__cat {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-terracotta);
  margin-bottom: 8px;
}
.biz-card h3 {
  font-size: 19px;
  color: var(--clr-white);
  margin-bottom: 12px;
  line-height: 1.25;
}
.biz-card p { font-size: 13px; margin-bottom: 20px; line-height: 1.8; }

.biz-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.biz-card__tags li {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-gold);
  padding: 3px 9px;
  border: 1px solid var(--clr-border-gold);
  border-radius: 2px;
}

.biz-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-muted);
  transition: color var(--dur-fast), gap var(--dur-med);
  margin-top: auto;
}
.biz-card__link:hover { color: var(--clr-gold); gap: 14px; }

/* Featured card */
.biz-card--featured {
  background: linear-gradient(150deg, #100e0b, #1e1709);
  border-left: 2px solid var(--clr-gold);
}
.biz-card--featured::before { background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-light), var(--clr-gold)); }

/* CTA Card */
.biz-card--cta {
  background: linear-gradient(150deg, rgba(212,168,67,0.07), rgba(196,85,26,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
}
.biz-card--cta::before { display: none; }
.biz-card__cta-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.biz-card__cta-ornament {
  font-size: 28px;
  color: var(--clr-gold);
  opacity: 0.4;
}
.biz-card--cta h3 { font-size: 24px; color: var(--clr-white); }
.biz-card--cta p { font-size: 14px; max-width: 220px; }

/* ---------------------------------------------------------------
   12. PORTFOLIO / FILMS SECTION
--------------------------------------------------------------- */
.portfolio { background: var(--clr-bg); }

.portfolio__filter {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.filter-btn {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-muted);
  padding: 9px 22px;
  border: 1px solid var(--clr-border);
  border-radius: 2px;
  transition: all var(--dur-med);
  cursor: none;
}
.filter-btn:hover,
.filter-btn.active {
  color: var(--clr-gold);
  border-color: var(--clr-border-gold);
  background: var(--clr-gold-pale);
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pcard {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: 3px;
  overflow: hidden;
  transition: transform var(--dur-med) var(--ease), border-color var(--dur-med), box-shadow var(--dur-med);
}
.pcard:hover {
  transform: translateY(-10px);
  border-color: var(--clr-border-gold);
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}

.pcard__img {
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pcard__icon {
  font-size: 52px;
  color: rgba(255,255,255,0.08);
  transition: color var(--dur-med), transform var(--dur-slow);
}
.pcard:hover .pcard__icon { color: rgba(212,168,67,0.2); transform: scale(1.1); }

.pcard__award {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(212,168,67,0.15);
  border: 1px solid var(--clr-border-gold);
  color: var(--clr-gold);
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.pcard__award i { font-size: 8px; }

.pcard__body { padding: 22px; }

.pcard__tag {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-terracotta);
  margin-bottom: 8px;
}
.pcard__title { font-size: 20px; color: var(--clr-white); margin-bottom: 10px; }
.pcard__desc { font-size: 13px; margin-bottom: 16px; line-height: 1.8; }
.pcard__meta {
  display: flex; gap: 16px;
}
.pcard__meta span {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--clr-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.pcard__meta i { color: var(--clr-gold); font-size: 10px; }
.pcard.hidden { display: none; }

/* ---------------------------------------------------------------
   13. FOUNDER SECTION
--------------------------------------------------------------- */
.founder {
  background: var(--clr-bg-2);
  position: relative;
  overflow: hidden;
}

.founder__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(196,85,26,0.05) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 50%, rgba(212,168,67,0.04) 0%, transparent 55%);
}

.founder__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.founder__frame {
  position: relative;
  max-width: 400px;
}

.founder__avatar {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(150deg, #1a0f00, #3d2500, #5a3800);
  border: 1px solid var(--clr-border-gold);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.founder__avatar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(212,168,67,0.01) 3px,
    rgba(212,168,67,0.01) 4px
  );
}
.founder__avatar-inner {
  font-size: 120px;
  color: rgba(212,168,67,0.12);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Photo inside the founder frame */
.founder__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(1.0) contrast(1.05) saturate(1.08);
  display: block;
}

.founder__frame-deco {
  position: absolute;
  top: -16px; left: -16px; right: 16px; bottom: 16px;
  border: 1px solid rgba(212,168,67,0.1);
  border-radius: 3px;
  pointer-events: none;
}

.founder__awards {
  position: absolute;
  bottom: 24px;
  right: -28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.award-badge {
  background: rgba(6,5,4,0.95);
  border: 1px solid var(--clr-border-gold);
  border-radius: 3px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 110px;
}
.award-badge i { color: var(--clr-gold); font-size: 14px; }
.award-badge span {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-off-white);
  line-height: 1.4;
}

.founder__subtitle {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400;
  color: var(--clr-gold);
  margin-bottom: 28px;
}

.founder__lead {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--clr-off-white);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 20px;
}
.founder__body { font-size: 15px; margin-bottom: 16px; }

.founder__accolades {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 36px 0;
  padding: 24px 0;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}
.accolade {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.accolade__num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--clr-gold);
  line-height: 1;
}
.accolade__text {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-muted);
}
.accolade__divider { width: 1px; height: 48px; background: var(--clr-border); }

.founder__quote {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-left: 3px solid var(--clr-gold);
  padding: 24px 28px;
  border-radius: 2px;
  margin-top: 8px;
}
.founder__quote i {
  font-size: 24px;
  color: var(--clr-gold);
  opacity: 0.3;
  margin-bottom: 12px;
  display: block;
}
.founder__quote p {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  color: var(--clr-off-white);
  margin-bottom: 12px;
  line-height: 1.7;
}
.founder__quote cite {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-gold);
}

/* ---------------------------------------------------------------
   14. IMPACT SECTION
--------------------------------------------------------------- */
.impact {
  background: var(--clr-bg);
  position: relative;
  overflow: hidden;
}
.impact__cinematic {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 120px,
      rgba(212,168,67,0.012) 120px,
      rgba(212,168,67,0.012) 121px
    );
}

.impact__grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--clr-border);
  border: 1px solid var(--clr-border);
  border-radius: 4px;
  overflow: hidden;
}

.impact__metric {
  background: var(--clr-bg-card);
  padding: 40px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: background var(--dur-med);
}
.impact__metric:hover { background: var(--clr-bg-card-2); }

.impact__metric-icon {
  width: 52px; height: 52px;
  border: 1px solid var(--clr-border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--clr-gold);
}

.impact__metric-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--clr-white);
  line-height: 1;
}
.impact__metric-num .count-up { color: var(--clr-gold); }

.impact__metric-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-muted);
}

.impact__metric-bar {
  width: 80%;
  height: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 1px;
  overflow: hidden;
}
.impact__metric-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--clr-gold-dark), var(--clr-gold));
  border-radius: 1px;
  width: 0;
  transition: width 1.5s var(--ease);
}
.impact__metric.animated .impact__metric-bar span { /* width set inline */ }

/* ---------------------------------------------------------------
   15. TESTIMONIALS / PRESS
--------------------------------------------------------------- */
.testimonials { background: var(--clr-bg-2); }

.testimonials__swiper { padding-bottom: 60px !important; }

.tcard {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: 3px;
  padding: 36px;
  margin: 8px;
  position: relative;
  transition: border-color var(--dur-med);
}
.tcard:hover { border-color: var(--clr-border-gold); }

.tcard__pub {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-terracotta);
  margin-bottom: 16px;
}
.tcard__quote {
  font-size: 28px;
  color: var(--clr-gold);
  opacity: 0.25;
  margin-bottom: 16px;
}
.tcard__text {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  color: var(--clr-off-white);
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: 20px;
}
.tcard__meta { color: var(--clr-gold); font-size: 11px; letter-spacing: 3px; }

/* Swiper overrides */
.swiper-button-prev, .swiper-button-next {
  color: var(--clr-gold) !important;
  width: 44px !important; height: 44px !important;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border-gold);
  border-radius: 50%;
}
.swiper-button-prev::after, .swiper-button-next::after { font-size: 13px !important; }
.swiper-button-prev:hover, .swiper-button-next:hover { background: var(--clr-gold-pale); }
.swiper-pagination-bullet { background: var(--clr-muted) !important; }
.swiper-pagination-bullet-active { background: var(--clr-gold) !important; }

/* ---------------------------------------------------------------
   16. CONTACT SECTION
--------------------------------------------------------------- */
.contact { background: var(--clr-bg); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.contact__lead { font-size: 16px; margin-bottom: 36px; line-height: 1.85; }

.contact__details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.contact__detail { display: flex; align-items: flex-start; gap: 16px; }
.contact__detail-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--clr-border-gold);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--clr-gold);
  flex-shrink: 0;
}
.contact__detail strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 3px;
}
.contact__detail p { font-size: 14px; color: var(--clr-off-white); margin: 0; }

.contact__ventures-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 12px;
}
.venture-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.venture-tags span {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-muted);
  padding: 5px 10px;
  border: 1px solid var(--clr-border);
  border-radius: 2px;
  transition: all var(--dur-fast);
  cursor: default;
}
.venture-tags span:hover {
  color: var(--clr-gold);
  border-color: var(--clr-border-gold);
  background: var(--clr-gold-pale);
}

.contact__socials { display: flex; gap: 10px; }
.social-btn {
  width: 42px; height: 42px;
  border: 1px solid var(--clr-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--clr-muted);
  transition: all var(--dur-med);
}
.social-btn:hover {
  border-color: var(--clr-border-gold);
  color: var(--clr-gold);
  transform: translateY(-3px);
}

/* Form */
.contact__form-wrap {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-top: 2px solid var(--clr-gold);
  border-radius: 2px;
  padding: 44px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.form-group label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--clr-border);
  border-radius: 2px;
  padding: 13px 16px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--clr-off-white);
  transition: border-color var(--dur-fast), background var(--dur-fast);
  outline: none;
  resize: vertical;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(122,112,96,0.45); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-border-gold);
  background: rgba(212,168,67,0.03);
}
.form-group select option { background: #1a1608; color: var(--clr-off-white); }

.form-feedback {
  margin-top: 14px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-align: center;
  min-height: 20px;
}
.form-feedback.success { color: #5cdb95; }
.form-feedback.error { color: #f87171; }

/* ---------------------------------------------------------------
   17. FOOTER
--------------------------------------------------------------- */
.footer { background: var(--clr-bg-2); border-top: 1px solid var(--clr-border); }
.footer__top { padding: 80px 0; }

.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 0.7fr 1.4fr;
  gap: 56px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.footer__brand p { font-size: 14px; margin-bottom: 10px; max-width: 280px; }
.footer__tagline {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 24px;
}
.footer__socials { display: flex; gap: 8px; }
.footer__socials a {
  width: 36px; height: 36px;
  border: 1px solid var(--clr-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--clr-muted);
  transition: all var(--dur-med);
}
.footer__socials a:hover { border-color: var(--clr-border-gold); color: var(--clr-gold); }

.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 11px; }
.footer__col ul li a {
  font-size: 14px;
  color: var(--clr-muted);
  transition: color var(--dur-fast), padding-left var(--dur-fast);
}
.footer__col ul li a:hover { color: var(--clr-gold); padding-left: 5px; }

.footer__newsletter { margin-top: 24px; }
.footer__newsletter p { font-size: 12px; color: var(--clr-muted); margin-bottom: 10px; }
.footer__sub-form {
  display: flex;
  border: 1px solid var(--clr-border);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color var(--dur-fast);
}
.footer__sub-form:focus-within { border-color: var(--clr-border-gold); }
.footer__sub-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 9px 12px;
  font-size: 13px;
  color: var(--clr-off-white);
  outline: none;
}
.footer__sub-form input::placeholder { color: rgba(122,112,96,0.4); }
.footer__sub-form button {
  width: 40px;
  background: var(--clr-gold-pale);
  color: var(--clr-gold);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast);
}
.footer__sub-form button:hover { background: var(--clr-gold); color: #0c0a08; }

.footer__bottom {
  border-top: 1px solid var(--clr-border);
  padding: 22px 0;
}
.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__bottom p { font-size: 13px; color: var(--clr-muted); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: 12px; color: var(--clr-muted); transition: color var(--dur-fast); }
.footer__legal a:hover { color: var(--clr-gold); }

/* ---------------------------------------------------------------
   18. BACK TO TOP
--------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 500;
  width: 46px; height: 46px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--clr-gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--dur-med) var(--ease);
  cursor: none;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--clr-gold); color: #0c0a08; transform: translateY(-4px); }

/* ---------------------------------------------------------------
   19. SCROLL REVEAL
--------------------------------------------------------------- */
.reveal-up {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible { opacity: 1; transform: translate(0); }

[data-delay="100"] { transition-delay: 0.1s !important; }
[data-delay="200"] { transition-delay: 0.2s !important; }
[data-delay="300"] { transition-delay: 0.3s !important; }
[data-delay="400"] { transition-delay: 0.4s !important; }
[data-delay="500"] { transition-delay: 0.5s !important; }

/* ---------------------------------------------------------------
   20. RESPONSIVE
--------------------------------------------------------------- */
@media (max-width: 1200px) {
  .about__grid { gap: 60px; }
  .biz-grid { grid-template-columns: repeat(2, 1fr); }
  .founder__grid { grid-template-columns: 1fr 1.4fr; gap: 60px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 1024px) {
  :root { --section-py: 80px; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .portfolio__grid { grid-template-columns: repeat(2, 1fr); }
  .impact__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --section-py: 60px; }
  .container { padding: 0 20px; }
  .nav { padding: 18px 20px; }
  .nav.scrolled { padding: 12px 20px; }
  .hero { padding: 120px 20px 180px; }
  .hero__stats { flex-wrap: wrap; padding: 18px 20px; }
  .stat { width: 50%; padding: 12px 16px; }
  .stat__divider:nth-child(4) { display: none; }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__visual-inner { height: 360px; }
  .biz-grid { grid-template-columns: 1fr; }
  .portfolio__grid { grid-template-columns: 1fr; }
  .founder__grid { grid-template-columns: 1fr; gap: 48px; }
  .founder__awards { right: 16px; }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .contact__form-wrap { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom .container { flex-direction: column; gap: 12px; text-align: center; }
  .impact__grid { grid-template-columns: 1fr; }
  .scroll-indicator { display: none; }
  .hero__deco { display: none; }
}
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__stats { flex-direction: column; align-items: center; }
  .stat { width: 100%; }
  .stat__divider { width: 60%; height: 1px; }
}

/* ---------------------------------------------------------------
   21. SELECTION & SCROLLBAR
--------------------------------------------------------------- */
::selection { background: rgba(212,168,67,0.2); color: var(--clr-white); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--clr-bg); }
::-webkit-scrollbar-thumb { background: var(--clr-gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--clr-gold); }

/* ---------------------------------------------------------------
   22. ORBITAL LOGO SYSTEM
--------------------------------------------------------------- */

/* === Container === */
.orbital-system {
  position: relative;
  width: 600px;
  height: 600px;
  margin: 0 auto 52px;
  flex-shrink: 0;
}

/* === Orbit ring guides === */
.orbit-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}
/* Main single ring matching logo orbit radius */
.orbit-ring--main {
  width: 540px; height: 540px;
  border: 1px dashed rgba(212,168,67,0.2);
  animation: orbitRingPulse 5s ease-in-out infinite;
}
/* Subtle inner decorative ring */
.orbit-ring--inner {
  width: 320px; height: 320px;
  border: 1px solid rgba(212,168,67,0.06);
  animation: orbitRingPulse 5s ease-in-out infinite 1.5s;
}
@keyframes orbitRingPulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}

/* === Central head === */
.orbital-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 210px;
  height: 210px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.orbital-center__glow {
  position: absolute;
  inset: -50px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(212,168,67,0.18) 0%,
    rgba(212,168,67,0.06) 40%,
    transparent 70%);
  pointer-events: none;
  animation: centerGlow 3s ease-in-out infinite;
}
@keyframes centerGlow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.12); }
}

/* Head image — white silhouette on dark background, NO border, NO circle */
.orbital-center__img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  border: none;
  outline: none;
  box-shadow: none;
  /* White silhouette: invert makes white → visible on dark bg + gold glow */
  filter:
    brightness(1) contrast(1)
    drop-shadow(0 0 24px rgba(212,168,67,0.2))
    drop-shadow(0 0 8px rgba(212,168,67,0.1));
  transition: filter 0.4s ease, transform 0.4s ease;
  position: relative;
  z-index: 2;
}

/* Head hover — radiant golden aura */
.orbital-system.head-hovered .orbital-center__img {
  filter:
    brightness(1.08) contrast(1.05)
    drop-shadow(0 0 40px rgba(212,168,67,0.55))
    drop-shadow(0 0 80px rgba(212,168,67,0.2));
  transform: scale(1.06);
}

/* Pulse rings */
.orbital-center__pulse {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1.5px solid rgba(212,168,67,0.25);
  pointer-events: none;
  animation: centerPulse 2.5s ease-out infinite;
}
.orbital-center__pulse--2 {
  inset: -20px;
  border-color: rgba(212,168,67,0.12);
  animation-delay: 1.25s;
}
@keyframes centerPulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0;   }
}

/* === Orbital Logo Nodes === */
.orbit-logo {
  position: absolute;
  top: 50%; left: 50%;
  z-index: 20;
  cursor: pointer;
}

.orbit-logo__bubble {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 78px;
  height: 78px;
  background: rgba(14,12,8,0.96);
  border: 1.5px solid rgba(212,168,67,0.32);
  border-radius: 50%;
  padding: 8px;
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
  backdrop-filter: blur(14px);
  box-shadow:
    0 4px 24px rgba(0,0,0,0.65),
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 0 0 1px rgba(212,168,67,0.06);
}

/* Colour variants */
.orbit-logo__bubble--gold   { border-color: rgba(212,168,67,0.55); background: rgba(18,14,2,0.94); }
.orbit-logo__bubble--terra  { border-color: rgba(196,85,26,0.5);   background: rgba(18,8,2,0.94);  }
.orbit-logo__bubble--yellow { border-color: rgba(240,210,0,0.5);   background: rgba(18,16,0,0.94); }
.orbit-logo__bubble--mono   { border-color: rgba(180,180,180,0.35);background: rgba(14,14,14,0.94);}

.orbit-logo__icon-wrap {
  font-size: 18px;
  color: var(--clr-gold);
  line-height: 1;
  transition: color 0.3s, transform 0.3s;
}
.orbit-logo__bubble--terra  .orbit-logo__icon-wrap { color: var(--clr-terra-light); }
.orbit-logo__bubble--yellow .orbit-logo__icon-wrap { color: #f0d040; }
.orbit-logo__bubble--mono   .orbit-logo__icon-wrap { color: #c8c8c8; }

.orbit-logo__label {
  font-family: var(--font-sans);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(240,236,228,0.55);
  text-align: center;
  line-height: 1.3;
  transition: color 0.3s;
}

/* === Tooltip === */
.orbit-logo__tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: rgba(14,12,8,0.98);
  border: 1px solid var(--clr-border-gold);
  border-radius: 4px;
  padding: 10px 14px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 50;
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.7);
}
.orbit-logo__tooltip strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  color: var(--clr-gold);
  margin-bottom: 2px;
}
.orbit-logo__tooltip span {
  font-family: var(--font-sans);
  font-size: 10px;
  color: var(--clr-muted);
}
.orbit-logo__tooltip::after {
  content: '';
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--clr-border-gold);
}

/* === Active / hover state === */
.orbit-logo--active .orbit-logo__bubble {
  width: 86px;
  height: 86px;
  border-color: var(--clr-gold);
  background: rgba(212,168,67,0.1);
  box-shadow:
    0 0 22px rgba(212,168,67,0.35),
    0 0 50px rgba(212,168,67,0.14),
    inset 0 0 14px rgba(212,168,67,0.06);
}
.orbit-logo--active .orbit-logo__bubble--terra {
  border-color: var(--clr-terra-light);
  background: rgba(196,85,26,0.12);
  box-shadow: 0 0 22px rgba(196,85,26,0.35), 0 0 50px rgba(196,85,26,0.1);
}
.orbit-logo--active .orbit-logo__icon-wrap { color: var(--clr-gold-light); transform: scale(1.22); }
.orbit-logo--active .orbit-logo__label    { color: var(--clr-cream); }
.orbit-logo--active .orbit-logo__tooltip  { opacity: 1; transform: translateX(-50%) translateY(0); }

/* System hover — all logos glow softly */
.orbital-system.hovered .orbit-logo__bubble {
  border-color: rgba(212,168,67,0.5);
  box-shadow: 0 0 14px rgba(212,168,67,0.18);
}
/* Head hover — bubbles pulse */
.orbital-system.head-hovered .orbit-logo__bubble {
  border-color: rgba(212,168,67,0.65);
  box-shadow: 0 0 20px rgba(212,168,67,0.3), 0 0 40px rgba(212,168,67,0.1);
  animation: bubbleBurst 0.5s ease-out forwards;
}
@keyframes bubbleBurst {
  0%  { transform: scale(1); }
  45% { transform: scale(1.14); }
  100%{ transform: scale(1.06); }
}

/* Centre connector dot */
.orbit-logo::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(212,168,67,0.2);
  pointer-events: none;
  transition: background 0.3s, box-shadow 0.3s;
}
.orbit-logo--active::before {
  background: var(--clr-gold);
  box-shadow: 0 0 8px var(--clr-gold);
}

/* ---------------------------------------------------------------
   22b. HERO LAYOUT ADJUSTMENTS FOR ORBITAL
--------------------------------------------------------------- */
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .hero__eyebrow { margin-bottom: 20px; }

/* ---------------------------------------------------------------
   22c. RESPONSIVE ORBITAL
--------------------------------------------------------------- */
@media (max-width: 1100px) {
  .orbital-system { width: 500px; height: 500px; }
  .orbit-ring--main  { width: 450px; height: 450px; }
  .orbit-ring--inner { width: 265px; height: 265px; }
  .orbital-center    { width: 190px; height: 190px; }
  .orbital-center__img { width: 180px; height: 180px; }
}
@media (max-width: 768px) {
  .orbital-system { width: 380px; height: 380px; }
  .orbit-ring--main  { width: 340px; height: 340px; }
  .orbit-ring--inner { width: 200px; height: 200px; }
  .orbital-center    { width: 155px; height: 155px; }
  .orbital-center__img { width: 145px; height: 145px; }
  .orbit-logo__bubble { width: 60px; height: 60px; }
  .orbit-logo__icon-wrap { font-size: 15px; }
  .orbit-logo__label { display: none; }
}
@media (max-width: 480px) {
  .orbital-system { width: 300px; height: 300px; }
  .orbit-ring--main  { width: 258px; height: 258px; }
  .orbit-ring--inner { width: 150px; height: 150px; }
  .orbital-center    { width: 120px; height: 120px; }
  .orbital-center__img { width: 112px; height: 112px; }
  .orbit-logo__bubble { width: 48px; height: 48px; gap: 3px; }
  .orbit-logo__icon-wrap { font-size: 13px; }
}
