/* ═══════════════════════════════════════════════
   MATEO FLORSHEIM — Personal Website
   Style Sheet
   ═══════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --bg:          #07090f;
  --bg-2:        #0d1117;
  --bg-3:        #111827;
  --bg-card:     #0f1623;
  --border:      rgba(255,255,255,0.07);
  --gold:        #d4a843;
  --gold-dim:    rgba(212,168,67,0.15);
  --gold-glow:   rgba(212,168,67,0.35);
  --blue:        #4f8ef7;
  --blue-dim:    rgba(79,142,247,0.12);
  --text:        #eef1f8;
  --text-muted:  #6b7a9e;
  --text-dim:    #9aa5c0;
  --radius:      14px;
  --radius-lg:   22px;
  --shadow:      0 8px 40px rgba(0,0,0,0.55);
  --shadow-gold: 0 0 40px rgba(212,168,67,0.2);
  --transition:  0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; }

/* ── Utilities ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, #f7c45e 50%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.93rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), #f7c45e);
  color: #07090f;
  box-shadow: 0 4px 20px var(--gold-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--gold-glow);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ═══════════════════════
   NAVBAR
═══════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}
#navbar.scrolled {
  background: rgba(7,9,15,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--gold), #f7c45e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 8px 20px !important;
  background: var(--gold-dim) !important;
  border: 1.5px solid var(--gold) !important;
  border-radius: 50px !important;
  color: var(--gold) !important;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: #07090f !important;
}
.nav-cta::after { display: none !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-dim);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(7,9,15,0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mob-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dim);
  transition: var(--transition);
}
.mob-link:hover { color: var(--gold); }

/* ═══════════════════════
   HERO
═══════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212,168,67,0.08) 0%, transparent 70%),
              radial-gradient(ellipse 60% 50% at 80% 80%, rgba(79,142,247,0.06) 0%, transparent 70%),
              var(--bg);
}
#particleCanvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px 60px;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 72px;
  align-items: center;
}
/* Photo */
.hero-photo-wrap {
  position: relative;
  flex-shrink: 0;
}
.hero-photo-ring {
  width: 380px; height: 380px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--blue));
  padding: 4px;
  box-shadow: var(--shadow-gold), 0 0 80px rgba(79,142,247,0.15);
  position: relative;
}
.hero-photo, .hero-photo-placeholder {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-3);
}
.hero-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--text-muted);
}
.hero-badge {
  position: absolute;
  bottom: 12px; right: -20px;
  background: linear-gradient(135deg, var(--gold), #f7c45e);
  color: #07090f;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 16px var(--gold-glow);
  white-space: nowrap;
}
/* Text */
.hero-eyebrow {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hero-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 16px;
}
.hero-typewriter {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--blue);
  min-height: 1.8em;
  margin-bottom: 20px;
}
.cursor {
  animation: blink 1s step-end infinite;
  color: var(--gold);
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.hero-sub {
  color: var(--text-dim);
  font-size: 1rem;
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.8;
}
.hero-sub strong { color: var(--text); }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}
.hero-socials {
  display: flex;
  gap: 16px;
}
.hero-socials a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.hero-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
  transform: translateY(-3px);
}
/* Scroll arrow */
.scroll-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 1.2rem;
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ═══════════════════════
   SECTIONS — Shared
═══════════════════════ */
.section { padding: 100px 0; }
.section-dark { background: var(--bg-2); }
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  padding: 5px 14px;
  background: var(--gold-dim);
  border-radius: 50px;
  border: 1px solid rgba(212,168,67,0.25);
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
}

/* ═══════════════════════
   ABOUT
═══════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: start;
}
.about-text p {
  color: var(--text-dim);
  margin-bottom: 18px;
  font-size: 1.05rem;
}
.about-text p strong { color: var(--text); }
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: var(--transition);
}
.tag:hover { border-color: var(--gold); color: var(--gold); }
.tag i { color: var(--gold); font-size: 0.8rem; }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  min-width: 280px;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}
.stat-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--gold-dim);
  transform: translateY(-3px);
}
.stat-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  font-family: 'Playfair Display', serif;
  background: linear-gradient(135deg, var(--gold), #f7c45e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ═══════════════════════
   TIMELINE (Experience)
═══════════════════════ */
.timeline {
  position: relative;
  padding-left: 48px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 15px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--blue), transparent);
}
.timeline-item {
  position: relative;
  margin-bottom: 48px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -48px;
  top: 24px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #f7c45e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #07090f;
  box-shadow: 0 0 16px var(--gold-glow);
  z-index: 1;
}
.timeline-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.timeline-card:hover {
  border-color: rgba(212,168,67,0.3);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(212,168,67,0.1);
  transform: translateY(-2px);
}
.tc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.tc-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.tc-role {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 500;
}
.tc-date {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-3);
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid var(--border);
  white-space: nowrap;
  flex-shrink: 0;
}
.tc-bullets {
  list-style: none;
  margin-bottom: 20px;
}
.tc-bullets li {
  color: var(--text-dim);
  font-size: 0.93rem;
  padding: 4px 0 4px 18px;
  position: relative;
}
.tc-bullets li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 6px;
}
.tc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tc-tags span {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  background: var(--blue-dim);
  border: 1px solid rgba(79,142,247,0.2);
  border-radius: 50px;
  color: var(--blue);
}

/* ═══════════════════════
   EDUCATION
═══════════════════════ */
.edu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 28px;
}
.edu-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  gap: 24px;
  transition: var(--transition);
}
.edu-card:hover {
  border-color: rgba(212,168,67,0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.edu-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold), #f7c45e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #07090f;
  flex-shrink: 0;
  box-shadow: 0 4px 16px var(--gold-glow);
}
.edu-icon-alt {
  background: linear-gradient(135deg, var(--blue), #7eb3ff);
  box-shadow: 0 4px 16px rgba(79,142,247,0.35);
}
.edu-body { flex: 1; min-width: 0; }
.edu-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.edu-header h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.edu-degree { font-size: 0.9rem; color: var(--gold); font-weight: 500; }
.edu-focus { font-size: 0.82rem; color: var(--text-muted); margin-top: 3px; }
.edu-meta { text-align: right; flex-shrink: 0; }
.edu-location, .edu-date {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.edu-location i, .edu-date { color: var(--text-muted); }
.edu-details { display: flex; flex-direction: column; gap: 16px; }
.edu-section strong {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}
.edu-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.edu-tags span {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 4px 12px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text-dim);
}
.edu-tags span i { margin-right: 4px; color: var(--gold); }

/* ═══════════════════════
   SKILLS
═══════════════════════ */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.skill-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.skill-block:hover {
  border-color: rgba(212,168,67,0.25);
  transform: translateY(-2px);
}
.skill-block h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
/* Skill bars */
.skill-bars { display: flex; flex-direction: column; gap: 18px; }
.skill-bar-item {}
.skill-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 7px;
  color: var(--text-dim);
}
.skill-bar-track {
  height: 6px;
  background: var(--bg-3);
  border-radius: 6px;
  overflow: hidden;
}
.skill-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), #f7c45e);
  border-radius: 6px;
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}
/* Certs */
.cert-list { display: flex; flex-direction: column; gap: 14px; }
.cert-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-dim);
}
.cert-item i {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
}
/* Languages */
.lang-list { display: flex; flex-direction: column; gap: 20px; }
.lang-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.lang-flag { font-size: 1.5rem; flex-shrink: 0; }
.lang-item > div:nth-child(2) { flex: 1; }
.lang-item > div:nth-child(2) strong { font-size: 0.9rem; }
.lang-item > div:nth-child(2) p { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }
.lang-dots { display: flex; gap: 5px; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1.5px solid var(--border);
}
.dot.filled {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 6px var(--gold-glow);
}
/* Interests */
.interest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.interest-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: var(--transition);
}
.interest-item:hover { border-color: var(--gold); color: var(--text); }
.interest-item i { color: var(--gold); width: 16px; text-align: center; }

/* ═══════════════════════
   LEADERSHIP
═══════════════════════ */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
  gap: 28px;
}
.lead-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
}
.lead-card:hover {
  border-color: rgba(212,168,67,0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.lead-card-top {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.lead-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold), #f7c45e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #07090f;
  flex-shrink: 0;
}
.lead-icon-alt {
  background: linear-gradient(135deg, var(--blue), #7eb3ff);
}
.lead-card-top h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.lead-role { font-size: 0.88rem; color: var(--gold); font-weight: 500; margin-bottom: 4px; }
.lead-meta { font-size: 0.78rem; color: var(--text-muted); }
.lead-meta i { margin-right: 3px; }
.lead-bullets { list-style: none; }
.lead-bullets li {
  color: var(--text-dim);
  font-size: 0.9rem;
  padding: 4px 0 4px 18px;
  position: relative;
}
.lead-bullets li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 6px;
}
.lead-bullets strong { color: var(--text); }

/* ═══════════════════════
   CONTACT
═══════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: start;
}
.contact-text > p {
  color: var(--text-dim);
  font-size: 1.05rem;
  margin-bottom: 36px;
  line-height: 1.8;
}
.contact-links { display: flex; flex-direction: column; gap: 16px; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.contact-link:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
  transform: translateX(6px);
}
.cl-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
}
.contact-link:hover .cl-icon {
  background: var(--gold);
  color: #07090f;
  border-color: var(--gold);
}
.contact-link strong { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 2px; }
.contact-link span { font-size: 0.82rem; color: var(--text-muted); }
.contact-card {
  width: 320px;
  flex-shrink: 0;
}
.cc-inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  position: sticky;
  top: 90px;
}
.cc-photo-wrap {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--blue));
  padding: 3px;
  margin: 0 auto 20px;
}
.cc-photo, .cc-photo-placeholder {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-3);
}
.cc-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--text-muted);
}
.cc-inner h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.cc-inner > p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; }
.cc-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: center;
  margin-bottom: 24px;
}
.cc-badges span {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  background: var(--gold-dim);
  border: 1px solid rgba(212,168,67,0.25);
  border-radius: 50px;
  color: var(--gold);
}
.cc-badges span i { margin-right: 4px; }

/* ═══════════════════════
   FOOTER
═══════════════════════ */
#footer {
  padding: 36px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--gold), #f7c45e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-left p { font-size: 0.82rem; color: var(--text-muted); }
.footer-socials { display: flex; gap: 14px; }
.footer-socials a {
  font-size: 1rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-socials a:hover { color: var(--gold); }

/* ═══════════════════════
   SCROLL ANIMATIONS
═══════════════════════ */
.reveal, .fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible, .fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ═══════════════════════
   RESPONSIVE
═══════════════════════ */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 40px;
    padding: 100px 24px 60px;
  }
  .hero-sub { margin: 0 auto 32px; }
  .hero-ctas { justify-content: center; }
  .hero-socials { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .about-stats { min-width: unset; grid-template-columns: repeat(4, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { width: 100%; }
  .cc-inner { position: static; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 72px 0; }
  .hero-photo-ring { width: 240px; height: 240px; }
  .hero-name { font-size: 2.6rem; }
  .edu-grid { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: 1fr; }
  .edu-card { flex-direction: column; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .timeline { padding-left: 36px; }
  .timeline-dot { left: -36px; width: 28px; height: 28px; font-size: 0.65rem; }
  .footer-inner { flex-direction: column; text-align: center; gap: 16px; }
}
@media (max-width: 480px) {
  .hero-name { font-size: 2rem; }
  .timeline-card { padding: 20px; }
  .edu-card { padding: 24px; }
  .lead-card { padding: 24px; }
  .skill-block { padding: 24px; }
  .interest-grid { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr; }
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg-3); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
