/* =============================================
   ZACH MANNON — PERSONAL WEBSITE
   Design System
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700&display=swap');

/* === CUSTOM PROPERTIES === */
:root {
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --bg: #ffffff;
  --bg-alt: #f6f5f2;
  --bg-dark: #111111;
  --fg: #111111;
  --fg-muted: #555555;
  --fg-subtle: #999999;
  --fg-inverse: #ffffff;
  --accent: #e05637;
  --accent-dark: #c04520;
  --border: #e0ddd9;
  --border-dark: #2a2a2a;

  --max-w: 1200px;
  --content-w: 760px;
  --gutter: clamp(1.5rem, 4vw, 3rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --radius-sm: 3px;
  --radius: 6px;
  --radius-lg: 12px;

  --ease: 200ms ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--fg);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; }

button { cursor: pointer; font-family: inherit; font-size: inherit; border: none; background: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 400;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.125rem, 2vw, 1.375rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container--narrow {
  max-width: var(--content-w);
}

section { padding: var(--space-24) 0; }

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border-dark);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: var(--space-8);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--fg-inverse);
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity var(--ease);
}

.nav__logo:hover { opacity: 0.8; }

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--ease);
}

.nav__link:hover,
.nav__link.active { color: var(--fg-inverse); }

.nav__link.active {
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  color: white;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: var(--ease);
}

@media (max-width: 860px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-6) var(--gutter);
    gap: var(--space-2);
    border-bottom: 1px solid var(--border-dark);
  }

  .nav__links.open { display: flex; }

  .nav__link {
    font-size: 0.9rem;
    padding: var(--space-3) 0;
    width: 100%;
    border-bottom: 1px solid var(--border-dark);
  }

  .nav__link:last-child { border-bottom: none; }

  .nav__link.active { border-bottom: 1px solid var(--border-dark); }

  .nav__toggle { display: flex; }
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.8rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: var(--ease);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.btn--primary {
  background: var(--accent);
  color: white;
  border: 2px solid var(--accent);
}

.btn--primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn--outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.35);
}

.btn--outline:hover {
  border-color: rgba(255,255,255,0.8);
  color: white;
}

.btn--outline-dark {
  background: transparent;
  color: var(--fg);
  border: 2px solid var(--border);
}

.btn--outline-dark:hover {
  border-color: var(--fg);
}

/* === HERO === */
.hero {
  background: var(--bg-dark);
  color: var(--fg-inverse);
  padding: clamp(4rem, 10vw, 8rem) 0;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.hero__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-6);
  display: block;
}

.hero__name {
  font-size: clamp(4.5rem, 12vw, 9rem);
  line-height: 0.95;
  margin-bottom: var(--space-8);
  color: var(--fg-inverse);
  font-family: var(--font-display);
  font-weight: 400;
}

.hero__title {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  max-width: 680px;
  margin-bottom: var(--space-8);
  line-height: 1.55;
}

.hero__tagline {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.52);
  max-width: 600px;
  margin-bottom: var(--space-12);
  line-height: 1.65;
  font-style: italic;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* === PROOF BAR === */
.proof-bar {
  background: var(--accent);
  color: white;
  padding: var(--space-8) 0;
}

.proof-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  text-align: center;
}

.proof-stat__number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  display: block;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.proof-stat__label {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.88;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .proof-bar__grid { grid-template-columns: repeat(2, 1fr); }
}

/* === SECTION HEADER === */
.section-header { margin-bottom: var(--space-12); }

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-3);
  display: block;
}

.section-title { margin-bottom: var(--space-4); }

.section-desc {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.75;
}

/* === EXPERTISE GRID (homepage) === */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.expertise-card {
  padding: var(--space-8);
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: box-shadow var(--ease);
}

.expertise-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }

.expertise-card__num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  opacity: 0.3;
  display: block;
  line-height: 1;
  margin-bottom: var(--space-4);
}

.expertise-card__title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--fg);
}

.expertise-card__desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

@media (max-width: 900px) { .expertise-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .expertise-grid { grid-template-columns: 1fr; } }

/* === ACCOMPLISHMENT CARDS === */
.accomplishments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.accom-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--ease), transform var(--ease);
}

.accom-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.09);
  transform: translateY(-2px);
}

.accom-card__top {
  background: var(--bg-dark);
  padding: var(--space-6);
  color: white;
}

.accom-card__number {
  font-family: var(--font-display);
  font-size: 2.75rem;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.accom-card__context {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.accom-card__body { padding: var(--space-6); }

.accom-card__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.accom-card__desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

@media (max-width: 900px) { .accomplishments-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .accomplishments-grid { grid-template-columns: 1fr; } }

/* === TIMELINE === */
.timeline {
  position: relative;
  padding-left: var(--space-8);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-12);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-8));
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid white;
  box-shadow: 0 0 0 2px var(--accent);
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item__period {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

.timeline-item__role {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.timeline-item__org {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: var(--space-4);
  font-weight: 500;
}

.timeline-item__desc {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: var(--space-4);
}

.timeline-item__bullets { list-style: none; }

.timeline-item__bullets li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: var(--space-2);
  line-height: 1.55;
}

.timeline-item__bullets li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* === FAQ === */
.faq { background: var(--bg-alt); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item { background: white; }

.faq-item__question {
  width: 100%;
  text-align: left;
  padding: var(--space-6);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  transition: background var(--ease);
}

.faq-item__question:hover { background: var(--bg-alt); }

.faq-item__chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  color: var(--fg-muted);
  font-style: normal;
  font-size: 0.8rem;
  transition: transform 280ms ease, background 280ms ease;
}

.faq-item.open .faq-item__chevron {
  transform: rotate(45deg);
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}

.faq-item.open .faq-item__answer { max-height: 500px; }

.faq-item__answer-inner {
  padding: 0 var(--space-6) var(--space-6);
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* === AWARDS BAR === */
.awards-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--space-6) 0;
}

.awards-bar__inner {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  flex-wrap: wrap;
  justify-content: center;
}

.award-badge {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-weight: 600;
}

.award-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* === CONTACT CTA === */
.contact-cta {
  background: var(--bg-dark);
  color: white;
  text-align: center;
  padding: var(--space-24) 0;
}

.contact-cta h2 { color: white; margin-bottom: var(--space-4); }

.contact-cta p {
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin: 0 auto var(--space-8);
  font-size: 1.05rem;
}

.contact-cta .ctas {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* === FOOTER === */
.footer {
  background: #0a0a0a;
  color: rgba(255,255,255,0.45);
  padding: var(--space-12) 0 var(--space-8);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-12);
  flex-wrap: wrap;
  margin-bottom: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: white;
  display: block;
  margin-bottom: var(--space-3);
}

.footer__tagline {
  font-size: 0.82rem;
  max-width: 260px;
  line-height: 1.65;
}

.footer__nav {
  display: flex;
  gap: var(--space-12);
  flex-wrap: wrap;
}

.footer__nav-group h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: var(--space-4);
}

.footer__nav-group ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer__nav-group a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--ease);
}

.footer__nav-group a:hover { color: white; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-8);
  flex-wrap: wrap;
  font-size: 0.78rem;
}

.footer__disambiguation {
  max-width: 560px;
  line-height: 1.65;
  color: rgba(255,255,255,0.25);
}

.footer__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-2);
}

.footer__links {
  display: flex;
  gap: var(--space-4);
}

.footer__links a {
  color: rgba(255,255,255,0.45);
  transition: color var(--ease);
}

.footer__links a:hover { color: white; }

/* === PAGE HERO GENERIC === */
.page-hero {
  background: var(--bg-dark);
  color: white;
  padding: var(--space-16) 0 var(--space-24);
}

.page-hero h1 { color: white; margin-bottom: var(--space-4); }

.page-hero .lead {
  color: rgba(255,255,255,0.68);
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.7;
}

.page-hero .section-label { margin-bottom: var(--space-6); }

/* === ABOUT PAGE === */
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.about-body p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--fg-muted);
  margin-bottom: var(--space-6);
}

.about-body p:last-child { margin-bottom: 0; }

.about-sidebar { position: sticky; top: 80px; }

.sidebar-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-4);
}

.sidebar-card h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-4);
}

.sidebar-list li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

.sidebar-list li:last-child { border-bottom: none; }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-sidebar { position: static; }
}

/* === WORK PAGE === */
.work-period {
  padding: var(--space-24) 0;
}

.work-period + .work-period {
  border-top: 1px solid var(--border);
}

.work-period--alt { background: var(--bg-alt); }

.work-period__header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-4);
  align-items: baseline;
  margin-bottom: var(--space-8);
}

.work-period__company {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.work-period__years {
  font-size: 0.85rem;
  color: var(--fg-muted);
  white-space: nowrap;
}

/* === EXPERTISE PAGE === */
.expertise-areas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.expertise-area {
  padding: var(--space-8);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-alt);
}

.expertise-area__title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.expertise-area__title::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.expertise-area__desc {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: var(--space-5);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--fg-muted);
}

@media (max-width: 768px) { .expertise-areas { grid-template-columns: 1fr; } }

/* === SPEAKING PAGE === */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.topic-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.topic-card__title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--accent);
}

.topic-card__desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

@media (max-width: 768px) { .topics-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .topics-grid { grid-template-columns: 1fr; } }

.conference-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.conference-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-6);
  padding: var(--space-6) var(--space-8);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--accent);
}

.conference-item__name {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.conference-item__desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

/* === RESUME PAGE === */
.resume-actions {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-8);
  flex-wrap: wrap;
}

.resume-doc { padding: var(--space-16) 0; }

.resume-name {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  margin-bottom: var(--space-3);
}

.resume-header-title {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--fg-muted);
  font-weight: 400;
  margin-bottom: var(--space-4);
}

.resume-meta {
  font-size: 0.875rem;
  color: var(--fg-muted);
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}

.resume-meta a { color: var(--accent); }

hr.resume-rule {
  border: none;
  border-top: 2px solid var(--fg);
  margin-bottom: var(--space-12);
}

.resume-section { margin-bottom: var(--space-12); }

.resume-section__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--border);
}

.resume-role { margin-bottom: var(--space-8); }

.resume-role:last-child { margin-bottom: 0; }

.resume-role__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-1);
}

.resume-role__title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
}

.resume-role__period {
  font-size: 0.82rem;
  color: var(--fg-muted);
  white-space: nowrap;
}

.resume-role__org {
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.resume-bullets { list-style: none; }

.resume-bullets li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: var(--space-2);
  line-height: 1.6;
}

.resume-bullets li::before {
  content: '\00b7';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 1.4rem;
  line-height: 1.1;
  font-weight: 700;
}

.resume-skills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.resume-skills__group h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--border);
}

.resume-skills__group ul li {
  font-size: 0.875rem;
  color: var(--fg);
  padding: var(--space-1) 0;
}

@media (max-width: 640px) { .resume-skills { grid-template-columns: 1fr; } }

/* === CONTACT PAGE === */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}

.contact-option {
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
  padding: var(--space-8);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--fg);
  transition: box-shadow var(--ease), transform var(--ease);
  text-decoration: none;
}

.contact-option:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.contact-option__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 1rem;
}

.contact-option__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.contact-option__handle {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.contact-option__desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 640px) { .contact-grid { grid-template-columns: 1fr; } }

/* === ACCOMPLISHMENTS PAGE === */
.accomplishments-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.accomplishment-full-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.accomplishment-full-card__header {
  background: var(--bg-dark);
  padding: var(--space-6) var(--space-8);
  color: white;
}

.accomplishment-full-card__header h3 {
  color: white;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

.accomplishment-full-card__body {
  padding: var(--space-8);
}

.accomplishment-full-card__body p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.75;
}

.metrics-row {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
}

.metric {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.metric__value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--accent);
  line-height: 1;
}

.metric__label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
}

@media (max-width: 768px) { .accomplishments-full { grid-template-columns: 1fr; } }

/* === UTILITIES === */
.text-accent { color: var(--accent); }
.text-muted { color: var(--fg-muted); }
.text-center { text-align: center; }
.lead { font-size: 1.1rem; line-height: 1.75; color: var(--fg-muted); }

.bg-alt { background: var(--bg-alt); }
.bg-dark { background: var(--bg-dark); }

.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }

/* Inline link style */
a.link {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(224,86,55,0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--ease);
}

a.link:hover { text-decoration-color: var(--accent); }

/* === HERO PORTRAIT === */
.hero__layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-16);
  align-items: center;
}

.hero__portrait {
  flex-shrink: 0;
}

.hero__portrait img {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  border: 3px solid rgba(255,255,255,0.12);
  display: block;
  box-shadow: 0 0 0 8px rgba(224,86,55,0.15);
}

@media (max-width: 860px) {
  .hero__layout {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .hero__portrait {
    order: -1;
  }

  .hero__portrait img {
    width: 120px;
    height: 120px;
  }
}

/* === ABOUT PAGE PHOTO === */
.about-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 15%;
  border-radius: var(--radius-lg);
  display: block;
  margin-bottom: var(--space-4);
  border: 1px solid var(--border);
}

/* Print-friendly resume */
@media print {
  .nav, .page-hero, .contact-cta, .footer, .resume-actions { display: none; }
  .resume-doc { padding: 0; }
  body { font-size: 11pt; }
}
