/* ══════════════════════════════════════════════════════════════
   MAJED ZEINEH — PROFESSIONAL EXECUTIVE CV
   Clean · Sophisticated · Luxury Dark Theme
   ══════════════════════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
  --bg:         #0d1117;
  --bg-2:       #111620;
  --bg-light:   #f7f5f0;
  --bg-light-2: #eeebe4;
  --surface:    #161d2a;
  --surface-2:  #1c2436;
  --border:     rgba(255,255,255,0.07);
  --border-med: rgba(255,255,255,0.12);

  --gold:       #c9a84c;
  --gold-light: #dfc07a;
  --gold-bg:    rgba(201,168,76,0.1);
  --gold-glow:  rgba(201,168,76,0.2);

  --text:       #f0ede8;
  --text-2:     #9ba8b5;
  --text-3:     #5e6e80;
  --text-dark:  #1a1f2e;
  --text-dark-2:#4a5568;

  --ff-serif:   'DM Serif Display', Georgia, serif;
  --ff-sans:    'DM Sans', Inter, system-ui, sans-serif;
  --ff-body:    'Inter', system-ui, sans-serif;

  --radius:     10px;
  --radius-lg:  18px;
  --radius-xl:  28px;

  --shadow:     0 4px 24px rgba(0,0,0,0.25);
  --shadow-lg:  0 16px 60px rgba(0,0,0,0.4);
  --shadow-gold:0 8px 40px rgba(201,168,76,0.15);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t: 0.25s var(--ease);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
em { font-style: italic; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
::selection { background: var(--gold); color: #111; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }

/* ─── SECTIONS ─────────────────────────────────────────────── */
.section { padding: 96px 0; }
.section-dark  { background: var(--bg); }
.section-light { background: var(--bg-light); }

.section-label {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-label.light { color: var(--gold-light); }

.section-heading {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-heading.light { color: var(--text); }
.section-heading em { color: var(--gold); font-style: italic; }

.section-sub { color: var(--text-dark-2); font-size: 1.05rem; margin-bottom: 52px; }
.section-sub.light { color: var(--text-2); }

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #111;
  font-family: var(--ff-sans); font-weight: 600; font-size: 0.9rem;
  padding: 13px 30px; border-radius: 100px;
  transition: var(--t); box-shadow: 0 4px 20px var(--gold-glow);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 32px var(--gold-glow); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text-dark);
  font-family: var(--ff-sans); font-weight: 600; font-size: 0.9rem;
  padding: 12px 28px; border-radius: 100px;
  border: 1.5px solid rgba(0,0,0,0.2); transition: var(--t);
}
.btn-outline:hover { background: rgba(0,0,0,0.05); transform: translateY(-2px); }

.btn-outline.light-outline {
  color: var(--text); border-color: var(--border-med);
}
.btn-outline.light-outline:hover { background: rgba(255,255,255,0.06); }

.btn-text {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; color: var(--text-3);
  font-family: var(--ff-sans); font-weight: 500; font-size: 0.88rem;
  padding: 12px 4px; border-radius: 100px; transition: var(--t);
}
.btn-text:hover { color: var(--text-dark); }

/* ════════════════════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.navbar.scrolled {
  background: rgba(13,17,23,0.95);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 20px 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-svg { height: 58px; width: auto; display: block; }
.nav-logo-fallback { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--gold); color: #111;
  font-family: var(--ff-serif); font-size: 1rem; font-weight: 400;
  display: grid; place-items: center; flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; gap: 1px; }
.logo-name  { font-family: var(--ff-sans); font-weight: 600; font-size: 0.88rem; color: var(--text); }
.logo-title { font-size: 0.68rem; color: var(--text-3); letter-spacing: 0.5px; }

.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-link {
  font-family: var(--ff-sans); font-size: 0.82rem; font-weight: 500;
  color: var(--text-2); padding: 7px 12px; border-radius: 6px; transition: var(--t);
}
.nav-link:hover { color: var(--text); background: var(--surface); }

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-phone {
  font-family: var(--ff-sans); font-size: 0.82rem; font-weight: 500;
  color: var(--gold); opacity: 0.85; transition: var(--t);
}
.nav-phone:hover { opacity: 1; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text); border-radius: 2px; transition: var(--t); }

/* ════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--bg); position: relative; padding-top: 80px;
  overflow: hidden;
}
.hero-backdrop {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 70% at 75% 40%, rgba(201,168,76,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 20% 70%, rgba(255,255,255,0.02) 0%, transparent 60%);
}
.hero-layout {
  display: grid; grid-template-columns: 420px 1fr;
  gap: 80px; align-items: center; padding: 60px 2rem 80px;
  position: relative; z-index: 1;
}

/* PHOTO */
.hero-visual { display: flex; flex-direction: column; align-items: center; gap: 28px; }

.photo-frame {
  position: relative; width: 400px;
  border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-photo {
  width: 400px; height: 500px;
  object-fit: cover; object-position: center top; display: block;
  image-rendering: -webkit-optimize-contrast;
}
.photo-accent-bar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.hero-social-strip { display: flex; gap: 10px; }
.hsocial {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--surface); border: 1px solid var(--border-med);
  display: grid; place-items: center; color: var(--text-3); transition: var(--t);
}
.hsocial svg { width: 17px; height: 17px; }
.hsocial:hover { color: var(--gold); border-color: var(--gold); background: var(--gold-bg); transform: translateY(-2px); }

/* HERO TEXT */
.hero-content { display: flex; flex-direction: column; gap: 22px; }

.hero-kicker {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  opacity: 0; animation: rise 0.7s var(--ease) 0.1s forwards;
}
.kicker-line { width: 40px; height: 1px; background: var(--gold); flex-shrink: 0; }

.hero-name {
  font-family: var(--ff-serif); font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 400; line-height: 1.08; letter-spacing: -0.03em; color: var(--text);
  opacity: 0; animation: rise 0.7s var(--ease) 0.25s forwards;
}
.hero-name em { color: var(--gold); font-style: italic; }

.hero-role {
  font-family: var(--ff-sans); font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 300; color: var(--text-2); line-height: 1.5;
  opacity: 0; animation: rise 0.7s var(--ease) 0.4s forwards;
}

.hero-location {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.85rem; color: var(--text-3);
  opacity: 0; animation: rise 0.7s var(--ease) 0.5s forwards;
}
.hero-location svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

.hero-bio {
  font-size: 0.97rem; color: var(--text-2); line-height: 1.8;
  border-left: 2px solid var(--gold); padding-left: 18px;
  opacity: 0; animation: rise 0.7s var(--ease) 0.6s forwards;
}
.hero-bio strong { color: var(--text); font-weight: 600; }
.hero-bio em { color: var(--gold); font-style: italic; }

/* OPEN TO OPPORTUNITIES BANNER */
.opp-banner {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px; border-radius: 100px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.25);
  width: fit-content;
  opacity: 0; animation: rise 0.7s var(--ease) 0.18s forwards;
}
.opp-pulse {
  width: 9px; height: 9px; background: #22c55e; border-radius: 50%; flex-shrink: 0;
  animation: opp-pulse 2s ease-in-out infinite;
}
@keyframes opp-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50%       { box-shadow: 0 0 0 7px rgba(34,197,94,0); }
}
.opp-text { display: flex; flex-direction: column; gap: 1px; }
.opp-text strong { font-size: 0.78rem; font-weight: 700; color: #4ade80; letter-spacing: 0.3px; }
.opp-text span   { font-size: 0.71rem; color: rgba(74,222,128,0.7); letter-spacing: 0.2px; }

/* HERO TAGLINE */
.hero-tagline {
  font-family: var(--ff-serif); font-size: 1.15rem; font-style: italic;
  color: var(--gold-light); letter-spacing: 0.01em; line-height: 1.5;
  opacity: 0; animation: rise 0.7s var(--ease) 0.52s forwards;
}

/* ROLE SEPARATOR */
.role-sep { color: var(--text-3); font-weight: 300; margin: 0 2px; }

.hero-metrics {
  display: flex; align-items: center; gap: 28px;
  padding: 22px 28px; background: var(--surface);
  border: 1px solid var(--border-med); border-radius: var(--radius-lg);
  width: fit-content;
  opacity: 0; animation: rise 0.7s var(--ease) 0.72s forwards;
}
.metric { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.metric-value {
  font-family: var(--ff-serif); font-size: 2.4rem; font-weight: 400;
  color: var(--gold); line-height: 1; letter-spacing: -0.02em;
}
.metric-value sup { font-size: 1.1rem; }
.metric-label { font-size: 0.7rem; color: var(--text-3); text-transform: uppercase; letter-spacing: 1.5px; white-space: nowrap; }
.metric-sep { width: 1px; height: 44px; background: var(--border-med); }

.hero-contact-row {
  display: flex; gap: 10px; flex-wrap: wrap;
  opacity: 0; animation: rise 0.7s var(--ease) 0.82s forwards;
}
.contact-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.83rem; font-weight: 500; color: var(--text-2);
  background: var(--surface); border: 1px solid var(--border-med);
  padding: 8px 16px; border-radius: 100px; transition: var(--t);
}
.contact-pill svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }
.contact-pill:hover { color: var(--text); border-color: var(--gold); }

.hero-cta {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  opacity: 0; animation: rise 0.7s var(--ease) 0.92s forwards;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════════════════════════ */
.about-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start;
}
.about-main { position: sticky; top: 120px; }
.about-main .section-heading { margin-bottom: 28px; }
.about-body p { color: var(--text-dark-2); font-size: 0.97rem; line-height: 1.8; margin-bottom: 14px; }
.about-body p strong { color: var(--text-dark); font-weight: 600; }

.about-pillars { display: flex; flex-direction: column; gap: 16px; }
.pillar-card {
  background: white; border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: var(--t); position: relative; overflow: hidden;
}
.pillar-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--gold); border-radius: 2px 0 0 2px; opacity: 0; transition: var(--t);
}
.pillar-card:hover { transform: translateX(6px); box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.pillar-card:hover::before { opacity: 1; }

.pillar-num {
  font-family: var(--ff-serif); font-size: 2.5rem; font-weight: 400;
  color: rgba(201,168,76,0.2); line-height: 1; margin-bottom: 10px;
}
.pillar-card h3 { font-family: var(--ff-sans); font-size: 1rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.pillar-card p { font-size: 0.87rem; color: var(--text-dark-2); line-height: 1.6; }

/* ════════════════════════════════════════════════════════════════
   OTA EXPERTISE
   ════════════════════════════════════════════════════════════════ */
.expertise-layout { display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: 20px; }

.ota-panel {
  background: var(--surface); border: 1px solid var(--border-med);
  border-radius: var(--radius-lg); padding: 32px; transition: var(--t);
}
.ota-panel:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); box-shadow: var(--shadow-gold); }

.ota-badge {
  margin-bottom: 24px; display: flex; align-items: center;
}
.ota-logo {
  height: 42px; width: auto; max-width: 200px;
  object-fit: contain; display: block;
  mix-blend-mode: screen;
  filter: brightness(1.1) contrast(1.05);
}

.ota-list { display: flex; flex-direction: column; gap: 12px; }
.ota-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.87rem; color: var(--text-2); line-height: 1.4;
}
.ota-list li::before {
  content: ''; width: 5px; height: 5px; background: var(--gold);
  border-radius: 50%; flex-shrink: 0; margin-top: 7px;
}

.systems-panel {
  background: linear-gradient(135deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border-med); border-radius: var(--radius-lg); padding: 32px; transition: var(--t);
}
.systems-panel:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
.systems-title { font-family: var(--ff-sans); font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 20px; }

.systems-grid { display: flex; flex-direction: column; gap: 10px; }
.sys-item { display: flex; align-items: center; gap: 10px; font-size: 0.87rem; color: var(--text-2); }
.sys-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* ════════════════════════════════════════════════════════════════
   CERTIFICATIONS
   ════════════════════════════════════════════════════════════════ */
.cert-filter {
  display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap;
}
.filter-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-sans); font-size: 0.82rem; font-weight: 500;
  color: var(--text-dark-2); background: white;
  border: 1.5px solid rgba(0,0,0,0.1); padding: 8px 18px;
  border-radius: 100px; cursor: pointer; transition: var(--t);
}
.filter-btn:hover { border-color: var(--gold); color: var(--text-dark); }
.filter-btn.active { background: var(--gold); color: #111; border-color: var(--gold); font-weight: 600; }
.filter-logo { height: 16px; width: auto; object-fit: contain; display: block; }
.filter-logo-sq { height: 16px; width: 16px; }

.certs-table { display: flex; flex-direction: column; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(0,0,0,0.08); }

.cert-row {
  display: grid; grid-template-columns: 130px 1fr;
  align-items: center; gap: 24px;
  padding: 16px 24px; background: white;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--t); cursor: default;
}
.cert-row:last-child { border-bottom: none; }
.cert-row:hover { background: #faf9f6; }
.cert-row.hidden { display: none; }

.cert-provider {
  display: flex; align-items: center; justify-content: flex-start;
  width: 130px;
}
.cert-logo {
  height: 22px; width: auto; max-width: 110px;
  object-fit: contain; display: block;
}
.cert-logo-sq { height: 22px; width: 22px; object-fit: contain; }

.cert-body { display: flex; flex-direction: column; gap: 3px; align-items: flex-start; }
.cert-name { font-family: var(--ff-sans); font-size: 0.92rem; font-weight: 600; color: var(--text-dark); text-align: left; }
.cert-domain { font-size: 0.8rem; color: var(--text-dark-2); text-align: left; }

/* ════════════════════════════════════════════════════════════════
   EXPERIENCE
   ════════════════════════════════════════════════════════════════ */
.exp-list { display: flex; flex-direction: column; }

.exp-item {
  display: grid; grid-template-columns: 200px 1fr;
  gap: 40px; padding: 40px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--t);
}
.exp-last { border-bottom: none; }
.exp-item:hover { background: rgba(255,255,255,0.02); }

.exp-international { border-left: 2px solid var(--gold); padding-left: 24px; margin-left: -24px; }

.exp-left { display: flex; flex-direction: column; gap: 16px; }

.exp-logo-wrap {
  width: 72px; height: 72px;
  background: #1a2236;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  padding: 10px; overflow: hidden; flex-shrink: 0;
}
.exp-logo {
  width: 100%; height: 100%; object-fit: contain;
  filter: brightness(1.8) contrast(1.1);
}
.intl-logo-wrap { background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.2); }
.intl-flag { font-size: 2rem; }
.generic-logo { color: var(--gold); }
.generic-logo svg { width: 30px; height: 30px; }
.home-hni-wrap { background: #1a2236; border-color: rgba(201,168,76,0.25); padding: 10px; }
.home-hni-logo { object-fit: contain; filter: brightness(10) contrast(1); }

.exp-period-block { display: flex; flex-direction: column; gap: 6px; }
.exp-period { font-size: 0.78rem; font-weight: 500; color: var(--text-3); letter-spacing: 0.5px; }
.exp-period.current-label { color: var(--gold); }
.exp-period-line { width: 1px; height: 28px; background: var(--border-med); margin-left: 4px; }

.exp-header {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 16px;
}
.exp-title { font-family: var(--ff-sans); font-size: 1.1rem; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.exp-company { font-size: 0.85rem; color: var(--text-3); }

.exp-badge {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px; white-space: nowrap; flex-shrink: 0;
}
.current-exp { background: rgba(201,168,76,0.1); color: var(--gold); border: 1px solid rgba(201,168,76,0.2); }
.intl-badge   { background: rgba(59,130,246,0.1);  color: hsl(215,80%,65%); border: 1px solid rgba(59,130,246,0.2); }

.exp-bullets { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.exp-bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: var(--text-2); line-height: 1.55;
}
.exp-bullets li::before {
  content: ''; width: 4px; height: 4px; background: var(--gold);
  border-radius: 50%; flex-shrink: 0; margin-top: 8px;
}

.exp-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.exp-tags span {
  font-size: 0.72rem; font-weight: 500; color: var(--text-3);
  background: var(--surface-2); border: 1px solid var(--border-med);
  padding: 4px 11px; border-radius: 100px;
}

/* ════════════════════════════════════════════════════════════════
   PODCAST
   ════════════════════════════════════════════════════════════════ */
.podcast-list { display: flex; flex-direction: column; gap: 16px; }

.podcast-item {
  display: grid; grid-template-columns: 56px 200px 1fr auto;
  align-items: center; gap: 28px;
  background: white; border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04); transition: var(--t);
}
.podcast-item:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }

.podcast-featured {
  background: linear-gradient(135deg, #fdf8ec, #fef9ef);
  border-color: rgba(201,168,76,0.25);
  box-shadow: 0 4px 24px rgba(201,168,76,0.1);
}

.podcast-num {
  font-family: var(--ff-serif); font-size: 2.5rem; font-weight: 400;
  color: rgba(201,168,76,0.3); line-height: 1; flex-shrink: 0;
}
.featured-num { color: var(--gold); opacity: 0.6; }

/* PODCAST VISUAL */
.podcast-visual {
  height: 90px; border-radius: var(--radius);
  display: flex; align-items: flex-end; justify-content: center;
  position: relative; overflow: hidden; gap: 2px; padding: 0 8px;
  flex-shrink: 0;
}
.ep1-vis { background: linear-gradient(135deg, #1a1f2e, #252d42); }
.ep2-vis { background: linear-gradient(135deg, #1a1f2e, #2a2010); }
.ep3-vis { background: linear-gradient(135deg, #1a2e28, #1a1f2e); }

.podcast-cs-badge {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  font-size: 0.6rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-3);
  background: rgba(0,0,0,0.4); padding: 3px 8px; border-radius: 100px;
  white-space: nowrap;
}
.featured-cs { color: var(--gold-light); }

.podcast-waves {
  display: flex; align-items: flex-end; gap: 3px; height: 48px; padding-bottom: 8px;
}
.podcast-waves span {
  width: 5px; background: rgba(255,255,255,0.2); border-radius: 2px 2px 0 0;
  animation: wave 1.6s ease-in-out infinite;
}
.podcast-featured .podcast-waves span { background: rgba(201,168,76,0.4); }
.podcast-waves span:nth-child(1) { height: 35%; animation-delay: 0s;    }
.podcast-waves span:nth-child(2) { height: 65%; animation-delay: 0.15s; }
.podcast-waves span:nth-child(3) { height: 50%; animation-delay: 0.3s;  }
.podcast-waves span:nth-child(4) { height: 85%; animation-delay: 0.45s; }
.podcast-waves span:nth-child(5) { height: 55%; animation-delay: 0.6s;  }
.podcast-waves span:nth-child(6) { height: 75%; animation-delay: 0.75s; }
.podcast-waves span:nth-child(7) { height: 40%; animation-delay: 0.9s;  }
@keyframes wave {
  0%, 100% { transform: scaleY(1); }
  50%       { transform: scaleY(1.6); }
}

.podcast-body { flex: 1; }
.podcast-category {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.featured-cat { color: var(--gold); }
.podcast-title { font-family: var(--ff-sans); font-size: 0.97rem; font-weight: 600; color: var(--text-dark); line-height: 1.45; margin-bottom: 6px; }
.podcast-desc  { font-size: 0.82rem; color: var(--text-dark-2); line-height: 1.6; }

.podcast-action { flex-shrink: 0; }
.notify-btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--ff-sans); font-size: 0.82rem; font-weight: 600;
  color: var(--text-dark); background: white; border: 1.5px solid rgba(0,0,0,0.12);
  padding: 10px 20px; border-radius: 100px; cursor: pointer; transition: var(--t);
  white-space: nowrap;
}
.notify-btn svg { width: 14px; height: 14px; }
.notify-btn:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }
.notify-btn.notified { background: #f0fdf4; border-color: #22c55e; color: #16a34a; }

.notify-featured {
  background: var(--gold); color: #111; border-color: var(--gold);
}
.notify-featured:hover { background: var(--gold-light); transform: translateY(-1px); }
.notify-featured.notified { background: #f0fdf4; border-color: #22c55e; color: #16a34a; }

/* ════════════════════════════════════════════════════════════════
   EDUCATION
   ════════════════════════════════════════════════════════════════ */
.edu-layout {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center;
}
.edu-desc { color: var(--text-2); font-size: 1rem; line-height: 1.75; margin-top: 16px; }

.edu-card {
  background: var(--surface); border: 1px solid var(--border-med);
  border-radius: var(--radius-xl); padding: 40px; position: relative; overflow: hidden;
  transition: var(--t);
}
.edu-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.edu-card:hover { border-color: rgba(201,168,76,0.25); box-shadow: var(--shadow-gold); }

.edu-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 24px; }
.edu-icon {
  width: 52px; height: 52px; background: var(--gold-bg);
  border: 1px solid rgba(201,168,76,0.2); border-radius: 12px;
  display: grid; place-items: center; color: var(--gold);
}
.edu-icon svg { width: 26px; height: 26px; }

.edu-badge-pill {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold); background: var(--gold-bg);
  border: 1px solid rgba(201,168,76,0.2); padding: 5px 12px; border-radius: 100px;
}
.edu-degree-type { font-size: 0.72rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text-3); display: block; margin-bottom: 8px; }
.edu-degree-name { font-family: var(--ff-serif); font-size: 1.5rem; font-weight: 400; color: var(--text); margin-bottom: 8px; line-height: 1.3; }
.edu-institution  { font-size: 0.9rem; color: var(--text-2); margin-bottom: 20px; }

.edu-meta { display: flex; gap: 20px; flex-wrap: wrap; border-top: 1px solid var(--border); padding-top: 20px; }
.edu-meta span { display: flex; align-items: center; gap: 7px; font-size: 0.82rem; color: var(--text-3); }
.edu-meta svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

/* ════════════════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════════════════ */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.contact-left { position: sticky; top: 120px; }
.contact-intro { color: var(--text-dark-2); font-size: 1rem; line-height: 1.75; margin: 20px 0 32px; }

.contact-info-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.contact-info-item {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px; background: white;
  border: 1px solid rgba(0,0,0,0.08); border-radius: var(--radius-lg);
  transition: var(--t); color: inherit;
}
.contact-info-item:hover { border-color: var(--gold); transform: translateX(4px); box-shadow: 0 4px 20px rgba(201,168,76,0.1); }

.ci-icon {
  width: 44px; height: 44px; background: var(--gold-bg);
  border: 1px solid rgba(201,168,76,0.2); border-radius: 10px;
  display: grid; place-items: center; flex-shrink: 0;
}
.ci-icon svg { width: 20px; height: 20px; color: var(--gold); }
.ci-label { display: block; font-size: 0.68rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-dark-2); margin-bottom: 2px; }
.ci-value { display: block; font-size: 0.92rem; font-weight: 600; color: var(--text-dark); }

.contact-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

/* SOCIAL CARD */
.social-card {
  background: white; border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-xl); padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05); margin-bottom: 16px;
}
.social-card-title {
  font-family: var(--ff-sans); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-dark-2);
  margin-bottom: 20px;
}
.social-grid { display: flex; flex-direction: column; gap: 4px; }
.social-card-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border-radius: var(--radius); transition: var(--t);
  color: var(--text-dark); font-size: 0.9rem; font-weight: 500;
}
.social-card-item:hover { background: #f7f5f0; }
.sci-icon {
  width: 36px; height: 36px; border-radius: 8px;
  display: grid; place-items: center; flex-shrink: 0;
}
.sci-icon svg { width: 18px; height: 18px; }
.li-icon { background: #e8f0fe; color: #0A66C2; }
.fb-icon { background: #e7f0fd; color: #1877F2; }
.ig-icon { background: #fce8f0; color: #E1306C; }
.x-icon  { background: #f2f2f2; color: #111; }
.yt-icon { background: #fde8e8; color: #FF0000; }
.sci-arrow { width: 14px; height: 14px; color: var(--text-dark-2); margin-left: auto; opacity: 0; transition: var(--t); }
.social-card-item:hover .sci-arrow { opacity: 1; }

/* AVAILABILITY CARD */
.availability-card {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 24px; background: #f0fdf4;
  border: 1px solid #bbf7d0; border-radius: var(--radius-lg);
}
.avail-dot { width: 10px; height: 10px; background: #22c55e; border-radius: 50%; flex-shrink: 0; animation: avail-pulse 2s ease-in-out infinite; }
@keyframes avail-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
.avail-title { font-size: 0.88rem; font-weight: 600; color: #15803d; margin-bottom: 2px; }
.avail-sub   { font-size: 0.78rem; color: #4ade80; }

/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 28px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-logo-wrap { display: flex; align-items: center; flex-shrink: 0; }
.footer-logo-img { height: 62px; width: auto; display: block; }
.footer-name  { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.footer-role  { font-size: 0.72rem; color: var(--text-3); }
.footer-copy  { font-size: 0.72rem; color: var(--text-3); }

.footer-socials { display: flex; gap: 8px; }
.fsocial {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--surface); border: 1px solid var(--border);
  display: grid; place-items: center; color: var(--text-3); transition: var(--t);
  overflow: hidden;
}
.fsocial svg { width: 18px; height: 18px; }
.fsocial:hover { border-color: var(--gold); background: var(--gold-bg); }
.fsocial:not(.fsocial-yt):hover { color: var(--gold); }
.fsocial-yt svg { width: 22px; height: 22px; }
.fsocial-yt:hover { border-color: rgba(255,0,0,0.4); background: rgba(255,0,0,0.08); }

/* ════════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ════════════════════════════════════════════════════════════════ */
[data-animate] {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
[data-animate].visible { opacity: 1; transform: none; }

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-layout        { grid-template-columns: 300px 1fr; gap: 48px; }
  .photo-frame        { width: 280px; }
  .hero-photo         { width: 280px; height: 360px; }
  .expertise-layout   { grid-template-columns: 1fr 1fr; }
  .systems-panel      { grid-column: 1 / -1; }
  .cert-row           { grid-template-columns: 100px 1fr; }
  .about-layout       { grid-template-columns: 1fr; gap: 40px; }
  .about-main         { position: static; }
  .edu-layout         { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout     { grid-template-columns: 1fr; gap: 40px; }
  .contact-left       { position: static; }
  .podcast-item       { grid-template-columns: 48px 1fr auto; gap: 18px; }
  .podcast-visual     { display: none; }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .section            { padding: 56px 0; }
  .container          { padding: 0 1.25rem; }

  /* Nav */
  .nav-inner          { padding: 14px 1.25rem; }
  .nav-logo-svg       { height: 44px; }
  .nav-menu           { display: none; }
  .nav-menu.open      {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(13,17,23,0.98); backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border); padding: 12px; gap: 2px; z-index: 200;
  }
  .nav-link           { padding: 12px 16px; font-size: 0.9rem; border-radius: 8px; }
  .hamburger          { display: flex; }
  .nav-phone          { display: none; }

  /* Hero */
  .hero-layout        { grid-template-columns: 1fr; text-align: center; gap: 32px; padding: 40px 1.25rem 60px; }
  .hero-visual        { order: -1; }
  .photo-frame        { width: 240px; margin: 0 auto; }
  .hero-photo         { width: 240px; height: 300px; }
  .hero-social-strip  { justify-content: center; }
  .hero-kicker        { justify-content: center; }
  .hero-name          { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .hero-location      { justify-content: center; }
  .hero-bio           { text-align: left; }
  .opp-banner         { margin: 0 auto; }
  .hero-metrics       { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; width: 100%; padding: 18px 16px; gap: 0; }
  .metric             { align-items: center; }
  .metric-sep         { display: block; width: 1px; height: 36px; background: var(--border-med); margin: 0 auto; }
  .metric-value       { font-size: 2rem; }
  .metric-label       { font-size: 0.62rem; letter-spacing: 1px; }
  .hero-contact-row   { justify-content: center; flex-wrap: wrap; gap: 8px; }
  .contact-pill       { font-size: 0.79rem; padding: 8px 13px; }
  .hero-cta           { justify-content: center; flex-wrap: wrap; gap: 10px; }
  .btn-gold, .btn-outline { padding: 12px 24px; font-size: 0.88rem; }

  /* About */
  .section-heading    { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .about-pillars      { gap: 12px; }
  .pillar-card        { padding: 20px; }

  /* OTA */
  .expertise-layout   { grid-template-columns: 1fr; gap: 14px; }
  .ota-panel          { padding: 24px; }
  .ota-logo           { height: 34px; }

  /* Certifications */
  .cert-filter        { gap: 6px; }
  .filter-btn         { padding: 7px 14px; font-size: 0.78rem; }
  .filter-logo        { height: 14px; }
  .cert-row           { grid-template-columns: 80px 1fr; gap: 14px; padding: 14px 16px; }
  .cert-logo          { height: 18px; }
  .cert-name          { font-size: 0.85rem; }
  .cert-domain        { font-size: 0.75rem; }

  /* Experience */
  .exp-item           { grid-template-columns: 1fr; gap: 20px; }
  .exp-left           { flex-direction: row; align-items: center; gap: 16px; }
  .exp-period-block   { flex-direction: row; align-items: center; gap: 8px; }
  .exp-period-line    { width: 20px; height: 1px; margin-left: 0; }
  .exp-logo-wrap      { width: 56px; height: 56px; flex-shrink: 0; }
  .exp-title          { font-size: 1rem; }
  .exp-header         { flex-direction: column; align-items: flex-start; gap: 8px; }
  .exp-tags           { flex-wrap: wrap; }

  /* Podcast */
  .podcast-item       { grid-template-columns: 1fr; gap: 16px; padding: 20px; }
  .podcast-num        { display: none; }
  .podcast-action     { width: 100%; }
  .notify-btn         { width: 100%; justify-content: center; padding: 12px; }

  /* Education */
  .edu-card           { padding: 28px 20px; }

  /* Contact */
  .contact-info-list  { gap: 10px; }
  .contact-info-item  { padding: 14px 16px; }
  .contact-actions    { flex-direction: column; gap: 10px; }
  .contact-actions .btn-gold,
  .contact-actions .btn-outline { width: 100%; justify-content: center; text-align: center; }
  .social-card        { padding: 24px 20px; }

  /* Footer */
  .footer-inner       { flex-direction: column; text-align: center; gap: 14px; }
  .footer-brand       { flex-direction: column; align-items: center; }
  .footer-logo-img    { height: 48px; }
  .footer-socials     { justify-content: center; }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤480px)
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-metrics       { padding: 14px 10px; }
  .metric-value       { font-size: 1.7rem; }
  .metric-label       { font-size: 0.58rem; letter-spacing: 0.8px; }
  .cert-row           { grid-template-columns: 70px 1fr; gap: 10px; padding: 12px 14px; }
  .cert-logo          { height: 16px; max-width: 64px; }
  .hero-name          { font-size: clamp(2rem, 9vw, 2.8rem); }
  .filter-btn         { padding: 6px 11px; font-size: 0.74rem; }
  .exp-tags span      { font-size: 0.68rem; }
  .photo-frame        { width: 210px; }
  .hero-photo         { width: 210px; height: 265px; }
  .section-heading    { font-size: clamp(1.5rem, 7vw, 2rem); }
  .nav-logo-svg       { height: 38px; }
}

/* ── PRINT ─────────────────────────────────────────────────── */
@media print {
  .navbar, .hero-social-strip, .hero-cta, .section-podcast, .contact-right { display: none; }
  body { background: white; color: black; }
  .section-dark  { background: white; }
  .section-light { background: white; }
  .exp-item { page-break-inside: avoid; }
}

