/* ============================================================
   Zaid Ali — Executive Portfolio
   Premium editorial design · ink / gold / paper
   ============================================================ */

:root {
  --ink:        #0a0f1a;
  --ink-2:      #0e1626;
  --ink-3:      #131c30;
  --gold:       #c9a962;
  --gold-2:     #e6cf9a;
  --gold-dim:   #8a7440;
  --paper:      #f6f4ef;
  --paper-2:    #efece4;
  --tint:       #eae5da;
  --text:       #16181d;
  --muted:      #6b7280;
  --line:       #d9d3c6;
  --white:      #fff;
  --muted-light:#9aa7bd;
  --font-d:     'Playfair Display', Georgia, serif;
  --font-b:     'Manrope', 'Inter', -apple-system, sans-serif;
  --shadow:     0 24px 60px -24px rgba(10, 15, 26, .35);
  --radius:     18px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--paper);
  line-height: 1.7;
  overflow-x: hidden;
  font-size: 16px;
}

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

.container { width: min(1200px, 92%); margin: 0 auto; }

::selection { background: var(--gold); color: var(--ink); }

/* Scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--gold-dim), var(--gold)); border-radius: 8px; }

/* ============================================================
   Ambient canvas
   ============================================================ */
#bg3d {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  opacity: .9;
}
#bg3d.is-hidden { opacity: 0; transition: opacity .5s; }

/* Scroll progress */
#scrollProgress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-2));
  z-index: 1001;
}

/* ============================================================
   Preloader
   ============================================================ */
#preloader {
  position: fixed; inset: 0; z-index: 2000;
  background: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  transition: opacity .6s, visibility .6s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.pre-mono {
  font-family: var(--font-d); font-weight: 800; font-size: 64px; color: var(--gold);
  letter-spacing: 4px; animation: prePulse 1.2s ease-in-out infinite;
}
#preloader p { color: var(--muted-light); letter-spacing: 3px; text-transform: uppercase; font-size: 12px; }
@keyframes prePulse { 0%,100% { opacity: .55; } 50% { opacity: 1; } }

/* ============================================================
   Navbar
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px clamp(20px, 4vw, 56px);
  transition: all .4s;
}
.navbar.scrolled {
  background: rgba(10, 15, 26, .92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding-top: 12px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(201, 169, 98, .18);
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--ink); font-family: var(--font-d); font-weight: 800; font-size: 20px;
  display: grid; place-items: center; letter-spacing: 1px;
  box-shadow: 0 8px 22px -8px rgba(201, 169, 98, .7);
}
.brand-name { color: var(--paper); font-weight: 700; letter-spacing: .5px; font-size: 17px; }

.nav-links { display: flex; gap: 2px; flex-wrap: nowrap; }
.nav-link {
  color: var(--muted-light); padding: 8px 11px; font-size: 13px; font-weight: 600;
  letter-spacing: .3px; position: relative; transition: color .3s; white-space: nowrap;
}
.nav-link::after {
  content: ''; position: absolute; left: 11px; right: 11px; bottom: 3px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.nav-link:hover, .nav-link.active { color: var(--gold-2); }
.nav-link.active::after, .nav-link:hover::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-admin { color: var(--muted-light); display: grid; place-items: center; padding: 6px; border-radius: 8px; transition: all .3s; }
.nav-admin:hover { color: var(--gold); background: rgba(201,169,98,.12); }

.hamburger {
  display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px;
}
.hamburger span { width: 26px; height: 2px; background: var(--paper); border-radius: 2px; transition: .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  background: var(--ink);
  color: var(--paper);
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden; padding: 130px 0 0;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; }
.orb-1 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(201,169,98,.35), transparent 70%); top: -160px; right: -80px; animation: drift 14s ease-in-out infinite; }
.orb-2 { width: 480px; height: 480px; background: radial-gradient(circle, rgba(30,58,110,.55), transparent 70%); bottom: -180px; left: -120px; animation: drift 18s ease-in-out infinite reverse; }
@keyframes drift { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,-30px) scale(1.08); } }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201,169,98,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(201,169,98,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, transparent 30%, black 100%);
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center;
}
.hero-text { position: relative; z-index: 2; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  text-transform: uppercase; letter-spacing: 3px; font-size: 12px; font-weight: 700;
  color: var(--gold); margin-bottom: 20px;
}
.eyebrow-line { width: 38px; height: 2px; background: var(--gold); display: inline-block; }

.hero-name {
  font-family: var(--font-d); font-weight: 900; font-size: clamp(56px, 8vw, 110px);
  line-height: .98; letter-spacing: -2px; color: var(--paper);
  margin-bottom: 10px;
}
.hero-name .gold { color: var(--gold); font-style: italic; }

.hero-typed {
  font-family: var(--font-d); font-style: italic; font-size: clamp(20px, 2.6vw, 30px);
  color: var(--gold-2); margin-bottom: 22px; min-height: 42px;
}

.hero-bio { color: var(--muted-light); max-width: 560px; font-size: 16px; margin-bottom: 30px; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 32px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 60px; font-family: var(--font-b);
  font-weight: 700; font-size: 15px; letter-spacing: .4px; cursor: pointer;
  transition: all .3s; border: none;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 55%, var(--gold-dim));
  color: var(--ink); box-shadow: 0 16px 34px -14px rgba(201,169,98,.7);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 22px 44px -14px rgba(201,169,98,.85); }
.btn-outline-light { background: transparent; border: 1px solid rgba(246,244,239,.3); color: var(--paper); }
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-2px); }
.btn-block { width: 100%; }

.hero-social { display: flex; gap: 10px; }
.social-icon {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(246,244,239,.2); color: var(--muted-light);
  transition: all .3s;
}
.social-icon:hover { color: var(--ink); background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }

/* Portrait */
.hero-visual { position: relative; z-index: 2; }
.portrait { position: relative; width: min(420px, 90%); margin: 0 auto; }
.portrait-frame {
  position: relative; aspect-ratio: 4/5; border-radius: 24px; overflow: hidden;
  border: 1px solid rgba(201,169,98,.35);
  box-shadow: var(--shadow), 0 0 0 1px rgba(201,169,98,.08);
}
.portrait-frame::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,15,26,.5), transparent 45%);
}
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; }
.portrait-accent {
  position: absolute; inset: -18px; border: 1px dashed rgba(201,169,98,.4);
  border-radius: 30px; z-index: -1; animation: spin 40s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.float-tag {
  position: absolute; display: flex; align-items: center; gap: 8px;
  background: rgba(14, 22, 38, .9); border: 1px solid rgba(201,169,98,.4);
  color: var(--gold-2); padding: 9px 16px; border-radius: 60px; font-size: 13px; font-weight: 600;
  backdrop-filter: blur(8px); box-shadow: 0 14px 30px -12px rgba(0,0,0,.6);
  animation: floatY 6s ease-in-out infinite;
}
.tag-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold); }
.tag-1 { top: 8%; left: -30px; }
.tag-2 { bottom: 22%; right: -26px; animation-delay: 2s; }
.tag-3 { bottom: 4%; left: -6px; animation-delay: 4s; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Hero strip marquee */
.hero-strip {
  position: relative; z-index: 3; margin-top: 60px;
  border-top: 1px solid rgba(201,169,98,.18); border-bottom: 1px solid rgba(201,169,98,.18);
  padding: 20px 0; overflow: hidden; background: rgba(10,15,26,.6);
}
.strip-track { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.strip-track:hover { animation-play-state: paused; }
.strip-item {
  display: flex; align-items: center; gap: 26px; padding: 0 34px;
  font-family: var(--font-d); font-size: 22px; color: var(--muted-light);
  white-space: nowrap; transition: color .3s;
}
.strip-item:hover { color: var(--gold-2); }
.strip-item .strip-dot { color: var(--gold); font-size: 12px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.scroll-hint {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); z-index: 3;
  width: 26px; height: 44px; border: 1px solid rgba(246,244,239,.3); border-radius: 20px;
  display: flex; justify-content: center; padding-top: 8px;
}
.scroll-hint span {
  width: 3px; height: 9px; border-radius: 3px; background: var(--gold);
  animation: scrolldot 1.6s ease-in-out infinite;
}
@keyframes scrolldot { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(16px); opacity: 0; } 100% { opacity: 0; } }

/* ============================================================
   Interior page hero (About, Ventures, Gallery, ...)
   ============================================================ */
.page-hero {
  position: relative; z-index: 1; padding: clamp(150px, 20vw, 230px) 0 clamp(70px, 9vw, 110px);
  background: linear-gradient(160deg, var(--ink), var(--ink-2) 60%, var(--ink-3));
  color: var(--paper); text-align: center; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(700px 300px at 15% 0%, rgba(201,169,98,.14), transparent 60%),
    radial-gradient(600px 300px at 85% 100%, rgba(18,52,79,.5), transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-title {
  font-family: var(--font-d); font-weight: 800; font-size: clamp(38px, 5.6vw, 68px);
  line-height: 1.06; letter-spacing: -1.5px; margin-bottom: 18px;
}
.page-title em { color: var(--gold); font-style: italic; }
.page-sub { color: var(--muted-light); max-width: 640px; margin: 0 auto; font-size: 17px; }

/* ============================================================
   SPA app container + transitions
   ============================================================ */
.app { position: relative; z-index: 1; }
.app--page { padding-top: 0; }
.app--transition .section,
.app--transition .page-hero { animation: appIn .45s ease-out both; }
@keyframes appIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   Sections
   ============================================================ */
.section { position: relative; z-index: 1; padding: clamp(80px, 9vw, 130px) 0; }
.section--ink { background: var(--ink); color: var(--paper); }
.section--paper { background: var(--paper); color: var(--text); }
.section--tint { background: var(--tint); color: var(--text); }

.section-head { margin-bottom: 56px; }
.section-head.split { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.section-title {
  font-family: var(--font-d); font-weight: 800; font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.08; letter-spacing: -1px;
}
.section-title em { font-style: italic; color: var(--gold-dim); }
.section--ink .section-title em, .section--dark .section-title em { color: var(--gold); }
.section-sub { color: var(--muted); max-width: 460px; font-size: 15px; }
.section--ink .section-sub, .section--dark .section-sub { color: var(--muted-light); }

/* Stats */
.stats { padding: 34px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.stat {
  border-left: 2px solid rgba(201,169,98,.4);
  padding-left: 22px;
}
.stat-num {
  font-family: var(--font-d); font-weight: 800; font-size: clamp(40px, 5vw, 60px);
  color: var(--gold-2); line-height: 1;
}
.stat-num sup { font-size: .5em; color: var(--gold); }
.stat-label { color: var(--muted-light); font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; margin-top: 6px; }

/* About */
.about-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: start; }
.lead { font-family: var(--font-d); font-size: clamp(18px, 2vw, 22px); line-height: 1.6; color: var(--text); }
.about-quick { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 34px; }
.quick-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 18px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--white);
}
.quick-item svg { color: var(--gold-dim); flex-shrink: 0; margin-top: 2px; }
.quick-item p { display: flex; flex-direction: column; }
.quick-item b { font-size: 14px; }
.quick-item span { font-size: 13px; color: var(--muted); }

.fact-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; margin-bottom: 18px;
}
.fact-card h4 { font-family: var(--font-d); font-size: 20px; margin-bottom: 18px; }
.skill-list { display: flex; flex-direction: column; gap: 14px; }
.skill { }
.skill-top { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 6px; font-weight: 600; }
.skill-bar { height: 6px; background: var(--paper-2); border-radius: 6px; overflow: hidden; }
.skill-fill { height: 100%; background: linear-gradient(90deg, var(--gold-dim), var(--gold)); border-radius: 6px; width: 0; transition: width 1.2s ease; }

.fact-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  background: var(--ink); color: var(--paper); border-radius: var(--radius);
  padding: 22px;
}
.fact-row div { display: flex; flex-direction: column; gap: 4px; }
.fact-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.fact-row span, .fact-row a { font-size: 12px; color: var(--paper); word-break: break-all; }
.fact-row a:hover { color: var(--gold-2); }

/* Ventures */
.ventures-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.venture-card {
  position: relative; padding: 34px 28px; border-radius: var(--radius);
  background: linear-gradient(160deg, var(--ink-2), var(--ink-3));
  border: 1px solid rgba(201,169,98,.18);
  transition: all .4s;
  overflow: hidden;
}
.venture-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity .4s;
}
.venture-card:hover { transform: translateY(-8px); border-color: rgba(201,169,98,.45); box-shadow: var(--shadow); }
.venture-card:hover::before { opacity: 1; }
.venture-icon {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: rgba(201,169,98,.12); color: var(--gold); margin-bottom: 20px;
  border: 1px solid rgba(201,169,98,.3);
  transition: all .4s;
}
.venture-card:hover .venture-icon { background: linear-gradient(135deg, var(--gold), var(--gold-dim)); color: var(--ink); }
.venture-role {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(201,169,98,.4); border-radius: 40px;
  padding: 4px 12px; margin-bottom: 12px;
}
.venture-card h3 { font-family: var(--font-d); font-size: 24px; color: var(--paper); margin-bottom: 4px; }
.venture-type { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted-light); margin-bottom: 14px; }
.venture-desc { color: var(--muted-light); font-size: 14px; margin-bottom: 16px; }
.venture-services { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.venture-services li {
  font-size: 12px; color: var(--muted-light); background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08); padding: 4px 10px; border-radius: 30px;
}
.venture-link { display: inline-flex; align-items: center; gap: 6px; color: var(--gold-2); font-size: 14px; font-weight: 600; }
.venture-link:hover { gap: 10px; }

/* Ambassador */
.ambassador {
  background:
    radial-gradient(circle at 15% 50%, rgba(201,169,98,.14), transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(30,58,110,.4), transparent 50%),
    var(--ink);
  color: var(--paper);
}
.ambassador-card {
  display: grid; grid-template-columns: auto 1fr auto; gap: 34px; align-items: center;
  background: linear-gradient(160deg, var(--ink-2), var(--ink-3));
  border: 1px solid rgba(201,169,98,.3); border-radius: 26px; padding: clamp(34px, 5vw, 60px);
}
.amb-icon {
  width: 74px; height: 74px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim)); color: var(--ink);
  box-shadow: 0 0 0 8px rgba(201,169,98,.12), 0 20px 40px -16px rgba(201,169,98,.6);
}
.amb-title { font-family: var(--font-d); font-size: clamp(26px, 3.4vw, 40px); font-weight: 800; line-height: 1.15; }
.amb-title em { color: var(--gold); font-style: italic; }
.amb-text { color: var(--muted-light); margin-top: 12px; max-width: 640px; }
.amb-text strong { color: var(--gold-2); }
.amb-seal { position: relative; width: 120px; height: 120px; display: grid; place-items: center; }
.seal-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px dashed var(--gold); animation: spin 24s linear infinite;
}
.amb-seal::before {
  content: ''; position: absolute; inset: 10px; border-radius: 50%;
  border: 1px solid rgba(201,169,98,.4);
}
.seal-inner {
  font-family: var(--font-d); font-weight: 800; font-size: 30px; color: var(--gold-2);
  text-transform: uppercase; letter-spacing: 2px;
}

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; transition: all .4s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--gold-dim); }
.service-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--paper-2); display: grid; place-items: center; color: var(--gold-dim); margin-bottom: 18px; transition: all .4s; }
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--gold), var(--gold-dim)); color: var(--ink); }
.service-card h3 { font-family: var(--font-d); font-size: 21px; margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: 14px; }

/* Work */
.work-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: all .4s;
}
.work-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.work-cover { aspect-ratio: 16/10; overflow: hidden; background: var(--ink); }
.work-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.work-card:hover .work-cover img { transform: scale(1.07); }
.work-mono {
  width: 100%; height: 100%; display: grid; place-items: center;
  font-family: var(--font-d); font-size: 42px; color: rgba(201,169,98,.7);
}
.work-body { padding: 24px; }
.work-body h3 { font-family: var(--font-d); font-size: 20px; margin-bottom: 6px; }
.work-body p { color: var(--muted); font-size: 14px; margin-bottom: 12px; }
.work-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.tag { font-size: 11px; font-weight: 600; background: var(--paper-2); color: var(--muted); padding: 4px 10px; border-radius: 30px; }
.work-link { display: inline-flex; align-items: center; gap: 6px; color: var(--gold-dim); font-size: 14px; font-weight: 700; }
.work-link:hover { gap: 10px; }

/* Testimonials */
.testimonial-card {
  background: linear-gradient(160deg, var(--ink-2), var(--ink-3));
  border: 1px solid rgba(201,169,98,.18); border-radius: var(--radius);
  padding: 34px 28px; transition: all .4s;
}
.testimonial-card:hover { transform: translateY(-8px); border-color: rgba(201,169,98,.45); }
.t-stars { color: var(--gold); letter-spacing: 3px; font-size: 14px; margin-bottom: 16px; }
.t-quote { font-family: var(--font-d); font-style: italic; font-size: 17px; color: var(--paper); line-height: 1.6; margin-bottom: 22px; }
.t-person { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 46px; height: 46px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--ink); display: grid; place-items: center; font-weight: 800;
}
.t-avatar img { width: 100%; height: 100%; object-fit: cover; }
.t-person b { color: var(--paper); font-size: 15px; display: block; }
.t-person span { color: var(--muted-light); font-size: 13px; }

/* ============================================================
   Sliders (Work + Testimonials)
   ============================================================ */
.slider { position: relative; }
.slider-track {
  display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding-bottom: 8px; scrollbar-width: none;
  margin: 0 -4px; padding-left: 4px; padding-right: 4px;
}
.slider-track::-webkit-scrollbar { display: none; }
.slider-item { scroll-snap-align: start; flex: 0 0 calc((100% - 22px) / 2); min-width: 0; }
.slider-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 30px; }
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
  background: transparent; color: var(--gold); font-size: 20px;
  border: 1px solid rgba(201,169,98,.4); transition: all .3s; display: grid; place-items: center;
}
.slider-btn:hover { background: linear-gradient(135deg, var(--gold), var(--gold-dim)); color: var(--ink); border-color: var(--gold); }
.slider-btn:disabled { opacity: .35; cursor: not-allowed; }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px; height: 8px; border-radius: 20px; background: var(--line);
  cursor: pointer; border: none; padding: 0; transition: all .3s;
}
.slider-dot.active { width: 26px; background: linear-gradient(90deg, var(--gold-dim), var(--gold)); }
.section--ink .slider-dot { background: rgba(201,169,98,.25); }

@media (max-width: 900px) {
  .slider-item { flex: 0 0 100%; }
}
@media (max-width: 560px) {
  .slider-item { flex: 0 0 100%; }
}

/* Journal */
.journal-list { display: flex; flex-direction: column; gap: 18px; }
.journal-item {
  display: grid; grid-template-columns: auto 1fr; gap: 24px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: all .4s;
}
.journal-item:hover { transform: translateX(6px); border-color: var(--gold-dim); box-shadow: var(--shadow); }
.journal-date {
  text-align: center; background: var(--ink); color: var(--paper);
  border-radius: 14px; padding: 14px 16px; min-width: 76px; align-self: start;
}
.journal-date b { display: block; font-family: var(--font-d); font-size: 30px; color: var(--gold); line-height: 1; }
.journal-date span { font-size: 11px; color: var(--muted-light); text-transform: uppercase; letter-spacing: 1px; }
.journal-cat { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-dim); }
.journal-body h3 { font-family: var(--font-d); font-size: 22px; margin: 4px 0 8px; }
.journal-body p { color: var(--muted); font-size: 15px; }
.journal-img { margin-top: 16px; border-radius: 12px; overflow: hidden; }
.journal-img img { width: 100%; max-height: 320px; object-fit: cover; }

/* Gallery */
.gallery-grid { columns: 4 260px; column-gap: 18px; }
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  margin-bottom: 18px; break-inside: avoid; cursor: pointer; background: var(--ink);
}
.gallery-item img { width: 100%; transition: transform .6s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0; display: flex; align-items: flex-end;
  padding: 18px; background: linear-gradient(to top, rgba(10,15,26,.85), transparent 55%);
  opacity: 0; transition: opacity .4s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay p { color: var(--paper); font-size: 14px; font-weight: 600; }
.gallery-overlay .g-loc { display: block; font-size: 12px; color: var(--gold-2); font-weight: 500; margin-top: 2px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
.contact-info .lead { color: var(--muted-light); margin-bottom: 30px; }
.contact-lines { display: flex; flex-direction: column; gap: 16px; margin-bottom: 30px; }
.contact-lines p { display: flex; align-items: center; gap: 14px; border-bottom: 1px solid rgba(255,255,255,.08); padding-bottom: 14px; }
.contact-lines span { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); min-width: 120px; }
.contact-lines a { color: var(--paper); }
.contact-lines a:hover { color: var(--gold-2); }

.contact-form {
  background: linear-gradient(160deg, var(--ink-2), var(--ink-3));
  border: 1px solid rgba(201,169,98,.25); border-radius: 24px; padding: clamp(30px, 4vw, 46px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted-light); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border-radius: 12px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12);
  color: var(--paper); font-family: var(--font-b); font-size: 15px; transition: all .3s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,.06); }
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(154,167,189,.5); }
.honeypot { display: none !important; }
.form-status { margin-top: 14px; font-size: 14px; text-align: center; min-height: 20px; }
.form-status.ok { color: #7ee2a8; }
.form-status.err { color: #ff9d9d; }

/* Footer */
.footer { background: var(--ink); color: var(--muted-light); border-top: 1px solid rgba(201,169,98,.15); padding: 50px 0 40px; }
.footer-inner { display: flex; flex-direction: column; gap: 28px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand b { color: var(--paper); font-family: var(--font-d); font-size: 18px; }
.footer-brand p { font-size: 12px; color: var(--muted-light); }
.footer-companies { display: flex; flex-wrap: wrap; gap: 12px; }
.footer-companies span {
  font-size: 12px; color: var(--muted-light); border: 1px solid rgba(255,255,255,.1);
  padding: 6px 14px; border-radius: 30px;
}
.footer-companies span:hover { color: var(--gold-2); border-color: rgba(201,169,98,.4); }
.footer-note { font-size: 13px; border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; }

/* Back to top */
.back-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 900;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim)); color: var(--ink);
  border: none; cursor: pointer; display: grid; place-items: center;
  box-shadow: 0 16px 34px -12px rgba(201,169,98,.7);
  opacity: 0; visibility: hidden; transform: translateY(16px); transition: all .4s;
}
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { transform: translateY(-4px); }

/* WhatsApp float */
.wa-float {
  position: fixed; left: 24px; bottom: 24px; z-index: 900;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 16px 34px -12px rgba(18, 140, 126, .75);
  transition: transform .3s;
}
.wa-float:hover { transform: translateY(-4px) scale(1.05); }
.wa-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .7);
  animation: waPulse 2.2s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: .9; }
  70% { transform: scale(1.55); opacity: 0; }
  100% { opacity: 0; }
}

/* Videos */
.videos-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.video-card {
  background: linear-gradient(160deg, var(--ink-2), var(--ink-3));
  border: 1px solid rgba(201,169,98,.18); border-radius: var(--radius);
  overflow: hidden; transition: all .4s;
}
.video-card:hover { transform: translateY(-8px); border-color: rgba(201,169,98,.45); box-shadow: var(--shadow); }
.video-frame { position: relative; aspect-ratio: 16/9; background: #000; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-body { padding: 24px; }
.video-body h3 { font-family: var(--font-d); font-size: 20px; color: var(--paper); margin-bottom: 6px; }
.video-body p { color: var(--muted-light); font-size: 14px; margin-bottom: 12px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1500;
  background: rgba(6, 9, 16, .94); display: flex; align-items: center; justify-content: center;
  padding: 30px; opacity: 0; visibility: hidden; transition: all .4s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-close {
  position: absolute; top: 22px; right: 26px; background: none; border: none;
  color: var(--paper); cursor: pointer; width: 44px; height: 44px; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.2); border-radius: 50%; transition: all .3s;
}
.lightbox-close:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.lightbox-figure { max-width: 1000px; }
.lightbox-figure img { max-height: 82vh; width: auto; max-width: 100%; margin: 0 auto; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lightbox-figure figcaption {
  color: var(--muted-light); text-align: center; margin-top: 16px; font-size: 15px; font-family: var(--font-d); font-style: italic;
}

/* Toast */
.toast {
  position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%) translateY(90px);
  z-index: 1600; background: var(--ink-2); color: var(--paper);
  border: 1px solid rgba(201,169,98,.4); padding: 14px 26px; border-radius: 60px;
  font-size: 14px; font-weight: 600; box-shadow: var(--shadow);
  transition: transform .4s; pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.err { border-color: rgba(255,120,120,.5); }

/* Empty notes */
.empty-note { color: var(--muted); font-style: italic; }

/* ============================================================
   AOS overrides
   ============================================================ */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1180px) {
  .nav-link { padding: 8px 8px; font-size: 12px; letter-spacing: .2px; }
  .nav-link::after { left: 8px; right: 8px; }
  .brand-name { font-size: 15px; }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .hero-text { display: flex; flex-direction: column; align-items: center; }
  .hero-bio { margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-social { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .ventures-grid, .services-grid, .videos-grid { grid-template-columns: repeat(2, 1fr); }
  .ambassador-card { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .float-tag { transform: scale(.85); }
  .tag-1 { left: 0; }
  .tag-2 { right: 0; }
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed; top: 0; right: -100%; width: min(320px, 82%);
    height: 100vh; background: var(--ink-2); flex-direction: column;
    align-items: flex-start; padding: 100px 34px 40px; gap: 18px;
    transition: right .45s cubic-bezier(.6,0,.2,1);
    border-left: 1px solid rgba(201,169,98,.2);
  }
  .nav-links.open { right: 0; }
  .nav-link { font-size: 18px; color: var(--paper); padding: 8px 0; }
  .nav-link::after { left: 0; right: 0; }
  .hamburger { display: flex; }
}

@media (max-width: 768px) {
  .ventures-grid, .services-grid, .videos-grid { grid-template-columns: 1fr; }
  .about-quick { grid-template-columns: 1fr; }
  .fact-row { grid-template-columns: 1fr; gap: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .section-head.split { flex-direction: column; align-items: flex-start; }
  .gallery-grid { columns: 2 160px; }
  .strip-item { font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; transition-duration: .001s !important; }
  html { scroll-behavior: auto; }
}
