:root {
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.84);
  --soft: rgba(255, 255, 255, 0.72);
  --paper: #071021;
  --california-gold: #fdb515;
  --berkeley-blue: #002676;
  --glass: rgba(255, 255, 255, 0.14);
  --glass-hover: rgba(255, 255, 255, 0.2);
  --glass-edge: rgba(255, 255, 255, 0.22);
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 18px 52px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  --radius: 8px;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(820px 560px at 82% 8%, rgba(253, 181, 21, 0.26), transparent 58%),
    radial-gradient(760px 560px at 8% 24%, rgba(0, 38, 118, 0.82), transparent 62%),
    radial-gradient(820px 620px at 78% 78%, rgba(253, 181, 21, 0.18), transparent 60%),
    linear-gradient(135deg, #06070d 0%, #10182f 16%, #002676 42%, #3e356d 68%, #7d5d35 86%, #a46e20 100%);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  background:
    linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.08) 38%, transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 42%),
    linear-gradient(90deg, rgba(253, 181, 21, 0.08), transparent 34%, rgba(0, 38, 118, 0.18));
  content: "";
  inset: 0;
  opacity: 0.7;
  pointer-events: none;
  position: fixed;
  z-index: -2;
}

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

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

::selection {
  background: rgba(253, 181, 21, 0.34);
}

:focus-visible {
  outline: 3px solid rgba(253, 181, 21, 0.56);
  outline-offset: 4px;
}

.skip-link {
  left: 16px;
  padding: 10px 14px;
  position: fixed;
  top: -60px;
  z-index: 20;
}

.skip-link:focus {
  top: 16px;
}

.bg-shapes {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

.bg-shapes span {
  animation: float 8s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
  display: block;
  position: absolute;
}

.bg-shapes span:nth-child(1) {
  border-radius: 8px;
  height: 86px;
  left: 5%;
  top: 18%;
  transform: rotate(18deg);
  width: 116px;
}

.bg-shapes span:nth-child(2) {
  border-radius: 8px;
  height: 134px;
  right: 7%;
  top: 45%;
  transform: rotate(-18deg);
  width: 88px;
}

.bg-shapes span:nth-child(3) {
  border-radius: 50%;
  height: 220px;
  left: 64%;
  top: 5%;
  width: 220px;
}

.bg-shapes span:nth-child(4) {
  animation-delay: 1.6s;
  border-radius: 8px;
  bottom: 16%;
  height: 82px;
  left: 17%;
  transform: rotate(22deg);
  width: 128px;
}

.bg-shapes span:nth-child(5) {
  animation-delay: 3s;
  border-radius: 50%;
  bottom: -110px;
  height: 320px;
  right: 18%;
  width: 320px;
}

@keyframes float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -22px;
  }
}

.glass,
.skip-link {
  background: var(--glass);
  border: 1px solid var(--glass-edge);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(26px) saturate(1.45);
}

.glass::before,
.skip-link::before {
  background:
    linear-gradient(110deg, transparent 12%, rgba(255, 255, 255, 0.2) 28%, transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 44%);
  border-radius: inherit;
  content: "";
  inset: 0;
  opacity: 0.55;
  pointer-events: none;
  position: absolute;
}

.glass > *,
.skip-link > * {
  position: relative;
  z-index: 1;
}

.site-header {
  padding: 20px 24px 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  align-items: center;
  background: rgba(255, 255, 255, 0.14);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  min-height: 78px;
  padding: 16px 24px;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.nav.glass {
  background: rgba(255, 255, 255, 0.14);
}

.nav.glass::before {
  display: none;
}

.site-header.is-scrolled .nav {
  background: rgba(255, 255, 255, 0.18);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  font-size: 1.12rem;
  font-weight: 800;
  min-width: max-content;
}

.brand-mark {
  align-items: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08) 44%, rgba(0, 38, 118, 0.06)),
    rgba(0, 38, 118, 0.82);
  border: 1px solid rgba(253, 181, 21, 0.46);
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.36), 0 10px 28px rgba(0, 38, 118, 0.3);
  color: #fdb515;
  display: inline-flex;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.nav-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.nav-links a {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-bottom-color: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  box-shadow: none;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  overflow: hidden;
  padding: 12px 14px;
  position: relative;
  transition: background 170ms ease, box-shadow 170ms ease, color 170ms ease, transform 170ms ease;
  backdrop-filter: blur(22px) saturate(1.45);
}

.button::before,
.text-link::before {
  background: linear-gradient(110deg, transparent 10%, rgba(255, 255, 255, 0.52) 28%, transparent 46%);
  border-radius: inherit;
  content: "";
  inset: 0;
  opacity: 0.44;
  pointer-events: none;
  position: absolute;
}

.nav-links a:hover,
.nav-links a.is-active {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 10px 28px rgba(0, 0, 0, 0.12);
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.34);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
}

main,
.footer {
  margin: 0 auto;
  max-width: 1180px;
  padding-left: 24px;
  padding-right: 24px;
}

.hero {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(220px, 360px) 1fr;
  margin-top: 62px;
  min-height: 560px;
  padding: 48px;
}

.hero-photo-wrap {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 18px 52px rgba(0, 0, 0, 0.2);
  padding: 14px;
}

.hero-photo {
  aspect-ratio: 1;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center 34%;
  width: 100%;
}

.hero-nameplate {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  gap: 3px;
  margin-top: 14px;
  padding: 14px 6px 2px;
  text-align: center;
}

.hero-nameplate span {
  color: var(--ink);
  font-size: clamp(1.24rem, 2vw, 1.58rem);
  font-weight: 900;
  line-height: 1.15;
}

.hero-nameplate small {
  color: var(--california-gold);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow,
.tag {
  color: var(--california-gold);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.contact h2 {
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.12;
  margin: 0;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.24);
}

.hero h1 {
  font-size: clamp(2rem, 3.6vw, 3.55rem);
  max-width: 820px;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero-copy {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.75;
  margin: 22px 0 0;
  max-width: 720px;
}

.hero-focus {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  margin: 16px 0 0;
  max-width: 720px;
}

.hero-focus strong {
  color: var(--california-gold);
  font-weight: 800;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-meta span,
.chip-row span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 8px 28px rgba(0, 0, 0, 0.12);
  color: var(--ink);
  display: inline-flex;
  font-size: 0.94rem;
  font-weight: 700;
  padding: 10px 14px;
  backdrop-filter: blur(18px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button,
.text-link {
  align-items: center;
  border-radius: var(--radius);
  display: inline-flex;
  gap: 10px;
  font-weight: 800;
  min-height: 50px;
  overflow: hidden;
  padding: 0 18px;
  position: relative;
  transition: background 170ms ease, border-color 170ms ease, box-shadow 170ms ease, transform 170ms ease;
  backdrop-filter: blur(18px) saturate(1.35);
}

.button.primary {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 12px 34px rgba(0, 0, 0, 0.14);
  color: var(--ink);
}

.button.secondary,
.text-link {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--ink);
}

.button:hover,
.text-link:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.44);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.button > *,
.text-link > * {
  position: relative;
  z-index: 1;
}

.link-icon {
  align-items: center;
  background: var(--icon-bg, var(--california-gold));
  border: 1px solid var(--icon-border, rgba(255, 255, 255, 0.64));
  border-radius: 50%;
  box-shadow: var(--icon-shadow, 0 8px 18px rgba(0, 38, 118, 0.2));
  color: #fff;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 800;
  height: 28px;
  justify-content: center;
  line-height: 1;
  width: 28px;
}

.email-icon {
  --icon-bg: linear-gradient(135deg, #fdb515, #ffd76a);
  --icon-shadow: 0 8px 18px rgba(253, 181, 21, 0.28);
  color: #002676;
}

.linkedin-icon {
  --icon-bg: #0a66c2;
  --icon-shadow: 0 8px 18px rgba(10, 102, 194, 0.24);
}

.github-icon {
  --icon-bg: linear-gradient(135deg, #7c3aed, #a855f7);
  --icon-border: rgba(255, 255, 255, 0.78);
  --icon-shadow: 0 8px 18px rgba(124, 58, 237, 0.24);
}

.link-icon svg {
  fill: currentColor;
  height: 17px;
  width: 17px;
}

.section {
  padding-top: 70px;
}

.sister {
  padding-top: 32px;
}

.section-heading {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 24px;
}

.section-heading h2 {
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
}

.section-description {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.16rem;
  font-weight: 600;
  line-height: 1.95;
  margin: 0 0 24px;
  max-width: 840px;
}

.skills {
  padding-top: 54px;
}

.skill-groups {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.education-groups {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.skill-group {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr);
  padding: 20px 24px;
}

.education-card {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 280px);
  padding: 28px;
}

.outside_of_ai .education-card,
.sister .education-card {
  grid-template-columns: 1fr;
}

.skill-group h3 {
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.3;
  margin: 0;
}

.skill-group p {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.8;
  margin: 0;
}

.profile-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}

.profile-summary,
.seeking-panel,
.project-card,
.life-card,
.timeline,
.contact {
  padding: 28px;
}

.profile-summary p,
.project-card p,
.life-card p,
.timeline-copy p,
.contact p {
  color: var(--muted);
  margin: 0;
}

.profile-summary p + p {
  margin-top: 14px;
}

.profile-summary h3 {
  color: var(--california-gold);
  font-size: 1.28rem;
  line-height: 1.3;
  margin: 0 0 12px;
}

.profile-section + .profile-section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.profile-highlights {
  color: var(--muted);
  display: grid;
  gap: 12px;
  line-height: 1.62;
  margin: 18px 0 0;
  padding-left: 20px;
}

.profile-highlights li::marker {
  color: var(--california-gold);
}

.profile-highlights strong {
  color: var(--ink);
  font-weight: 850;
}

.profile-summary .profile-seeking {
  color: var(--ink);
  font-weight: 750;
  line-height: 1.6;
  margin-top: 24px;
}

.profile-summary .profile-seeking strong {
  color: var(--california-gold);
  font-weight: 900;
}

.seeking-panel h3,
.project-card h3,
.life-card h3,
.timeline-copy h3 {
  color: var(--california-gold);
  font-size: 1.22rem;
  line-height: 1.3;
  margin: 0 0 10px;
}

.seeking-panel h3:not(:first-child) {
  margin-top: 24px;
}

.timeline-copy h3.career-title-stack,
.timeline-copy h3.education-title-stack {
  color: var(--ink);
  display: grid;
  gap: 3px;
  margin-bottom: 8px;
}

.experience-company-list {
  display: grid;
  gap: 34px;
}

.experience-company {
  display: grid;
  gap: 12px;
}

.company-subheader {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: space-between;
}

.company-subheader h3 {
  color: var(--california-gold);
  font-size: clamp(1.46rem, 2.4vw, 1.9rem);
  line-height: 1.2;
  margin: 0;
}

.company-subheader .project-date {
  margin: 0;
}

.apple-career-entry {
  padding: 0;
}

.apple-career-entry + .timeline-entry {
  margin-top: 0;
}

.career-focus {
  margin-top: 22px;
}

.career-focus h4 {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.4;
  margin: 0 0 10px;
}

.career-focus .project-detail-list {
  margin-top: 0;
}

.career-company {
  color: var(--ink);
  font-size: clamp(1.08rem, 1.5vw, 1.24rem);
  font-weight: 800;
}

.career-role-title {
  color: var(--california-gold);
  font-size: clamp(1.22rem, 2vw, 1.48rem);
  font-weight: 900;
}

.education-school {
  color: var(--berkeley-blue);
  font-size: clamp(1.22rem, 2vw, 1.48rem);
  font-weight: 900;
}

.education-degree {
  color: var(--ink);
  font-size: clamp(1.08rem, 1.5vw, 1.24rem);
  font-weight: 850;
}

.education-school-line {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
}

.seeking-panel ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.seeking-panel li {
  align-items: center;
  color: var(--ink);
  display: flex;
  gap: 10px;
  font-weight: 700;
}

.seeking-panel li::before {
  background: var(--california-gold);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(253, 181, 21, 0.42);
  content: "";
  flex: 0 0 auto;
  height: 6px;
  width: 6px;
}

.timeline {
  display: grid;
  gap: 24px;
  position: relative;
}

.timeline-entry {
  display: grid;
  gap: 18px;
  grid-template-columns: 18px minmax(0, 1fr) minmax(180px, 280px);
  position: relative;
}

.timeline-entry + .timeline-entry {
  margin-top: 0;
}

.timeline-entry:not(:has(.timeline-media)) {
  grid-template-columns: 18px minmax(0, 1fr);
}

.education-card .timeline-copy {
  display: grid;
  gap: 8px;
}

.education-card .education-card-section {
  display: grid;
}

.education-card .education-card-meta {
  gap: 2px;
}

.education-card .education-card-details {
  gap: 2px;
}

.education-card .project-date {
  color: var(--soft);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.education-card .education-title-stack {
  gap: 6px;
  margin-bottom: 4px;
}

.education-card .education-school {
  font-size: clamp(1.28rem, 2.1vw, 1.54rem);
  line-height: 1.2;
}

.education-card .education-degree {
  color: var(--berkeley-blue);
  font-size: clamp(1.12rem, 1.6vw, 1.28rem);
  line-height: 1.3;
}

.education-card .education-school-line {
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 850;
  line-height: 1.3;
  letter-spacing: 0.01em;
  margin-bottom: 0;
  margin-top: 0;
}

.education-card .timeline-copy p + .project-detail-list {
  margin-top: -2px;
}

.education-card .project-detail-list {
  font-size: 1.02rem;
  gap: 6px;
  line-height: 1.58;
}

.timeline-rail {
  align-self: stretch;
  align-items: center;
  display: flex;
  flex-direction: column;
  padding-top: 7px;
  z-index: 2;
}

.timeline-dot {
  background: rgba(253, 181, 21, 0.72);
  border: 2px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28);
  height: 11px;
  position: relative;
  width: 11px;
}

.timeline-dot.current {
  background: var(--california-gold);
  box-shadow: 0 0 0 1px rgba(253, 181, 21, 0.75), 0 0 28px rgba(253, 181, 21, 0.55);
}

.timeline-stem {
  background: rgba(255, 255, 255, 0.18);
  display: block;
  flex: 1;
  margin-top: 7px;
  min-height: 0;
  width: 1px;
}

.timeline-role {
  color: var(--soft);
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.company-name {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  margin: -2px 0 6px;
}

.project-date {
  color: var(--california-gold);
  font-size: 0.98rem;
  font-weight: 800;
  margin: 0 0 6px;
}

.project-detail-list {
  color: var(--muted);
  display: grid;
  gap: 10px;
  line-height: 1.62;
  margin: 14px 0 0;
  padding-left: 20px;
}

.project-detail-list li::marker {
  color: var(--california-gold);
}

.project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.project-link {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  color: var(--ink);
  display: inline-flex;
  font-size: 0.96rem;
  font-weight: 800;
  margin-top: 0;
  min-height: 44px;
  overflow: hidden;
  padding: 0 16px;
  position: relative;
  backdrop-filter: blur(18px) saturate(1.35);
}

.project-link:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.44);
}

.timeline-media {
  align-self: start;
  margin: 0;
}

.outside_of_ai .timeline-media,
.sister .timeline-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 16px;
  row-gap: 4px;
  align-items: start;
  grid-auto-rows: minmax(min-content, auto);
}

.outside_of_ai .timeline-media {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  row-gap: 8px;
}

.outside_of_ai .timeline-media img:nth-of-type(1),
.sister .timeline-media img:nth-of-type(1) {
  grid-column: 1;
  grid-row: 1;
}

.outside_of_ai .timeline-media figcaption:nth-of-type(1),
.sister .timeline-media figcaption:nth-of-type(1) {
  grid-column: 1;
  grid-row: 2;
}

.outside_of_ai .timeline-media img:nth-of-type(2),
.sister .timeline-media img:nth-of-type(2) {
  grid-column: 2;
  grid-row: 1;
}

.outside_of_ai .timeline-media figcaption:nth-of-type(2),
.sister .timeline-media figcaption:nth-of-type(2) {
  grid-column: 2;
  grid-row: 2;
}

.outside_of_ai .timeline-media img:nth-of-type(3) {
  grid-column: 3;
  grid-row: 1;
}

.outside_of_ai .timeline-media figcaption:nth-of-type(3) {
  grid-column: 3;
  grid-row: 2;
}

.outside_of_ai .timeline-media figcaption,
.sister .timeline-media figcaption {
  color: var(--soft);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 4px;
}

.timeline-media img,
.project-card > img {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.project-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.25fr 1fr 1fr;
}

.apple-focus {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 280px);
  margin-bottom: 24px;
  padding: 28px;
}

.apple-focus h3 {
  color: var(--california-gold);
  font-size: 1.36rem;
  line-height: 1.28;
  margin: 0 0 10px;
}

.apple-focus .project-date {
  color: var(--soft);
}

.apple-focus-media {
  align-self: start;
  margin: 0;
}

.apple-focus-media img {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.project-card {
  display: grid;
  gap: 18px;
  min-height: 320px;
}

.life-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.life-card {
  display: grid;
  gap: 18px;
  grid-template-columns: 22px 1fr;
  min-height: 230px;
}

.life-marker {
  background: var(--california-gold);
  border: 2px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28), 0 0 28px rgba(253, 181, 21, 0.42);
  height: 12px;
  margin-top: 8px;
  width: 12px;
}

.life-role {
  color: var(--soft);
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.project-icon-card {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  display: flex;
  height: 86px;
  justify-content: center;
  width: 86px;
}

.project-icon-card img {
  border-radius: var(--radius);
  height: 58px;
  object-fit: contain;
  width: 58px;
}

.contact {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 44px;
  margin-top: 76px;
}

.contact h2 {
  color: var(--california-gold);
  font-size: clamp(1.45rem, 2.2vw, 2.25rem);
  max-width: 720px;
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.28);
}

.contact p:not(.eyebrow) {
  margin-top: 12px;
  max-width: 640px;
}

.contact-actions {
  flex-shrink: 0;
  margin-top: 0;
}

.footer {
  align-items: center;
  color: var(--soft);
  display: flex;
  justify-content: space-between;
  padding-bottom: 34px;
}

@media (max-width: 980px) {
  .site-header {
    padding: 16px 16px 0;
  }

  .nav {
    min-height: 70px;
  }

  .nav-toggle {
    align-items: center;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: var(--radius);
    display: grid;
    gap: 5px;
    height: 44px;
    justify-content: center;
    width: 44px;
  }

  .nav-toggle span {
    background: var(--ink);
    display: block;
    height: 2px;
    width: 20px;
  }

  .nav-links {
    align-items: stretch;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: var(--radius);
    display: none;
    flex-direction: column;
    left: 16px;
    padding: 8px;
    position: absolute;
    right: 16px;
    top: 94px;
    backdrop-filter: blur(22px);
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero,
  .profile-grid,
  .skill-groups,
  .education-groups,
  .life-grid,
  .project-grid,
  .apple-focus,
  .education-card,
  .timeline-entry,
  .timeline-entry:not(:has(.timeline-media)) {
    grid-template-columns: 1fr;
  }

  .outside_of_ai .timeline-media {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 28px;
    margin-top: 34px;
    min-height: auto;
    padding: 28px;
  }

  .hero-photo-wrap {
    max-width: 320px;
  }

  .timeline-rail {
    display: none;
  }

  .contact {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  main,
  .footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero h1 {
    font-size: clamp(1.56rem, 7.4vw, 2.85rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .section {
    padding-top: 58px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    width: 100%;
  }

  .button {
    justify-content: center;
    width: 100%;
  }

  .profile-summary,
  .seeking-panel,
  .project-card,
  .life-card,
  .timeline,
  .contact {
    padding: 22px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
