/* ===== EDITORIAL BRUTALIST PORTFOLIO ===== */
/* Concept: Magazine meets brutalism — cream bg, heavy serif display, */
/* stark black geometry, blood-orange accents, asymmetric layouts     */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Barlow:wght@300;400;500;600&family=Barlow+Condensed:wght@600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:   #f5f0e8;
  --cream-2: #ede8df;
  --black:   #0e0c0a;
  --black-2: #1c1a17;
  --red:     #e8350a;
  --red-dim: rgba(232,53,10,0.10);
  --gold:    #c9a84c;
  --muted:   #7a7060;
  --border:  #d0c8ba;
  --display: 'Playfair Display', serif;
  --body:    'Barlow', sans-serif;
  --cond:    'Barlow Condensed', sans-serif;
  --nav-h:   68px;
}

html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--black);
  font-family: var(--body);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
}
a { color: inherit; text-decoration: none; }

/* Custom cursor */
* { cursor: none !important; }
.cursor {
  position: fixed; z-index: 9999;
  width: 12px; height: 12px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  transition: transform 0.15s, width 0.2s, height 0.2s;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  position: fixed; z-index: 9998;
  width: 36px; height: 36px;
  border: 1.5px solid var(--black);
  border-radius: 50%;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(.25,.46,.45,.94), width 0.2s, height 0.2s, opacity 0.2s;
  transform: translate(-50%, -50%);
}
body:has(a:hover) .cursor { transform: translate(-50%,-50%) scale(2.5); background: var(--red); }
body:has(a:hover) .cursor-ring { width: 60px; height: 60px; opacity: 0.4; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--red); }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem;
  background: var(--cream);
  border-bottom: 2px solid var(--black);
}
.nav-brand {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--black);
}
.nav-brand span { color: var(--red); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: var(--cond);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0; height: 2px;
  background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s;
}
.nav-links a:hover { color: var(--black); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.nav-cta {
  color: var(--cream);
  background: var(--black);
  padding: 0.45rem 1.2rem;
  transition: background 0.2s, color 0.2s;
}
.nav-links a.nav-cta::after { display: none; }
.nav-links a.nav-cta:hover { background: var(--red); color: var(--cream); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--black); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

/* Left panel */
.hero-left {
  background: var(--black);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 4rem 3rem 4rem 3rem;
  position: relative;
  overflow: hidden;
}
.hero-left::before {
  content: 'AI';
  position: absolute; top: -0.1em; left: -0.05em;
  font-family: var(--display);
  font-size: 28vw;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}
.hero-year {
  font-family: var(--cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 2rem;
  display: flex; align-items: center; gap: 1rem;
}
.hero-year::before { content: ''; display: block; width: 30px; height: 1px; background: var(--red); }
.hero-name-block {
  position: relative; z-index: 1;
}
.hero-first {
  font-family: var(--display);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--cream);
  line-height: 0.95;
  display: block;
}
.hero-last {
  font-family: var(--cond);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  display: block;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.hero-divider {
  width: 60px; height: 3px;
  background: var(--red);
  margin: 1.5rem 0;
}
.hero-tagline {
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245,240,232,0.65);
  line-height: 1.7;
  max-width: 320px;
}
.hero-actions {
  display: flex; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap;
}
.btn {
  display: inline-flex; align-items: center;
  font-family: var(--cond);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  transition: all 0.22s;
  border: none;
}
.btn-primary {
  background: var(--red);
  color: var(--cream);
}
.btn-primary:hover { background: #c42a06; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(245,240,232,0.3);
  color: rgba(245,240,232,0.7);
}
.btn-outline:hover { border-color: var(--cream); color: var(--cream); transform: translateY(-2px); }

/* Right panel */
.hero-right {
  background: var(--cream-2);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 4rem 3rem;
  border-left: 2px solid var(--black);
  position: relative;
}
.hero-issue {
  font-family: var(--cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-role-block { margin: auto 0; }
.hero-role-label {
  font-family: var(--cond);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.hero-roles { list-style: none; }
.hero-roles li {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  padding-left: 1.5rem;
}
.hero-roles li::before { content: '—'; position: absolute; left: 0; color: var(--red); }
.hero-roles li:last-child { border-bottom: none; }
.hero-stat-row {
  display: flex; gap: 0; border-top: 2px solid var(--black);
}
.hero-stat {
  flex: 1;
  padding: 1.2rem;
  border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--cond);
  font-size: 2rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  display: block;
}
.hero-stat-label {
  font-family: var(--body);
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.2rem;
  display: block;
}

/* ===== SECTION BASE ===== */
.section { padding: 7rem 3rem; }
.section-alt { background: var(--cream-2); }
.section-dark { background: var(--black); color: var(--cream); }
.container { max-width: 1180px; margin: 0 auto; }

.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 4rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--black);
  gap: 2rem;
}
.section-dark .section-header { border-bottom-color: rgba(245,240,232,0.15); }
.section-num {
  font-family: var(--cond);
  font-size: 5rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  opacity: 0.25;
}
.section-title-wrap { flex: 1; }
.section-eyebrow {
  font-family: var(--cond);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 0.5rem;
}
.section-dark .section-eyebrow { color: var(--red); }
.section-title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.section-dark .section-title { color: var(--cream); }

/* ===== ABOUT ===== */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  gap: 4rem;
  align-items: start;
}
.about-divider { background: var(--border); }
.about-left p {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.about-pullquote {
  font-family: var(--display);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
  border-left: 4px solid var(--red);
  padding-left: 1.5rem;
  margin: 2rem 0;
}
.about-right {}
.about-card {
  border: 2px solid var(--black);
  padding: 2rem;
  position: relative;
  background: var(--cream);
}
.about-card::before {
  content: '';
  position: absolute; top: 6px; left: 6px; right: -6px; bottom: -6px;
  background: var(--red);
  z-index: -1;
}
.card-label {
  font-family: var(--cond); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.card-avatar-box {
  width: 70px; height: 70px;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 1.8rem; font-weight: 900;
  color: var(--red);
  margin-bottom: 1.5rem;
}
.card-name { font-family: var(--display); font-size: 1.3rem; font-weight: 700; }
.card-role-tag {
  display: inline-block;
  font-family: var(--cond); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cream); background: var(--red);
  padding: 0.2rem 0.6rem;
  margin: 0.4rem 0 0.8rem;
}
.card-location { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.25rem; }
.card-links { display: flex; flex-direction: column; gap: 0.5rem; }
.card-link {
  font-family: var(--cond); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted); display: flex; align-items: center; gap: 0.5rem;
  transition: color 0.2s;
}
.card-link::before { content: '→'; color: var(--red); }
.card-link:hover { color: var(--red); }

/* ===== SKILLS ===== */
.skills-layout {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 2px solid var(--border);
}
.section-dark .skills-layout { border-color: rgba(245,240,232,0.12); }
.skill-block {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.2s;
}
.section-dark .skill-block { border-right-color: rgba(245,240,232,0.12); }
.skill-block:last-child { border-right: none; }
.skill-block:hover { background: var(--red-dim); }
.section-dark .skill-block:hover { background: rgba(232,53,10,0.12); }
.skill-block-num {
  font-family: var(--cond); font-size: 3rem; font-weight: 800;
  color: var(--red); opacity: 0.18; line-height: 1;
  margin-bottom: 0.5rem;
}
.skill-block-cat {
  font-family: var(--cond); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--red);
  margin-bottom: 1.2rem;
}
.skill-list { list-style: none; }
.skill-list li {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--muted);
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex; align-items: center; gap: 0.5rem;
}
.section-dark .skill-list li { color: rgba(245,240,232,0.55); border-bottom-color: rgba(255,255,255,0.06); }
.skill-list li::before { content: ''; width: 4px; height: 4px; background: var(--red); border-radius: 50%; flex-shrink: 0; }
.skill-list li:last-child { border-bottom: none; }

/* ===== EXPERIENCE ===== */
.exp-layout { display: flex; flex-direction: column; gap: 0; }
.exp-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
  gap: 3rem;
  transition: background 0.2s;
  position: relative;
}
.exp-card:first-child { border-top: 1px solid var(--border); }
.exp-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 0;
  background: var(--red-dim);
  transition: width 0.3s;
  z-index: 0;
}
.exp-card:hover::before { width: 100%; }
.exp-meta { position: relative; z-index: 1; }
.exp-duration {
  font-family: var(--cond); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--red);
  display: block; margin-bottom: 0.5rem;
}
.exp-company {
  font-family: var(--display); font-size: 1.5rem; font-weight: 700;
  line-height: 1.1; margin-bottom: 0.5rem;
}
.exp-type {
  font-family: var(--body); font-size: 0.82rem;
  color: var(--muted); font-style: italic;
}
.exp-body { position: relative; z-index: 1; }
.exp-role { font-family: var(--cond); font-size: 1.3rem; font-weight: 800; text-transform: uppercase; margin-bottom: 1.25rem; letter-spacing: 0.02em; }
.exp-points { list-style: none; margin-bottom: 1.5rem; }
.exp-points li {
  font-size: 0.93rem; font-weight: 300; color: var(--muted);
  padding: 0.45rem 0 0.45rem 1.5rem;
  position: relative; line-height: 1.65;
  border-bottom: 1px dashed rgba(0,0,0,0.07);
}
.exp-points li:last-child { border-bottom: none; }
.exp-points li::before { content: '—'; position: absolute; left: 0; color: var(--red); }
.exp-tech { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tech-pill {
  font-family: var(--cond); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 1.5px solid var(--black);
  padding: 0.25rem 0.7rem;
  color: var(--black);
  transition: all 0.2s;
}
.tech-pill:hover { background: var(--black); color: var(--cream); }

/* ===== PROJECTS ===== */
.projects-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 2px solid var(--border);
}
.project-card {
  background: var(--cream);
  padding: 2.5rem;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}
.project-card:hover { background: var(--cream-2); }
.project-index {
  font-family: var(--cond); font-size: 5rem; font-weight: 800;
  color: var(--black); opacity: 0.06;
  position: absolute; top: 1rem; right: 1.5rem;
  line-height: 1; pointer-events: none;
}
.project-cat {
  font-family: var(--cond); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--red);
  margin-bottom: 1rem;
}
.project-name {
  font-family: var(--display); font-size: 1.5rem; font-weight: 700;
  line-height: 1.2; margin-bottom: 0.9rem;
}
.project-desc { font-size: 0.9rem; font-weight: 300; color: var(--muted); line-height: 1.7; flex: 1; margin-bottom: 1.5rem; }
.project-tech { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.5rem; }
.project-link {
  font-family: var(--cond); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--black); display: inline-flex; align-items: center; gap: 0.4rem;
  border-bottom: 1.5px solid var(--red);
  padding-bottom: 2px;
  width: fit-content;
  transition: color 0.2s, border-color 0.2s;
}
.project-link:hover { color: var(--red); }

/* ===== EDUCATION ===== */
.edu-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.edu-card {
  padding: 2.5rem;
  border: 2px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s;
}
.edu-card:hover { border-color: var(--red); }
.edu-card-num {
  font-family: var(--cond); font-size: 6rem; font-weight: 800;
  color: var(--red); opacity: 0.08;
  position: absolute; bottom: -1rem; right: 1rem;
  line-height: 1; pointer-events: none;
}
.edu-year-badge {
  display: inline-block;
  font-family: var(--cond); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--cream); background: var(--black);
  padding: 0.25rem 0.75rem;
  margin-bottom: 1.2rem;
}
.edu-degree { font-family: var(--display); font-size: 1.2rem; font-weight: 700; line-height: 1.3; margin-bottom: 0.5rem; }
.edu-school { font-size: 0.88rem; color: var(--muted); font-weight: 400; }

/* ===== CONTACT ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-headline {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.contact-subtext { font-size: 1rem; font-weight: 300; color: rgba(245,240,232,0.6); line-height: 1.7; }
.contact-links { display: flex; flex-direction: column; gap: 0; }
.contact-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(245,240,232,0.12);
  transition: padding-left 0.25s;
  position: relative;
}
.contact-item:first-child { border-top: 1px solid rgba(245,240,232,0.12); }
.contact-item:hover { padding-left: 1rem; }
.contact-item-label {
  font-family: var(--cond); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--red);
}
.contact-item-value {
  font-family: var(--body); font-size: 0.92rem; color: rgba(245,240,232,0.8);
  transition: color 0.2s;
}
.contact-item:hover .contact-item-value { color: var(--cream); }
.contact-arrow { color: var(--red); font-size: 1.1rem; transition: transform 0.2s; }
.contact-item:hover .contact-arrow { transform: translateX(5px); }

/* ===== FOOTER ===== */
.footer {
  background: var(--black-2);
  border-top: 2px solid var(--black);
  padding: 1.5rem 3rem;
}
.footer-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-brand { font-family: var(--display); font-size: 1.1rem; font-weight: 900; color: var(--cream); }
.footer-brand span { color: var(--red); }
.footer-copy { font-family: var(--body); font-size: 0.75rem; color: rgba(245,240,232,0.35); }
.footer-top a { font-family: var(--cond); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,240,232,0.4); transition: color 0.2s; }
.footer-top a:hover { color: var(--red); }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left { min-height: 60vh; }
  .hero-right { border-left: none; border-top: 2px solid var(--black); }
  .about-layout { grid-template-columns: 1fr; }
  .about-divider { display: none; }
  .skills-layout { grid-template-columns: repeat(2, 1fr); }
  .skill-block { border-bottom: 1px solid var(--border); }
  .exp-card { grid-template-columns: 1fr; gap: 1rem; }
  .projects-layout { grid-template-columns: 1fr; }
  .edu-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--cream); padding: 1.5rem 2rem; gap: 1.2rem;
    border-bottom: 2px solid var(--black);
  }
  .section { padding: 5rem 1.5rem; }
  .nav { padding: 0 1.5rem; }
}
@media (max-width: 600px) {
  .skills-layout { grid-template-columns: 1fr; }
  .hero-stat-row { flex-wrap: wrap; }
  .hero-stat { min-width: 50%; }
}

/* ===== HERO RESUME BUTTON ===== */
.btn-resume {
  background: var(--gold);
  color: var(--black);
  border: none;
  font-family: var(--cond);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  transition: all 0.22s;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.btn-resume:hover { background: #b8922e; transform: translateY(-2px); }

/* ===== RESUME SECTION ===== */
.resume-section { background: var(--cream); }

.resume-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: start;
}

/* Highlights sidebar */
.resume-highlights {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 2px solid var(--black);
  position: relative;
}
.resume-highlights::before {
  content: '';
  position: absolute; top: 8px; left: 8px; right: -8px; bottom: -8px;
  background: var(--red);
  z-index: -1;
}

.resume-highlight-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.4rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
  transition: background 0.2s;
}
.resume-highlight-item:hover { background: var(--cream-2); }
.rh-icon { font-size: 1.4rem; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.rh-label {
  font-family: var(--cond);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.3rem;
}
.rh-value {
  font-family: var(--body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1.5;
}
.rh-value span {
  font-weight: 300;
  color: var(--muted);
  font-size: 0.82rem;
}

.resume-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--cream);
}
.resume-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.2rem 1.5rem;
  font-family: var(--cond);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  transition: all 0.22s;
  border-top: 1px solid var(--border);
}
.resume-btn-icon {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  border-radius: 50%;
}
.resume-btn-download {
  background: var(--black);
  color: var(--cream);
}
.resume-btn-download .resume-btn-icon { background: var(--red); color: var(--cream); }
.resume-btn-download:hover { background: var(--red); }

.resume-btn-view {
  background: var(--cream);
  color: var(--black);
}
.resume-btn-view .resume-btn-icon { background: var(--border); color: var(--black); }
.resume-btn-view:hover { background: var(--cream-2); }

/* PDF embed preview */
.resume-preview-wrap {}
.resume-preview-label {
  font-family: var(--cond);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.rp-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  display: inline-block;
  animation: rp-pulse 2s ease infinite;
}
@keyframes rp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.resume-embed-box {
  position: relative;
  border: 2px solid var(--black);
  height: 600px;
  overflow: hidden;
  background: #f0ece4;
}
.resume-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.resume-embed-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem 1.5rem;
  background: linear-gradient(transparent, rgba(14,12,10,0.8));
  display: flex;
  justify-content: flex-end;
}
.resume-open-link {
  font-family: var(--cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--red);
  padding: 0.5rem 1rem;
  transition: background 0.2s;
}
.resume-open-link:hover { background: #c42a06; }

/* Mobile resume */
@media (max-width: 900px) {
  .resume-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .resume-embed-box { height: 420px; }
  .resume-highlights::before { display: none; }
}
