/* Section-level styles — populated across phases 02-07 */

/* ============ READING PROGRESS BAR ============ */
#reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  z-index: var(--z-overlay);
  transition: width 90ms linear;
  pointer-events: none;
  box-shadow: 0 0 8px rgba(160, 131, 75, 0.35);
}

/* ============ SECTION SIDE RAIL (subtle, wide-viewport only) ============ */
#section-rail {
  position: fixed;
  right: 1.75rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: var(--z-nav);
  display: none; /* only shown via media query below */
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 0;
  opacity: 0.55;
  transition: opacity var(--dur-base) var(--ease-luxury);
}
#section-rail:hover { opacity: 1; }

#section-rail .rail-line {
  position: absolute;
  left: 50%;
  top: 0.75rem;
  bottom: 0.75rem;
  width: 1px;
  background: var(--rule);
  transform: translateX(-50%);
  pointer-events: none;
}

#section-rail a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  padding: 0;
  color: var(--muted);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color var(--dur-fast);
  background: transparent;
}

#section-rail .rail-text {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translate(4px, -50%);
  margin-right: 0.5rem;
  opacity: 0;
  transition: opacity var(--dur-fast), transform var(--dur-fast);
  white-space: nowrap;
  pointer-events: none;
}
#section-rail:hover .rail-text { opacity: 0.7; transform: translate(0, -50%); }
#section-rail a:hover .rail-text { opacity: 1; color: var(--gold-text); }
#section-rail a.is-active .rail-text { transform: translate(0, -50%); }

#section-rail .rail-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  background: var(--paper);
  transition: background var(--dur-fast), border-color var(--dur-fast);
  flex: 0 0 4px;
  position: relative;
  z-index: 1;
}
#section-rail a:hover .rail-dot { border-color: var(--gold); }
#section-rail a.is-active .rail-dot { background: var(--gold); border-color: var(--gold); }
#section-rail a.is-active .rail-text { opacity: 1; color: var(--gold-text); }

/* Contact section dark background — invert rail subtly */
#section-rail.on-dark .rail-line { background: var(--sb-rule); }
#section-rail.on-dark a { color: var(--sb-muted); }
#section-rail.on-dark .rail-dot { border-color: var(--sb-rule); background: var(--sb-bg); }
#section-rail.on-dark a.is-active .rail-dot { background: var(--sb-gold); border-color: var(--sb-gold); }
#section-rail.on-dark a.is-active .rail-text { color: var(--sb-gold); }

/* Only show rail on viewports wide enough to stay clear of content */
@media (min-width: 1400px) {
  #section-rail { display: flex; }
}



/* ============ SHARED SECTION PRIMITIVES ============ */
main > section {
  padding: var(--space-xl) var(--space-sm);
  position: relative;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: 0.5rem;
}
.section-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 800ms var(--ease-luxury);
}
.section-label.is-revealed::after { width: 40px; }
/* No-JS fallback: show rule immediately */
.no-js .section-label::after { width: 40px; }

/* ============ HERO ============ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(200, 168, 118, 0.08), transparent 70%),
    var(--cream-light);
  padding: var(--space-xl) var(--space-md) var(--space-lg);
  position: relative;
  overflow: hidden;
}
#hero::before,
#hero::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: var(--gold);
  opacity: 0.25;
}
#hero::before { top: 0; height: 80px; }
#hero::after { bottom: 90px; height: 40px; }

.hero-monogram-corner {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold-text);
  padding-left: 0.4em;
  z-index: 2;
}

/* Oversized TG watermark behind hero — editorial luxury accent */
.hero-watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20rem, 42vw, 36rem);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--gold);
  opacity: 0.04;
  user-select: none;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}

.hero-inner,
.hero-scroll-cue { position: relative; z-index: 1; }

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: var(--space-xl);
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 1.25rem;
  position: relative;
  padding-left: 2.5rem;
}
.hero-eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 0.95;
  color: var(--charcoal);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-rule {
  border: none;
  height: 1px;
  background: var(--gold);
  width: 140px;
  margin: 0 0 1.5rem 0;
}
.hero-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold-text);
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}
.hero-tagline {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  max-width: 42ch;
  margin-bottom: 0;
}
.hero-tagline em {
  font-style: normal;
  color: var(--charcoal);
  font-weight: 500;
}
.hero-stats {
  list-style: none;
  padding: 1rem 0 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-top: 1px solid var(--rule);
  flex-wrap: wrap;
}
.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold-text);
  line-height: 1;
  letter-spacing: 0.01em;
}
.hero-stat-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-stat-divider {
  width: 1px;
  height: 28px;
  background: var(--rule);
  flex: 0 0 1px;
}

.hero-portrait-frame {
  position: relative;
  margin: 0;
  padding: 1.25rem;
  justify-self: end;
  max-width: 100%;
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 400ms var(--ease-luxury);
  will-change: transform;
}
.hero-portrait-frame .hero-portrait { transition: transform 400ms var(--ease-luxury); }
.hero-portrait {
  width: 380px;
  max-width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(31, 29, 26, 0.18);
  display: block;
}
.frame-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.frame-corner-tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.frame-corner-tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.frame-corner-bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.frame-corner-br { bottom: 0; right: 0; border-left: none; border-top: none; }

.hero-scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold-text);
  text-decoration: none;
  padding: 0.5rem;
}
.hero-scroll-cue .scroll-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero-scroll-cue .scroll-line {
  width: 1px;
  height: 40px;
  background: var(--gold);
  position: relative;
  overflow: hidden;
}
.hero-scroll-cue .scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--paper);
  animation: scrollCue 2.2s cubic-bezier(0.25, 0, 0, 1) infinite;
}
@keyframes scrollCue {
  0% { top: -100%; }
  60%, 100% { top: 100%; }
}
.hero-scroll-cue:hover { color: var(--charcoal); }

/* ============ SUMMARY ============ */
#summary { background: var(--paper); }
.summary-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}
.summary-lead {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 1rem;
  line-height: 1.4;
}
.summary-lead::first-letter {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 500;
  color: var(--gold-text);
  float: left;
  line-height: 0.85;
  padding: 0.45rem 0.6rem 0 0;
  margin-top: 0.15rem;
}
.summary-body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink);
  max-width: 70ch;
  margin-bottom: var(--space-md);
}
.stat-row {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-md) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  flex-wrap: wrap;
}
.stat { flex: 1; min-width: 140px; }
.stat .counter,
.metric {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 500;
  color: var(--gold-text);
  letter-spacing: 0.02em;
  display: inline-block;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  min-width: 4ch;
}
.stat-label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============ SKILLS ============ */
#skills { background: var(--cream-light); }
.skills-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  max-width: var(--content-max);
  margin: 0 auto;
}
.chip {
  display: inline-block;
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--rule);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: var(--paper);
  border-radius: 2px;
  position: relative;
  transition: color var(--dur-fast), border-color var(--dur-fast);
}
.chip::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--dur-fast) ease;
}
.chip:hover { color: var(--gold-text); border-color: var(--gold-light); }
.chip:hover::after { width: 100%; }

/* ============ TIMELINE ============ */
#timeline { background: var(--paper); }
.timeline-list {
  max-width: var(--content-max);
  margin: 0 auto;
  border-left: 2px solid var(--gold);
  padding-left: var(--space-md);
  position: relative;
}
.timeline-node {
  position: relative;
  padding: 1rem 0 1.5rem;
}
.timeline-node + .timeline-node { border-top: 1px solid var(--rule); }
.node-dot {
  position: absolute;
  left: calc(-1 * var(--space-md) - 7px);
  top: 1.4rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--paper);
  box-shadow: 0 0 0 1px var(--gold);
}
.node-date {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.badge-current {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.1rem 0.5rem;
  background: var(--gold);
  color: var(--paper);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  vertical-align: middle;
}
.node-toggle {
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 0.5rem 0;
  min-height: 44px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--charcoal);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  width: 100%;
  transition: color var(--dur-fast);
}
.node-toggle:hover,
.node-toggle[aria-expanded="true"] { color: var(--gold-text); }
.node-toggle::after {
  content: "+";
  display: inline-block;
  margin-left: 0.5rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform var(--dur-fast);
  align-self: flex-end;
  margin-top: -1.8rem;
}
.node-toggle[aria-expanded="true"]::after { content: "−"; }
.node-company {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.condensed-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: baseline;
  padding: 0.6rem 0;
  min-height: 44px;
}
.condensed-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--charcoal);
}
.condensed-company {
  font-size: 0.9rem;
  color: var(--muted);
}
.role-card {
  overflow: hidden;
  padding: 0 0 0.5rem 0;
}
.role-card[hidden] { display: none; }
.role-summary {
  margin: 0.75rem 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  padding-top: 0.75rem;
  border-top: 1px solid var(--rule);
}
.role-bullets {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
}
.role-bullets li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.1rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink);
}
.role-bullets li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}
.metrics-row {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-sm) 0 0;
  flex-wrap: wrap;
}
.metric-stat { min-width: 120px; }
.metric-stat .metric { font-size: 1.8rem; }
.metric-label {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.earlier-divider {
  position: relative;
  padding: 1.5rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-text);
}

/* ============ ACCOLADES ============ */
#accolades { background: var(--cream-light); }
.accolades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 420px));
  justify-content: center;
  gap: var(--space-md);
  max-width: var(--content-max);
  margin: 0 auto;
}
.award-card {
  position: relative;
  border: 1px solid var(--gold);
  padding: var(--space-md);
  background: var(--paper);
  overflow: hidden;
  transition: box-shadow 300ms, transform 300ms;
}
.award-card > * { position: relative; z-index: 1; }
.award-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(200, 168, 118, 0.2) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 700ms ease;
  z-index: 0;
}
.award-card:hover { box-shadow: 0 8px 28px rgba(160, 131, 75, 0.18); }
.award-card:hover::before { transform: translateX(100%); }
.award-stars {
  font-size: 1.1rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.award-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}
.award-subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 0.75rem;
}
.award-description {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink);
}
.award-card.is-placeholder {
  border-style: dashed;
  border-color: var(--rule);
}
.award-card.is-placeholder .award-title,
.award-card.is-placeholder .award-description {
  filter: blur(3px);
  user-select: none;
  color: var(--muted);
}
.placeholder-lock {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--gold-text);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: linear-gradient(to bottom, rgba(253, 251, 245, 0.4), rgba(253, 251, 245, 0.85));
  z-index: 2;
}
.placeholder-lock .lock-icon { font-size: 1.4rem; }

/* ============ EDUCATION ============ */
#education { background: var(--paper); }
.education-block {
  max-width: var(--content-max);
  margin: 0 auto;
}
.edu-degree {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}
.edu-school {
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 0.15rem;
}
.edu-college {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.edu-meta {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  flex-wrap: wrap;
  margin-bottom: var(--space-sm);
  font-size: 0.9rem;
  color: var(--muted);
}
.edu-meta .metric { font-size: 1.4rem; }
.edu-honors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ============ PERSONAL ============ */
#personal { background: var(--cream-light); }
.personal-inner { max-width: var(--content-max); margin: 0 auto; }
.personal-placeholder {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.7;
  padding: var(--space-md) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  max-width: 60ch;
}
.personal-philosophy {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--charcoal);
  margin-bottom: var(--space-md);
  font-style: italic;
}
.personal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.personal-grid h3 {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 0.75rem;
}
.personal-grid ul li {
  padding: 0.25rem 0;
  font-size: 0.95rem;
  color: var(--ink);
}

/* ============ CONTACT ============ */
#contact {
  background: var(--charcoal);
  color: var(--sb-text);
  text-align: center;
}
#contact .section-label { color: var(--sb-gold); }
#contact .section-label::after { background: var(--sb-gold); }
.contact-tagline {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--sb-text);
  margin-bottom: var(--space-md);
}
.cta-button {
  display: inline-block;
  padding: 0.9rem 2.25rem;
  min-height: 44px;
  border: 1px solid var(--sb-gold);
  color: var(--sb-gold);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: transparent;
  transition: background 300ms, color 300ms;
  cursor: pointer;
}
.cta-button:hover,
.cta-button:focus-visible {
  background: var(--sb-gold);
  color: var(--charcoal);
}
.cta-button .arrow {
  margin-left: 0.5rem;
  display: inline-block;
  transition: transform 300ms;
}
.cta-button:hover .arrow { transform: translateX(4px); }

/* ============ FOOTER ============ */
footer {
  background: var(--sb-bg);
  color: var(--sb-muted);
  padding: var(--space-md) var(--space-sm);
  text-align: center;
  border-top: 1px solid var(--sb-rule);
  position: relative;
}
.footer-monogram {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5em;
  color: var(--sb-gold);
  padding: 0.5rem 1rem;
  cursor: pointer;
  user-select: none;
  display: inline-block;
  min-height: 44px;
  min-width: 44px;
}
.footer-copy {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}
.easter-egg-note {
  max-width: 480px;
  margin: var(--space-sm) auto 0;
  padding: 0;
  background: var(--sb-rule);
  color: var(--sb-text);
  border: 1px solid var(--sb-gold);
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: opacity 500ms, max-height 500ms, padding 500ms;
  position: relative;
}
.easter-egg-note.is-revealed {
  opacity: 1;
  visibility: visible;
  max-height: 400px;
  padding: 1.25rem 1.5rem;
}
.easter-egg-note p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--sb-text);
  padding-right: 1.5rem;
}
#easter-egg-close {
  position: absolute;
  top: 0.35rem;
  right: 0.5rem;
  background: transparent;
  border: none;
  color: var(--sb-muted);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  line-height: 1;
}
#easter-egg-close:hover { color: var(--sb-gold); }

/* ============ MOBILE RESPONSIVE (Phase 07) ============ */
@media (max-width: 767px) {
  main > section { padding: var(--space-lg) var(--space-sm); }

  #hero { padding: var(--space-lg) var(--space-sm) var(--space-xl); }
  .hero-monogram-corner { top: 1rem; left: 1rem; font-size: 0.7rem; }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-md);
  }
  .hero-text { align-items: center; }
  .hero-eyebrow { padding-left: 0; }
  .hero-eyebrow::before { display: none; }
  .hero-portrait { width: 240px; }
  .hero-portrait-frame { justify-self: center; padding: 1rem; }
  .frame-corner { width: 22px; height: 22px; }
  .hero-rule { margin: 0 auto 1.25rem; width: 100px; }
  .hero-title { font-size: clamp(2.25rem, 11vw, 3.5rem); letter-spacing: 0.1em; }
  .hero-tagline { max-width: 32ch; margin-left: auto; margin-right: auto; }
  .hero-stats { justify-content: center; gap: 0.9rem; }
  .hero-stat-value { font-size: 1.3rem; }
  .hero-stat-divider { height: 22px; }
  .hero-scroll-cue { bottom: 1rem; }
  .hero-scroll-cue .scroll-line { height: 32px; }

  .summary-lead { font-size: 1.3rem; }
  .stat-row { gap: var(--space-md); }
  .stat .counter, .metric { font-size: 2.2rem; }

  .timeline-list { padding-left: var(--space-sm); }
  .node-dot { left: calc(-1 * var(--space-sm) - 7px); }
  .node-toggle { font-size: 1.2rem; }
  .node-toggle::after { margin-top: 0; align-self: flex-start; }

  .accolades-grid,
  .personal-grid { grid-template-columns: 1fr; gap: var(--space-sm); }

  .cta-button { width: 100%; max-width: 360px; padding: 1rem 1.5rem; }

  .skills-chips { gap: 0.4rem; }
  .chip { font-size: 0.8rem; padding: 0.4rem 0.75rem; }

  .edu-degree { font-size: 1.4rem; }
}
