/*
 Theme Name:   GeneratePress Child — Daniel Mitcan
 Theme URI:    https://mitcan.nl
 Description:  Custom child theme for mitcan.nl
 Author:       Daniel Mitcan
 Template:     generatepress
 Version:      1.0.0
*/

/* ============================================
   PALETTE C: Steel & Bronze
   ============================================ */
:root {
  --bg:          #FFFFFF;
  --surface:     #F7F8FA;
  --surface2:    #EDEEF2;
  --primary:     #2C3E50;
  --primary-dk:  #1A2634;
  --accent:      #FBAE40;
  --accent-dk:   #C8892B;
  --accent-lt:   #FEF3E2;
  --text:        #1C2126;
  --text-2:      #64748B;
  --text-3:      #94A3B8;
  --border:      #D8DDE5;
  --tag-bg:      #FDF2E4;
  --tag-text:    #7A5020;
  --nav-bg:      rgba(255,255,255,0.96);
  --hero-bg:     linear-gradient(140deg, #F4F5F7 0%, #FFFFFF 55%);
  --card-shadow: 0 2px 16px rgba(44,62,80,0.09);
  --font-head:   'Space Grotesk', sans-serif;
  --font-body:   'Inter', sans-serif;
}

/* Dark theme */
[data-theme="dark"] {
  --bg:          #0F1923;
  --surface:     #18242F;
  --surface2:    #1E2D3D;
  --primary:     #3A5270;
  --primary-dk:  #2C3E50;
  --accent:      #FBAE40;
  --accent-dk:   #C8892B;
  --accent-lt:   rgba(251,174,64,0.12);
  --text:        #EDF2F7;
  --text-2:      #94A3B8;
  --text-3:      #64748B;
  --border:      rgba(255,255,255,0.08);
  --tag-bg:      rgba(251,174,64,0.1);
  --tag-text:    #FBAE40;
  --nav-bg:      rgba(15,25,35,0.97);
  --hero-bg:     linear-gradient(140deg, #131E29 0%, #0F1923 60%);
  --card-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

body, nav, section, footer, .timeline-body, .exp-card, .post-card, .info-card, .edu-item, .edu-block {
  transition: background-color 0.35s ease, border-color 0.35s ease, color 0.2s ease;
}

[data-theme="dark"] .nav-links {
  background: #0F1923;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* WordPress admin bar offset */
.admin-bar nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar nav { top: 46px; }
}

/* Theme toggle button */
.theme-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 11px;
  font-size: 15px;
  cursor: pointer;
  color: var(--text-2);
  transition: border-color 0.2s, background 0.2s;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 5px;
}
.theme-toggle:hover { border-color: var(--accent); color: var(--accent); }
.theme-toggle .toggle-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ============================================
   NAVBAR
   ============================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 48px;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.02em;
  transition: color 0.18s;
}
.nav-links a:hover { color: var(--accent-dk); }

/* Fixed private button — top right */
.private-fixed {
  position: fixed;
  top: 14px;
  right: 20px;
  z-index: 1100;
  background: var(--accent);
  color: var(--primary) !important;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.private-fixed:hover { background: var(--accent-dk); color: #fff !important; }

.nav-cta {
  background: var(--accent) !important;
  color: var(--primary) !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--accent-dk) !important; color: #fff !important; }

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s;
}

/* ============================================
   HERO — Split layout: photo LEFT, text RIGHT
   ============================================ */
#hero {
  min-height: 100vh;
  background: var(--hero-bg);
  display: flex;
  align-items: stretch;
  padding-top: 64px;
}

.hero-photo-panel {
  width: 36%;
  flex-shrink: 0;
  position: relative;
  background: var(--primary);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.hero-photo-panel::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(44,62,80,0.82) 0%, rgba(44,62,80,0.15) 55%, transparent 100%);
  z-index: 1;
}
.hero-photo-panel img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.85;
}
.hero-photo-caption {
  position: relative;
  z-index: 2;
  padding: 32px;
  width: 100%;
}
.hero-caption-name {
  font-family: var(--font-head);
  font-size: 32px;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.hero-caption-title {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
}
.hero-accent-bar { display: none; }

.hero-content-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 60px 60px 48px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dk);
  margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.hero-name {
  font-family: var(--font-head);
  font-size: 58px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--accent);
  margin-bottom: 14px;
}
.hero-subtitle {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-2);
  margin-bottom: 6px;
}
.hero-company {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-company::before {
  content: '';
  display: block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.tag {
  background: var(--tag-bg);
  color: var(--tag-text);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.02em;
  border: 1px solid rgba(251,174,64,0.25);
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

/* Buttons */
.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 12px 26px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.btn-primary:hover { background: var(--primary-dk); transform: translateY(-1px); }
.btn-accent {
  background: var(--accent);
  color: var(--primary);
  padding: 12px 26px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.btn-accent:hover { background: var(--accent-dk); color: #fff; transform: translateY(-1px); }
.btn-outline {
  border: 1.5px solid var(--border);
  color: var(--text-2);
  padding: 11px 24px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent-dk); transform: translateY(-1px); }

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface);
  max-width: 400px;
}
.stat {
  flex: 1;
  text-align: center;
  padding: 14px 12px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-dk);
}
.stat-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ============================================
   SECTIONS COMMON
   ============================================ */
section { padding: 80px 48px; }
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dk);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::after {
  content: '';
  width: 36px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.section-title {
  font-family: var(--font-head);
  font-size: 36px;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 15.5px;
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.7;
}

/* ============================================
   ABOUT
   ============================================ */
#about {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 44px;
  align-items: start;
}
.about-text p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 18px;
}
.about-text strong { color: var(--text); font-weight: 600; }
.about-text em { color: var(--accent-dk); font-style: italic; }
.lang-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.lang-badge {
  background: var(--accent-lt);
  border: 1px solid rgba(251,174,64,0.3);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-dk);
}
.about-right { display: flex; flex-direction: column; gap: 12px; }
.info-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--card-shadow);
}
.info-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--accent-lt);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 17px;
}
.info-label { font-size: 10px; color: var(--text-3); font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; }
.info-value { font-size: 14px; font-weight: 600; color: var(--text); margin-top: 2px; }

/* ============================================
   EXPERTISE
   ============================================ */
#expertise { background: var(--bg); }
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.exp-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 12px;
  padding: 26px 22px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.exp-card:hover { transform: translateY(-5px); box-shadow: 0 8px 32px rgba(44,62,80,0.12); }
.exp-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 16px;
}
.exp-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 9px; letter-spacing: -0.01em; }
.exp-desc { font-size: 13px; color: var(--text-2); line-height: 1.65; }
.exp-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 12px; }
.exp-tag { font-size: 11px; font-weight: 500; color: var(--tag-text); background: var(--tag-bg); padding: 3px 9px; border-radius: 20px; }

/* ============================================
   CAREER TIMELINE
   ============================================ */
#career {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.timeline { margin-top: 44px; position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 23px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--border));
}
.timeline-item { display: flex; gap: 30px; margin-bottom: 32px; position: relative; }
.timeline-dot {
  width: 48px; height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  position: relative; z-index: 1;
  border: 3px solid var(--bg);
}
.dot-current { background: var(--accent); box-shadow: 0 0 0 3px rgba(251,174,64,0.25); }
.dot-senior  { background: var(--primary); box-shadow: 0 0 0 3px rgba(44,62,80,0.18); }
.dot-mid     { background: var(--surface2); box-shadow: 0 0 0 2px var(--border); color: var(--text-2); font-size: 16px; }
.dot-early   { background: var(--surface2); box-shadow: 0 0 0 2px var(--border); color: var(--text-2); font-size: 16px; }

.timeline-body {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 26px;
  flex: 1;
  box-shadow: var(--card-shadow);
  transition: transform 0.2s, border-color 0.2s;
}
.timeline-body:hover { transform: translateX(5px); border-color: var(--accent); }
.timeline-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.timeline-date {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff;
  background: var(--accent-dk);
  padding: 3px 10px; border-radius: 4px;
}
.timeline-date.current { background: var(--accent); color: var(--primary); }
.timeline-duration { font-size: 11px; color: var(--text-3); font-weight: 500; white-space: nowrap; }
.timeline-role { font-size: 17px; font-weight: 700; color: var(--text); letter-spacing: -0.01em; margin-bottom: 3px; }
.timeline-company { font-size: 13px; font-weight: 600; color: var(--accent-dk); margin-bottom: 12px; }
.timeline-desc { font-size: 13.5px; color: var(--text-2); line-height: 1.7; }
.timeline-highlights { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }

/* ============================================
   EDUCATION
   ============================================ */
#education { background: var(--bg); }
.edu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 44px; }
.edu-block h3 {
  font-size: 11px; font-weight: 700; color: var(--text-3);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
}
.edu-item { display: flex; gap: 14px; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.edu-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.edu-badge {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--accent-lt);
  border: 1px solid rgba(251,174,64,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.edu-name { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.edu-org { font-size: 13px; color: var(--primary); font-weight: 500; }
.edu-year { font-size: 11px; color: var(--text-3); margin-top: 3px; }

/* ============================================
   LINKEDIN POSTS
   ============================================ */
#linkedin-posts {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.posts-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 18px; }
.post-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  cursor: pointer;
  display: flex; flex-direction: column;
  box-shadow: var(--card-shadow);
}
.post-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.10); border-color: var(--accent); }
.post-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 13px; }
.post-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 12px; font-weight: 700; flex-shrink: 0;
}
.post-avatar.ampacimon-av { background: var(--accent-dk); }
.post-author { font-size: 13px; font-weight: 600; color: var(--text); }
.post-time { font-size: 11px; color: var(--text-3); }
.post-li-badge { margin-left: auto; font-size: 10px; font-weight: 700; color: #0A66C2; background: #EAF2FF; padding: 3px 8px; border-radius: 4px; white-space: nowrap; }
.post-headline { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 8px; line-height: 1.4; }
.post-text { font-size: 13px; color: var(--text-2); line-height: 1.65; flex: 1; }
.post-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 10px; }
.post-tag { font-size: 11px; color: var(--tag-text); background: var(--tag-bg); padding: 2px 8px; border-radius: 20px; }
.post-stats {
  display: flex; align-items: center;
  font-size: 12px; color: var(--text-3);
  border-top: 1px solid var(--border);
  padding-top: 11px; margin-top: 12px;
}
.post-stats .read-more { margin-left: auto; font-size: 12px; font-weight: 700; color: var(--accent-dk); }
.engagement-high { color: var(--accent-dk); font-weight: 700; }

/* ============================================
   CONTACT
   ============================================ */
#contact {
  background: var(--primary);
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(251,174,64,0.08);
}
#contact::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(251,174,64,0.06);
}
#contact .section-label { justify-content: center; color: rgba(255,255,255,0.55); }
#contact .section-label::after { background: rgba(255,255,255,0.25); }
#contact .section-title { color: #fff; position: relative; z-index: 1; }
#contact .section-sub { color: rgba(255,255,255,0.65); margin: 0 auto 36px; position: relative; z-index: 1; }
.contact-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-white { background: #fff; color: var(--primary); padding: 12px 26px; border-radius: 7px; font-size: 14px; font-weight: 700; transition: transform 0.15s, box-shadow 0.15s; display: inline-flex; align-items: center; gap: 7px; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.18); }
.btn-ghost-white { border: 1.5px solid rgba(255,255,255,0.35); color: #fff; padding: 11px 24px; border-radius: 7px; font-size: 14px; font-weight: 500; transition: border-color 0.2s, transform 0.15s, background 0.2s; display: inline-flex; align-items: center; gap: 7px; }
.btn-ghost-white:hover { border-color: var(--accent); background: rgba(251,174,64,0.1); transform: translateY(-2px); }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--primary-dk);
  color: rgba(255,255,255,0.45);
  padding: 28px 48px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px;
}
.footer-logo { font-family: var(--font-head); font-size: 18px; color: var(--accent); }
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: rgba(255,255,255,0.45); font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-right { display: flex; align-items: center; gap: 14px; }
.footer-social { display: flex; gap: 7px; }
.footer-social a { width: 32px; height: 32px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.12); display: inline-flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.45); font-size: 13px; transition: border-color 0.2s, color 0.2s; }
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }
.private-link { font-size: 12px; color: rgba(255,255,255,0.3); border: 1px solid rgba(255,255,255,0.12); padding: 5px 12px; border-radius: 5px; transition: all 0.2s; }
.private-link:hover { color: var(--accent); border-color: var(--accent); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-name { font-size: 46px; }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; position: fixed; top: 64px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); flex-direction: column; gap: 0; padding: 8px 0; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 24px; border-bottom: 1px solid var(--border); font-size: 15px; }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-cta { border-radius: 0 !important; }
  .nav-toggle { display: flex; }
  #hero { flex-direction: column; padding-top: 64px; min-height: auto; }
  .hero-photo-panel { width: 100%; height: 50vw; min-height: 240px; max-height: 320px; flex-shrink: 0; }
  .hero-photo-panel::after { background: linear-gradient(to top, rgba(44,62,80,0.75) 0%, transparent 60%); }
  .hero-caption-name { font-size: 24px; }
  .hero-content-panel { padding: 36px 24px 36px; }
  .hero-name { font-size: 40px; }
  .hero-subtitle { font-size: 15px; }
  .hero-stats { max-width: 100%; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .btn-primary, .btn-accent, .btn-outline { justify-content: center; width: 100%; }
  section { padding: 56px 24px; }
  .section-title { font-size: 28px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .expertise-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .edu-grid { grid-template-columns: 1fr; gap: 32px; }
  .posts-grid { grid-template-columns: 1fr; }
  .posts-row2 { grid-template-columns: 1fr; }
  .contact-actions { flex-direction: column; align-items: center; }
  .btn-white, .btn-ghost-white { width: 100%; max-width: 300px; justify-content: center; }
  footer { flex-direction: column; gap: 16px; text-align: center; padding: 24px 20px; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 14px; }
  .timeline-header { flex-direction: column; gap: 4px; }
}

@media (max-width: 480px) {
  .expertise-grid { grid-template-columns: 1fr; }
  .hero-name { font-size: 34px; }
  .hero-tags .tag:nth-child(n+5) { display: none; }
}
