/* ============================================================
   Yogita Malkhede Portfolio — Main Stylesheet
   Structure: tokens → utility → nav → hero → sections
   Responsive breakpoints: 900px (tablet), 520px (mobile)
   ============================================================ */

/* ────────────────────────────
   TOKENS
──────────────────────────── */
:root {
  --bg:           #F8F9FC;
  --bg-2:         #FFFFFF;
  --bg-card:      #FFFFFF;
  --bg-hover:     #F3F4F8;
  --border:       rgba(0,0,0,0.08);
  --border-light: rgba(0,0,0,0.13);
  --text:         #1D1D1F;
  --text-2:       #424245;
  --text-muted:   #6E6E73;
  --sky:          #0EA5E9;
  --sky-dark:     #0284C7;
  --violet:       #7C3AED;
  --violet-dark:  #6D28D9;
  --green:        #16A34A;
  --amber:        #B45309;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Utility ── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 48px; }

.label {
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--sky);
}

.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 99px; font-size: 12px; font-weight: 500;
  border: 1px solid var(--border-light);
}
.pill-sky    { color: var(--sky);    background: rgba(14,165,233,0.08);  border-color: rgba(14,165,233,0.22); }
.pill-violet { color: var(--violet); background: rgba(124,58,237,0.07);  border-color: rgba(124,58,237,0.2); }
.pill-green  { color: var(--green);  background: rgba(22,163,74,0.08);   border-color: rgba(22,163,74,0.2); }
.pill-amber  { color: var(--amber);  background: rgba(180,83,9,0.07);    border-color: rgba(180,83,9,0.2); }
.pill-dim    { color: var(--text-2); background: rgba(0,0,0,0.04);       border-color: var(--border); }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(.16,1,.3,1), transform 0.7s cubic-bezier(.16,1,.3,1);
}
.reveal.up   { transform: translateY(30px); }
.reveal.left { transform: translateX(-30px); }
.reveal.right{ transform: translateX(30px); }
.reveal.visible { opacity: 1; transform: translate(0); }


/* ════════════════════════════════
   NAV
════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700;
  color: var(--text); text-decoration: none; letter-spacing: -0.3px;
}
.nav-logo span { color: var(--sky); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 16px; border-radius: 8px; font-size: 14px; font-weight: 500;
  color: var(--text-2); text-decoration: none;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--text); background: rgba(0,0,0,0.05); }
.nav-links a.active { color: var(--sky); }
.nav-hire {
  padding: 9px 22px; border-radius: 10px; font-size: 13px; font-weight: 600;
  background: var(--sky); color: #000; text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  margin-left: 12px;
}
.nav-hire:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── Mobile hamburger ── */
.nav-burger {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 8px; border-radius: 8px;
  color: var(--text); font-size: 20px; line-height: 1;
  transition: background 0.15s;
}
.nav-burger:hover { background: rgba(0,0,0,0.05); }

.nav-mobile-menu {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0; z-index: 99;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  padding: 12px 16px 20px;
  gap: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  padding: 12px 16px; border-radius: 10px;
  font-size: 16px; font-weight: 500;
  color: var(--text-2); text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.nav-mobile-menu a:hover { background: rgba(0,0,0,0.04); color: var(--text); }
.nav-mobile-menu .nav-hire {
  margin-left: 0; margin-top: 8px;
  background: var(--sky); color: #000;
  text-align: center; display: block;
}


/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 48px 80px;
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, #EFF6FF 0%, #F5F3FF 40%, #F8F9FC 70%, #E0F2FE 100%);
}
.hero::before {
  content: '';
  position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(14,165,233,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -10%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(124,58,237,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1120px; margin: 0 auto; width: 100%;
  position: relative; z-index: 1;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px; margin-bottom: 36px;
}
.hero-eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); animation: blink 2s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero-eyebrow-text {
  font-size: 13px; font-weight: 500; color: var(--text-2);
}
.hero-eyebrow-sep { width: 1px; height: 14px; background: var(--border-light); }

.hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800; line-height: 1.02;
  letter-spacing: -2px; margin-bottom: 32px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--sky-dark), var(--violet));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 18px; color: var(--text-2); line-height: 1.7;
  max-width: 560px; margin-bottom: 48px; font-weight: 300;
}

.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 12px; font-size: 15px; font-weight: 600;
  background: var(--sky); color: #000; text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 12px; font-size: 15px; font-weight: 600;
  background: transparent; color: var(--text-2); text-decoration: none;
  border: 1px solid var(--border-light);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--sky); color: var(--sky); background: rgba(14,165,233,0.04); }

.hero-tags {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 56px;
  padding-top: 40px; border-top: 1px solid var(--border);
}

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; animation: float 3s ease infinite;
}
@keyframes float { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--border-light), transparent);
}


/* ════════════════════════════════
   SECTION SHARED
════════════════════════════════ */
section { padding: 110px 0; }

.section-header { margin-bottom: 72px; }
.section-num {
  font-family: 'Sora', sans-serif; font-size: 80px; font-weight: 800;
  color: rgba(0,0,0,0.04); line-height: 1;
  position: absolute; top: -30px; left: -8px;
  pointer-events: none; user-select: none;
}
.section-title-wrap { position: relative; }
.section-title {
  font-family: 'Sora', sans-serif; font-size: 42px; font-weight: 700;
  line-height: 1.1; letter-spacing: -1px; margin-top: 12px; margin-bottom: 16px;
}
.section-sub {
  font-size: 16px; color: var(--text-2); max-width: 520px; line-height: 1.7; font-weight: 300;
}


/* ════════════════════════════════
   ABOUT
════════════════════════════════ */
.about { background: var(--bg-2); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.about-text { font-size: 16px; color: var(--text-2); line-height: 1.8; font-weight: 300; }
.about-text p + p { margin-top: 20px; }
.about-text strong { color: var(--text); font-weight: 600; }

.about-cards { display: flex; flex-direction: column; gap: 2px; }
.about-stat {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.about-stat:first-child { border-top: 1px solid var(--border); }
.about-stat-label { font-size: 13px; color: var(--text-muted); }
.about-stat-val { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 600; color: var(--text); }
.about-stat-val span { color: var(--sky); }


/* ════════════════════════════════
   WORK
════════════════════════════════ */
.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-bottom: 2px; }
.work-card {
  display: block; text-decoration: none; color: inherit;
  background: var(--bg-card); padding: 0;
  overflow: hidden; position: relative;
  transition: background 0.3s;
  border: 1px solid var(--border);
  border-radius: 20px;
}
.work-card:hover { background: var(--bg-hover); }
.work-card-thumb {
  height: 260px; width: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px; position: relative; overflow: hidden;
}
.work-card-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.work-card-thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--bg-card) 100%);
}
.work-card:hover .work-card-thumb-overlay {
  background: linear-gradient(to bottom, transparent 40%, var(--bg-hover) 100%);
}
.wt-dark  { background: linear-gradient(135deg, #0D1B2E 0%, #081018 100%); }
.wt-ink   { background: linear-gradient(135deg, #110A28 0%, #0A0518 100%); }
.wt-steel { background: linear-gradient(135deg, #0E1420 0%, #0A0F1A 100%); }
.work-card-body { padding: 28px 32px 32px; }
.work-card-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.work-card-title {
  font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 700;
  margin-bottom: 10px; line-height: 1.2;
}
.work-card-desc { font-size: 14px; color: var(--text-2); line-height: 1.65; margin-bottom: 20px; }
.work-card-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--sky);
  opacity: 0; transform: translateX(-6px);
  transition: opacity 0.25s, transform 0.25s;
}
.work-card:hover .work-card-arrow { opacity: 1; transform: translateX(0); }

.work-card-featured {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: 1fr 1fr;
}
.work-card-featured .work-card-thumb { height: 100%; min-height: 300px; }
.work-card-featured .work-card-body {
  display: flex; flex-direction: column; justify-content: center;
  padding: 48px;
}
.work-card-featured .work-card-title { font-size: 26px; }


/* ════════════════════════════════
   SKILLS
════════════════════════════════ */
.skills { background: var(--bg-2); }
.skills-inner {
  display: grid; grid-template-columns: 280px 1fr; gap: 80px; align-items: start;
}
.skills-sticky { position: sticky; top: 100px; }
.skills-sticky-sub { font-size: 15px; color: var(--text-2); margin-top: 16px; line-height: 1.7; font-weight: 300; }

.skills-groups { display: flex; flex-direction: column; gap: 48px; }
.skill-group-title {
  font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--text-muted); letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 20px;
}

.skill-rows { display: flex; flex-direction: column; gap: 16px; }
.skill-row  { display: flex; flex-direction: column; gap: 7px; }
.skill-row-top { display: flex; justify-content: space-between; }
.skill-row-name { font-size: 14px; font-weight: 500; color: var(--text); }
.skill-row-pct  { font-size: 13px; color: var(--text-muted); font-variant-numeric: tabular-nums; }
.skill-track { height: 3px; background: rgba(0,0,0,0.07); border-radius: 99px; overflow: hidden; }
.skill-fill  {
  height: 100%; border-radius: 99px;
  background: linear-gradient(90deg, var(--sky-dark), var(--sky));
  transform: scaleX(0); transform-origin: left;
  transition: transform 1s cubic-bezier(.16,1,.3,1);
}
.skill-fill.violet { background: linear-gradient(90deg, var(--violet-dark), var(--violet)); }
.skill-fill.green  { background: linear-gradient(90deg, #15803D, #16A34A); }
.skill-fill.animated { transform: scaleX(1); }

.skill-pills { display: flex; flex-wrap: wrap; gap: 8px; }


/* ════════════════════════════════
   EXPERIENCE
════════════════════════════════ */
.exp-list { display: flex; flex-direction: column; }
.exp-row {
  display: grid; grid-template-columns: 160px 40px 1fr;
  gap: 0 0; padding: 0 0 0 0;
  border-bottom: 1px solid var(--border);
}
.exp-row:first-child { border-top: 1px solid var(--border); }

.exp-time {
  padding: 32px 0; font-size: 13px; color: var(--text-muted);
  display: flex; flex-direction: column; gap: 4px;
}
.exp-time-range { font-size: 12px; font-weight: 500; color: var(--text-2); }
.exp-time-dur   { font-size: 11px; color: var(--text-muted); }

.exp-dot-col {
  display: flex; flex-direction: column; align-items: center; padding: 36px 0 0;
}
.exp-dot-circle {
  width: 10px; height: 10px; border-radius: 50%;
  border: 2px solid var(--sky);
  background: var(--bg-card); flex-shrink: 0;
}
.exp-dot-line {
  flex: 1; width: 1px; background: var(--border);
  margin-top: 8px;
}
.exp-row:last-child .exp-dot-line { display: none; }

.exp-content { padding: 32px 0 40px 32px; }
.exp-co {
  font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700;
  margin-bottom: 4px;
}
.exp-role-wrap { display: flex; flex-direction: column; gap: 16px; }
.exp-role-title {
  font-size: 14px; font-weight: 600; color: var(--sky); margin-bottom: 3px;
}
.exp-role-team  { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
.exp-role-bullets { list-style: none; }
.exp-role-bullets li {
  font-size: 14px; color: var(--text-2); line-height: 1.65;
  padding: 2px 0 2px 16px; position: relative;
}
.exp-role-bullets li::before {
  content: '–'; position: absolute; left: 0; color: var(--text-muted);
}
.exp-tools-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.exp-tool {
  padding: 3px 10px; border-radius: 6px; font-size: 11px; font-weight: 500;
  background: rgba(14,165,233,0.07); color: var(--sky-dark);
  border: 1px solid rgba(14,165,233,0.18);
}
.exp-divider { height: 1px; background: var(--border); margin: 20px 0; }


/* ════════════════════════════════
   EDUCATION
════════════════════════════════ */
.edu { background: var(--bg-2); }
.edu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.edu-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px; position: relative; overflow: hidden;
  transition: border-color 0.25s, background 0.25s;
}
.edu-card:hover { border-color: var(--border-light); background: var(--bg-hover); }
.edu-card-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--sky-dark), var(--sky));
}
.edu-card-accent.violet { background: linear-gradient(90deg, var(--violet-dark), var(--violet)); }
.edu-icon { font-size: 28px; margin-bottom: 20px; }
.edu-degree { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.edu-field { font-size: 14px; color: var(--sky); font-weight: 500; margin-bottom: 10px; }
.edu-field.violet { color: var(--violet); }
.edu-college { font-size: 13px; color: var(--text-2); line-height: 1.5; margin-bottom: 16px; }
.edu-badge {
  display: inline-block; font-size: 11px; font-weight: 600;
  color: var(--text-muted); background: rgba(0,0,0,0.04);
  border: 1px solid var(--border); border-radius: 6px; padding: 3px 10px;
}


/* ════════════════════════════════
   CONTACT
════════════════════════════════ */
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.contact-big {
  font-family: 'Sora', sans-serif; font-size: 52px; font-weight: 800;
  line-height: 1.05; letter-spacing: -1.5px; margin-bottom: 32px;
}
.contact-big em {
  font-style: normal;
  background: linear-gradient(135deg, var(--sky-dark), var(--violet));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-desc { font-size: 16px; color: var(--text-2); line-height: 1.7; margin-bottom: 40px; font-weight: 300; }

.contact-cards { display: flex; flex-direction: column; gap: 12px; }
.contact-card {
  display: flex; align-items: center; gap: 18px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 20px 24px;
  text-decoration: none; color: inherit;
  transition: border-color 0.2s, background 0.2s;
}
.contact-card:hover { border-color: var(--border-light); background: var(--bg-hover); }
.contact-card-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: rgba(0,0,0,0.04); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.contact-card-label { font-size: 11px; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 3px; }
.contact-card-val { font-size: 15px; font-weight: 600; color: var(--text); }

.contact-email-cta {
  margin-top: 8px; padding: 40px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 24px; text-align: center;
}
.contact-email-big {
  font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 700;
  color: var(--sky); text-decoration: none; display: block; margin-bottom: 28px;
  transition: opacity 0.2s;
}
.contact-email-big:hover { opacity: 0.7; }
.contact-cta-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.6; }


/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
footer {
  border-top: 1px solid var(--border);
  padding: 36px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.foot-name { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700; color: var(--text); }
.foot-links { display: flex; gap: 24px; }
.foot-links a { font-size: 13px; color: var(--text-muted); text-decoration: none; transition: color 0.15s; }
.foot-links a:hover { color: var(--sky); }
.foot-copy { font-size: 12px; color: var(--text-muted); }


/* ════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
════════════════════════════════ */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-burger { display: block; }

  .hero { padding: 96px 24px 56px; }
  .hero-desc { font-size: 17px; max-width: 100%; }

  section { padding: 72px 0; }
  .section-title { font-size: 34px; }
  .section-header { margin-bottom: 48px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Work cards */
  .work-grid { grid-template-columns: 1fr; gap: 16px; }
  .work-card-featured {
    grid-column: 1;
    grid-template-columns: 1fr;
  }
  .work-card-featured .work-card-thumb { height: 220px; min-height: 220px; }
  .work-card-featured .work-card-body { padding: 24px 28px 28px; justify-content: flex-start; }
  .work-card-featured .work-card-title { font-size: 20px; }

  /* Skills */
  .skills-inner { grid-template-columns: 1fr; gap: 36px; }
  .skills-sticky { position: static; }

  /* Experience — keep timeline but reduce date column */
  .exp-row { grid-template-columns: 120px 32px 1fr; }
  .exp-time { padding: 24px 0; }
  .exp-content { padding: 24px 0 32px 20px; }

  /* Education */
  .edu-grid { grid-template-columns: 1fr; gap: 12px; }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-inner > div:last-child { padding-top: 0 !important; }
  .contact-big { font-size: 42px; }
  .contact-cards { gap: 10px; }
  .contact-card { padding: 16px 18px; gap: 14px; }
  .contact-card-val { font-size: 14px; }
  .contact-email-cta { padding: 28px 24px; }

  /* Footer */
  footer { padding: 24px; gap: 12px; flex-wrap: wrap; }
  .foot-links { flex-wrap: wrap; gap: 12px; }
}


/* ════════════════════════════════
   RESPONSIVE — MOBILE (≤ 640px)
════════════════════════════════ */
@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .nav { padding: 0 16px; }

  .hero { padding: 84px 16px 48px; }
  .hero h1 { letter-spacing: -1px; }
  .hero-desc { font-size: 16px; }
  .hero-actions { flex-direction: column; gap: 10px; width: 100%; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; padding: 13px 20px; }
  .hero-eyebrow { flex-wrap: wrap; gap: 8px; }
  .hero-eyebrow-sep { display: none; }
  .hero-tags { margin-top: 32px; padding-top: 24px; gap: 8px; }

  section { padding: 60px 0; }
  .section-title { font-size: 28px; }
  .section-num { font-size: 52px; }
  .section-header { margin-bottom: 36px; }

  /* About */
  .about-grid { gap: 28px; }
  .about-text { font-size: 15px; }
  .about-stat { padding: 14px 16px; }
  .about-stat-val { font-size: 13px; }

  /* Work cards */
  .work-card-thumb { height: 190px !important; min-height: 190px !important; }
  .work-card-body { padding: 18px 18px 22px; }
  .work-card-title { font-size: 17px; }
  .work-card-featured .work-card-title { font-size: 17px; }
  .work-card-featured .work-card-body { padding: 18px; }
  .work-card-featured .work-card-thumb { height: 190px !important; min-height: 190px !important; }
  .work-card-desc { font-size: 13px; }

  /* Skills */
  .skill-group-title { font-size: 11px; }
  .skill-row-name { font-size: 13px; }
  .skill-pills { gap: 6px; }
  .skill-pills .pill { font-size: 11px; padding: 4px 10px; }

  /* Experience — drop timeline columns, use plain block */
  .exp-row {
    display: block;
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
  }
  .exp-row:first-child { border-top: 1px solid var(--border); }
  .exp-time { display: block; padding: 0 0 6px; }
  .exp-time-range { display: inline; }
  .exp-time-dur { display: inline; margin-left: 6px; }
  .exp-dot-col { display: none; }
  .exp-content { padding: 0; }
  .exp-co { font-size: 15px; margin-bottom: 12px; margin-top: 4px; }
  .exp-role-title { font-size: 13px; }
  .exp-role-team { font-size: 11px; }
  .exp-role-bullets li { font-size: 13px; }
  .exp-tools-row { gap: 4px; }
  .exp-tool { font-size: 10px; }

  /* Education */
  .edu-card { padding: 24px 18px; }
  .edu-degree { font-size: 16px; }
  .edu-field { font-size: 13px; }
  .edu-college { font-size: 12px; }

  /* Contact */
  .contact-big { font-size: 34px; letter-spacing: -0.5px; }
  .contact-inner { gap: 28px; }
  .contact-inner > div:last-child { padding-top: 0 !important; }
  .contact-desc { font-size: 15px; }
  .contact-card { padding: 14px 16px; gap: 12px; border-radius: 14px; }
  .contact-card-icon { width: 38px; height: 38px; font-size: 17px; border-radius: 10px; }
  .contact-card-val { font-size: 13px; word-break: break-word; }
  .contact-email-cta { padding: 24px 16px; border-radius: 18px; }
  .contact-email-big { font-size: 14px; word-break: break-all; margin-bottom: 20px; }
  .contact-cta-sub { font-size: 13px; }

  /* Footer */
  footer { flex-direction: column; align-items: center; text-align: center; padding: 24px 16px; gap: 12px; }
  .foot-links { justify-content: center; flex-wrap: wrap; gap: 10px; }
  .foot-copy { font-size: 11px; }
}
