/* ── TOKENS ── */
:root {
  --bg:             #0A0A0A;
  --surface:        #0D0D0D;
  --surface-2:      #111111;
  --border:         #1A1A1A;
  --border-2:       #1E1E1E;
  --gold:           #C9A96E;
  --text-primary:   #FFFFFF;
  --text-secondary: #888888;
  --text-muted:     #555555;
  --text-dim:       #444444;
  --green:          #4CAF50;
  --pad-x:          56px;
  --section-y:      100px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
}

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad-x);
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,169,110,0.08);
}
.nav-logo {
  font-family: 'Cormorant Garant', serif;
  font-size: 17px; font-weight: 300;
  color: var(--text-primary); letter-spacing: 3px; text-transform: uppercase;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: #666; text-decoration: none;
  font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 68px var(--pad-x) 80px;
  position: relative; overflow: hidden;
}
.hero-glow {
  position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at 80% 40%, rgba(201,169,110,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.hero-body { width: 100%; max-width: 680px; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 10.5px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 36px;
}
.eyebrow-line {
  display: block; width: 36px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}
.hero-name {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(68px, 9.5vw, 118px);
  font-weight: 300; line-height: 0.92; letter-spacing: -3px;
  color: var(--text-primary); margin-bottom: 36px;
}
.hero-name em {
  font-style: italic; color: rgba(255,255,255,0.42); display: block;
}
.hero-rule { width: 48px; height: 1px; background: var(--gold); margin-bottom: 28px; }
.hero-tagline {
  font-size: 16px; line-height: 1.75; color: var(--text-secondary);
  max-width: 460px; font-weight: 300; margin-bottom: 48px;
}
.hero-tagline strong { color: #e0e0e0; font-weight: 500; }
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.cta-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 13px 26px; border: 1px solid rgba(201,169,110,0.65);
  color: var(--gold); font-size: 10.5px; letter-spacing: 2.5px; text-transform: uppercase;
  text-decoration: none; background: transparent;
  transition: all 0.25s ease; white-space: nowrap;
}
.cta-btn:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.badge-row { display: flex; gap: 7px; flex-wrap: wrap; align-items: center; }
.badge {
  font-size: 9.5px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-muted); padding: 5px 11px;
  border: 1px solid var(--border-2); border-radius: 2px; white-space: nowrap;
}
.scroll-hint {
  position: absolute; bottom: 36px; left: var(--pad-x);
  display: flex; align-items: center; gap: 12px;
  color: #383838; font-size: 9.5px; letter-spacing: 2.5px; text-transform: uppercase;
}
.scroll-track {
  width: 36px; height: 1px; background: #222;
  position: relative; overflow: hidden; display: block;
}
.scroll-track::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%; background: var(--gold);
  animation: sweep 2.2s ease-in-out infinite;
}
@keyframes sweep { 0% { left: -100%; } 100% { left: 100%; } }

/* ── HERO COMPASS ── */
.hero-compass {
  position: absolute;
  right: -16%; top: 50%;
  transform: translateY(-50%);
  width: 56%; aspect-ratio: 1;
  z-index: 0; pointer-events: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.4) 20%, black 42%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.4) 20%, black 42%);
}
.compass-svg {
  width: 100%; height: 100%;
  overflow: visible;
}
/* Primary arm — one full rotation every 25s */
.compass-arm-primary {
  transform-box: view-box;
  transform-origin: 50% 50%;
  animation: compass-spin 25s linear infinite;
}
/* Secondary arm — counter-rotates slowly */
.compass-arm-secondary {
  transform-box: view-box;
  transform-origin: 50% 50%;
  animation: compass-spin 50s linear infinite reverse;
}
@keyframes compass-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.hero-body { position: relative; z-index: 2; }
.hero-glow { z-index: 1; }

@media (max-width: 860px) {
  .hero-compass { display: none; }
}

/* ── METRICS BAND ── */
#metrics {
  background: #0F0F0F;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0 var(--pad-x);
}
.metrics-inner {
  display: grid; grid-template-columns: repeat(5, 1fr);
}
.metric-item {
  padding: 44px 16px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; gap: 10px;
  border-right: 1px solid var(--border);
}
.metric-item:last-child { border-right: none; }
.metric-number {
  font-family: 'Cormorant Garant', serif;
  font-size: 46px; font-weight: 300; color: var(--gold); line-height: 1;
}
.metric-label {
  font-size: 9.5px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-dim); line-height: 1.55;
}

/* ── SHARED SECTION HEADER ── */
.section-label {
  display: flex; align-items: center; gap: 14px;
  font-size: 10.5px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.label-line { display: block; width: 36px; height: 1px; background: var(--gold); }
.section-title {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(36px, 4vw, 52px); font-weight: 300;
  line-height: 1.1; letter-spacing: -1px; color: var(--text-primary);
}
.section-title em { font-style: italic; color: rgba(255,255,255,0.4); }

/* ── IMPACT VIGNETTES ── */
#work {
  padding: var(--section-y) var(--pad-x);
  border-bottom: 1px solid var(--border);
}
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 64px;
}
.section-note {
  font-size: 11px; color: #444; letter-spacing: 1px;
  text-transform: uppercase; text-align: right; line-height: 1.6;
}
.vignettes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
}
.vignette-card {
  background: var(--surface);
  padding: 44px 40px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: background 0.3s ease;
}
.vignette-card:hover { background: var(--surface-2); }
.vcard-top-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.vignette-card:hover .vcard-top-bar { transform: scaleX(1); }
.vcard-sector {
  font-size: 9.5px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
  display: flex; align-items: center; gap: 10px;
}
.vcard-sector::after { content: ''; flex: 1; height: 1px; background: var(--border-2); }
.vcard-impact {
  font-family: 'Cormorant Garant', serif;
  font-size: 42px; font-weight: 300; line-height: 1.05;
  letter-spacing: -1px; color: var(--text-primary); margin-bottom: 20px;
}
.vcard-impact span { color: var(--gold); }
.vcard-desc {
  font-size: 13.5px; line-height: 1.7; color: #777;
  font-weight: 300; margin-bottom: 32px; flex: 1;
}
.vcard-desc strong { color: #aaa; font-weight: 400; }
.vcard-metrics {
  display: flex; flex-direction: column; gap: 12px;
  border-top: 1px solid var(--border); padding-top: 28px;
}
.vcard-metric-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.vcard-key { font-size: 9.5px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-dim); }
.vcard-val {
  font-family: 'Cormorant Garant', serif;
  font-size: 18px; font-weight: 300; color: var(--gold); white-space: nowrap;
}

/* ── CAREER TIMELINE ── */
#experience {
  padding: var(--section-y) var(--pad-x);
  border-bottom: 1px solid var(--border);
}
#experience .section-title { margin-bottom: 72px; }

.timeline {
  position: relative;
  display: flex; flex-direction: column;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 224px; top: 10px; bottom: 10px; width: 1px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.3), var(--border-2) 15%, var(--border-2) 85%, transparent);
}
.entry {
  display: flex;
  position: relative;
  padding-bottom: 56px;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.entry:last-child { padding-bottom: 0; }
.entry--active { opacity: 1; }
.entry:hover { opacity: 1; }

.entry-left {
  width: 196px; flex-shrink: 0;
  padding-right: 40px; text-align: right; padding-top: 4px;
}
.entry-year {
  font-family: 'Cormorant Garant', serif;
  font-size: 13px; font-weight: 300; color: var(--gold); letter-spacing: 1px; margin-bottom: 4px;
}
.entry-dates { font-size: 10px; color: var(--text-dim); line-height: 1.7; margin-bottom: 8px; }
.entry-duration {
  display: inline-block; font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase;
  color: #383838; background: var(--surface-2);
  border: 1px solid var(--border-2); padding: 2px 8px; border-radius: 2px; margin-bottom: 8px;
}
.entry-current {
  display: inline-block; font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold); background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.2); padding: 2px 8px; border-radius: 2px; margin-bottom: 8px;
}
.entry-location { font-size: 10px; color: #333; letter-spacing: 0.5px; margin-top: 4px; }

.entry-dot-col {
  width: 57px; flex-shrink: 0;
  display: flex; justify-content: center; padding-top: 6px;
}
.entry-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--border-2); border: 1.5px solid #333;
  flex-shrink: 0; position: relative; z-index: 1;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.entry--active .entry-dot {
  background: var(--gold); border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.12), 0 0 16px rgba(201,169,110,0.35);
}
.entry:hover .entry-dot { background: var(--gold); border-color: var(--gold); }

.entry-content { flex: 1; padding-left: 40px; }
.entry-company {
  font-family: 'Cormorant Garant', serif;
  font-size: 32px; font-weight: 400; color: var(--text-primary);
  letter-spacing: -0.5px; line-height: 1.1; margin-bottom: 2px;
}
.entry-formerly { font-size: 10px; color: #383838; font-style: italic; margin-bottom: 10px; }
.entry-role {
  font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.entry-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.tag {
  font-size: 9px; letter-spacing: 1px; text-transform: uppercase;
  color: #3A3A3A; background: var(--surface-2);
  border: 1px solid var(--border-2); border-radius: 2px; padding: 3px 9px;
}
.entry-bullets { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.entry-bullets li {
  font-size: 13px; line-height: 1.65; color: #5A5A5A;
  font-weight: 300; padding-left: 18px; position: relative;
}
.entry-bullets li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 6px; height: 1px; background: #2E2E2E;
}
.entry-bullets li strong { color: #888; font-weight: 400; }

/* ── SKILLS ── */
#skills {
  padding: var(--section-y) var(--pad-x);
  border-bottom: 1px solid var(--border);
}
#skills .section-title { margin-bottom: 72px; }

.skills-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); margin-bottom: 1px;
}
.skill-col { background: var(--surface); padding: 40px 36px; }
.skill-cat {
  font-family: 'Cormorant Garant', serif;
  font-size: 22px; font-weight: 300; color: var(--text-primary);
  letter-spacing: -0.3px; margin-bottom: 6px;
}
.skill-cat-line { width: 24px; height: 1px; background: var(--gold); margin-bottom: 24px; }
.skill-list { display: flex; flex-direction: column; gap: 10px; }
.skill-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px; color: #666; font-weight: 300; line-height: 1.4;
  cursor: default; transition: color 0.2s;
}
.skill-item::before {
  content: ''; display: block; width: 4px; height: 4px;
  border-radius: 50%; background: #2A2A2A; flex-shrink: 0;
  transition: background 0.2s;
}
.skill-item:hover { color: #aaa; }
.skill-item:hover::before { background: var(--gold); }

.languages-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-top: none;
}
.lang-item { background: var(--surface); padding: 28px 32px; }
.lang-name {
  font-family: 'Cormorant Garant', serif;
  font-size: 22px; font-weight: 300; color: var(--text-primary);
  letter-spacing: -0.3px; margin-bottom: 6px;
}
.lang-level {
  font-size: 9.5px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 12px;
}
.lang-bar {
  height: 2px; background: var(--border-2); border-radius: 1px;
  position: relative; overflow: hidden;
}
.lang-bar-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--gold); border-radius: 1px;
}

/* ── CONTACT ── */
#contact {
  padding: var(--section-y) var(--pad-x);
  position: relative; overflow: hidden;
}
.contact-glow {
  position: absolute; bottom: -20%; right: -5%;
  width: 50%; height: 120%;
  background: radial-gradient(ellipse at 80% 80%, rgba(201,169,110,0.04) 0%, transparent 65%);
  pointer-events: none;
}
#contact .section-label { margin-bottom: 48px; }
.contact-inner {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 80px;
}
.contact-left { max-width: 480px; }
.contact-title {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(40px, 5vw, 64px); font-weight: 300;
  line-height: 1.05; letter-spacing: -2px; color: var(--text-primary);
  margin-bottom: 24px;
}
.contact-title em { font-style: italic; color: rgba(255,255,255,0.35); }
.contact-desc {
  font-size: 14px; line-height: 1.75; color: #666;
  font-weight: 300; margin-bottom: 48px;
}
.contact-desc strong { color: #aaa; font-weight: 400; }
.contact-links { display: flex; flex-direction: column; gap: 16px; }
.contact-link {
  display: flex; align-items: center; gap: 16px;
  text-decoration: none; transition: all 0.2s;
}
.contact-link-icon {
  width: 40px; height: 40px; border: 1px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--text-dim); border-radius: 2px;
  transition: all 0.2s; flex-shrink: 0;
}
.contact-link:hover .contact-link-icon {
  border-color: var(--gold); color: var(--gold);
  background: rgba(201,169,110,0.05);
}
.contact-link-text { display: flex; flex-direction: column; gap: 2px; }
.contact-link-label {
  font-size: 9.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim);
}
.contact-link-val {
  font-size: 13.5px; color: var(--text-secondary); font-weight: 300;
  transition: color 0.2s;
}
.contact-link:hover .contact-link-val { color: var(--gold); }

.contact-right { flex-shrink: 0; width: 280px; }
.availability-card {
  background: var(--surface); border: 1px solid var(--border-2);
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 20px;
}
.avail-dot-row { display: flex; align-items: center; gap: 10px; }
.avail-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 8px rgba(76,175,80,0.5); flex-shrink: 0;
  animation: avail-pulse 2.5s ease-in-out infinite;
}
@keyframes avail-pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(76,175,80,0.5); }
  50%       { box-shadow: 0 0 16px rgba(76,175,80,0.8); }
}
.avail-status {
  font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--green);
}
.avail-title {
  font-family: 'Cormorant Garant', serif;
  font-size: 24px; font-weight: 300; color: var(--text-primary); line-height: 1.2;
}
.avail-desc { font-size: 12px; color: var(--text-muted); line-height: 1.65; font-weight: 300; }
.avail-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 20px; border: 1px solid rgba(201,169,110,0.5);
  color: var(--gold); font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  text-decoration: none; background: transparent; transition: all 0.25s ease;
}
.avail-cta:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }

/* ── EXPANDABLE CARDS ── */
details.vignette-card {
  padding: 0;
}
details.vignette-card > summary {
  padding: 44px 40px;
  list-style: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  flex: 1;
  outline: none;
}
details.vignette-card > summary::-webkit-details-marker { display: none; }
details.vignette-card > summary::marker { content: none; }

.vcard-expand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.25s;
}
details.vignette-card:hover .vcard-expand-row { color: var(--gold); }
details.vignette-card[open] .vcard-expand-row { color: var(--gold); }

.vcard-expand-arrow {
  font-size: 13px;
  line-height: 1;
  display: inline-block;
  transition: transform 0.35s ease;
}
details.vignette-card[open] .vcard-expand-arrow { transform: rotate(180deg); }

/* ── CASE STUDY (EXPANDED) ── */
.vcard-expanded {
  padding: 0 40px 44px;
  opacity: 0;
  transition: opacity 0.4s ease 0.05s;
}
details[open] > .vcard-expanded { opacity: 1; }

.cs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.cs-block-label {
  font-size: 9.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.cs-body {
  font-size: 13px;
  line-height: 1.75;
  color: #5A5A5A;
  font-weight: 300;
}
.cs-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.cs-bullets li {
  font-size: 12.5px;
  line-height: 1.65;
  color: #545454;
  padding-left: 18px;
  position: relative;
  font-weight: 300;
}
.cs-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 1px;
  background: var(--gold);
}
.cs-block--outcome {
  grid-column: 1 / -1;
  background: rgba(201,169,110,0.03);
  border: 1px solid rgba(201,169,110,0.1);
  padding: 20px 24px;
}
.cs-block--outcome .cs-body { color: #888; }

/* ── "MORE ON REQUEST" CARD ── */
.vignette-card--more {
  justify-content: space-between;
}
.vcard-top-bar--static {
  transform: scaleX(0.25);
  transform-origin: left;
}
.vignette-card--more:hover .vcard-top-bar--static {
  transform: scaleX(1);
}
.vcard-impact--dim { opacity: 0.55; }
.vcard-more-body { flex: 1; }
.vcard-more-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 11px 22px;
  border: 1px solid rgba(201,169,110,0.3);
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  transition: all 0.25s ease;
  align-self: flex-start;
}
.vcard-more-cta:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

/* ── FOOTER ── */
#footer {
  padding: 28px var(--pad-x);
  border-top: 1px solid #141414;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-name {
  font-family: 'Cormorant Garant', serif;
  font-size: 14px; font-weight: 300; color: #333; letter-spacing: 2px; text-transform: uppercase;
}
.footer-note { font-size: 10px; color: #2A2A2A; letter-spacing: 1px; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  :root {
    --pad-x: 24px;
    --section-y: 64px;
  }

  /* Nav */
  #nav { padding: 0 var(--pad-x); height: 60px; }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 9px; letter-spacing: 1.5px; }

  /* Hero */
  #hero { padding: 80px var(--pad-x) 60px; align-items: flex-start; }
  .hero-name { font-size: clamp(52px, 13vw, 78px); letter-spacing: -2px; margin-bottom: 24px; }
  .hero-tagline { font-size: 14.5px; max-width: 100%; margin-bottom: 36px; }
  .hero-actions { gap: 16px; flex-direction: column; align-items: flex-start; }
  .scroll-hint { display: none; }
  .hero-compass { display: none; }

  /* Metrics */
  #metrics { padding: 0 var(--pad-x); }
  .metrics-inner { grid-template-columns: repeat(3, 1fr); }
  .metric-item { padding: 32px 8px; border-right: 1px solid var(--border); }
  .metric-item:nth-child(3n) { border-right: none; }
  .metric-number { font-size: 34px; }
  .metric-label { font-size: 8.5px; }

  /* Work section header */
  .section-header { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 40px; }
  .section-note { text-align: left; }

  /* Work cards */
  .vignettes-grid { grid-template-columns: 1fr; }
  .vignette-card { padding: 32px 24px; }
  .vcard-impact { font-size: 34px; }
  details.vignette-card > summary { padding: 32px 24px; }
  .vcard-expanded { padding: 0 24px 32px; }
  .cs-grid { grid-template-columns: 1fr; }

  /* Timeline */
  #experience .section-title { margin-bottom: 48px; }
  .timeline::before { display: none; }
  .entry {
    flex-direction: column;
    padding-bottom: 40px;
    padding-left: 16px;
    border-left: 1px solid var(--border-2);
    opacity: 1;
  }
  .entry-left {
    width: 100%; padding-right: 0; text-align: left; padding-top: 0;
    display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
    margin-bottom: 14px;
  }
  .entry-year { margin-bottom: 0; }
  .entry-dates { margin-bottom: 0; display: none; }
  .entry-location { margin-top: 0; }
  .entry-dot-col { display: none; }
  .entry-content { padding-left: 0; }
  .entry-company { font-size: 26px; margin-bottom: 4px; }
  .entry-bullets li { font-size: 12.5px; }

  /* Skills */
  #skills .section-title { margin-bottom: 48px; }
  .skills-grid { grid-template-columns: 1fr; }
  .skill-col { padding: 32px 24px; }
  .languages-row { grid-template-columns: repeat(2, 1fr); }
  .lang-item { padding: 24px 20px; }

  /* Contact */
  .contact-inner { flex-direction: column; gap: 40px; }
  .contact-left { max-width: 100%; }
  .contact-right { width: 100%; }
  .contact-title { font-size: clamp(34px, 8vw, 48px); letter-spacing: -1.5px; }

  /* Footer */
  #footer { flex-direction: column; gap: 8px; text-align: center; padding: 24px var(--pad-x); }
}

@media (max-width: 480px) {
  :root { --pad-x: 18px; }

  /* Nav: hide links on very small screens */
  .nav-links { display: none; }

  /* Metrics: 2 columns */
  .metrics-inner { grid-template-columns: repeat(2, 1fr); }
  .metric-item:nth-child(3n) { border-right: 1px solid var(--border); }
  .metric-item:nth-child(2n) { border-right: none; }
  .metric-item:nth-child(5) { grid-column: 1 / -1; border-top: 1px solid var(--border); border-right: none; }
  .metric-number { font-size: 30px; }

  /* Hero */
  .hero-name { letter-spacing: -1.5px; }
  .hero-eyebrow { margin-bottom: 24px; }

  /* Vignette cards */
  .vcard-impact { font-size: 30px; }

  /* Languages: 2 col already set, fine on 480 */
}
